From 3118a800afac738d7503dfe288a4d0ea085880b6 Mon Sep 17 00:00:00 2001 From: gitlab-runner Date: Mon, 18 Oct 2021 20:21:31 -0500 Subject: [PATCH] Upload trusted-firmware-m 1.3.1.1441 --- .../include/device_cfg.h | 37 + .../include/ext/tz_context.h | 69 + .../include/ns_ipc_config.h | 22 + .../include/os_wrapper/common.h | 26 + .../include/os_wrapper/msg_queue.h | 70 + .../include/os_wrapper/mutex.h | 62 + .../include/os_wrapper/semaphore.h | 64 + .../include/os_wrapper/thread.h | 103 + .../include/os_wrapper/tick.h | 28 + .../include/platform_multicore.h | 104 + .../include/psa/client.h | 176 + .../include/psa/crypto.h | 3725 +++++ .../include/psa/crypto_client_struct.h | 48 + .../include/psa/crypto_compat.h | 342 + .../include/psa/crypto_extra.h | 64 + .../include/psa/crypto_sizes.h | 698 + .../include/psa/crypto_struct.h | 221 + .../include/psa/crypto_types.h | 356 + .../include/psa/crypto_values.h | 1785 +++ .../include/psa/error.h | 60 + .../include/psa/initial_attestation.h | 228 + .../include/psa/internal_trusted_storage.h | 164 + .../include/psa/protected_storage.h | 282 + .../include/psa/storage_common.h | 49 + .../include/psa_manifest/sid.h | 220 + COMPONENT_TFM_NS_INTERFACE/include/tfm_api.h | 140 + .../include/tfm_crypto_defs.h | 165 + .../include/tfm_mailbox.h | 155 + .../include/tfm_mailbox_config.h | 36 + .../include/tfm_mbedtls_version.h | 28 + .../include/tfm_multi_core_api.h | 43 + .../include/tfm_ns_interface.h | 58 + .../include/tfm_ns_mailbox.h | 387 + .../include/tfm_ns_svc.h | 68 + .../include/tfm_platform_api.h | 98 + .../src/os_wrapper_cyabs_rtos.c | 252 + .../src/os_wrapper_stub.c | 163 + .../src/platform_multicore.c | 130 + .../src/platform_ns_mailbox.c | 164 + .../src/tfm_crypto_ipc_api.c | 1747 ++ .../src/tfm_initial_attestation_ipc_api.c | 105 + .../src/tfm_its_ipc_api.c | 125 + .../src/tfm_multi_core_ns_api.c | 20 + .../src/tfm_multi_core_psa_ns_api.c | 127 + .../src/tfm_ns_mailbox.c | 343 + .../src/tfm_ns_mailbox_rtos_api.c | 116 + .../src/tfm_platform_ipc_api.c | 78 + .../src/tfm_ps_ipc_api.c | 175 + COMPONENT_TFM_S_FW/tfm_s.bin | Bin 0 -> 211616 bytes COMPONENT_TFM_S_FW/tfm_s.hex | 13234 ++++++++++++++++ EULA | 55 + README.md | 65 +- RELEASE.md | 69 + security/keys/TFM_NS_KEY.json | 11 + security/keys/TFM_NS_KEY_PRIV.pem | 5 + security/keys/TFM_S_KEY.json | 11 + security/keys/TFM_S_KEY_PRIV.pem | 5 + security/keys/readme.rst | 31 + security/policy/policy_multi_CM0_CM4_tfm.json | 250 + .../policy_multi_CM0_CM4_tfm_dev_certs.json | 250 + security/reprov_helper.py | 305 + version.xml | 1 + 62 files changed, 28016 insertions(+), 2 deletions(-) create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/device_cfg.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/ext/tz_context.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/ns_ipc_config.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/common.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/msg_queue.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/mutex.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/semaphore.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/thread.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/tick.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/platform_multicore.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/client.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_client_struct.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_compat.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_extra.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_sizes.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_struct.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_types.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_values.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/error.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/initial_attestation.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/internal_trusted_storage.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/protected_storage.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa/storage_common.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/psa_manifest/sid.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_api.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_crypto_defs.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox_config.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_mbedtls_version.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_multi_core_api.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_interface.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_mailbox.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_svc.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/include/tfm_platform_api.h create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_cyabs_rtos.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_stub.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/platform_multicore.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/platform_ns_mailbox.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_crypto_ipc_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_initial_attestation_ipc_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_its_ipc_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_ns_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_psa_ns_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox_rtos_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_platform_ipc_api.c create mode 100644 COMPONENT_TFM_NS_INTERFACE/src/tfm_ps_ipc_api.c create mode 100644 COMPONENT_TFM_S_FW/tfm_s.bin create mode 100644 COMPONENT_TFM_S_FW/tfm_s.hex create mode 100644 EULA create mode 100644 RELEASE.md create mode 100644 security/keys/TFM_NS_KEY.json create mode 100644 security/keys/TFM_NS_KEY_PRIV.pem create mode 100644 security/keys/TFM_S_KEY.json create mode 100644 security/keys/TFM_S_KEY_PRIV.pem create mode 100644 security/keys/readme.rst create mode 100755 security/policy/policy_multi_CM0_CM4_tfm.json create mode 100755 security/policy/policy_multi_CM0_CM4_tfm_dev_certs.json create mode 100755 security/reprov_helper.py create mode 100644 version.xml diff --git a/COMPONENT_TFM_NS_INTERFACE/include/device_cfg.h b/COMPONENT_TFM_NS_INTERFACE/include/device_cfg.h new file mode 100644 index 0000000..eeebdc0 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/device_cfg.h @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2017-2021 Arm Limited + * Copyright (c) 2020, Cypress Semiconductor Corporation. All rights reserved. + * + * 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 __ARM_LTD_DEVICE_CFG_H__ +#define __ARM_LTD_DEVICE_CFG_H__ + +/** + * \file device_cfg.h + * \brief Configuration file native driver re-targeting + * + * \details This file can be used to add native driver specific macro + * definitions to select which peripherals are available in the build. + * + * This is a default device configuration file with all peripherals enabled. + */ + +/* TCPWM0 Timers (IRQ test) */ +#define CY_TCPWM0_TIMER0_S +#define CY_TCPWM0_TIMER1_NS + +#define DEFAULT_UART_BAUDRATE 115200 + +#endif /* __ARM_LTD_DEVICE_CFG_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/ext/tz_context.h b/COMPONENT_TFM_NS_INTERFACE/include/ext/tz_context.h new file mode 100644 index 0000000..cd6d8ab --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/ext/tz_context.h @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2015-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. + * + * ---------------------------------------------------------------------------- + * + * $Date: 21. September 2016 + * $Revision: V1.0 + * + * Project: TrustZone for ARMv8-M + * Title: Context Management for ARMv8-M TrustZone + * + * Version 1.0 + * Initial Release + *---------------------------------------------------------------------------*/ + +#ifndef TZ_CONTEXT_H +#define TZ_CONTEXT_H + +#include + +#ifndef TZ_MODULEID_T +#define TZ_MODULEID_T +/// \details Data type that identifies secure software modules called by a process. +typedef uint32_t TZ_ModuleId_t; +#endif + +/// \details TZ Memory ID identifies an allocated memory slot. +typedef uint32_t TZ_MemoryId_t; + +/// Initialize secure context memory system +/// \return execution status (1: success, 0: error) +uint32_t TZ_InitContextSystem_S (void); + +/// Allocate context memory for calling secure software modules in TrustZone +/// \param[in] module identifies software modules called from non-secure mode +/// \return value != 0 id TrustZone memory slot identifier +/// \return value 0 no memory available or internal error +TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module); + +/// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S +/// \param[in] id TrustZone memory slot identifier +/// \return execution status (1: success, 0: error) +uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id); + +/// Load secure context (called on RTOS thread context switch) +/// \param[in] id TrustZone memory slot identifier +/// \return execution status (1: success, 0: error) +uint32_t TZ_LoadContext_S (TZ_MemoryId_t id); + +/// Store secure context (called on RTOS thread context switch) +/// \param[in] id TrustZone memory slot identifier +/// \return execution status (1: success, 0: error) +uint32_t TZ_StoreContext_S (TZ_MemoryId_t id); + +#endif // TZ_CONTEXT_H diff --git a/COMPONENT_TFM_NS_INTERFACE/include/ns_ipc_config.h b/COMPONENT_TFM_NS_INTERFACE/include/ns_ipc_config.h new file mode 100644 index 0000000..e1cd7b7 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/ns_ipc_config.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2019 Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef _IPC_CONFIG_H_ +#define _IPC_CONFIG_H_ + +#include "platform_multicore.h" + +#define IPC_RX_CHAN IPC_PSA_CLIENT_REPLY_CHAN +#define IPC_RX_INTR_STRUCT IPC_PSA_CLIENT_REPLY_INTR_STRUCT +#define IPC_RX_INT_MASK IPC_PSA_CLIENT_REPLY_INTR_MASK + +#define IPC_TX_CHAN IPC_PSA_CLIENT_CALL_CHAN +#define IPC_TX_NOTIFY_MASK IPC_PSA_CLIENT_CALL_NOTIFY_MASK + +#define PSA_CLIENT_REPLY_NVIC_IRQn IPC_PSA_CLIENT_REPLY_IPC_INTR +#define PSA_CLIENT_REPLY_IRQ_PRIORITY 3 + +#endif diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/common.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/common.h new file mode 100644 index 0000000..6494723 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/common.h @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2017-2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_COMMON_H__ +#define __OS_WRAPPER_COMMON_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +#define OS_WRAPPER_SUCCESS (0x0) +#define OS_WRAPPER_ERROR (0xFFFFFFFFU) +#define OS_WRAPPER_WAIT_FOREVER (0xFFFFFFFFU) +#define OS_WRAPPER_DEFAULT_STACK_SIZE (-1) + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_COMMON_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/msg_queue.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/msg_queue.h new file mode 100644 index 0000000..ac69773 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/msg_queue.h @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2020-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_MSG_QUEUE_H__ +#define __OS_WRAPPER_MSG_QUEUE_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +#include "common.h" + +/** + * \brief Create and initialize a message queue + * + * \param[in] msg_size The maximum message size in bytes + * \param[in] msg_count The maximum number of messages in queue + * + * \return Returns handle of the message queue created, or NULL in case of error + */ +void *os_wrapper_msg_queue_create(size_t msg_size, uint8_t msg_count); + +/** + * \brief Send a message via message queue + * + * \param[in] mq_handle The handle of message queue + * \param[in] msg_ptr The pointer to the message to be sent + * + * \return \ref OS_WRAPPER_SUCCESS if the message is successfully sent, or + * \ref OS_WRAPPER_ERROR in case of error + * + * \note The message size must be the same as the value set in + * \ref os_wrapper_msg_queue_create. + * + * \note Time out value is not specified here. Whether the function is blocked + * or returns instantly depends on the actual implementation and usage + * scenario. + */ +int32_t os_wrapper_msg_queue_send(void *mq_handle, + const void *msg_ptr); + +/** + * \brief Receive a message from message queue + * + * \param[in] mq_handle The handle of message queue + * \param[in] msg_ptr The pointer to buffer for message to be received + * + * \return \ref OS_WRAPPER_SUCCESS if the message is successfully received, or + * \ref OS_WRAPPER_ERROR in case of error + * + * \note The message size is the same as the value set in + * \ref os_wrapper_msg_queue_create. + * + * \note The function should be blocked until a message is received from message + * queue, unless an error occurs. + */ +int32_t os_wrapper_msg_queue_receive(void *mq_handle, + void *msg_ptr); + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_MSG_QUEUE_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/mutex.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/mutex.h new file mode 100644 index 0000000..e55ef70 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/mutex.h @@ -0,0 +1,62 @@ +/* + * Copyright (c) 2017-2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_MUTEX_H__ +#define __OS_WRAPPER_MUTEX_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "common.h" + +/** + * \brief Creates a mutex for mutual exclusion of resources + * + * \return The handle of the created mutex on success or NULL on error + */ +void *os_wrapper_mutex_create(void); + +/** + * \brief Acquires a mutex that is created by \ref os_wrapper_mutex_create() + * + * \param[in] handle The handle of the mutex to acquire. Should be one of the + * handles returned by \ref os_wrapper_mutex_create() + * \param[in] timeout The maximum amount of time(in tick periods) for the + * thread to wait for the mutex to be available. + * If timeout is zero, the function will return immediately. + * Setting timeout to \ref OS_WRAPPER_WAIT_FOREVER will + * cause the thread to wait indefinitely + * + * \return \ref OS_WRAPPER_SUCCESS on success or \ref OS_WRAPPER_ERROR on error + */ +uint32_t os_wrapper_mutex_acquire(void *handle, uint32_t timeout); + +/** + * \brief Releases the mutex acquired previously + * + + * \param[in] handle The handle of the mutex that has been acquired + * + * \return \ref OS_WRAPPER_SUCCESS on success or \ref OS_WRAPPER_ERROR on error + */ +uint32_t os_wrapper_mutex_release(void *handle); + +/** + * \brief Deletes a mutex that is created by \ref os_wrapper_mutex_create() + * + * \param[in] handle The handle of the mutex to be deleted + * + * \return \ref OS_WRAPPER_SUCCESS on success or \ref OS_WRAPPER_ERROR on error + */ +uint32_t os_wrapper_mutex_delete(void *handle); + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_MUTEX_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/semaphore.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/semaphore.h new file mode 100644 index 0000000..83d88ca --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/semaphore.h @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2017-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_SEMAPHORE_H__ +#define __OS_WRAPPER_SEMAPHORE_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "common.h" + +/** + * \brief Creates a new semaphore + * + * \param[in] max_count Highest count of the semaphore + * \param[in] initial_count Starting count of the available semaphore + * \param[in] name Name of the semaphore + * + * \return Returns handle of the semaphore created, or NULL in case of error + */ +void *os_wrapper_semaphore_create(uint32_t max_count, uint32_t initial_count, + const char *name); + +/** + * \brief Acquires the semaphore + * + * \param[in] hanlde Semaphore handle + * \param[in] timeout Timeout value + * + * \return \ref OS_WRAPPER_SUCCESS in case of successful acquision, or + * \ref OS_WRAPPER_ERROR in case of error + */ +uint32_t os_wrapper_semaphore_acquire(void *handle, uint32_t timeout); + +/** + * \brief Releases the semaphore + * + * \param[in] hanlde Semaphore handle + * + * \return \ref OS_WRAPPER_SUCCESS in case of successful release, or + * \ref OS_WRAPPER_ERROR in case of error + */ +uint32_t os_wrapper_semaphore_release(void *handle); + +/** + * \brief Deletes the semaphore + * + * \param[in] handle Semaphore handle + * + * \return \ref OS_WRAPPER_SUCCESS in case of successful release, or + * \ref OS_WRAPPER_ERROR in case of error + */ +uint32_t os_wrapper_semaphore_delete(void *handle); + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_SEMAPHORE_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/thread.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/thread.h new file mode 100644 index 0000000..a493593 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/thread.h @@ -0,0 +1,103 @@ +/* + * Copyright (c) 2017-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_THREAD_H__ +#define __OS_WRAPPER_THREAD_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "common.h" + +/* prototype for the thread entry function */ +typedef void (*os_wrapper_thread_func) (void *argument); + +/** + * \brief Creates a new thread + * + * \param[in] name Name of the thread + * \param[in] stack_size Size of stack to be allocated for this thread. It can + * be \ref OS_WRAPPER_DEFAULT_STACK_SIZE to use the + * default value provided by the underlying RTOS + * \param[in] func Pointer to the function invoked by thread + * \param[in] arg Argument to pass to the function invoked by thread + * \param[in] priority Initial thread priority + * + * \return Returns the thread handle created, or NULL in case of error + */ +void *os_wrapper_thread_new(const char *name, int32_t stack_size, + os_wrapper_thread_func func, void *arg, + uint32_t priority); +/** + * \brief Gets current thread handle + * + * \return Returns the thread handle, or NULL in case of error + */ +void *os_wrapper_thread_get_handle(void); + +/** + * \brief Gets thread priority + * + * \param[in] handle Thread handle + * \param[out] priority The priority of the thread + * + * \return Returns \ref OS_WRAPPER_SUCCESS on success, or \ref OS_WRAPPER_ERROR + * in case of error + */ +uint32_t os_wrapper_thread_get_priority(void *handle, uint32_t *priority); + +/** + * \brief Exits the calling thread + */ +void os_wrapper_thread_exit(void); + +/** + * \brief Set the event flags for synchronizing a thread specified by handle. + * + * \note This function may not be allowed to be called from Interrupt Service + * Routines. + * + * \param[in] handle Thread handle to be notified + * \param[in] flags Event flags value + * + * \return Returns \ref OS_WRAPPER_SUCCESS on success, or \ref OS_WRAPPER_ERROR + * in case of error + */ +uint32_t os_wrapper_thread_set_flag(void *handle, uint32_t flags); + +/** + * \brief Set the event flags in an interrupt handler for synchronizing a thread + * specified by handle. + * + * \param[in] handle Thread handle to be notified + * \param[in] flags Event flags value + * + * \return Returns \ref OS_WRAPPER_SUCCESS on success, or \ref OS_WRAPPER_ERROR + * in case of error + */ +uint32_t os_wrapper_thread_set_flag_isr(void *handle, uint32_t flags); + +/** + * \brief Wait for the event flags for synchronizing threads. + * + * \note This function may not be allowed to be called from Interrupt Service + * Routines. + * + * \param[in] flags Specify the flags to wait for + * \param[in] timeout Timeout value + * + * \return Returns \ref OS_WRAPPER_SUCCESS on success, or \ref OS_WRAPPER_ERROR + * in case of error + */ +uint32_t os_wrapper_thread_wait_flag(uint32_t flags, uint32_t timeout); + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_THREAD_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/tick.h b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/tick.h new file mode 100644 index 0000000..b377b0e --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/os_wrapper/tick.h @@ -0,0 +1,28 @@ +/* + * Copyright (c) 2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __OS_WRAPPER_TICK_H__ +#define __OS_WRAPPER_TICK_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "common.h" + +/** + * \brief Return RTOS current tick count + * + * \return The current tick count + */ +uint32_t os_wrapper_get_tick(void); + +#ifdef __cplusplus +} +#endif + +#endif /* __OS_WRAPPER_TICK_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/platform_multicore.h b/COMPONENT_TFM_NS_INTERFACE/include/platform_multicore.h new file mode 100644 index 0000000..ae9855e --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/platform_multicore.h @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2019, Arm Limited. All rights reserved. + * Copyright (c) 2019, Cypress Semiconductor Corporation. All rights reserved + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef _TFM_PLATFORM_MULTICORE_ +#define _TFM_PLATFORM_MULTICORE_ + +#include +#include "cy_device_headers.h" + +#define IPC_PSA_CLIENT_CALL_CHAN (8) +#define IPC_PSA_CLIENT_CALL_INTR_STRUCT (6) +#define IPC_PSA_CLIENT_CALL_INTR_MASK (1 << IPC_PSA_CLIENT_CALL_CHAN) +#define IPC_PSA_CLIENT_CALL_NOTIFY_MASK (1 << IPC_PSA_CLIENT_CALL_INTR_STRUCT) +#define IPC_PSA_CLIENT_CALL_IPC_INTR cpuss_interrupts_ipc_6_IRQn + +#define IPC_PSA_CLIENT_REPLY_CHAN (9) +#define IPC_PSA_CLIENT_REPLY_INTR_STRUCT (8) +#define IPC_PSA_CLIENT_REPLY_INTR_MASK (1 << IPC_PSA_CLIENT_REPLY_CHAN) +#define IPC_PSA_CLIENT_REPLY_NOTIFY_MASK (1 << IPC_PSA_CLIENT_REPLY_INTR_STRUCT) +#define IPC_PSA_CLIENT_REPLY_IPC_INTR cpuss_interrupts_ipc_8_IRQn + +#define IPC_PSA_MAILBOX_LOCK_CHAN (10) + +#define IPC_RX_RELEASE_MASK (0) + +#define CY_IPC_NOTIFY_SHIFT (16) + +#define PSA_CLIENT_CALL_REQ_MAGIC (0xA5CF50C6) +#define PSA_CLIENT_CALL_REPLY_MAGIC (0xC605FC5A) + +#define NS_MAILBOX_INIT_ENABLE (0xAE) +#define S_MAILBOX_READY (0xC3) + +#define PLATFORM_MAILBOX_SUCCESS (0x0) +#define PLATFORM_MAILBOX_INVAL_PARAMS (INT32_MIN + 1) +#define PLATFORM_MAILBOX_TX_ERROR (INT32_MIN + 2) +#define PLATFORM_MAILBOX_RX_ERROR (INT32_MIN + 3) +#define PLATFORM_MAILBOX_INIT_ERROR (INT32_MIN + 4) + +/* Inter-Processor Communication (IPC) data channel for the Semaphores */ +#define PLATFORM_MAILBOX_IPC_CHAN_SEMA CY_IPC_CHAN_SEMA +#define MAILBOX_SEMAPHORE_NUM (16) + +#define IPC_SYNC_MAGIC 0x7DADE011 + +/** + * \brief Fetch a pointer from mailbox message + * + * \param[out] msg_ptr The address to write the pointer value to. + * + * \retval 0 The operation succeeds. + * \retval else The operation fails. + */ +int platform_mailbox_fetch_msg_ptr(void **msg_ptr); + +/** + * \brief Fetch a data value from mailbox message + * + * \param[out] data_ptr The address to write the pointer value to. + * + * \retval 0 The operation succeeds. + * \retval else The operation fails. + */ +int platform_mailbox_fetch_msg_data(uint32_t *data_ptr); + +/** + * \brief Send a pointer via mailbox message + * + * \param[in] msg_ptr The pointer value to be sent. + * + * \retval 0 The operation succeeds. + * \retval else The operation fails. + */ +int platform_mailbox_send_msg_ptr(const void *msg_ptr); + +/** + * \brief Send a data value via mailbox message + * + * \param[in] data The data value to be sent + * + * \retval 0 The operation succeeds. + * \retval else The operation fails. + */ +int platform_mailbox_send_msg_data(uint32_t data); + +/** + * \brief Wait for a mailbox notify event. + */ +void platform_mailbox_wait_for_notify(void); + +/** + * \brief IPC initialization + * + * \retval 0 The operation succeeds. + * \retval else The operation fails. + */ +int platform_ns_ipc_init(void); + +#endif diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/client.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/client.h new file mode 100644 index 0000000..8fd2d13 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/client.h @@ -0,0 +1,176 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __PSA_CLIENT_H__ +#define __PSA_CLIENT_H__ + +#include +#include + +#include "psa/error.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/*********************** PSA Client Macros and Types *************************/ + +/** + * The version of the PSA Framework API that is being used to build the calling + * firmware. Only part of features of FF-M v1.1 have been implemented. FF-M v1.1 + * is compatible with v1.0. + */ +#define PSA_FRAMEWORK_VERSION (0x0101u) + +/** + * Return value from psa_version() if the requested RoT Service is not present + * in the system. + */ +#define PSA_VERSION_NONE (0u) + +/** + * The zero-value null handle can be assigned to variables used in clients and + * RoT Services, indicating that there is no current connection or message. + */ +#define PSA_NULL_HANDLE ((psa_handle_t)0) + +/** + * Tests whether a handle value returned by psa_connect() is valid. + */ +#define PSA_HANDLE_IS_VALID(handle) ((psa_handle_t)(handle) > 0) + +/** + * Converts the handle value returned from a failed call psa_connect() into + * an error code. + */ +#define PSA_HANDLE_TO_ERROR(handle) ((psa_status_t)(handle)) + +/** + * Maximum number of input and output vectors for a request to psa_call(). + */ +#define PSA_MAX_IOVEC (4u) + +/** + * An IPC message type that indicates a generic client request. + */ +#define PSA_IPC_CALL (0) + +typedef int32_t psa_handle_t; + +/** + * A read-only input memory region provided to an RoT Service. + */ +typedef struct psa_invec { + const void *base; /*!< the start address of the memory buffer */ + size_t len; /*!< the size in bytes */ +} psa_invec; + +/** + * A writable output memory region provided to an RoT Service. + */ +typedef struct psa_outvec { + void *base; /*!< the start address of the memory buffer */ + size_t len; /*!< the size in bytes */ +} psa_outvec; + +/*************************** PSA Client API **********************************/ + +/** + * \brief Retrieve the version of the PSA Framework API that is implemented. + * + * \return version The version of the PSA Framework implementation + * that is providing the runtime services to the + * caller. The major and minor version are encoded + * as follows: + * \arg version[15:8] -- major version number. + * \arg version[7:0] -- minor version number. + */ +uint32_t psa_framework_version(void); + +/** + * \brief Retrieve the version of an RoT Service or indicate that it is not + * present on this system. + * + * \param[in] sid ID of the RoT Service to query. + * + * \retval PSA_VERSION_NONE The RoT Service is not implemented, or the + * caller is not permitted to access the service. + * \retval > 0 The version of the implemented RoT Service. + */ +uint32_t psa_version(uint32_t sid); + +/** + * \brief Connect to an RoT Service by its SID. + * + * \param[in] sid ID of the RoT Service to connect to. + * \param[in] version Requested version of the RoT Service. + * + * \retval > 0 A handle for the connection. + * \retval PSA_ERROR_CONNECTION_REFUSED The SPM or RoT Service has refused the + * connection. + * \retval PSA_ERROR_CONNECTION_BUSY The SPM or RoT Service cannot make the + * connection at the moment. + * \retval "PROGRAMMER ERROR" The call is a PROGRAMMER ERROR if one or more + * of the following are true: + * \arg The RoT Service ID is not present. + * \arg The RoT Service version is not supported. + * \arg The caller is not allowed to access the RoT + * service. + */ +psa_handle_t psa_connect(uint32_t sid, uint32_t version); + +/** + * \brief Call an RoT Service on an established connection. + * + * \param[in] handle A handle to an established connection. + * \param[in] type The request type. + * Must be zero( \ref PSA_IPC_CALL) or positive. + * \param[in] in_vec Array of input \ref psa_invec structures. + * \param[in] in_len Number of input \ref psa_invec structures. + * \param[in,out] out_vec Array of output \ref psa_outvec structures. + * \param[in] out_len Number of output \ref psa_outvec structures. + * + * \retval >=0 RoT Service-specific status value. + * \retval <0 RoT Service-specific error code. + * \retval PSA_ERROR_PROGRAMMER_ERROR The connection has been terminated by the + * RoT Service. The call is a PROGRAMMER ERROR if + * one or more of the following are true: + * \arg An invalid handle was passed. + * \arg The connection is already handling a request. + * \arg type < 0. + * \arg An invalid memory reference was provided. + * \arg in_len + out_len > PSA_MAX_IOVEC. + * \arg The message is unrecognized by the RoT + * Service or incorrectly formatted. + */ +psa_status_t psa_call(psa_handle_t handle, int32_t type, + const psa_invec *in_vec, + size_t in_len, + psa_outvec *out_vec, + size_t out_len); + +/** + * \brief Close a connection to an RoT Service. + * + * \param[in] handle A handle to an established connection, or the + * null handle. + * + * \retval void Success. + * \retval "PROGRAMMER ERROR" The call is a PROGRAMMER ERROR if one or more + * of the following are true: + * \arg An invalid handle was provided that is not + * the null handle. + * \arg The connection is currently handling a + * request. + */ +void psa_close(psa_handle_t handle); + +#ifdef __cplusplus +} +#endif + +#endif /* __PSA_CLIENT_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto.h new file mode 100644 index 0000000..e9d3c66 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto.h @@ -0,0 +1,3725 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto.h + * \brief Platform Security Architecture cryptography module + */ + +#ifndef PSA_CRYPTO_H +#define PSA_CRYPTO_H + +#include + +#ifdef __DOXYGEN_ONLY__ +/* This __DOXYGEN_ONLY__ block contains mock definitions for things that + * must be defined in the crypto_platform.h header. These mock definitions + * are present in this file as a convenience to generate pretty-printed + * documentation that includes those definitions. */ + +/** \defgroup platform Implementation-specific definitions + * @{ + */ + +/**@}*/ +#endif /* __DOXYGEN_ONLY__ */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* The file "crypto_types.h" declares types that encode errors, + * algorithms, key types, policies, etc. */ +#include "psa/crypto_types.h" + +/** \defgroup version API version + * @{ + */ + +/** + * The major version of this implementation of the PSA Crypto API + */ +#define PSA_CRYPTO_API_VERSION_MAJOR 1 + +/** + * The minor version of this implementation of the PSA Crypto API + */ +#define PSA_CRYPTO_API_VERSION_MINOR 0 + +/**@}*/ + +/* The file "crypto_values.h" declares macros to build and analyze values + * of integral types defined in "crypto_types.h". */ +#include "psa/crypto_values.h" + +/** \defgroup initialization Library initialization + * @{ + */ + +/** + * \brief Library initialization. + * + * Applications must call this function before calling any other + * function in this module. + * + * Applications may call this function more than once. Once a call + * succeeds, subsequent calls are guaranteed to succeed. + * + * If the application calls other functions before calling psa_crypto_init(), + * the behavior is undefined. Implementations are encouraged to either perform + * the operation as if the library had been initialized or to return + * #PSA_ERROR_BAD_STATE or some other applicable error. In particular, + * implementations should not return a success status if the lack of + * initialization may have security implications, for example due to improper + * seeding of the random number generator. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + */ +psa_status_t psa_crypto_init(void); + +/**@}*/ + +/** \addtogroup attributes + * @{ + */ + +/** \def PSA_KEY_ATTRIBUTES_INIT + * + * This macro returns a suitable initializer for a key attribute structure + * of type #psa_key_attributes_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_KEY_ATTRIBUTES_INIT {0} +#endif + +/** Return an initial value for a key attributes structure. + */ +static psa_key_attributes_t psa_key_attributes_init(void); + +/** Declare a key as persistent and set its key identifier. + * + * If the attribute structure currently declares the key as volatile (which + * is the default content of an attribute structure), this function sets + * the lifetime attribute to #PSA_KEY_LIFETIME_PERSISTENT. + * + * This function does not access storage, it merely stores the given + * value in the structure. + * The persistent key will be written to storage when the attribute + * structure is passed to a key creation function such as + * psa_import_key(), psa_generate_key(), + * psa_key_derivation_output_key() or psa_copy_key(). + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param key The persistent identifier for the key. + */ +static void psa_set_key_id(psa_key_attributes_t *attributes, + psa_key_id_t key); + +/** Set the location of a persistent key. + * + * To make a key persistent, you must give it a persistent key identifier + * with psa_set_key_id(). By default, a key that has a persistent identifier + * is stored in the default storage area identifier by + * #PSA_KEY_LIFETIME_PERSISTENT. Call this function to choose a storage + * area, or to explicitly declare the key as volatile. + * + * This function does not access storage, it merely stores the given + * value in the structure. + * The persistent key will be written to storage when the attribute + * structure is passed to a key creation function such as + * psa_import_key(), psa_generate_key(), + * psa_key_derivation_output_key() or psa_copy_key(). + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param lifetime The lifetime for the key. + * If this is #PSA_KEY_LIFETIME_VOLATILE, the + * key will be volatile, and the key identifier + * attribute is reset to 0. + */ +static void psa_set_key_lifetime(psa_key_attributes_t *attributes, + psa_key_lifetime_t lifetime); + +/** Retrieve the key identifier from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The persistent identifier stored in the attribute structure. + * This value is unspecified if the attribute structure declares + * the key as volatile. + */ +static psa_key_id_t psa_get_key_id(const psa_key_attributes_t *attributes); + +/** Retrieve the lifetime from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The lifetime value stored in the attribute structure. + */ +static psa_key_lifetime_t psa_get_key_lifetime( + const psa_key_attributes_t *attributes); + +/** Declare usage flags for a key. + * + * Usage flags are part of a key's usage policy. They encode what + * kind of operations are permitted on the key. For more details, + * refer to the documentation of the type #psa_key_usage_t. + * + * This function overwrites any usage flags + * previously set in \p attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param usage_flags The usage flags to write. + */ +static void psa_set_key_usage_flags(psa_key_attributes_t *attributes, + psa_key_usage_t usage_flags); + +/** Retrieve the usage flags from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The usage flags stored in the attribute structure. + */ +static psa_key_usage_t psa_get_key_usage_flags( + const psa_key_attributes_t *attributes); + +/** Declare the permitted algorithm policy for a key. + * + * The permitted algorithm policy of a key encodes which algorithm or + * algorithms are permitted to be used with this key. The following + * algorithm policies are supported: + * - 0 does not allow any cryptographic operation with the key. The key + * may be used for non-cryptographic actions such as exporting (if + * permitted by the usage flags). + * - An algorithm value permits this particular algorithm. + * - An algorithm wildcard built from #PSA_ALG_ANY_HASH allows the specified + * signature scheme with any hash algorithm. + * + * This function overwrites any algorithm policy + * previously set in \p attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param alg The permitted algorithm policy to write. + */ +static void psa_set_key_algorithm(psa_key_attributes_t *attributes, + psa_algorithm_t alg); + + +/** Retrieve the algorithm policy from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The algorithm stored in the attribute structure. + */ +static psa_algorithm_t psa_get_key_algorithm( + const psa_key_attributes_t *attributes); + +/** Declare the type of a key. + * + * This function overwrites any key type + * previously set in \p attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param type The key type to write. + * If this is 0, the key type in \p attributes + * becomes unspecified. + */ +static void psa_set_key_type(psa_key_attributes_t *attributes, + psa_key_type_t type); + + +/** Declare the size of a key. + * + * This function overwrites any key size previously set in \p attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate each of its arguments exactly once. + * + * \param[out] attributes The attribute structure to write to. + * \param bits The key size in bits. + * If this is 0, the key size in \p attributes + * becomes unspecified. Keys of size 0 are + * not supported. + */ +static void psa_set_key_bits(psa_key_attributes_t *attributes, + size_t bits); + +/** Retrieve the key type from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The key type stored in the attribute structure. + */ +static psa_key_type_t psa_get_key_type(const psa_key_attributes_t *attributes); + +/** Retrieve the key size from key attributes. + * + * This function may be declared as `static` (i.e. without external + * linkage). This function may be provided as a function-like macro, + * but in this case it must evaluate its argument exactly once. + * + * \param[in] attributes The key attribute structure to query. + * + * \return The key size stored in the attribute structure, in bits. + */ +static size_t psa_get_key_bits(const psa_key_attributes_t *attributes); + +/** Retrieve the attributes of a key. + * + * This function first resets the attribute structure as with + * psa_reset_key_attributes(). It then copies the attributes of + * the given key into the given attribute structure. + * + * \note This function may allocate memory or other resources. + * Once you have called this function on an attribute structure, + * you must call psa_reset_key_attributes() to free these resources. + * + * \param[in] key Identifier of the key to query. + * \param[in,out] attributes On success, the attributes of the key. + * On failure, equivalent to a + * freshly-initialized structure. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_get_key_attributes(psa_key_id_t key, + psa_key_attributes_t *attributes); + +/** Reset a key attribute structure to a freshly initialized state. + * + * You must initialize the attribute structure as described in the + * documentation of the type #psa_key_attributes_t before calling this + * function. Once the structure has been initialized, you may call this + * function at any time. + * + * This function frees any auxiliary resources that the structure + * may contain. + * + * \param[in,out] attributes The attribute structure to reset. + */ +void psa_reset_key_attributes(psa_key_attributes_t *attributes); + +/**@}*/ + +/** \defgroup key_management Key management + * @{ + */ + +/** Remove non-essential copies of key material from memory. + * + * If the key identifier designates a volatile key, this functions does not do + * anything and returns successfully. + * + * If the key identifier designates a persistent key, then this function will + * free all resources associated with the key in volatile memory. The key + * data in persistent storage is not affected and the key can still be used. + * + * \param key Identifier of the key to purge. + * + * \retval #PSA_SUCCESS + * The key material will have been removed from memory if it is not + * currently required. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not a valid key identifier. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_purge_key(psa_key_id_t key); + +/** Make a copy of a key. + * + * Copy key material from one location to another. + * + * This function is primarily useful to copy a key from one location + * to another, since it populates a key using the material from + * another key which may have a different lifetime. + * + * This function may be used to share a key with a different party, + * subject to implementation-defined restrictions on key sharing. + * + * The policy on the source key must have the usage flag + * #PSA_KEY_USAGE_COPY set. + * This flag is sufficient to permit the copy if the key has the lifetime + * #PSA_KEY_LIFETIME_VOLATILE or #PSA_KEY_LIFETIME_PERSISTENT. + * Some secure elements do not provide a way to copy a key without + * making it extractable from the secure element. If a key is located + * in such a secure element, then the key must have both usage flags + * #PSA_KEY_USAGE_COPY and #PSA_KEY_USAGE_EXPORT in order to make + * a copy of the key outside the secure element. + * + * The resulting key may only be used in a way that conforms to + * both the policy of the original key and the policy specified in + * the \p attributes parameter: + * - The usage flags on the resulting key are the bitwise-and of the + * usage flags on the source policy and the usage flags in \p attributes. + * - If both allow the same algorithm or wildcard-based + * algorithm policy, the resulting key has the same algorithm policy. + * - If either of the policies allows an algorithm and the other policy + * allows a wildcard-based algorithm policy that includes this algorithm, + * the resulting key allows the same algorithm. + * - If the policies do not allow any algorithm in common, this function + * fails with the status #PSA_ERROR_INVALID_ARGUMENT. + * + * The effect of this function on implementation-defined attributes is + * implementation-defined. + * + * \param source_key The key to copy. It must allow the usage + * #PSA_KEY_USAGE_COPY. If a private or secret key is + * being copied outside of a secure element it must + * also allow #PSA_KEY_USAGE_EXPORT. + * \param[in] attributes The attributes for the new key. + * They are used as follows: + * - The key type and size may be 0. If either is + * nonzero, it must match the corresponding + * attribute of the source key. + * - The key location (the lifetime and, for + * persistent keys, the key identifier) is + * used directly. + * - The policy constraints (usage flags and + * algorithm policy) are combined from + * the source key and \p attributes so that + * both sets of restrictions apply, as + * described in the documentation of this function. + * \param[out] target_key On success, an identifier for the newly created + * key. For persistent keys, this is the key + * identifier defined in \p attributes. + * \c 0 on failure. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \p source_key is invalid. + * \retval #PSA_ERROR_ALREADY_EXISTS + * This is an attempt to create a persistent key, and there is + * already a persistent key with the given identifier. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The lifetime or identifier in \p attributes are invalid. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The policy constraints on the source and specified in + * \p attributes are incompatible. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p attributes specifies a key type or key size + * which does not match the attributes of the source key. + * \retval #PSA_ERROR_NOT_PERMITTED + * The source key does not have the #PSA_KEY_USAGE_COPY usage flag. + * \retval #PSA_ERROR_NOT_PERMITTED + * The source key is not exportable and its lifetime does not + * allow copying it to the target's lifetime. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_INSUFFICIENT_STORAGE + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_copy_key(psa_key_id_t source_key, + const psa_key_attributes_t *attributes, + psa_key_id_t *target_key); + + +/** + * \brief Destroy a key. + * + * This function destroys a key from both volatile + * memory and, if applicable, non-volatile storage. Implementations shall + * make a best effort to ensure that that the key material cannot be recovered. + * + * This function also erases any metadata such as policies and frees + * resources associated with the key. + * + * If a key is currently in use in a multipart operation, then destroying the + * key will cause the multipart operation to fail. + * + * \param key Identifier of the key to erase. If this is \c 0, do nothing and + * return #PSA_SUCCESS. + * + * \retval #PSA_SUCCESS + * \p key was a valid identifier and the key material that it + * referred to has been erased. Alternatively, \p key is \c 0. + * \retval #PSA_ERROR_NOT_PERMITTED + * The key cannot be erased because it is + * read-only, either due to a policy or due to physical restrictions. + * \retval #PSA_ERROR_INVALID_HANDLE + * \p key is not a valid identifier nor \c 0. + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * There was an failure in communication with the cryptoprocessor. + * The key material may still be present in the cryptoprocessor. + * \retval #PSA_ERROR_STORAGE_FAILURE + * The storage is corrupted. Implementations shall make a best effort + * to erase key material even in this stage, however applications + * should be aware that it may be impossible to guarantee that the + * key material is not recoverable in such cases. + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * An unexpected condition which is not a storage corruption or + * a communication failure occurred. The cryptoprocessor may have + * been compromised. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_destroy_key(psa_key_id_t key); + +/**@}*/ + +/** \defgroup import_export Key import and export + * @{ + */ + +/** + * \brief Import a key in binary format. + * + * This function supports any output from psa_export_key(). Refer to the + * documentation of psa_export_public_key() for the format of public keys + * and to the documentation of psa_export_key() for the format for + * other key types. + * + * The key data determines the key size. The attributes may optionally + * specify a key size; in this case it must match the size determined + * from the key data. A key size of 0 in \p attributes indicates that + * the key size is solely determined by the key data. + * + * Implementations must reject an attempt to import a key of size 0. + * + * This specification supports a single format for each key type. + * Implementations may support other formats as long as the standard + * format is supported. Implementations that support other formats + * should ensure that the formats are clearly unambiguous so as to + * minimize the risk that an invalid input is accidentally interpreted + * according to a different format. + * + * \param[in] attributes The attributes for the new key. + * The key size is always determined from the + * \p data buffer. + * If the key size in \p attributes is nonzero, + * it must be equal to the size from \p data. + * \param[out] key On success, an identifier to the newly created key. + * For persistent keys, this is the key identifier + * defined in \p attributes. + * \c 0 on failure. + * \param[in] data Buffer containing the key data. The content of this + * buffer is interpreted according to the type declared + * in \p attributes. + * All implementations must support at least the format + * described in the documentation + * of psa_export_key() or psa_export_public_key() for + * the chosen type. Implementations may allow other + * formats, but should be conservative: implementations + * should err on the side of rejecting content if it + * may be erroneous (e.g. wrong type or truncated data). + * \param data_length Size of the \p data buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * If the key is persistent, the key material and the key's metadata + * have been saved to persistent storage. + * \retval #PSA_ERROR_ALREADY_EXISTS + * This is an attempt to create a persistent key, and there is + * already a persistent key with the given identifier. + * \retval #PSA_ERROR_NOT_SUPPORTED + * The key type or key size is not supported, either by the + * implementation in general or in this particular persistent location. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The key attributes, as a whole, are invalid. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The key data is not correctly formatted. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The size in \p attributes is nonzero and does not match the size + * of the key data. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_INSUFFICIENT_STORAGE + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_import_key(const psa_key_attributes_t *attributes, + const uint8_t *data, + size_t data_length, + psa_key_id_t *key); + + + +/** + * \brief Export a key in binary format. + * + * The output of this function can be passed to psa_import_key() to + * create an equivalent object. + * + * If the implementation of psa_import_key() supports other formats + * beyond the format specified here, the output from psa_export_key() + * must use the representation specified here, not the original + * representation. + * + * For standard key types, the output format is as follows: + * + * - For symmetric keys (including MAC keys), the format is the + * raw bytes of the key. + * - For DES, the key data consists of 8 bytes. The parity bits must be + * correct. + * - For Triple-DES, the format is the concatenation of the + * two or three DES keys. + * - For RSA key pairs (#PSA_KEY_TYPE_RSA_KEY_PAIR), the format + * is the non-encrypted DER encoding of the representation defined by + * PKCS\#1 (RFC 8017) as `RSAPrivateKey`, version 0. + * ``` + * RSAPrivateKey ::= SEQUENCE { + * version INTEGER, -- must be 0 + * modulus INTEGER, -- n + * publicExponent INTEGER, -- e + * privateExponent INTEGER, -- d + * prime1 INTEGER, -- p + * prime2 INTEGER, -- q + * exponent1 INTEGER, -- d mod (p-1) + * exponent2 INTEGER, -- d mod (q-1) + * coefficient INTEGER, -- (inverse of q) mod p + * } + * ``` + * - For elliptic curve key pairs (key types for which + * #PSA_KEY_TYPE_IS_ECC_KEY_PAIR is true), the format is + * a representation of the private value as a `ceiling(m/8)`-byte string + * where `m` is the bit size associated with the curve, i.e. the bit size + * of the order of the curve's coordinate field. This byte string is + * in little-endian order for Montgomery curves (curve types + * `PSA_ECC_FAMILY_CURVEXXX`), and in big-endian order for Weierstrass + * curves (curve types `PSA_ECC_FAMILY_SECTXXX`, `PSA_ECC_FAMILY_SECPXXX` + * and `PSA_ECC_FAMILY_BRAINPOOL_PXXX`). + * For Weierstrass curves, this is the content of the `privateKey` field of + * the `ECPrivateKey` format defined by RFC 5915. For Montgomery curves, + * the format is defined by RFC 7748, and output is masked according to §5. + * - For Diffie-Hellman key exchange key pairs (key types for which + * #PSA_KEY_TYPE_IS_DH_KEY_PAIR is true), the + * format is the representation of the private key `x` as a big-endian byte + * string. The length of the byte string is the private key size in bytes + * (leading zeroes are not stripped). + * - For public keys (key types for which #PSA_KEY_TYPE_IS_PUBLIC_KEY is + * true), the format is the same as for psa_export_public_key(). + * + * The policy on the key must have the usage flag #PSA_KEY_USAGE_EXPORT set. + * + * \param key Identifier of the key to export. It must allow the + * usage #PSA_KEY_USAGE_EXPORT, unless it is a public + * key. + * \param[out] data Buffer where the key data is to be written. + * \param data_size Size of the \p data buffer in bytes. + * \param[out] data_length On success, the number of bytes + * that make up the key data. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * The key does not have the #PSA_KEY_USAGE_EXPORT flag. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p data buffer is too small. You can determine a + * sufficient buffer size by calling + * #PSA_KEY_EXPORT_MAX_SIZE(\c type, \c bits) + * where \c type is the key type + * and \c bits is the key size in bits. + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_export_key(psa_key_id_t key, + uint8_t *data, + size_t data_size, + size_t *data_length); + +/** + * \brief Export a public key or the public part of a key pair in binary format. + * + * The output of this function can be passed to psa_import_key() to + * create an object that is equivalent to the public key. + * + * This specification supports a single format for each key type. + * Implementations may support other formats as long as the standard + * format is supported. Implementations that support other formats + * should ensure that the formats are clearly unambiguous so as to + * minimize the risk that an invalid input is accidentally interpreted + * according to a different format. + * + * For standard key types, the output format is as follows: + * - For RSA public keys (#PSA_KEY_TYPE_RSA_PUBLIC_KEY), the DER encoding of + * the representation defined by RFC 3279 §2.3.1 as `RSAPublicKey`. + * ``` + * RSAPublicKey ::= SEQUENCE { + * modulus INTEGER, -- n + * publicExponent INTEGER } -- e + * ``` + * - For elliptic curve public keys (key types for which + * #PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY is true), the format is the uncompressed + * representation defined by SEC1 §2.3.3 as the content of an ECPoint. + * Let `m` be the bit size associated with the curve, i.e. the bit size of + * `q` for a curve over `F_q`. The representation consists of: + * - The byte 0x04; + * - `x_P` as a `ceiling(m/8)`-byte string, big-endian; + * - `y_P` as a `ceiling(m/8)`-byte string, big-endian. + * - For Diffie-Hellman key exchange public keys (key types for which + * #PSA_KEY_TYPE_IS_DH_PUBLIC_KEY is true), + * the format is the representation of the public key `y = g^x mod p` as a + * big-endian byte string. The length of the byte string is the length of the + * base prime `p` in bytes. + * + * Exporting a public key object or the public part of a key pair is + * always permitted, regardless of the key's usage flags. + * + * \param key Identifier of the key to export. + * \param[out] data Buffer where the key data is to be written. + * \param data_size Size of the \p data buffer in bytes. + * \param[out] data_length On success, the number of bytes + * that make up the key data. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The key is neither a public key nor a key pair. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p data buffer is too small. You can determine a + * sufficient buffer size by calling + * #PSA_KEY_EXPORT_MAX_SIZE(#PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(\c type), \c bits) + * where \c type is the key type + * and \c bits is the key size in bits. + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_export_public_key(psa_key_id_t key, + uint8_t *data, + size_t data_size, + size_t *data_length); + + + +/**@}*/ + +/** \defgroup hash Message digests + * @{ + */ + +/** Calculate the hash (digest) of a message. + * + * \note To verify the hash of a message against an + * expected value, use psa_hash_compare() instead. + * + * \param alg The hash algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_HASH(\p alg) is true). + * \param[in] input Buffer containing the message to hash. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] hash Buffer where the hash is to be written. + * \param hash_size Size of the \p hash buffer in bytes. + * \param[out] hash_length On success, the number of bytes + * that make up the hash value. This is always + * #PSA_HASH_SIZE(\p alg). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a hash algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \p hash_size is too small + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_compute(psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *hash, + size_t hash_size, + size_t *hash_length); + +/** Calculate the hash (digest) of a message and compare it with a + * reference value. + * + * \param alg The hash algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_HASH(\p alg) is true). + * \param[in] input Buffer containing the message to hash. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] hash Buffer containing the expected hash value. + * \param hash_length Size of the \p hash buffer in bytes. + * + * \retval #PSA_SUCCESS + * The expected hash is identical to the actual hash of the input. + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The hash of the message was calculated successfully, but it + * differs from the expected hash. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a hash algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p input_length or \p hash_length do not match the hash size for \p alg + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_compare(psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *hash, + size_t hash_length); + +/** The type of the state data structure for multipart hash operations. + * + * Before calling any function on a hash operation object, the application must + * initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_hash_operation_t operation; + * memset(&operation, 0, sizeof(operation)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_hash_operation_t operation = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_HASH_OPERATION_INIT, + * for example: + * \code + * psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT; + * \endcode + * - Assign the result of the function psa_hash_operation_init() + * to the structure, for example: + * \code + * psa_hash_operation_t operation; + * operation = psa_hash_operation_init(); + * \endcode + * + * This is an implementation-defined \c struct. Applications should not + * make any assumptions about the content of this structure except + * as directed by the documentation of a specific implementation. */ +typedef struct psa_hash_operation_s psa_hash_operation_t; + +/** \def PSA_HASH_OPERATION_INIT + * + * This macro returns a suitable initializer for a hash operation object + * of type #psa_hash_operation_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_HASH_OPERATION_INIT {0} +#endif + +/** Return an initial value for a hash operation object. + */ +static psa_hash_operation_t psa_hash_operation_init(void); + +/** Set up a multipart hash operation. + * + * The sequence of operations to calculate a hash (message digest) + * is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_hash_operation_t, e.g. #PSA_HASH_OPERATION_INIT. + * -# Call psa_hash_setup() to specify the algorithm. + * -# Call psa_hash_update() zero, one or more times, passing a fragment + * of the message each time. The hash that is calculated is the hash + * of the concatenation of these messages in order. + * -# To calculate the hash, call psa_hash_finish(). + * To compare the hash with an expected value, call psa_hash_verify(). + * + * If an error occurs at any step after a call to psa_hash_setup(), the + * operation will need to be reset by a call to psa_hash_abort(). The + * application may call psa_hash_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_hash_setup(), the application must + * eventually terminate the operation. The following events terminate an + * operation: + * - A successful call to psa_hash_finish() or psa_hash_verify(). + * - A call to psa_hash_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_hash_operation_t and not yet in use. + * \param alg The hash algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_HASH(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not a supported hash algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p alg is not a hash algorithm. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_setup(psa_hash_operation_t *operation, + psa_algorithm_t alg); + +/** Add a message fragment to a multipart hash operation. + * + * The application must call psa_hash_setup() before calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_hash_abort(). + * + * \param[in,out] operation Active hash operation. + * \param[in] input Buffer containing the message fragment to hash. + * \param input_length Size of the \p input buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it muct be active). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_update(psa_hash_operation_t *operation, + const uint8_t *input, + size_t input_length); + +/** Finish the calculation of the hash of a message. + * + * The application must call psa_hash_setup() before calling this function. + * This function calculates the hash of the message formed by concatenating + * the inputs passed to preceding calls to psa_hash_update(). + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_hash_abort(). + * + * \warning Applications should not call this function if they expect + * a specific value for the hash. Call psa_hash_verify() instead. + * Beware that comparing integrity or authenticity data such as + * hash values with a function such as \c memcmp is risky + * because the time taken by the comparison may leak information + * about the hashed data which could allow an attacker to guess + * a valid hash and thereby bypass security controls. + * + * \param[in,out] operation Active hash operation. + * \param[out] hash Buffer where the hash is to be written. + * \param hash_size Size of the \p hash buffer in bytes. + * \param[out] hash_length On success, the number of bytes + * that make up the hash value. This is always + * #PSA_HASH_SIZE(\c alg) where \c alg is the + * hash algorithm that is calculated. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p hash buffer is too small. You can determine a + * sufficient buffer size by calling #PSA_HASH_SIZE(\c alg) + * where \c alg is the hash algorithm that is calculated. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_finish(psa_hash_operation_t *operation, + uint8_t *hash, + size_t hash_size, + size_t *hash_length); + +/** Finish the calculation of the hash of a message and compare it with + * an expected value. + * + * The application must call psa_hash_setup() before calling this function. + * This function calculates the hash of the message formed by concatenating + * the inputs passed to preceding calls to psa_hash_update(). It then + * compares the calculated hash with the expected hash passed as a + * parameter to this function. + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_hash_abort(). + * + * \note Implementations shall make the best effort to ensure that the + * comparison between the actual hash and the expected hash is performed + * in constant time. + * + * \param[in,out] operation Active hash operation. + * \param[in] hash Buffer containing the expected hash value. + * \param hash_length Size of the \p hash buffer in bytes. + * + * \retval #PSA_SUCCESS + * The expected hash is identical to the actual hash of the message. + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The hash of the message was calculated successfully, but it + * differs from the expected hash. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_verify(psa_hash_operation_t *operation, + const uint8_t *hash, + size_t hash_length); + +/** Abort a hash operation. + * + * Aborting an operation frees all associated resources except for the + * \p operation structure itself. Once aborted, the operation object + * can be reused for another operation by calling + * psa_hash_setup() again. + * + * You may call this function any time after the operation object has + * been initialized by one of the methods described in #psa_hash_operation_t. + * + * In particular, calling psa_hash_abort() after the operation has been + * terminated by a call to psa_hash_abort(), psa_hash_finish() or + * psa_hash_verify() is safe and has no effect. + * + * \param[in,out] operation Initialized hash operation. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_abort(psa_hash_operation_t *operation); + +/** Clone a hash operation. + * + * This function copies the state of an ongoing hash operation to + * a new operation object. In other words, this function is equivalent + * to calling psa_hash_setup() on \p target_operation with the same + * algorithm that \p source_operation was set up for, then + * psa_hash_update() on \p target_operation with the same input that + * that was passed to \p source_operation. After this function returns, the + * two objects are independent, i.e. subsequent calls involving one of + * the objects do not affect the other object. + * + * \param[in] source_operation The active hash operation to clone. + * \param[in,out] target_operation The operation object to set up. + * It must be initialized but not active. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_BAD_STATE + * The \p source_operation state is not valid (it must be active). + * \retval #PSA_ERROR_BAD_STATE + * The \p target_operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_hash_clone(const psa_hash_operation_t *source_operation, + psa_hash_operation_t *target_operation); + +/**@}*/ + +/** \defgroup MAC Message authentication codes + * @{ + */ + +/** Calculate the MAC (message authentication code) of a message. + * + * \note To verify the MAC of a message against an + * expected value, use psa_mac_verify() instead. + * Beware that comparing integrity or authenticity data such as + * MAC values with a function such as \c memcmp is risky + * because the time taken by the comparison may leak information + * about the MAC value which could allow an attacker to guess + * a valid MAC and thereby bypass security controls. + * + * \param key Identifier of the key to use for the operation. It + * must allow the usage PSA_KEY_USAGE_SIGN_MESSAGE. + * \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_MAC(\p alg) is true). + * \param[in] input Buffer containing the input message. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] mac Buffer where the MAC value is to be written. + * \param mac_size Size of the \p mac buffer in bytes. + * \param[out] mac_length On success, the number of bytes + * that make up the MAC value. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a MAC algorithm. + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \p mac_size is too small + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * The key could not be retrieved from storage. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_compute(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *mac, + size_t mac_size, + size_t *mac_length); + +/** Calculate the MAC of a message and compare it with a reference value. + * + * \param key Identifier of the key to use for the operation. It + * must allow the usage PSA_KEY_USAGE_VERIFY_MESSAGE. + * \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_MAC(\p alg) is true). + * \param[in] input Buffer containing the input message. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] mac Buffer containing the expected MAC value. + * \param mac_length Size of the \p mac buffer in bytes. + * + * \retval #PSA_SUCCESS + * The expected MAC is identical to the actual MAC of the input. + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The MAC of the message was calculated successfully, but it + * differs from the expected value. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a MAC algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * The key could not be retrieved from storage. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_verify(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *mac, + size_t mac_length); + +/** The type of the state data structure for multipart MAC operations. + * + * Before calling any function on a MAC operation object, the application must + * initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_mac_operation_t operation; + * memset(&operation, 0, sizeof(operation)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_mac_operation_t operation = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_MAC_OPERATION_INIT, + * for example: + * \code + * psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT; + * \endcode + * - Assign the result of the function psa_mac_operation_init() + * to the structure, for example: + * \code + * psa_mac_operation_t operation; + * operation = psa_mac_operation_init(); + * \endcode + * + * This is an implementation-defined \c struct. Applications should not + * make any assumptions about the content of this structure except + * as directed by the documentation of a specific implementation. */ +typedef struct psa_mac_operation_s psa_mac_operation_t; + +/** \def PSA_MAC_OPERATION_INIT + * + * This macro returns a suitable initializer for a MAC operation object of type + * #psa_mac_operation_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_MAC_OPERATION_INIT {0} +#endif + +/** Return an initial value for a MAC operation object. + */ +static psa_mac_operation_t psa_mac_operation_init(void); + +/** Set up a multipart MAC calculation operation. + * + * This function sets up the calculation of the MAC + * (message authentication code) of a byte string. + * To verify the MAC of a message against an + * expected value, use psa_mac_verify_setup() instead. + * + * The sequence of operations to calculate a MAC is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_mac_operation_t, e.g. #PSA_MAC_OPERATION_INIT. + * -# Call psa_mac_sign_setup() to specify the algorithm and key. + * -# Call psa_mac_update() zero, one or more times, passing a fragment + * of the message each time. The MAC that is calculated is the MAC + * of the concatenation of these messages in order. + * -# At the end of the message, call psa_mac_sign_finish() to finish + * calculating the MAC value and retrieve it. + * + * If an error occurs at any step after a call to psa_mac_sign_setup(), the + * operation will need to be reset by a call to psa_mac_abort(). The + * application may call psa_mac_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_mac_sign_setup(), the application must + * eventually terminate the operation through one of the following methods: + * - A successful call to psa_mac_sign_finish(). + * - A call to psa_mac_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_mac_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. It + * must remain valid until the operation terminates. + * It must allow the usage PSA_KEY_USAGE_SIGN_MESSAGE. + * \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_MAC(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a MAC algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * The key could not be retrieved from storage. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_sign_setup(psa_mac_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Set up a multipart MAC verification operation. + * + * This function sets up the verification of the MAC + * (message authentication code) of a byte string against an expected value. + * + * The sequence of operations to verify a MAC is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_mac_operation_t, e.g. #PSA_MAC_OPERATION_INIT. + * -# Call psa_mac_verify_setup() to specify the algorithm and key. + * -# Call psa_mac_update() zero, one or more times, passing a fragment + * of the message each time. The MAC that is calculated is the MAC + * of the concatenation of these messages in order. + * -# At the end of the message, call psa_mac_verify_finish() to finish + * calculating the actual MAC of the message and verify it against + * the expected value. + * + * If an error occurs at any step after a call to psa_mac_verify_setup(), the + * operation will need to be reset by a call to psa_mac_abort(). The + * application may call psa_mac_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_mac_verify_setup(), the application must + * eventually terminate the operation through one of the following methods: + * - A successful call to psa_mac_verify_finish(). + * - A call to psa_mac_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_mac_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. It + * must remain valid until the operation terminates. + * It must allow the usage + * PSA_KEY_USAGE_VERIFY_MESSAGE. + * \param alg The MAC algorithm to compute (\c PSA_ALG_XXX value + * such that #PSA_ALG_IS_MAC(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c key is not compatible with \c alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \c alg is not supported or is not a MAC algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * The key could not be retrieved from storage + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_verify_setup(psa_mac_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Add a message fragment to a multipart MAC operation. + * + * The application must call psa_mac_sign_setup() or psa_mac_verify_setup() + * before calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_mac_abort(). + * + * \param[in,out] operation Active MAC operation. + * \param[in] input Buffer containing the message fragment to add to + * the MAC calculation. + * \param input_length Size of the \p input buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_update(psa_mac_operation_t *operation, + const uint8_t *input, + size_t input_length); + +/** Finish the calculation of the MAC of a message. + * + * The application must call psa_mac_sign_setup() before calling this function. + * This function calculates the MAC of the message formed by concatenating + * the inputs passed to preceding calls to psa_mac_update(). + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_mac_abort(). + * + * \warning Applications should not call this function if they expect + * a specific value for the MAC. Call psa_mac_verify_finish() instead. + * Beware that comparing integrity or authenticity data such as + * MAC values with a function such as \c memcmp is risky + * because the time taken by the comparison may leak information + * about the MAC value which could allow an attacker to guess + * a valid MAC and thereby bypass security controls. + * + * \param[in,out] operation Active MAC operation. + * \param[out] mac Buffer where the MAC value is to be written. + * \param mac_size Size of the \p mac buffer in bytes. + * \param[out] mac_length On success, the number of bytes + * that make up the MAC value. This is always + * #PSA_MAC_FINAL_SIZE(\c key_type, \c key_bits, \c alg) + * where \c key_type and \c key_bits are the type and + * bit-size respectively of the key and \c alg is the + * MAC algorithm that is calculated. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active mac sign + * operation). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p mac buffer is too small. You can determine a + * sufficient buffer size by calling PSA_MAC_FINAL_SIZE(). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_sign_finish(psa_mac_operation_t *operation, + uint8_t *mac, + size_t mac_size, + size_t *mac_length); + +/** Finish the calculation of the MAC of a message and compare it with + * an expected value. + * + * The application must call psa_mac_verify_setup() before calling this function. + * This function calculates the MAC of the message formed by concatenating + * the inputs passed to preceding calls to psa_mac_update(). It then + * compares the calculated MAC with the expected MAC passed as a + * parameter to this function. + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_mac_abort(). + * + * \note Implementations shall make the best effort to ensure that the + * comparison between the actual MAC and the expected MAC is performed + * in constant time. + * + * \param[in,out] operation Active MAC operation. + * \param[in] mac Buffer containing the expected MAC value. + * \param mac_length Size of the \p mac buffer in bytes. + * + * \retval #PSA_SUCCESS + * The expected MAC is identical to the actual MAC of the message. + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The MAC of the message was calculated successfully, but it + * differs from the expected MAC. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active mac verify + * operation). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_verify_finish(psa_mac_operation_t *operation, + const uint8_t *mac, + size_t mac_length); + +/** Abort a MAC operation. + * + * Aborting an operation frees all associated resources except for the + * \p operation structure itself. Once aborted, the operation object + * can be reused for another operation by calling + * psa_mac_sign_setup() or psa_mac_verify_setup() again. + * + * You may call this function any time after the operation object has + * been initialized by one of the methods described in #psa_mac_operation_t. + * + * In particular, calling psa_mac_abort() after the operation has been + * terminated by a call to psa_mac_abort(), psa_mac_sign_finish() or + * psa_mac_verify_finish() is safe and has no effect. + * + * \param[in,out] operation Initialized MAC operation. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_mac_abort(psa_mac_operation_t *operation); + +/**@}*/ + +/** \defgroup cipher Symmetric ciphers + * @{ + */ + +/** Encrypt a message using a symmetric cipher. + * + * This function encrypts a message with a random IV (initialization + * vector). Use the multipart operation interface with a + * #psa_cipher_operation_t object to provide other forms of IV. + * + * \param key Identifier of the key to use for the operation. + * It must allow the usage #PSA_KEY_USAGE_ENCRYPT. + * \param alg The cipher algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_CIPHER(\p alg) is true). + * \param[in] input Buffer containing the message to encrypt. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] output Buffer where the output is to be written. + * The output contains the IV followed by + * the ciphertext proper. + * \param output_size Size of the \p output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a cipher algorithm. + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** Decrypt a message using a symmetric cipher. + * + * This function decrypts a message encrypted with a symmetric cipher. + * + * \param key Identifier of the key to use for the operation. + * It must remain valid until the operation + * terminates. It must allow the usage + * #PSA_KEY_USAGE_DECRYPT. + * \param alg The cipher algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_CIPHER(\p alg) is true). + * \param[in] input Buffer containing the message to decrypt. + * This consists of the IV followed by the + * ciphertext proper. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] output Buffer where the plaintext is to be written. + * \param output_size Size of the \p output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a cipher algorithm. + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** The type of the state data structure for multipart cipher operations. + * + * Before calling any function on a cipher operation object, the application + * must initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_cipher_operation_t operation; + * memset(&operation, 0, sizeof(operation)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_cipher_operation_t operation = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_CIPHER_OPERATION_INIT, + * for example: + * \code + * psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; + * \endcode + * - Assign the result of the function psa_cipher_operation_init() + * to the structure, for example: + * \code + * psa_cipher_operation_t operation; + * operation = psa_cipher_operation_init(); + * \endcode + * + * This is an implementation-defined \c struct. Applications should not + * make any assumptions about the content of this structure except + * as directed by the documentation of a specific implementation. */ +typedef struct psa_cipher_operation_s psa_cipher_operation_t; + +/** \def PSA_CIPHER_OPERATION_INIT + * + * This macro returns a suitable initializer for a cipher operation object of + * type #psa_cipher_operation_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_CIPHER_OPERATION_INIT {0} +#endif + +/** Return an initial value for a cipher operation object. + */ +static psa_cipher_operation_t psa_cipher_operation_init(void); + +/** Set the key for a multipart symmetric encryption operation. + * + * The sequence of operations to encrypt a message with a symmetric cipher + * is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_cipher_operation_t, e.g. + * #PSA_CIPHER_OPERATION_INIT. + * -# Call psa_cipher_encrypt_setup() to specify the algorithm and key. + * -# Call either psa_cipher_generate_iv() or psa_cipher_set_iv() to + * generate or set the IV (initialization vector). You should use + * psa_cipher_generate_iv() unless the protocol you are implementing + * requires a specific IV value. + * -# Call psa_cipher_update() zero, one or more times, passing a fragment + * of the message each time. + * -# Call psa_cipher_finish(). + * + * If an error occurs at any step after a call to psa_cipher_encrypt_setup(), + * the operation will need to be reset by a call to psa_cipher_abort(). The + * application may call psa_cipher_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_cipher_encrypt_setup(), the application must + * eventually terminate the operation. The following events terminate an + * operation: + * - A successful call to psa_cipher_finish(). + * - A call to psa_cipher_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_cipher_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. + * It must remain valid until the operation + * terminates. It must allow the usage + * #PSA_KEY_USAGE_ENCRYPT. + * \param alg The cipher algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_CIPHER(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a cipher algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_encrypt_setup(psa_cipher_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Set the key for a multipart symmetric decryption operation. + * + * The sequence of operations to decrypt a message with a symmetric cipher + * is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_cipher_operation_t, e.g. + * #PSA_CIPHER_OPERATION_INIT. + * -# Call psa_cipher_decrypt_setup() to specify the algorithm and key. + * -# Call psa_cipher_set_iv() with the IV (initialization vector) for the + * decryption. If the IV is prepended to the ciphertext, you can call + * psa_cipher_update() on a buffer containing the IV followed by the + * beginning of the message. + * -# Call psa_cipher_update() zero, one or more times, passing a fragment + * of the message each time. + * -# Call psa_cipher_finish(). + * + * If an error occurs at any step after a call to psa_cipher_decrypt_setup(), + * the operation will need to be reset by a call to psa_cipher_abort(). The + * application may call psa_cipher_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_cipher_decrypt_setup(), the application must + * eventually terminate the operation. The following events terminate an + * operation: + * - A successful call to psa_cipher_finish(). + * - A call to psa_cipher_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_cipher_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. + * It must remain valid until the operation + * terminates. It must allow the usage + * #PSA_KEY_USAGE_DECRYPT. + * \param alg The cipher algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_CIPHER(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not a cipher algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Generate an IV for a symmetric encryption operation. + * + * This function generates a random IV (initialization vector), nonce + * or initial counter value for the encryption operation as appropriate + * for the chosen algorithm, key type and key size. + * + * The application must call psa_cipher_encrypt_setup() before + * calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_cipher_abort(). + * + * \param[in,out] operation Active cipher operation. + * \param[out] iv Buffer where the generated IV is to be written. + * \param iv_size Size of the \p iv buffer in bytes. + * \param[out] iv_length On success, the number of bytes of the + * generated IV. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, with no IV set). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p iv buffer is too small. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_generate_iv(psa_cipher_operation_t *operation, + uint8_t *iv, + size_t iv_size, + size_t *iv_length); + +/** Set the IV for a symmetric encryption or decryption operation. + * + * This function sets the IV (initialization vector), nonce + * or initial counter value for the encryption or decryption operation. + * + * The application must call psa_cipher_encrypt_setup() before + * calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_cipher_abort(). + * + * \note When encrypting, applications should use psa_cipher_generate_iv() + * instead of this function, unless implementing a protocol that requires + * a non-random IV. + * + * \param[in,out] operation Active cipher operation. + * \param[in] iv Buffer containing the IV to use. + * \param iv_length Size of the IV in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active cipher + * encrypt operation, with no IV set). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The size of \p iv is not acceptable for the chosen algorithm, + * or the chosen algorithm does not use an IV. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_set_iv(psa_cipher_operation_t *operation, + const uint8_t *iv, + size_t iv_length); + +/** Encrypt or decrypt a message fragment in an active cipher operation. + * + * Before calling this function, you must: + * 1. Call either psa_cipher_encrypt_setup() or psa_cipher_decrypt_setup(). + * The choice of setup function determines whether this function + * encrypts or decrypts its input. + * 2. If the algorithm requires an IV, call psa_cipher_generate_iv() + * (recommended when encrypting) or psa_cipher_set_iv(). + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_cipher_abort(). + * + * \param[in,out] operation Active cipher operation. + * \param[in] input Buffer containing the message fragment to + * encrypt or decrypt. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] output Buffer where the output is to be written. + * \param output_size Size of the \p output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, with an IV set + * if required for the algorithm). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p output buffer is too small. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_update(psa_cipher_operation_t *operation, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** Finish encrypting or decrypting a message in a cipher operation. + * + * The application must call psa_cipher_encrypt_setup() or + * psa_cipher_decrypt_setup() before calling this function. The choice + * of setup function determines whether this function encrypts or + * decrypts its input. + * + * This function finishes the encryption or decryption of the message + * formed by concatenating the inputs passed to preceding calls to + * psa_cipher_update(). + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_cipher_abort(). + * + * \param[in,out] operation Active cipher operation. + * \param[out] output Buffer where the output is to be written. + * \param output_size Size of the \p output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total input size passed to this operation is not valid for + * this particular algorithm. For example, the algorithm is a based + * on block cipher and requires a whole number of blocks, but the + * total input size is not a multiple of the block size. + * \retval #PSA_ERROR_INVALID_PADDING + * This is a decryption operation for an algorithm that includes + * padding, and the ciphertext does not contain valid padding. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, with an IV set + * if required for the algorithm). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p output buffer is too small. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** Abort a cipher operation. + * + * Aborting an operation frees all associated resources except for the + * \p operation structure itself. Once aborted, the operation object + * can be reused for another operation by calling + * psa_cipher_encrypt_setup() or psa_cipher_decrypt_setup() again. + * + * You may call this function any time after the operation object has + * been initialized as described in #psa_cipher_operation_t. + * + * In particular, calling psa_cipher_abort() after the operation has been + * terminated by a call to psa_cipher_abort() or psa_cipher_finish() + * is safe and has no effect. + * + * \param[in,out] operation Initialized cipher operation. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation); + +/**@}*/ + +/** \defgroup aead Authenticated encryption with associated data (AEAD) + * @{ + */ + +/** Process an authenticated encryption operation. + * + * \param key Identifier of the key to use for the + * operation. It must allow the usage + * #PSA_KEY_USAGE_ENCRYPT. + * \param alg The AEAD algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * \param[in] nonce Nonce or IV to use. + * \param nonce_length Size of the \p nonce buffer in bytes. + * \param[in] additional_data Additional data that will be authenticated + * but not encrypted. + * \param additional_data_length Size of \p additional_data in bytes. + * \param[in] plaintext Data that will be authenticated and + * encrypted. + * \param plaintext_length Size of \p plaintext in bytes. + * \param[out] ciphertext Output buffer for the authenticated and + * encrypted data. The additional data is not + * part of this output. For algorithms where the + * encrypted data and the authentication tag + * are defined as separate outputs, the + * authentication tag is appended to the + * encrypted data. + * \param ciphertext_size Size of the \p ciphertext buffer in bytes. + * This must be at least + * #PSA_AEAD_ENCRYPT_OUTPUT_SIZE(\p alg, + * \p plaintext_length). + * \param[out] ciphertext_length On success, the size of the output + * in the \p ciphertext buffer. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not an AEAD algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \p ciphertext_size is too small + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *nonce, + size_t nonce_length, + const uint8_t *additional_data, + size_t additional_data_length, + const uint8_t *plaintext, + size_t plaintext_length, + uint8_t *ciphertext, + size_t ciphertext_size, + size_t *ciphertext_length); + +/** Process an authenticated decryption operation. + * + * \param key Identifier of the key to use for the + * operation. It must allow the usage + * #PSA_KEY_USAGE_DECRYPT. + * \param alg The AEAD algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * \param[in] nonce Nonce or IV to use. + * \param nonce_length Size of the \p nonce buffer in bytes. + * \param[in] additional_data Additional data that has been authenticated + * but not encrypted. + * \param additional_data_length Size of \p additional_data in bytes. + * \param[in] ciphertext Data that has been authenticated and + * encrypted. For algorithms where the + * encrypted data and the authentication tag + * are defined as separate inputs, the buffer + * must contain the encrypted data followed + * by the authentication tag. + * \param ciphertext_length Size of \p ciphertext in bytes. + * \param[out] plaintext Output buffer for the decrypted data. + * \param plaintext_size Size of the \p plaintext buffer in bytes. + * This must be at least + * #PSA_AEAD_DECRYPT_OUTPUT_SIZE(\p alg, + * \p ciphertext_length). + * \param[out] plaintext_length On success, the size of the output + * in the \p plaintext buffer. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The ciphertext is not authentic. + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not an AEAD algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \p plaintext_size or \p nonce_length is too small + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *nonce, + size_t nonce_length, + const uint8_t *additional_data, + size_t additional_data_length, + const uint8_t *ciphertext, + size_t ciphertext_length, + uint8_t *plaintext, + size_t plaintext_size, + size_t *plaintext_length); + +/** The type of the state data structure for multipart AEAD operations. + * + * Before calling any function on an AEAD operation object, the application + * must initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_aead_operation_t operation; + * memset(&operation, 0, sizeof(operation)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_aead_operation_t operation = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_AEAD_OPERATION_INIT, + * for example: + * \code + * psa_aead_operation_t operation = PSA_AEAD_OPERATION_INIT; + * \endcode + * - Assign the result of the function psa_aead_operation_init() + * to the structure, for example: + * \code + * psa_aead_operation_t operation; + * operation = psa_aead_operation_init(); + * \endcode + * + * This is an implementation-defined \c struct. Applications should not + * make any assumptions about the content of this structure except + * as directed by the documentation of a specific implementation. */ +typedef struct psa_aead_operation_s psa_aead_operation_t; + +/** \def PSA_AEAD_OPERATION_INIT + * + * This macro returns a suitable initializer for an AEAD operation object of + * type #psa_aead_operation_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_AEAD_OPERATION_INIT {0} +#endif + +/** Return an initial value for an AEAD operation object. + */ +static psa_aead_operation_t psa_aead_operation_init(void); + +/** Set the key for a multipart authenticated encryption operation. + * + * The sequence of operations to encrypt a message with authentication + * is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_aead_operation_t, e.g. + * #PSA_AEAD_OPERATION_INIT. + * -# Call psa_aead_encrypt_setup() to specify the algorithm and key. + * -# If needed, call psa_aead_set_lengths() to specify the length of the + * inputs to the subsequent calls to psa_aead_update_ad() and + * psa_aead_update(). See the documentation of psa_aead_set_lengths() + * for details. + * -# Call either psa_aead_generate_nonce() or psa_aead_set_nonce() to + * generate or set the nonce. You should use + * psa_aead_generate_nonce() unless the protocol you are implementing + * requires a specific nonce value. + * -# Call psa_aead_update_ad() zero, one or more times, passing a fragment + * of the non-encrypted additional authenticated data each time. + * -# Call psa_aead_update() zero, one or more times, passing a fragment + * of the message to encrypt each time. + * -# Call psa_aead_finish(). + * + * If an error occurs at any step after a call to psa_aead_encrypt_setup(), + * the operation will need to be reset by a call to psa_aead_abort(). The + * application may call psa_aead_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_aead_encrypt_setup(), the application must + * eventually terminate the operation. The following events terminate an + * operation: + * - A successful call to psa_aead_finish(). + * - A call to psa_aead_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_aead_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. + * It must remain valid until the operation + * terminates. It must allow the usage + * #PSA_KEY_USAGE_ENCRYPT. + * \param alg The AEAD algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not an AEAD algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_encrypt_setup(psa_aead_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Set the key for a multipart authenticated decryption operation. + * + * The sequence of operations to decrypt a message with authentication + * is as follows: + * -# Allocate an operation object which will be passed to all the functions + * listed here. + * -# Initialize the operation object with one of the methods described in the + * documentation for #psa_aead_operation_t, e.g. + * #PSA_AEAD_OPERATION_INIT. + * -# Call psa_aead_decrypt_setup() to specify the algorithm and key. + * -# If needed, call psa_aead_set_lengths() to specify the length of the + * inputs to the subsequent calls to psa_aead_update_ad() and + * psa_aead_update(). See the documentation of psa_aead_set_lengths() + * for details. + * -# Call psa_aead_set_nonce() with the nonce for the decryption. + * -# Call psa_aead_update_ad() zero, one or more times, passing a fragment + * of the non-encrypted additional authenticated data each time. + * -# Call psa_aead_update() zero, one or more times, passing a fragment + * of the ciphertext to decrypt each time. + * -# Call psa_aead_verify(). + * + * If an error occurs at any step after a call to psa_aead_decrypt_setup(), + * the operation will need to be reset by a call to psa_aead_abort(). The + * application may call psa_aead_abort() at any time after the operation + * has been initialized. + * + * After a successful call to psa_aead_decrypt_setup(), the application must + * eventually terminate the operation. The following events terminate an + * operation: + * - A successful call to psa_aead_verify(). + * - A call to psa_aead_abort(). + * + * \param[in,out] operation The operation object to set up. It must have + * been initialized as per the documentation for + * #psa_aead_operation_t and not yet in use. + * \param key Identifier of the key to use for the operation. + * It must remain valid until the operation + * terminates. It must allow the usage + * #PSA_KEY_USAGE_DECRYPT. + * \param alg The AEAD algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p key is not compatible with \p alg. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not supported or is not an AEAD algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_decrypt_setup(psa_aead_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg); + +/** Generate a random nonce for an authenticated encryption operation. + * + * This function generates a random nonce for the authenticated encryption + * operation with an appropriate size for the chosen algorithm, key type + * and key size. + * + * The application must call psa_aead_encrypt_setup() before + * calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \param[in,out] operation Active AEAD operation. + * \param[out] nonce Buffer where the generated nonce is to be + * written. + * \param nonce_size Size of the \p nonce buffer in bytes. + * \param[out] nonce_length On success, the number of bytes of the + * generated nonce. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active aead encrypt + * operation, with no nonce set). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p nonce buffer is too small. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_generate_nonce(psa_aead_operation_t *operation, + uint8_t *nonce, + size_t nonce_size, + size_t *nonce_length); + +/** Set the nonce for an authenticated encryption or decryption operation. + * + * This function sets the nonce for the authenticated + * encryption or decryption operation. + * + * The application must call psa_aead_encrypt_setup() or + * psa_aead_decrypt_setup() before calling this function. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \note When encrypting, applications should use psa_aead_generate_nonce() + * instead of this function, unless implementing a protocol that requires + * a non-random IV. + * + * \param[in,out] operation Active AEAD operation. + * \param[in] nonce Buffer containing the nonce to use. + * \param nonce_length Size of the nonce in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, with no nonce + * set). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The size of \p nonce is not acceptable for the chosen algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_set_nonce(psa_aead_operation_t *operation, + const uint8_t *nonce, + size_t nonce_length); + +/** Declare the lengths of the message and additional data for AEAD. + * + * The application must call this function before calling + * psa_aead_update_ad() or psa_aead_update() if the algorithm for + * the operation requires it. If the algorithm does not require it, + * calling this function is optional, but if this function is called + * then the implementation must enforce the lengths. + * + * You may call this function before or after setting the nonce with + * psa_aead_set_nonce() or psa_aead_generate_nonce(). + * + * - For #PSA_ALG_CCM, calling this function is required. + * - For the other AEAD algorithms defined in this specification, calling + * this function is not required. + * - For vendor-defined algorithm, refer to the vendor documentation. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \param[in,out] operation Active AEAD operation. + * \param ad_length Size of the non-encrypted additional + * authenticated data in bytes. + * \param plaintext_length Size of the plaintext to encrypt in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, and + * psa_aead_update_ad() and psa_aead_update() must not have been + * called yet). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * At least one of the lengths is not acceptable for the chosen + * algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_set_lengths(psa_aead_operation_t *operation, + size_t ad_length, + size_t plaintext_length); + +/** Pass additional data to an active AEAD operation. + * + * Additional data is authenticated, but not encrypted. + * + * You may call this function multiple times to pass successive fragments + * of the additional data. You may not call this function after passing + * data to encrypt or decrypt with psa_aead_update(). + * + * Before calling this function, you must: + * 1. Call either psa_aead_encrypt_setup() or psa_aead_decrypt_setup(). + * 2. Set the nonce with psa_aead_generate_nonce() or psa_aead_set_nonce(). + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \warning When decrypting, until psa_aead_verify() has returned #PSA_SUCCESS, + * there is no guarantee that the input is valid. Therefore, until + * you have called psa_aead_verify() and it has returned #PSA_SUCCESS, + * treat the input as untrusted and prepare to undo any action that + * depends on the input if psa_aead_verify() returns an error status. + * + * \param[in,out] operation Active AEAD operation. + * \param[in] input Buffer containing the fragment of + * additional data. + * \param input_length Size of the \p input buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, have a nonce + * set, have lengths set if required by the algorithm, and + * psa_aead_update() must not have been called yet). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total input length overflows the additional data length that + * was previously specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_update_ad(psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length); + +/** Encrypt or decrypt a message fragment in an active AEAD operation. + * + * Before calling this function, you must: + * 1. Call either psa_aead_encrypt_setup() or psa_aead_decrypt_setup(). + * The choice of setup function determines whether this function + * encrypts or decrypts its input. + * 2. Set the nonce with psa_aead_generate_nonce() or psa_aead_set_nonce(). + * 3. Call psa_aead_update_ad() to pass all the additional data. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \warning When decrypting, until psa_aead_verify() has returned #PSA_SUCCESS, + * there is no guarantee that the input is valid. Therefore, until + * you have called psa_aead_verify() and it has returned #PSA_SUCCESS: + * - Do not use the output in any way other than storing it in a + * confidential location. If you take any action that depends + * on the tentative decrypted data, this action will need to be + * undone if the input turns out not to be valid. Furthermore, + * if an adversary can observe that this action took place + * (for example through timing), they may be able to use this + * fact as an oracle to decrypt any message encrypted with the + * same key. + * - In particular, do not copy the output anywhere but to a + * memory or storage space that you have exclusive access to. + * + * This function does not require the input to be aligned to any + * particular block boundary. If the implementation can only process + * a whole block at a time, it must consume all the input provided, but + * it may delay the end of the corresponding output until a subsequent + * call to psa_aead_update(), psa_aead_finish() or psa_aead_verify() + * provides sufficient input. The amount of data that can be delayed + * in this way is bounded by #PSA_AEAD_UPDATE_OUTPUT_SIZE. + * + * \param[in,out] operation Active AEAD operation. + * \param[in] input Buffer containing the message fragment to + * encrypt or decrypt. + * \param input_length Size of the \p input buffer in bytes. + * \param[out] output Buffer where the output is to be written. + * \param output_size Size of the \p output buffer in bytes. + * This must be at least + * #PSA_AEAD_UPDATE_OUTPUT_SIZE(\c alg, + * \p input_length) where \c alg is the + * algorithm that is being calculated. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active, have a nonce + * set, and have lengths set if required by the algorithm). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p output buffer is too small. + * You can determine a sufficient buffer size by calling + * #PSA_AEAD_UPDATE_OUTPUT_SIZE(\c alg, \p input_length) + * where \c alg is the algorithm that is being calculated. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total length of input to psa_aead_update_ad() so far is + * less than the additional data length that was previously + * specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total input length overflows the plaintext length that + * was previously specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_update(psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** Finish encrypting a message in an AEAD operation. + * + * The operation must have been set up with psa_aead_encrypt_setup(). + * + * This function finishes the authentication of the additional data + * formed by concatenating the inputs passed to preceding calls to + * psa_aead_update_ad() with the plaintext formed by concatenating the + * inputs passed to preceding calls to psa_aead_update(). + * + * This function has two output buffers: + * - \p ciphertext contains trailing ciphertext that was buffered from + * preceding calls to psa_aead_update(). + * - \p tag contains the authentication tag. Its length is always + * #PSA_AEAD_TAG_LENGTH(\c alg) where \c alg is the AEAD algorithm + * that the operation performs. + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \param[in,out] operation Active AEAD operation. + * \param[out] ciphertext Buffer where the last part of the ciphertext + * is to be written. + * \param ciphertext_size Size of the \p ciphertext buffer in bytes. + * This must be at least + * #PSA_AEAD_FINISH_OUTPUT_SIZE(\c alg) where + * \c alg is the algorithm that is being + * calculated. + * \param[out] ciphertext_length On success, the number of bytes of + * returned ciphertext. + * \param[out] tag Buffer where the authentication tag is + * to be written. + * \param tag_size Size of the \p tag buffer in bytes. + * This must be at least + * #PSA_AEAD_TAG_LENGTH(\c alg) where \c alg is + * the algorithm that is being calculated. + * \param[out] tag_length On success, the number of bytes + * that make up the returned tag. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active encryption + * operation with a nonce set). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p ciphertext or \p tag buffer is too small. + * You can determine a sufficient buffer size for \p ciphertext by + * calling #PSA_AEAD_FINISH_OUTPUT_SIZE(\c alg) + * where \c alg is the algorithm that is being calculated. + * You can determine a sufficient buffer size for \p tag by + * calling #PSA_AEAD_TAG_LENGTH(\c alg). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total length of input to psa_aead_update_ad() so far is + * less than the additional data length that was previously + * specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total length of input to psa_aead_update() so far is + * less than the plaintext length that was previously + * specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_finish(psa_aead_operation_t *operation, + uint8_t *ciphertext, + size_t ciphertext_size, + size_t *ciphertext_length, + uint8_t *tag, + size_t tag_size, + size_t *tag_length); + +/** Finish authenticating and decrypting a message in an AEAD operation. + * + * The operation must have been set up with psa_aead_decrypt_setup(). + * + * This function finishes the authenticated decryption of the message + * components: + * + * - The additional data consisting of the concatenation of the inputs + * passed to preceding calls to psa_aead_update_ad(). + * - The ciphertext consisting of the concatenation of the inputs passed to + * preceding calls to psa_aead_update(). + * - The tag passed to this function call. + * + * If the authentication tag is correct, this function outputs any remaining + * plaintext and reports success. If the authentication tag is not correct, + * this function returns #PSA_ERROR_INVALID_SIGNATURE. + * + * When this function returns successfuly, the operation becomes inactive. + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_aead_abort(). + * + * \note Implementations shall make the best effort to ensure that the + * comparison between the actual tag and the expected tag is performed + * in constant time. + * + * \param[in,out] operation Active AEAD operation. + * \param[out] plaintext Buffer where the last part of the plaintext + * is to be written. This is the remaining data + * from previous calls to psa_aead_update() + * that could not be processed until the end + * of the input. + * \param plaintext_size Size of the \p plaintext buffer in bytes. + * This must be at least + * #PSA_AEAD_VERIFY_OUTPUT_SIZE(\c alg) where + * \c alg is the algorithm that is being + * calculated. + * \param[out] plaintext_length On success, the number of bytes of + * returned plaintext. + * \param[in] tag Buffer containing the authentication tag. + * \param tag_length Size of the \p tag buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The calculations were successful, but the authentication tag is + * not correct. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be an active decryption + * operation with a nonce set). + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p plaintext buffer is too small. + * You can determine a sufficient buffer size for \p plaintext by + * calling #PSA_AEAD_VERIFY_OUTPUT_SIZE(\c alg) + * where \c alg is the algorithm that is being calculated. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total length of input to psa_aead_update_ad() so far is + * less than the additional data length that was previously + * specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The total length of input to psa_aead_update() so far is + * less than the plaintext length that was previously + * specified with psa_aead_set_lengths(). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_verify(psa_aead_operation_t *operation, + uint8_t *plaintext, + size_t plaintext_size, + size_t *plaintext_length, + const uint8_t *tag, + size_t tag_length); + +/** Abort an AEAD operation. + * + * Aborting an operation frees all associated resources except for the + * \p operation structure itself. Once aborted, the operation object + * can be reused for another operation by calling + * psa_aead_encrypt_setup() or psa_aead_decrypt_setup() again. + * + * You may call this function any time after the operation object has + * been initialized as described in #psa_aead_operation_t. + * + * In particular, calling psa_aead_abort() after the operation has been + * terminated by a call to psa_aead_abort(), psa_aead_finish() or + * psa_aead_verify() is safe and has no effect. + * + * \param[in,out] operation Initialized AEAD operation. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_aead_abort(psa_aead_operation_t *operation); + +/**@}*/ + +/** \defgroup asymmetric Asymmetric cryptography + * @{ + */ + +/** + * \brief Sign a hash or short message with a private key. + * + * Note that to perform a hash-and-sign signature algorithm, you must + * first calculate the hash by calling psa_hash_setup(), psa_hash_update() + * and psa_hash_finish(). Then pass the resulting hash as the \p hash + * parameter to this function. You can use #PSA_ALG_SIGN_GET_HASH(\p alg) + * to determine the hash algorithm to use. + * + * \param key Identifier of the key to use for the operation. + * It must be an asymmetric key pair. The key must + * allow the usage #PSA_KEY_USAGE_SIGN_HASH. + * \param alg A signature algorithm that is compatible with + * the type of \p key. + * \param[in] hash The hash or message to sign. + * \param hash_length Size of the \p hash buffer in bytes. + * \param[out] signature Buffer where the signature is to be written. + * \param signature_size Size of the \p signature buffer in bytes. + * \param[out] signature_length On success, the number of bytes + * that make up the returned signature value. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p signature buffer is too small. You can + * determine a sufficient buffer size by calling + * #PSA_SIGN_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg) + * where \c key_type and \c key_bits are the type and bit-size + * respectively of \p key. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_sign_hash(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + uint8_t *signature, + size_t signature_size, + size_t *signature_length); + +/** + * \brief Verify the signature a hash or short message using a public key. + * + * Note that to perform a hash-and-sign signature algorithm, you must + * first calculate the hash by calling psa_hash_setup(), psa_hash_update() + * and psa_hash_finish(). Then pass the resulting hash as the \p hash + * parameter to this function. You can use #PSA_ALG_SIGN_GET_HASH(\p alg) + * to determine the hash algorithm to use. + * + * \param key Identifier of the key to use for the operation. It + * must be a public key or an asymmetric key pair. The + * key must allow the usage + * #PSA_KEY_USAGE_VERIFY_HASH. + * \param alg A signature algorithm that is compatible with + * the type of \p key. + * \param[in] hash The hash or message whose signature is to be + * verified. + * \param hash_length Size of the \p hash buffer in bytes. + * \param[in] signature Buffer containing the signature to verify. + * \param signature_length Size of the \p signature buffer in bytes. + * + * \retval #PSA_SUCCESS + * The signature is valid. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_SIGNATURE + * The calculation was perfomed successfully, but the passed + * signature is not a valid signature. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_verify_hash(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + const uint8_t *signature, + size_t signature_length); + +/** + * \brief Encrypt a short message with a public key. + * + * \param key Identifer of the key to use for the operation. + * It must be a public key or an asymmetric key + * pair. It must allow the usage + * #PSA_KEY_USAGE_ENCRYPT. + * \param alg An asymmetric encryption algorithm that is + * compatible with the type of \p key. + * \param[in] input The message to encrypt. + * \param input_length Size of the \p input buffer in bytes. + * \param[in] salt A salt or label, if supported by the + * encryption algorithm. + * If the algorithm does not support a + * salt, pass \c NULL. + * If the algorithm supports an optional + * salt and you do not want to pass a salt, + * pass \c NULL. + * + * - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is + * supported. + * \param salt_length Size of the \p salt buffer in bytes. + * If \p salt is \c NULL, pass 0. + * \param[out] output Buffer where the encrypted message is to + * be written. + * \param output_size Size of the \p output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p output buffer is too small. You can + * determine a sufficient buffer size by calling + * #PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg) + * where \c key_type and \c key_bits are the type and bit-size + * respectively of \p key. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_asymmetric_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *salt, + size_t salt_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/** + * \brief Decrypt a short message with a private key. + * + * \param key Identifier of the key to use for the operation. + * It must be an asymmetric key pair. It must + * allow the usage #PSA_KEY_USAGE_DECRYPT. + * \param alg An asymmetric encryption algorithm that is + * compatible with the type of \p key. + * \param[in] input The message to decrypt. + * \param input_length Size of the \p input buffer in bytes. + * \param[in] salt A salt or label, if supported by the + * encryption algorithm. + * If the algorithm does not support a + * salt, pass \c NULL. + * If the algorithm supports an optional + * salt and you do not want to pass a salt, + * pass \c NULL. + * + * - For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is + * supported. + * \param salt_length Size of the \p salt buffer in bytes. + * If \p salt is \c NULL, pass 0. + * \param[out] output Buffer where the decrypted message is to + * be written. + * \param output_size Size of the \c output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * The size of the \p output buffer is too small. You can + * determine a sufficient buffer size by calling + * #PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(\c key_type, \c key_bits, \p alg) + * where \c key_type and \c key_bits are the type and bit-size + * respectively of \p key. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + * \retval #PSA_ERROR_INVALID_PADDING + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_asymmetric_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *salt, + size_t salt_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/**@}*/ + +/** \defgroup key_derivation Key derivation and pseudorandom generation + * @{ + */ + +/** The type of the state data structure for key derivation operations. + * + * Before calling any function on a key derivation operation object, the + * application must initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_key_derivation_operation_t operation; + * memset(&operation, 0, sizeof(operation)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_key_derivation_operation_t operation = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_KEY_DERIVATION_OPERATION_INIT, + * for example: + * \code + * psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT; + * \endcode + * - Assign the result of the function psa_key_derivation_operation_init() + * to the structure, for example: + * \code + * psa_key_derivation_operation_t operation; + * operation = psa_key_derivation_operation_init(); + * \endcode + * + * This is an implementation-defined \c struct. Applications should not + * make any assumptions about the content of this structure except + * as directed by the documentation of a specific implementation. + */ +typedef struct psa_key_derivation_s psa_key_derivation_operation_t; + +/** \def PSA_KEY_DERIVATION_OPERATION_INIT + * + * This macro returns a suitable initializer for a key derivation operation + * object of type #psa_key_derivation_operation_t. + */ +#ifdef __DOXYGEN_ONLY__ +/* This is an example definition for documentation purposes. + * Implementations should define a suitable value in `crypto_struct.h`. + */ +#define PSA_KEY_DERIVATION_OPERATION_INIT {0} +#endif + +/** Return an initial value for a key derivation operation object. + */ +static psa_key_derivation_operation_t psa_key_derivation_operation_init(void); + +/** Set up a key derivation operation. + * + * A key derivation algorithm takes some inputs and uses them to generate + * a byte stream in a deterministic way. + * This byte stream can be used to produce keys and other + * cryptographic material. + * + * To derive a key: + * -# Start with an initialized object of type #psa_key_derivation_operation_t. + * -# Call psa_key_derivation_setup() to select the algorithm. + * -# Provide the inputs for the key derivation by calling + * psa_key_derivation_input_bytes() or psa_key_derivation_input_key() + * as appropriate. Which inputs are needed, in what order, and whether + * they may be keys and if so of what type depends on the algorithm. + * -# Optionally set the operation's maximum capacity with + * psa_key_derivation_set_capacity(). You may do this before, in the middle + * of or after providing inputs. For some algorithms, this step is mandatory + * because the output depends on the maximum capacity. + * -# To derive a key, call psa_key_derivation_output_key(). + * To derive a byte string for a different purpose, call + * psa_key_derivation_output_bytes(). + * Successive calls to these functions use successive output bytes + * calculated by the key derivation algorithm. + * -# Clean up the key derivation operation object with + * psa_key_derivation_abort(). + * + * If this function returns an error, the key derivation operation object is + * not changed. + * + * If an error occurs at any step after a call to psa_key_derivation_setup(), + * the operation will need to be reset by a call to psa_key_derivation_abort(). + * + * Implementations must reject an attempt to derive a key of size 0. + * + * \param[in,out] operation The key derivation operation object + * to set up. It must + * have been initialized but not set up yet. + * \param alg The key derivation algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_KEY_DERIVATION(\p alg) is true). + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c alg is not a key derivation algorithm. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \c alg is not supported or is not a key derivation algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be inactive). + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_setup( + psa_key_derivation_operation_t *operation, + psa_algorithm_t alg); + +/** Retrieve the current capacity of a key derivation operation. + * + * The capacity of a key derivation is the maximum number of bytes that it can + * return. When you get *N* bytes of output from a key derivation operation, + * this reduces its capacity by *N*. + * + * \param[in] operation The operation to query. + * \param[out] capacity On success, the capacity of the operation. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active). + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_get_capacity( + const psa_key_derivation_operation_t *operation, + size_t *capacity); + +/** Set the maximum capacity of a key derivation operation. + * + * The capacity of a key derivation operation is the maximum number of bytes + * that the key derivation operation can return from this point onwards. + * + * \param[in,out] operation The key derivation operation object to modify. + * \param capacity The new capacity of the operation. + * It must be less or equal to the operation's + * current capacity. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p capacity is larger than the operation's current capacity. + * In this case, the operation object remains valid and its capacity + * remains unchanged. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active). + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_set_capacity( + psa_key_derivation_operation_t *operation, + size_t capacity); + +/** Use the maximum possible capacity for a key derivation operation. + * + * Use this value as the capacity argument when setting up a key derivation + * to indicate that the operation should have the maximum possible capacity. + * The value of the maximum possible capacity depends on the key derivation + * algorithm. + */ +#define PSA_KEY_DERIVATION_UNLIMITED_CAPACITY ((size_t)(-1)) + +/** Provide an input for key derivation or key agreement. + * + * Which inputs are required and in what order depends on the algorithm. + * Refer to the documentation of each key derivation or key agreement + * algorithm for information. + * + * This function passes direct inputs, which is usually correct for + * non-secret inputs. To pass a secret input, which should be in a key + * object, call psa_key_derivation_input_key() instead of this function. + * Refer to the documentation of individual step types + * (`PSA_KEY_DERIVATION_INPUT_xxx` values of type ::psa_key_derivation_step_t) + * for more information. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_key_derivation_abort(). + * + * \param[in,out] operation The key derivation operation object to use. + * It must have been set up with + * psa_key_derivation_setup() and must not + * have produced any output yet. + * \param step Which step the input data is for. + * \param[in] data Input data to use. + * \param data_length Size of the \p data buffer in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c step is not compatible with the operation's algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c step does not allow direct inputs. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid for this input \p step. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_input_bytes( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + const uint8_t *data, + size_t data_length); + +/** Provide an input for key derivation in the form of a key. + * + * Which inputs are required and in what order depends on the algorithm. + * Refer to the documentation of each key derivation or key agreement + * algorithm for information. + * + * This function obtains input from a key object, which is usually correct for + * secret inputs or for non-secret personalization strings kept in the key + * store. To pass a non-secret parameter which is not in the key store, + * call psa_key_derivation_input_bytes() instead of this function. + * Refer to the documentation of individual step types + * (`PSA_KEY_DERIVATION_INPUT_xxx` values of type ::psa_key_derivation_step_t) + * for more information. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_key_derivation_abort(). + * + * \param[in,out] operation The key derivation operation object to use. + * It must have been set up with + * psa_key_derivation_setup() and must not + * have produced any output yet. + * \param step Which step the input data is for. + * \param key Identifier of the key. It must have an + * appropriate type for step and must allow the + * usage #PSA_KEY_USAGE_DERIVE. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c step is not compatible with the operation's algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c step does not allow key inputs of the given type + * or does not allow key inputs at all. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid for this input \p step. + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_input_key( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + psa_key_id_t key); + +/** Perform a key agreement and use the shared secret as input to a key + * derivation. + * + * A key agreement algorithm takes two inputs: a private key \p private_key + * a public key \p peer_key. + * The result of this function is passed as input to a key derivation. + * The output of this key derivation can be extracted by reading from the + * resulting operation to produce keys and other cryptographic material. + * + * If this function returns an error status, the operation enters an error + * state and must be aborted by calling psa_key_derivation_abort(). + * + * \param[in,out] operation The key derivation operation object to use. + * It must have been set up with + * psa_key_derivation_setup() with a + * key agreement and derivation algorithm + * \c alg (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_KEY_AGREEMENT(\c alg) is true + * and #PSA_ALG_IS_RAW_KEY_AGREEMENT(\c alg) + * is false). + * The operation must be ready for an + * input of the type given by \p step. + * \param step Which step the input data is for. + * \param private_key Identifier of the private key to use. It must + * allow the usage #PSA_KEY_USAGE_DERIVE. + * \param[in] peer_key Public key of the peer. The peer key must be in the + * same format that psa_import_key() accepts for the + * public key type corresponding to the type of + * private_key. That is, this function performs the + * equivalent of + * #psa_import_key(..., + * `peer_key`, `peer_key_length`) where + * with key attributes indicating the public key + * type corresponding to the type of `private_key`. + * For example, for EC keys, this means that peer_key + * is interpreted as a point on the curve that the + * private key is on. The standard formats for public + * keys are documented in the documentation of + * psa_export_public_key(). + * \param peer_key_length Size of \p peer_key in bytes. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid for this key agreement \p step. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c private_key is not compatible with \c alg, + * or \p peer_key is not valid for \c alg or not compatible with + * \c private_key. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \c alg is not supported or is not a key derivation algorithm. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \c step does not allow an input resulting from a key agreement. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_key_agreement( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + psa_key_id_t private_key, + const uint8_t *peer_key, + size_t peer_key_length); + +/** Read some data from a key derivation operation. + * + * This function calculates output bytes from a key derivation algorithm and + * return those bytes. + * If you view the key derivation's output as a stream of bytes, this + * function destructively reads the requested number of bytes from the + * stream. + * The operation's capacity decreases by the number of bytes read. + * + * If this function returns an error status other than + * #PSA_ERROR_INSUFFICIENT_DATA, the operation enters an error + * state and must be aborted by calling psa_key_derivation_abort(). + * + * \param[in,out] operation The key derivation operation object to read from. + * \param[out] output Buffer where the output will be written. + * \param output_length Number of bytes to output. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_INSUFFICIENT_DATA + * The operation's capacity was less than + * \p output_length bytes. Note that in this case, + * no output is written to the output buffer. + * The operation's capacity is set to 0, thus + * subsequent calls to this function will not + * succeed, even with a smaller output buffer. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active and completed + * all required input steps). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_output_bytes( + psa_key_derivation_operation_t *operation, + uint8_t *output, + size_t output_length); + +/** Derive a key from an ongoing key derivation operation. + * + * This function calculates output bytes from a key derivation algorithm + * and uses those bytes to generate a key deterministically. + * The key's location, usage policy, type and size are taken from + * \p attributes. + * + * If you view the key derivation's output as a stream of bytes, this + * function destructively reads as many bytes as required from the + * stream. + * The operation's capacity decreases by the number of bytes read. + * + * If this function returns an error status other than + * #PSA_ERROR_INSUFFICIENT_DATA, the operation enters an error + * state and must be aborted by calling psa_key_derivation_abort(). + * + * How much output is produced and consumed from the operation, and how + * the key is derived, depends on the key type: + * + * - For key types for which the key is an arbitrary sequence of bytes + * of a given size, this function is functionally equivalent to + * calling #psa_key_derivation_output_bytes + * and passing the resulting output to #psa_import_key. + * However, this function has a security benefit: + * if the implementation provides an isolation boundary then + * the key material is not exposed outside the isolation boundary. + * As a consequence, for these key types, this function always consumes + * exactly (\p bits / 8) bytes from the operation. + * The following key types defined in this specification follow this scheme: + * + * - #PSA_KEY_TYPE_AES; + * - #PSA_KEY_TYPE_ARC4; + * - #PSA_KEY_TYPE_CAMELLIA; + * - #PSA_KEY_TYPE_DERIVE; + * - #PSA_KEY_TYPE_HMAC. + * + * - For ECC keys on a Montgomery elliptic curve + * (#PSA_KEY_TYPE_ECC_KEY_PAIR(\c curve) where \c curve designates a + * Montgomery curve), this function always draws a byte string whose + * length is determined by the curve, and sets the mandatory bits + * accordingly. That is: + * + * - Curve25519 (#PSA_ECC_FAMILY_MONTGOMERY, 255 bits): draw a 32-byte + * string and process it as specified in RFC 7748 §5. + * - Curve448 (#PSA_ECC_FAMILY_MONTGOMERY, 448 bits): draw a 56-byte + * string and process it as specified in RFC 7748 §5. + * + * - For key types for which the key is represented by a single sequence of + * \p bits bits with constraints as to which bit sequences are acceptable, + * this function draws a byte string of length (\p bits / 8) bytes rounded + * up to the nearest whole number of bytes. If the resulting byte string + * is acceptable, it becomes the key, otherwise the drawn bytes are discarded. + * This process is repeated until an acceptable byte string is drawn. + * The byte string drawn from the operation is interpreted as specified + * for the output produced by psa_export_key(). + * The following key types defined in this specification follow this scheme: + * + * - #PSA_KEY_TYPE_DES. + * Force-set the parity bits, but discard forbidden weak keys. + * For 2-key and 3-key triple-DES, the three keys are generated + * successively (for example, for 3-key triple-DES, + * if the first 8 bytes specify a weak key and the next 8 bytes do not, + * discard the first 8 bytes, use the next 8 bytes as the first key, + * and continue reading output from the operation to derive the other + * two keys). + * - Finite-field Diffie-Hellman keys (#PSA_KEY_TYPE_DH_KEY_PAIR(\c group) + * where \c group designates any Diffie-Hellman group) and + * ECC keys on a Weierstrass elliptic curve + * (#PSA_KEY_TYPE_ECC_KEY_PAIR(\c curve) where \c curve designates a + * Weierstrass curve). + * For these key types, interpret the byte string as integer + * in big-endian order. Discard it if it is not in the range + * [0, *N* - 2] where *N* is the boundary of the private key domain + * (the prime *p* for Diffie-Hellman, the subprime *q* for DSA, + * or the order of the curve's base point for ECC). + * Add 1 to the resulting integer and use this as the private key *x*. + * This method allows compliance to NIST standards, specifically + * the methods titled "key-pair generation by testing candidates" + * in NIST SP 800-56A §5.6.1.1.4 for Diffie-Hellman, + * in FIPS 186-4 §B.1.2 for DSA, and + * in NIST SP 800-56A §5.6.1.2.2 or + * FIPS 186-4 §B.4.2 for elliptic curve keys. + * + * - For other key types, including #PSA_KEY_TYPE_RSA_KEY_PAIR, + * the way in which the operation output is consumed is + * implementation-defined. + * + * In all cases, the data that is read is discarded from the operation. + * The operation's capacity is decreased by the number of bytes read. + * + * For algorithms that take an input step #PSA_KEY_DERIVATION_INPUT_SECRET, + * the input to that step must be provided with psa_key_derivation_input_key(). + * Future versions of this specification may include additional restrictions + * on the derived key based on the attributes and strength of the secret key. + * + * \param[in] attributes The attributes for the new key. + * \param[in,out] operation The key derivation operation object to read from. + * \param[out] key On success, an identifier for the newly created + * key. For persistent keys, this is the key + * identifier defined in \p attributes. + * \c 0 on failure. + * + * \retval #PSA_SUCCESS + * Success. + * If the key is persistent, the key material and the key's metadata + * have been saved to persistent storage. + * \retval #PSA_ERROR_ALREADY_EXISTS + * This is an attempt to create a persistent key, and there is + * already a persistent key with the given identifier. + * \retval #PSA_ERROR_INSUFFICIENT_DATA + * There was not enough data to create the desired key. + * Note that in this case, no output is written to the output buffer. + * The operation's capacity is set to 0, thus subsequent calls to + * this function will not succeed, even with a smaller output buffer. + * \retval #PSA_ERROR_NOT_SUPPORTED + * The key type or key size is not supported, either by the + * implementation in general or in this particular location. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * The provided key attributes are not valid for the operation. + * \retval #PSA_ERROR_NOT_PERMITTED + * The #PSA_KEY_DERIVATION_INPUT_SECRET input was not provided through + * a key. + * \retval #PSA_ERROR_BAD_STATE + * The operation state is not valid (it must be active and completed + * all required input steps). + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_INSUFFICIENT_STORAGE + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_output_key( + const psa_key_attributes_t *attributes, + psa_key_derivation_operation_t *operation, + psa_key_id_t *key); + +/** Abort a key derivation operation. + * + * Aborting an operation frees all associated resources except for the \c + * operation structure itself. Once aborted, the operation object can be reused + * for another operation by calling psa_key_derivation_setup() again. + * + * This function may be called at any time after the operation + * object has been initialized as described in #psa_key_derivation_operation_t. + * + * In particular, it is valid to call psa_key_derivation_abort() twice, or to + * call psa_key_derivation_abort() on an operation that has not been set up. + * + * \param[in,out] operation The operation to abort. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_key_derivation_abort( + psa_key_derivation_operation_t *operation); + +/** Perform a key agreement and return the raw shared secret. + * + * \warning The raw result of a key agreement algorithm such as finite-field + * Diffie-Hellman or elliptic curve Diffie-Hellman has biases and should + * not be used directly as key material. It should instead be passed as + * input to a key derivation algorithm. To chain a key agreement with + * a key derivation, use psa_key_derivation_key_agreement() and other + * functions from the key derivation interface. + * + * \param alg The key agreement algorithm to compute + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_RAW_KEY_AGREEMENT(\p alg) + * is true). + * \param private_key Identifier of the private key to use. It must + * allow the usage #PSA_KEY_USAGE_DERIVE. + * \param[in] peer_key Public key of the peer. It must be + * in the same format that psa_import_key() + * accepts. The standard formats for public + * keys are documented in the documentation + * of psa_export_public_key(). + * \param peer_key_length Size of \p peer_key in bytes. + * \param[out] output Buffer where the decrypted message is to + * be written. + * \param output_size Size of the \c output buffer in bytes. + * \param[out] output_length On success, the number of bytes + * that make up the returned output. + * + * \retval #PSA_SUCCESS + * Success. + * \retval #PSA_ERROR_INVALID_HANDLE + * \retval #PSA_ERROR_NOT_PERMITTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p alg is not a key agreement algorithm + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p private_key is not compatible with \p alg, + * or \p peer_key is not valid for \p alg or not compatible with + * \p private_key. + * \retval #PSA_ERROR_BUFFER_TOO_SMALL + * \p output_size is too small + * \retval #PSA_ERROR_NOT_SUPPORTED + * \p alg is not a supported key agreement algorithm. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_raw_key_agreement(psa_algorithm_t alg, + psa_key_id_t private_key, + const uint8_t *peer_key, + size_t peer_key_length, + uint8_t *output, + size_t output_size, + size_t *output_length); + +/**@}*/ + +/** \defgroup random Random generation + * @{ + */ + +/** + * \brief Generate random bytes. + * + * \warning This function **can** fail! Callers MUST check the return status + * and MUST NOT use the content of the output buffer if the return + * status is not #PSA_SUCCESS. + * + * \note To generate a key, use psa_generate_key() instead. + * + * \param[out] output Output buffer for the generated data. + * \param output_size Number of bytes to generate and output. + * + * \retval #PSA_SUCCESS + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_generate_random(uint8_t *output, + size_t output_size); + +/** + * \brief Generate a key or key pair. + * + * The key is generated randomly. + * Its location, usage policy, type and size are taken from \p attributes. + * + * Implementations must reject an attempt to generate a key of size 0. + * + * The following type-specific considerations apply: + * - For RSA keys (#PSA_KEY_TYPE_RSA_KEY_PAIR), + * the public exponent is 65537. + * The modulus is a product of two probabilistic primes + * between 2^{n-1} and 2^n where n is the bit size specified in the + * attributes. + * + * \param[in] attributes The attributes for the new key. + * \param[out] key On success, an identifier for the newly created + * key. For persistent keys, this is the key + * identifier defined in \p attributes. + * \c 0 on failure. + * + * \retval #PSA_SUCCESS + * Success. + * If the key is persistent, the key material and the key's metadata + * have been saved to persistent storage. + * \retval #PSA_ERROR_ALREADY_EXISTS + * This is an attempt to create a persistent key, and there is + * already a persistent key with the given identifier. + * \retval #PSA_ERROR_NOT_SUPPORTED + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * \retval #PSA_ERROR_INSUFFICIENT_ENTROPY + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_HARDWARE_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_INSUFFICIENT_STORAGE + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_generate_key(const psa_key_attributes_t *attributes, + psa_key_id_t *key); + +/**@}*/ + +#ifdef __cplusplus +} +#endif + +/* The file "crypto_sizes.h" contains definitions for size calculation + * macros whose definitions are implementation-specific. */ +#include "psa/crypto_sizes.h" + +/* The file "crypto_client_struct.h" contains definitions for structures + * whose definitions differ in the client view and the PSA server + * implementation in TF-M. */ +#include "psa/crypto_client_struct.h" + + +/* The file "crypto_struct.h" contains definitions for + * implementation-specific structs that are declared above. */ +#include "psa/crypto_struct.h" + +/* The file "crypto_extra.h" contains vendor-specific definitions. This + * can include vendor-defined algorithms, extra functions, etc. */ +#include "psa/crypto_extra.h" + +#endif /* PSA_CRYPTO_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_client_struct.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_client_struct.h new file mode 100644 index 0000000..98f7bfe --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_client_struct.h @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2020-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_client_struct.h + * + * \brief PSA cryptography client key attribute definitions + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. + * + * This file contains the definitions of some data structures with + * PSA crypto client specific definitions. This is for implementations + * with isolation between the Client applications and the Crypto + * Server module, it is expected that the front-end and the back-end + * would have different versions of the data structure. + */ +#ifndef PSA_CRYPTO_CLIENT_STRUCT_H +#define PSA_CRYPTO_CLIENT_STRUCT_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* This is the client view of the `key_attributes` structure. Only + * fields which need to be set by the PSA crypto client are present. + * The PSA crypto service will maintain a different version of the + * data structure internally. */ +struct psa_client_key_attributes_s +{ + uint32_t lifetime; + psa_key_id_t id; + uint32_t alg; + uint32_t usage; + size_t bits; + uint16_t type; +}; + +#define PSA_CLIENT_KEY_ATTRIBUTES_INIT {0, 0, 0, 0, 0, 0} + +#ifdef __cplusplus +} +#endif + +#endif /* PSA_CRYPTO_CLIENT_STRUCT_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_compat.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_compat.h new file mode 100644 index 0000000..8ca1f6a --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_compat.h @@ -0,0 +1,342 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_compat.h + * + * \brief PSA cryptography module: Backward compatibility aliases + * + * This header declares alternative names for macro and functions. + * New application code should not use these names. + * These names may be removed in a future version of Mbed Crypto. + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. + */ + +#ifndef PSA_CRYPTO_COMPAT_H +#define PSA_CRYPTO_COMPAT_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * To support both openless APIs and psa_open_key() temporarily, define + * psa_key_handle_t to be equal to psa_key_id_t. Do not mark the + * type and its utility macros and functions deprecated yet. This will be done + * in a subsequent phase. + */ +typedef psa_key_id_t psa_key_handle_t; + +/** Check whether an handle is null. + * + * \param handle Handle + * + * \return Non-zero if the handle is null, zero otherwise. + */ +static inline int psa_key_handle_is_null(psa_key_handle_t handle) +{ + return(handle == 0); +} + +#if !defined(MBEDTLS_DEPRECATED_REMOVED) + +/* + * Mechanism for declaring deprecated values + */ +#if defined(MBEDTLS_DEPRECATED_WARNING) && !defined(MBEDTLS_PSA_DEPRECATED) +#define MBEDTLS_PSA_DEPRECATED __attribute__((deprecated)) +#else +#define MBEDTLS_PSA_DEPRECATED +#endif + +typedef MBEDTLS_PSA_DEPRECATED size_t mbedtls_deprecated_size_t; +typedef MBEDTLS_PSA_DEPRECATED psa_status_t mbedtls_deprecated_psa_status_t; +typedef MBEDTLS_PSA_DEPRECATED psa_key_usage_t mbedtls_deprecated_psa_key_usage_t; +typedef MBEDTLS_PSA_DEPRECATED psa_ecc_family_t mbedtls_deprecated_psa_ecc_family_t; +typedef MBEDTLS_PSA_DEPRECATED psa_dh_family_t mbedtls_deprecated_psa_dh_family_t; +typedef MBEDTLS_PSA_DEPRECATED psa_ecc_family_t psa_ecc_curve_t; +typedef MBEDTLS_PSA_DEPRECATED psa_dh_family_t psa_dh_group_t; +typedef MBEDTLS_PSA_DEPRECATED psa_algorithm_t mbedtls_deprecated_psa_algorithm_t; + +#define PSA_KEY_TYPE_GET_CURVE PSA_KEY_TYPE_ECC_GET_FAMILY +#define PSA_KEY_TYPE_GET_GROUP PSA_KEY_TYPE_DH_GET_FAMILY + +#define MBEDTLS_DEPRECATED_CONSTANT( type, value ) \ + ( (mbedtls_deprecated_##type) ( value ) ) + +/* + * Deprecated PSA Crypto error code definitions (PSA Crypto API <= 1.0 beta2) + */ +#define PSA_ERROR_UNKNOWN_ERROR \ + MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_GENERIC_ERROR ) +#define PSA_ERROR_OCCUPIED_SLOT \ + MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_ALREADY_EXISTS ) +#define PSA_ERROR_EMPTY_SLOT \ + MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_DOES_NOT_EXIST ) +#define PSA_ERROR_INSUFFICIENT_CAPACITY \ + MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_INSUFFICIENT_DATA ) +#define PSA_ERROR_TAMPERING_DETECTED \ + MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_CORRUPTION_DETECTED ) + +/* + * Deprecated PSA Crypto numerical encodings (PSA Crypto API <= 1.0 beta3) + */ +#define PSA_KEY_USAGE_SIGN \ + MBEDTLS_DEPRECATED_CONSTANT( psa_key_usage_t, PSA_KEY_USAGE_SIGN_HASH ) +#define PSA_KEY_USAGE_VERIFY \ + MBEDTLS_DEPRECATED_CONSTANT( psa_key_usage_t, PSA_KEY_USAGE_VERIFY_HASH ) + +/* + * Deprecated PSA Crypto size calculation macros (PSA Crypto API <= 1.0 beta3) + */ +#define PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE \ + MBEDTLS_DEPRECATED_CONSTANT( size_t, PSA_SIGNATURE_MAX_SIZE ) +#define PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE( key_type, key_bits, alg ) \ + MBEDTLS_DEPRECATED_CONSTANT( size_t, PSA_SIGN_OUTPUT_SIZE( key_type, key_bits, alg ) ) + +/* + * Deprecated PSA Crypto function names (PSA Crypto API <= 1.0 beta3) + */ +MBEDTLS_PSA_DEPRECATED psa_status_t psa_asymmetric_sign( psa_key_handle_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + uint8_t *signature, + size_t signature_size, + size_t *signature_length ); + +MBEDTLS_PSA_DEPRECATED psa_status_t psa_asymmetric_verify( psa_key_handle_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + const uint8_t *signature, + size_t signature_length ); + + +/* + * Size-specific elliptic curve families. + */ +#define PSA_ECC_CURVE_SECP160K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 ) +#define PSA_ECC_CURVE_SECP192K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 ) +#define PSA_ECC_CURVE_SECP224K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 ) +#define PSA_ECC_CURVE_SECP256K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 ) +#define PSA_ECC_CURVE_SECP160R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP192R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP224R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP256R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP384R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP521R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP160R2 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R2 ) +#define PSA_ECC_CURVE_SECT163K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT233K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT239K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT283K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT409K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT571K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT163R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT193R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT233R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT283R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT409R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT571R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT163R2 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 ) +#define PSA_ECC_CURVE_SECT193R2 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 ) +#define PSA_ECC_CURVE_BRAINPOOL_P256R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 ) +#define PSA_ECC_CURVE_BRAINPOOL_P384R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 ) +#define PSA_ECC_CURVE_BRAINPOOL_P512R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 ) +#define PSA_ECC_CURVE_CURVE25519 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY ) +#define PSA_ECC_CURVE_CURVE448 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY ) + +/* + * Curves that changed name due to PSA specification. + */ +#define PSA_ECC_CURVE_SECP_K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 ) +#define PSA_ECC_CURVE_SECP_R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 ) +#define PSA_ECC_CURVE_SECP_R2 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R2 ) +#define PSA_ECC_CURVE_SECT_K1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 ) +#define PSA_ECC_CURVE_SECT_R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 ) +#define PSA_ECC_CURVE_SECT_R2 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 ) +#define PSA_ECC_CURVE_BRAINPOOL_P_R1 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 ) +#define PSA_ECC_CURVE_MONTGOMERY \ + MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY ) + +/* + * Finite-field Diffie-Hellman families. + */ +#define PSA_DH_GROUP_FFDHE2048 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) +#define PSA_DH_GROUP_FFDHE3072 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) +#define PSA_DH_GROUP_FFDHE4096 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) +#define PSA_DH_GROUP_FFDHE6144 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) +#define PSA_DH_GROUP_FFDHE8192 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) + +/* + * Diffie-Hellman families that changed name due to PSA specification. + */ +#define PSA_DH_GROUP_RFC7919 \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 ) +#define PSA_DH_GROUP_CUSTOM \ + MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_CUSTOM ) + +/* + * Deprecated PSA Crypto stream cipher algorithms (PSA Crypto API <= 1.0 beta3) + */ +#define PSA_ALG_ARC4 \ + MBEDTLS_DEPRECATED_CONSTANT(psa_algorithm_t, PSA_ALG_STREAM_CIPHER) +#define PSA_ALG_CHACHA20 \ + MBEDTLS_DEPRECATED_CONSTANT(psa_algorithm_t, PSA_ALG_STREAM_CIPHER) + +#endif /* MBEDTLS_DEPRECATED_REMOVED */ + +/** Open a handle to an existing persistent key. + * + * Open a handle to a persistent key. A key is persistent if it was created + * with a lifetime other than #PSA_KEY_LIFETIME_VOLATILE. A persistent key + * always has a nonzero key identifier, set with psa_set_key_id() when + * creating the key. Implementations may provide additional pre-provisioned + * keys that can be opened with psa_open_key(). Such keys have an application + * key identifier in the vendor range, as documented in the description of + * #psa_key_id_t. + * + * The application must eventually close the handle with psa_close_key() or + * psa_destroy_key() to release associated resources. If the application dies + * without calling one of these functions, the implementation should perform + * the equivalent of a call to psa_close_key(). + * + * Some implementations permit an application to open the same key multiple + * times. If this is successful, each call to psa_open_key() will return a + * different key handle. + * + * \note This API is not part of the PSA Cryptography API Release 1.0.0 + * specification. It was defined in the 1.0 Beta 3 version of the + * specification but was removed in the 1.0.0 released version. This API is + * kept for the time being to not break applications relying on it. It is not + * deprecated yet but will be in the near future. + * + * \note Applications that rely on opening a key multiple times will not be + * portable to implementations that only permit a single key handle to be + * opened. See also :ref:\`key-handles\`. + * + * + * \param id The persistent identifier of the key. + * \param[out] key On success, a handle to the key. + * + * \retval #PSA_SUCCESS + * Success. The application can now use the value of `*handle` + * to access the key. + * \retval #PSA_ERROR_INSUFFICIENT_MEMORY + * The implementation does not have sufficient resources to open the + * key. This can be due to reaching an implementation limit on the + * number of open keys, the number of open key handles, or available + * memory. + * \retval #PSA_ERROR_DOES_NOT_EXIST + * There is no persistent key with key identifier \p id. + * \retval #PSA_ERROR_INVALID_ARGUMENT + * \p id is not a valid persistent key identifier. + * \retval #PSA_ERROR_NOT_PERMITTED + * The specified key exists, but the application does not have the + * permission to access it. Note that this specification does not + * define any way to create such a key, but it may be possible + * through implementation-specific means. + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_STORAGE_FAILURE + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_open_key(psa_key_id_t id, + psa_key_id_t *key); + +/** Close a key handle. + * + * If the handle designates a volatile key, this will destroy the key material + * and free all associated resources, just like psa_destroy_key(). + * + * If this is the last open handle to a persistent key, then closing the handle + * will free all resources associated with the key in volatile memory. The key + * data in persistent storage is not affected and can be opened again later + * with a call to psa_open_key(). + * + * Closing the key handle makes the handle invalid, and the key handle + * must not be used again by the application. + * + * \note This API is not part of the PSA Cryptography API Release 1.0.0 + * specification. It was defined in the 1.0 Beta 3 version of the + * specification but was removed in the 1.0.0 released version. This API is + * kept for the time being to not break applications relying on it. It is not + * deprecated yet but will be in the near future. + * + * \note If the key handle was used to set up an active + * :ref:\`multipart operation \`, then closing the + * key handle can cause the multipart operation to fail. Applications should + * maintain the key handle until after the multipart operation has finished. + * + * \param key The key to close. + * If this is \c 0, do nothing and return \c PSA_SUCCESS. + * + * \retval #PSA_SUCCESS + * \p handle was a valid handle or \c 0. It is now closed. + * \retval #PSA_ERROR_INVALID_HANDLE + * \p handle is not a valid handle nor \c 0. + * \retval #PSA_ERROR_COMMUNICATION_FAILURE + * \retval #PSA_ERROR_CORRUPTION_DETECTED + * \retval #PSA_ERROR_BAD_STATE + * The library has not been previously initialized by psa_crypto_init(). + * It is implementation-dependent whether a failure to initialize + * results in this error code. + */ +psa_status_t psa_close_key(psa_key_id_t key); + +#ifdef __cplusplus +} +#endif + +#endif /* PSA_CRYPTO_COMPAT_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_extra.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_extra.h new file mode 100644 index 0000000..b8a4d7e --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_extra.h @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2018-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_extra.h + * + * \brief PSA cryptography module: vendor extensions + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. + * + * This file is reserved for vendor-specific definitions. + */ + +#ifndef PSA_CRYPTO_EXTRA_H +#define PSA_CRYPTO_EXTRA_H + +#include "psa/crypto_compat.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** \addtogroup crypto_types + * @{ + */ + +/** DSA public key. + * + * The import and export format is the + * representation of the public key `y = g^x mod p` as a big-endian byte + * string. The length of the byte string is the length of the base prime `p` + * in bytes. + */ +#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x4002) + +/** DSA key pair (private and public key). + * + * The import and export format is the + * representation of the private key `x` as a big-endian byte string. The + * length of the byte string is the private key size in bytes (leading zeroes + * are not stripped). + * + * Determinstic DSA key derivation with psa_generate_derived_key follows + * FIPS 186-4 §B.1.2: interpret the byte string as integer + * in big-endian order. Discard it if it is not in the range + * [0, *N* - 2] where *N* is the boundary of the private key domain + * (the prime *p* for Diffie-Hellman, the subprime *q* for DSA, + * or the order of the curve's base point for ECC). + * Add 1 to the resulting integer and use this as the private key *x*. + * + */ +#define PSA_KEY_TYPE_DSA_KEY_PAIR ((psa_key_type_t)0x7002) + +/**@}*/ + +#ifdef __cplusplus +} +#endif + +#endif /* PSA_CRYPTO_EXTRA_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_sizes.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_sizes.h new file mode 100644 index 0000000..4d13e41 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_sizes.h @@ -0,0 +1,698 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_sizes.h + * + * \brief PSA cryptography module: Mbed TLS buffer size macros + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. + * + * This file contains the definitions of macros that are useful to + * compute buffer sizes. The signatures and semantics of these macros + * are standardized, but the definitions are not, because they depend on + * the available algorithms and, in some cases, on permitted tolerances + * on buffer sizes. + * + * In implementations with isolation between the application and the + * cryptography module, implementers should take care to ensure that + * the definitions that are exposed to applications match what the + * module implements. + * + * Macros that compute sizes whose values do not depend on the + * implementation are in crypto.h. + */ + +#ifndef PSA_CRYPTO_SIZES_H +#define PSA_CRYPTO_SIZES_H + +#define PSA_BITS_TO_BYTES(bits) (((bits) + 7) / 8) +#define PSA_BYTES_TO_BITS(bytes) ((bytes) * 8) + +#define PSA_ROUND_UP_TO_MULTIPLE(block_size, length) \ + (((length) + (block_size) - 1) / (block_size) * (block_size)) + +/** The size of the output of psa_hash_finish(), in bytes. + * + * This is also the hash size that psa_hash_verify() expects. + * + * \param alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p alg) is true), or an HMAC algorithm + * (#PSA_ALG_HMAC(\c hash_alg) where \c hash_alg is a + * hash algorithm). + * + * \return The hash size for the specified hash algorithm. + * If the hash algorithm is not recognized, return 0. + * An implementation may return either 0 or the correct size + * for a hash algorithm that it recognizes, but does not support. + */ +#define PSA_HASH_SIZE(alg) \ + ( \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD2 ? 16 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD4 ? 16 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_MD5 ? 16 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_RIPEMD160 ? 20 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_1 ? 20 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_224 ? 28 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_256 ? 32 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_384 ? 48 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512 ? 64 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_224 ? 28 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA_512_256 ? 32 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_224 ? 28 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_256 ? 32 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_384 ? 48 : \ + PSA_ALG_HMAC_GET_HASH(alg) == PSA_ALG_SHA3_512 ? 64 : \ + 0) + +/** \def PSA_HASH_MAX_SIZE + * + * Maximum size of a hash. + * + * This macro must expand to a compile-time constant integer. This value + * should be the maximum size of a hash supported by the implementation, + * in bytes, and must be no smaller than this maximum. + */ +/* Note: for HMAC-SHA-3, the block size is 144 bytes for HMAC-SHA3-226, + * 136 bytes for HMAC-SHA3-256, 104 bytes for SHA3-384, 72 bytes for + * HMAC-SHA3-512. */ +#define PSA_HASH_MAX_SIZE 64 +#define PSA_HMAC_MAX_HASH_BLOCK_SIZE 128 + +/** \def PSA_MAC_MAX_SIZE + * + * Maximum size of a MAC. + * + * This macro must expand to a compile-time constant integer. This value + * should be the maximum size of a MAC supported by the implementation, + * in bytes, and must be no smaller than this maximum. + */ +/* All non-HMAC MACs have a maximum size that's smaller than the + * minimum possible value of PSA_HASH_MAX_SIZE in this implementation. */ +/* Note that the encoding of truncated MAC algorithms limits this value + * to 64 bytes. + */ +#define PSA_MAC_MAX_SIZE PSA_HASH_MAX_SIZE + +/** The tag size for an AEAD algorithm, in bytes. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \return The tag size for the specified algorithm. + * If the AEAD algorithm does not have an identified + * tag that can be distinguished from the rest of + * the ciphertext, return 0. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +#define PSA_AEAD_TAG_LENGTH(alg) \ + (PSA_ALG_IS_AEAD(alg) ? \ + (((alg) & PSA_ALG_AEAD_TAG_LENGTH_MASK) >> PSA_AEAD_TAG_LENGTH_OFFSET) : \ + 0) + +/* The maximum size of an RSA key on this implementation, in bits. + * This is a vendor-specific macro. + * + * Mbed TLS does not set a hard limit on the size of RSA keys: any key + * whose parameters fit in a bignum is accepted. However large keys can + * induce a large memory usage and long computation times. Unlike other + * auxiliary macros in this file and in crypto.h, which reflect how the + * library is configured, this macro defines how the library is + * configured. This implementation refuses to import or generate an + * RSA key whose size is larger than the value defined here. + * + * Note that an implementation may set different size limits for different + * operations, and does not need to accept all key sizes up to the limit. */ +#define PSA_VENDOR_RSA_MAX_KEY_BITS 4096 + +/* The maximum size of an ECC key on this implementation, in bits */ +#define PSA_VENDOR_ECC_MAX_CURVE_BITS 521 + +/** \def PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN + * + * This macro returns the maximum length of the PSK supported + * by the TLS-1.2 PSK-to-MS key derivation. + * + * Quoting RFC 4279, Sect 5.3: + * TLS implementations supporting these ciphersuites MUST support + * arbitrary PSK identities up to 128 octets in length, and arbitrary + * PSKs up to 64 octets in length. Supporting longer identities and + * keys is RECOMMENDED. + * + * Therefore, no implementation should define a value smaller than 64 + * for #PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN. + */ +#define PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN 128 + +/** The maximum size of a block cipher supported by the implementation. */ +#define PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE 16 + +/** The size of the output of psa_mac_sign_finish(), in bytes. + * + * This is also the MAC size that psa_mac_verify_finish() expects. + * + * \param key_type The type of the MAC key. + * \param key_bits The size of the MAC key in bits. + * \param alg A MAC algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_MAC(\p alg) is true). + * + * \return The MAC size for the specified algorithm with + * the specified key parameters. + * \return 0 if the MAC algorithm is not recognized. + * \return Either 0 or the correct size for a MAC algorithm that + * the implementation recognizes, but does not support. + * \return Unspecified if the key parameters are not consistent + * with the algorithm. + */ +#define PSA_MAC_FINAL_SIZE(key_type, key_bits, alg) \ + ((alg) & PSA_ALG_MAC_TRUNCATION_MASK ? PSA_MAC_TRUNCATED_LENGTH(alg) : \ + PSA_ALG_IS_HMAC(alg) ? PSA_HASH_SIZE(PSA_ALG_HMAC_GET_HASH(alg)) : \ + PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) ? PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) : \ + ((void)(key_type), (void)(key_bits), 0)) + +/** The maximum size of the output of psa_aead_encrypt(), in bytes. + * + * If the size of the ciphertext buffer is at least this large, it is + * guaranteed that psa_aead_encrypt() will not fail due to an + * insufficient buffer size. Depending on the algorithm, the actual size of + * the ciphertext may be smaller. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * \param plaintext_length Size of the plaintext in bytes. + * + * \return The AEAD ciphertext size for the specified + * algorithm. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +#define PSA_AEAD_ENCRYPT_OUTPUT_SIZE(alg, plaintext_length) \ + (PSA_AEAD_TAG_LENGTH(alg) != 0 ? \ + (plaintext_length) + PSA_AEAD_TAG_LENGTH(alg) : \ + 0) + +/** The maximum size of the output of psa_aead_decrypt(), in bytes. + * + * If the size of the plaintext buffer is at least this large, it is + * guaranteed that psa_aead_decrypt() will not fail due to an + * insufficient buffer size. Depending on the algorithm, the actual size of + * the plaintext may be smaller. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * \param ciphertext_length Size of the plaintext in bytes. + * + * \return The AEAD ciphertext size for the specified + * algorithm. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +#define PSA_AEAD_DECRYPT_OUTPUT_SIZE(alg, ciphertext_length) \ + (PSA_AEAD_TAG_LENGTH(alg) != 0 ? \ + (ciphertext_length) - PSA_AEAD_TAG_LENGTH(alg) : \ + 0) + +/** A sufficient output buffer size for psa_aead_update(). + * + * If the size of the output buffer is at least this large, it is + * guaranteed that psa_aead_update() will not fail due to an + * insufficient buffer size. The actual size of the output may be smaller + * in any given call. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * \param input_length Size of the input in bytes. + * + * \return A sufficient output buffer size for the specified + * algorithm. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +/* For all the AEAD modes defined in this specification, it is possible + * to emit output without delay. However, hardware may not always be + * capable of this. So for modes based on a block cipher, allow the + * implementation to delay the output until it has a full block. */ +#define PSA_AEAD_UPDATE_OUTPUT_SIZE(alg, input_length) \ + (PSA_ALG_IS_AEAD_ON_BLOCK_CIPHER(alg) ? \ + PSA_ROUND_UP_TO_MULTIPLE(PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE, (input_length)) : \ + (input_length)) + +/** A sufficient ciphertext buffer size for psa_aead_finish(). + * + * If the size of the ciphertext buffer is at least this large, it is + * guaranteed that psa_aead_finish() will not fail due to an + * insufficient ciphertext buffer size. The actual size of the output may + * be smaller in any given call. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \return A sufficient ciphertext buffer size for the + * specified algorithm. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +#define PSA_AEAD_FINISH_OUTPUT_SIZE(alg) \ + (PSA_ALG_IS_AEAD_ON_BLOCK_CIPHER(alg) ? \ + PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE : \ + 0) + +/** A sufficient plaintext buffer size for psa_aead_verify(). + * + * If the size of the plaintext buffer is at least this large, it is + * guaranteed that psa_aead_verify() will not fail due to an + * insufficient plaintext buffer size. The actual size of the output may + * be smaller in any given call. + * + * \param alg An AEAD algorithm + * (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \return A sufficient plaintext buffer size for the + * specified algorithm. + * If the AEAD algorithm is not recognized, return 0. + * An implementation may return either 0 or a + * correct size for an AEAD algorithm that it + * recognizes, but does not support. + */ +#define PSA_AEAD_VERIFY_OUTPUT_SIZE(alg) \ + (PSA_ALG_IS_AEAD_ON_BLOCK_CIPHER(alg) ? \ + PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE : \ + 0) + +#define PSA_RSA_MINIMUM_PADDING_SIZE(alg) \ + (PSA_ALG_IS_RSA_OAEP(alg) ? \ + 2 * PSA_HASH_SIZE(PSA_ALG_RSA_OAEP_GET_HASH(alg)) + 1 : \ + 11 /*PKCS#1v1.5*/) + +/** + * \brief ECDSA signature size for a given curve bit size + * + * \param curve_bits Curve size in bits. + * \return Signature size in bytes. + * + * \note This macro returns a compile-time constant if its argument is one. + */ +#define PSA_ECDSA_SIGNATURE_SIZE(curve_bits) \ + (PSA_BITS_TO_BYTES(curve_bits) * 2) + +/** Sufficient signature buffer size for psa_sign_hash(). + * + * This macro returns a sufficient buffer size for a signature using a key + * of the specified type and size, with the specified algorithm. + * Note that the actual size of the signature may be smaller + * (some algorithms produce a variable-size signature). + * + * \warning This function may call its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * \param key_type An asymmetric key type (this may indifferently be a + * key pair type or a public key type). + * \param key_bits The size of the key in bits. + * \param alg The signature algorithm. + * + * \return If the parameters are valid and supported, return + * a buffer size in bytes that guarantees that + * psa_sign_hash() will not fail with + * #PSA_ERROR_BUFFER_TOO_SMALL. + * If the parameters are a valid combination that is not supported + * by the implementation, this macro shall return either a + * sensible size or 0. + * If the parameters are not valid, the + * return value is unspecified. + */ +#define PSA_SIGN_OUTPUT_SIZE(key_type, key_bits, alg) \ + (PSA_KEY_TYPE_IS_RSA(key_type) ? ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \ + PSA_KEY_TYPE_IS_ECC(key_type) ? PSA_ECDSA_SIGNATURE_SIZE(key_bits) : \ + ((void)alg, 0)) + +#define PSA_VENDOR_ECDSA_SIGNATURE_MAX_SIZE \ + PSA_ECDSA_SIGNATURE_SIZE(PSA_VENDOR_ECC_MAX_CURVE_BITS) + +/** \def PSA_SIGNATURE_MAX_SIZE + * + * Maximum size of an asymmetric signature. + * + * This macro must expand to a compile-time constant integer. This value + * should be the maximum size of a signature supported by the implementation, + * in bytes, and must be no smaller than this maximum. + */ +#define PSA_SIGNATURE_MAX_SIZE \ + (PSA_BITS_TO_BYTES(PSA_VENDOR_RSA_MAX_KEY_BITS) > PSA_VENDOR_ECDSA_SIGNATURE_MAX_SIZE ? \ + PSA_BITS_TO_BYTES(PSA_VENDOR_RSA_MAX_KEY_BITS) : \ + PSA_VENDOR_ECDSA_SIGNATURE_MAX_SIZE) + +/** Sufficient output buffer size for psa_asymmetric_encrypt(). + * + * This macro returns a sufficient buffer size for a ciphertext produced using + * a key of the specified type and size, with the specified algorithm. + * Note that the actual size of the ciphertext may be smaller, depending + * on the algorithm. + * + * \warning This function may call its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * \param key_type An asymmetric key type (this may indifferently be a + * key pair type or a public key type). + * \param key_bits The size of the key in bits. + * \param alg The asymmetric encryption algorithm. + * + * \return If the parameters are valid and supported, return + * a buffer size in bytes that guarantees that + * psa_asymmetric_encrypt() will not fail with + * #PSA_ERROR_BUFFER_TOO_SMALL. + * If the parameters are a valid combination that is not supported + * by the implementation, this macro shall return either a + * sensible size or 0. + * If the parameters are not valid, the + * return value is unspecified. + */ +#define PSA_ASYMMETRIC_ENCRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \ + (PSA_KEY_TYPE_IS_RSA(key_type) ? \ + ((void)alg, PSA_BITS_TO_BYTES(key_bits)) : \ + 0) + +/** Sufficient output buffer size for psa_asymmetric_decrypt(). + * + * This macro returns a sufficient buffer size for a plaintext produced using + * a key of the specified type and size, with the specified algorithm. + * Note that the actual size of the plaintext may be smaller, depending + * on the algorithm. + * + * \warning This function may call its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * \param key_type An asymmetric key type (this may indifferently be a + * key pair type or a public key type). + * \param key_bits The size of the key in bits. + * \param alg The asymmetric encryption algorithm. + * + * \return If the parameters are valid and supported, return + * a buffer size in bytes that guarantees that + * psa_asymmetric_decrypt() will not fail with + * #PSA_ERROR_BUFFER_TOO_SMALL. + * If the parameters are a valid combination that is not supported + * by the implementation, this macro shall return either a + * sensible size or 0. + * If the parameters are not valid, the + * return value is unspecified. + */ +#define PSA_ASYMMETRIC_DECRYPT_OUTPUT_SIZE(key_type, key_bits, alg) \ + (PSA_KEY_TYPE_IS_RSA(key_type) ? \ + PSA_BITS_TO_BYTES(key_bits) - PSA_RSA_MINIMUM_PADDING_SIZE(alg) : \ + 0) + +/* Maximum size of the ASN.1 encoding of an INTEGER with the specified + * number of bits. + * + * This definition assumes that bits <= 2^19 - 9 so that the length field + * is at most 3 bytes. The length of the encoding is the length of the + * bit string padded to a whole number of bytes plus: + * - 1 type byte; + * - 1 to 3 length bytes; + * - 0 to 1 bytes of leading 0 due to the sign bit. + */ +#define PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(bits) \ + ((bits) / 8 + 5) + +/* Maximum size of the export encoding of an RSA public key. + * Assumes that the public exponent is less than 2^32. + * + * RSAPublicKey ::= SEQUENCE { + * modulus INTEGER, -- n + * publicExponent INTEGER } -- e + * + * - 4 bytes of SEQUENCE overhead; + * - n : INTEGER; + * - 7 bytes for the public exponent. + */ +#define PSA_KEY_EXPORT_RSA_PUBLIC_KEY_MAX_SIZE(key_bits) \ + (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) + 11) + +/* Maximum size of the export encoding of an RSA key pair. + * Assumes thatthe public exponent is less than 2^32 and that the size + * difference between the two primes is at most 1 bit. + * + * RSAPrivateKey ::= SEQUENCE { + * version Version, -- 0 + * modulus INTEGER, -- N-bit + * publicExponent INTEGER, -- 32-bit + * privateExponent INTEGER, -- N-bit + * prime1 INTEGER, -- N/2-bit + * prime2 INTEGER, -- N/2-bit + * exponent1 INTEGER, -- N/2-bit + * exponent2 INTEGER, -- N/2-bit + * coefficient INTEGER, -- N/2-bit + * } + * + * - 4 bytes of SEQUENCE overhead; + * - 3 bytes of version; + * - 7 half-size INTEGERs plus 2 full-size INTEGERs, + * overapproximated as 9 half-size INTEGERS; + * - 7 bytes for the public exponent. + */ +#define PSA_KEY_EXPORT_RSA_KEY_PAIR_MAX_SIZE(key_bits) \ + (9 * PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE((key_bits) / 2 + 1) + 14) + +/* Maximum size of the export encoding of a DSA public key. + * + * SubjectPublicKeyInfo ::= SEQUENCE { + * algorithm AlgorithmIdentifier, + * subjectPublicKey BIT STRING } -- contains DSAPublicKey + * AlgorithmIdentifier ::= SEQUENCE { + * algorithm OBJECT IDENTIFIER, + * parameters Dss-Parms } -- SEQUENCE of 3 INTEGERs + * DSAPublicKey ::= INTEGER -- public key, Y + * + * - 3 * 4 bytes of SEQUENCE overhead; + * - 1 + 1 + 7 bytes of algorithm (DSA OID); + * - 4 bytes of BIT STRING overhead; + * - 3 full-size INTEGERs (p, g, y); + * - 1 + 1 + 32 bytes for 1 sub-size INTEGER (q <= 256 bits). + */ +#define PSA_KEY_EXPORT_DSA_PUBLIC_KEY_MAX_SIZE(key_bits) \ + (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) * 3 + 59) + +/* Maximum size of the export encoding of a DSA key pair. + * + * DSAPrivateKey ::= SEQUENCE { + * version Version, -- 0 + * prime INTEGER, -- p + * subprime INTEGER, -- q + * generator INTEGER, -- g + * public INTEGER, -- y + * private INTEGER, -- x + * } + * + * - 4 bytes of SEQUENCE overhead; + * - 3 bytes of version; + * - 3 full-size INTEGERs (p, g, y); + * - 2 * (1 + 1 + 32) bytes for 2 sub-size INTEGERs (q, x <= 256 bits). + */ +#define PSA_KEY_EXPORT_DSA_KEY_PAIR_MAX_SIZE(key_bits) \ + (PSA_KEY_EXPORT_ASN1_INTEGER_MAX_SIZE(key_bits) * 3 + 75) + +/* Maximum size of the export encoding of an ECC public key. + * + * The representation of an ECC public key is: + * - The byte 0x04; + * - `x_P` as a `ceiling(m/8)`-byte string, big-endian; + * - `y_P` as a `ceiling(m/8)`-byte string, big-endian; + * - where m is the bit size associated with the curve. + * + * - 1 byte + 2 * point size. + */ +#define PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(key_bits) \ + (2 * PSA_BITS_TO_BYTES(key_bits) + 1) + +/* Maximum size of the export encoding of an ECC key pair. + * + * An ECC key pair is represented by the secret value. + */ +#define PSA_KEY_EXPORT_ECC_KEY_PAIR_MAX_SIZE(key_bits) \ + (PSA_BITS_TO_BYTES(key_bits)) + +/** Sufficient output buffer size for psa_export_key() or psa_export_public_key(). + * + * This macro returns a compile-time constant if its arguments are + * compile-time constants. + * + * \warning This function may call its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * The following code illustrates how to allocate enough memory to export + * a key by querying the key type and size at runtime. + * \code{c} + * psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; + * psa_status_t status; + * status = psa_get_key_attributes(key, &attributes); + * if (status != PSA_SUCCESS) handle_error(...); + * psa_key_type_t key_type = psa_get_key_type(&attributes); + * size_t key_bits = psa_get_key_bits(&attributes); + * size_t buffer_size = PSA_KEY_EXPORT_MAX_SIZE(key_type, key_bits); + * psa_reset_key_attributes(&attributes); + * uint8_t *buffer = malloc(buffer_size); + * if (buffer == NULL) handle_error(...); + * size_t buffer_length; + * status = psa_export_key(key, buffer, buffer_size, &buffer_length); + * if (status != PSA_SUCCESS) handle_error(...); + * \endcode + * + * For psa_export_public_key(), calculate the buffer size from the + * public key type. You can use the macro #PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR + * to convert a key pair type to the corresponding public key type. + * \code{c} + * psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; + * psa_status_t status; + * status = psa_get_key_attributes(key, &attributes); + * if (status != PSA_SUCCESS) handle_error(...); + * psa_key_type_t key_type = psa_get_key_type(&attributes); + * psa_key_type_t public_key_type = PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(key_type); + * size_t key_bits = psa_get_key_bits(&attributes); + * size_t buffer_size = PSA_KEY_EXPORT_MAX_SIZE(public_key_type, key_bits); + * psa_reset_key_attributes(&attributes); + * uint8_t *buffer = malloc(buffer_size); + * if (buffer == NULL) handle_error(...); + * size_t buffer_length; + * status = psa_export_public_key(key, buffer, buffer_size, &buffer_length); + * if (status != PSA_SUCCESS) handle_error(...); + * \endcode + * + * \param key_type A supported key type. + * \param key_bits The size of the key in bits. + * + * \return If the parameters are valid and supported, return + * a buffer size in bytes that guarantees that + * psa_sign_hash() will not fail with + * #PSA_ERROR_BUFFER_TOO_SMALL. + * If the parameters are a valid combination that is not supported + * by the implementation, this macro shall return either a + * sensible size or 0. + * If the parameters are not valid, the + * return value is unspecified. + */ +#define PSA_KEY_EXPORT_MAX_SIZE(key_type, key_bits) \ + (PSA_KEY_TYPE_IS_UNSTRUCTURED(key_type) ? PSA_BITS_TO_BYTES(key_bits) : \ + (key_type) == PSA_KEY_TYPE_RSA_KEY_PAIR ? PSA_KEY_EXPORT_RSA_KEY_PAIR_MAX_SIZE(key_bits) : \ + (key_type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY ? PSA_KEY_EXPORT_RSA_PUBLIC_KEY_MAX_SIZE(key_bits) : \ + (key_type) == PSA_KEY_TYPE_DSA_KEY_PAIR ? PSA_KEY_EXPORT_DSA_KEY_PAIR_MAX_SIZE(key_bits) : \ + (key_type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY ? PSA_KEY_EXPORT_DSA_PUBLIC_KEY_MAX_SIZE(key_bits) : \ + PSA_KEY_TYPE_IS_ECC_KEY_PAIR(key_type) ? PSA_KEY_EXPORT_ECC_KEY_PAIR_MAX_SIZE(key_bits) : \ + PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY(key_type) ? PSA_KEY_EXPORT_ECC_PUBLIC_KEY_MAX_SIZE(key_bits) : \ + 0) + +/** The default nonce size for an AEAD algorithm, in bytes. + * + * This macro can be used to allocate a buffer of sufficient size to + * store the nonce output from #psa_aead_generate_nonce(). + * + * See also #PSA_AEAD_NONCE_MAX_SIZE. + * + * \note This is not the maximum size of nonce supported as input to #psa_aead_set_nonce(), + * #psa_aead_encrypt() or #psa_aead_decrypt(), just the default size that is generated by + * #psa_aead_generate_nonce(). + * + * \warning This macro may evaluate its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * \param key_type A symmetric key type that is compatible with algorithm \p alg. + * + * \param alg An AEAD algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \return The default nonce size for the specified key type and algorithm. + * If the key type or AEAD algorithm is not recognized, + * or the parameters are incompatible, return 0. + * An implementation can return either 0 or a correct size for a key type + * and AEAD algorithm that it recognizes, but does not support. + */ +#define PSA_AEAD_NONCE_LENGTH(key_type, alg) \ + (PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) == 16 && \ + (PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(alg) == PSA_ALG_CCM || \ + PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(alg) == PSA_ALG_GCM) ? 12 : \ + (key_type) == PSA_KEY_TYPE_CHACHA20 && \ + PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(alg) == PSA_ALG_CHACHA20_POLY1305 ? 12 : \ + 0) + +/** The maximum default nonce size among all supported pairs of key types and + * AEAD algorithms, in bytes. + * + * This is equal to or greater than any value that #PSA_AEAD_NONCE_LENGTH() may return. + * + * \note This is not the maximum size of nonce supported as input to #psa_aead_set_nonce(), + * #psa_aead_encrypt() or #psa_aead_decrypt(), just the largest size that may be generated by + * #psa_aead_generate_nonce(). + */ +#define PSA_AEAD_NONCE_MAX_SIZE 12 + +/** The default IV size for a cipher algorithm, in bytes. + * + * The IV that is generated as part of a call to #psa_cipher_encrypt() is always + * the default IV length for the algorithm. + * + * This macro can be used to allocate a buffer of sufficient size to + * store the IV output from #psa_cipher_generate_iv() when using + * a multi-part cipher operation. + * + * See also #PSA_CIPHER_IV_MAX_SIZE. + * + * \warning This macro may evaluate its arguments multiple times or + * zero times, so you should not pass arguments that contain + * side effects. + * + * \param key_type A symmetric key type that is compatible with algorithm \p alg. + * + * \param alg A cipher algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_CIPHER(\p alg) is true). + * + * \return The default IV size for the specified key type and algorithm. + * If the algorithm does not use an IV, return 0. + * If the key type or cipher algorithm is not recognized, + * or the parameters are incompatible, return 0. + * An implementation can return either 0 or a correct size for a key type + * and cipher algorithm that it recognizes, but does not support. + */ +#define PSA_CIPHER_IV_LENGTH(key_type, alg) \ + (PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) > 1 && \ + ((alg) == PSA_ALG_CTR || \ + (alg) == PSA_ALG_CFB || \ + (alg) == PSA_ALG_OFB || \ + (alg) == PSA_ALG_XTS || \ + (alg) == PSA_ALG_CBC_NO_PADDING || \ + (alg) == PSA_ALG_CBC_PKCS7) ? PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type) : \ + (key_type) == PSA_KEY_TYPE_CHACHA20 && \ + (alg) == PSA_ALG_STREAM_CIPHER ? 12 : \ + 0) + +/** The maximum IV size for all supported cipher algorithms, in bytes. + * + * See also #PSA_CIPHER_IV_LENGTH(). + */ +#define PSA_CIPHER_IV_MAX_SIZE 16 + +#endif /* PSA_CRYPTO_SIZES_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_struct.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_struct.h new file mode 100644 index 0000000..e0ceb2f --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_struct.h @@ -0,0 +1,221 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_struct.h + * + * \brief PSA cryptography module: structured type implementations + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. + * + * This file contains the definitions of some data structures with + * implementation-specific definitions. + * + * In implementations with isolation between the application and the + * cryptography module, it is expected that the front-end and the back-end + * would have different versions of this file. + */ + +#ifndef PSA_CRYPTO_STRUCT_H +#define PSA_CRYPTO_STRUCT_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Note that the below structures are different from the decalrations in + * mbed-crypto. This is because TF-M maintains 'front-end' and 'back-end' + * versions of this header. In the front-end version, exported to NS + * clients in interface/include/psa, a crypto operation is defined as an + * opaque handle to a context in the Crypto service. The back-end + * version, directly included from the mbed-crypto repo by the Crypto + * service, contains the full definition of the operation structs. + * + * One of the functions of the Crypto service is to allocate the back-end + * operation contexts in its own partition memory (in crypto_alloc.c), + * and then do the mapping between front-end operation handles passed by + * NS clients and the corresponding back-end operation contexts. The + * advantage of doing it this way is that internal mbed-crypto state is never + * exposed to the NS client. + */ + +struct psa_hash_operation_s +{ + uint32_t handle; +}; + +#define PSA_HASH_OPERATION_INIT {0} +static inline struct psa_hash_operation_s psa_hash_operation_init( void ) +{ + const struct psa_hash_operation_s v = PSA_HASH_OPERATION_INIT; + return( v ); +} + +struct psa_mac_operation_s +{ + uint32_t handle; +}; + +#define PSA_MAC_OPERATION_INIT {0} +static inline struct psa_mac_operation_s psa_mac_operation_init( void ) +{ + const struct psa_mac_operation_s v = PSA_MAC_OPERATION_INIT; + return( v ); +} + +struct psa_cipher_operation_s +{ + uint32_t handle; +}; + +#define PSA_CIPHER_OPERATION_INIT {0} +static inline struct psa_cipher_operation_s psa_cipher_operation_init( void ) +{ + const struct psa_cipher_operation_s v = PSA_CIPHER_OPERATION_INIT; + return( v ); +} + +struct psa_aead_operation_s +{ + uint32_t handle; +}; + +#define PSA_AEAD_OPERATION_INIT {0} +static inline struct psa_aead_operation_s psa_aead_operation_init( void ) +{ + const struct psa_aead_operation_s v = PSA_AEAD_OPERATION_INIT; + return( v ); +} + +struct psa_key_derivation_s +{ + uint32_t handle; +}; + +#define PSA_KEY_DERIVATION_OPERATION_INIT {0} +static inline struct psa_key_derivation_s psa_key_derivation_operation_init( void ) +{ + const struct psa_key_derivation_s v = PSA_KEY_DERIVATION_OPERATION_INIT; + return( v ); +} + +/* The type used internally for key sizes. + * Public interfaces use size_t, but internally we use a smaller type. */ +typedef uint16_t psa_key_bits_t; +/* The maximum value of the type used to represent bit-sizes. + * This is used to mark an invalid key size. */ +#define PSA_KEY_BITS_TOO_LARGE ( (psa_key_bits_t) ( -1 ) ) +/* The maximum size of a key in bits. + * Currently defined as the maximum that can be represented, rounded down + * to a whole number of bytes. + * This is an uncast value so that it can be used in preprocessor + * conditionals. */ +#define PSA_MAX_KEY_BITS 0xfff8 + +#define PSA_KEY_ATTRIBUTES_INIT PSA_CLIENT_KEY_ATTRIBUTES_INIT + +static inline struct psa_client_key_attributes_s psa_key_attributes_init( void ) +{ + const struct psa_client_key_attributes_s v = PSA_KEY_ATTRIBUTES_INIT; + return( v ); +} + +static inline void psa_set_key_id(psa_key_attributes_t *attributes, + psa_key_id_t key) +{ + psa_key_lifetime_t lifetime = attributes->lifetime; + + attributes->id = key; + + if( PSA_KEY_LIFETIME_IS_VOLATILE(lifetime)) + { + attributes->lifetime = + PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( + PSA_KEY_LIFETIME_PERSISTENT, + PSA_KEY_LIFETIME_GET_LOCATION(lifetime)); + } +} + +static inline psa_key_id_t psa_get_key_id( + const psa_key_attributes_t *attributes) +{ + return( attributes->id ); +} + +static inline void psa_set_key_lifetime(psa_key_attributes_t *attributes, + psa_key_lifetime_t lifetime) +{ + attributes->lifetime = lifetime; + if(PSA_KEY_LIFETIME_IS_VOLATILE(lifetime)) + { + attributes->id = 0; + } +} + +static inline psa_key_lifetime_t psa_get_key_lifetime( + const psa_key_attributes_t *attributes) +{ + return( attributes->lifetime ); +} + +static inline void psa_set_key_usage_flags(psa_key_attributes_t *attributes, + psa_key_usage_t usage_flags) +{ + attributes->usage = usage_flags; +} + +static inline psa_key_usage_t psa_get_key_usage_flags( + const psa_key_attributes_t *attributes) +{ + return( attributes->usage ); +} + +static inline void psa_set_key_algorithm(psa_key_attributes_t *attributes, + psa_algorithm_t alg) +{ + attributes->alg = alg; +} + +static inline psa_algorithm_t psa_get_key_algorithm( + const psa_key_attributes_t *attributes) +{ + return( attributes->alg ); +} + +static inline void psa_set_key_type(psa_key_attributes_t *attributes, + psa_key_type_t type) +{ + attributes->type = type; +} + +static inline psa_key_type_t psa_get_key_type( + const psa_key_attributes_t *attributes) +{ + return( attributes->type ); +} + +static inline void psa_set_key_bits(psa_key_attributes_t *attributes, + size_t bits) +{ + if( bits > PSA_MAX_KEY_BITS ) + attributes->bits = PSA_KEY_BITS_TOO_LARGE; + else + attributes->bits = bits; +} + +static inline size_t psa_get_key_bits( + const psa_key_attributes_t *attributes) +{ + return( attributes->bits ); +} + +#ifdef __cplusplus +} +#endif + +#endif /* PSA_CRYPTO_STRUCT_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_types.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_types.h new file mode 100644 index 0000000..bf51a2f --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_types.h @@ -0,0 +1,356 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_types.h + * + * \brief PSA cryptography module: type aliases. + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. Drivers must include the appropriate driver + * header file. + * + * This file contains portable definitions of integral types for properties + * of cryptographic keys, designations of cryptographic algorithms, and + * error codes returned by the library. + * + * This header file does not declare any function. + */ + +#ifndef PSA_CRYPTO_TYPES_H +#define PSA_CRYPTO_TYPES_H + +#include + +/** \defgroup error Error codes + * @{ + */ + +/** + * \brief Function return status. + * + * This is either #PSA_SUCCESS (which is zero), indicating success, + * or a small negative value indicating that an error occurred. Errors are + * encoded as one of the \c PSA_ERROR_xxx values defined here. */ +/* If #PSA_SUCCESS is already defined, it means that #psa_status_t + * is also defined in an external header, so prevent its multiple + * definition. + */ +#ifndef PSA_SUCCESS +typedef int32_t psa_status_t; +#endif + +/**@}*/ + +/** \defgroup crypto_types Key and algorithm types + * @{ + */ + +/** \brief Encoding of a key type. + */ +typedef uint16_t psa_key_type_t; + +/** The type of PSA elliptic curve family identifiers. + * + * The curve identifier is required to create an ECC key using the + * PSA_KEY_TYPE_ECC_KEY_PAIR() or PSA_KEY_TYPE_ECC_PUBLIC_KEY() + * macros. + * + * Values defined by this standard will never be in the range 0x80-0xff. + * Vendors who define additional families must use an encoding in this range. + */ +typedef uint8_t psa_ecc_family_t; + +/** The type of PSA Diffie-Hellman group family identifiers. + * + * The group identifier is required to create an Diffie-Hellman key using the + * PSA_KEY_TYPE_DH_KEY_PAIR() or PSA_KEY_TYPE_DH_PUBLIC_KEY() + * macros. + * + * Values defined by this standard will never be in the range 0x80-0xff. + * Vendors who define additional families must use an encoding in this range. + */ +typedef uint8_t psa_dh_family_t; + +/** \brief Encoding of a cryptographic algorithm. + * + * For algorithms that can be applied to multiple key types, this type + * does not encode the key type. For example, for symmetric ciphers + * based on a block cipher, #psa_algorithm_t encodes the block cipher + * mode and the padding mode while the block cipher itself is encoded + * via #psa_key_type_t. + */ +typedef uint32_t psa_algorithm_t; + +/**@}*/ + +/** \defgroup key_lifetimes Key lifetimes + * @{ + */ + +/** Encoding of key lifetimes. + * + * The lifetime of a key indicates where it is stored and what system actions + * may create and destroy it. + * + * Lifetime values have the following structure: + * - Bits 0-7 (#PSA_KEY_LIFETIME_GET_PERSISTENCE(\c lifetime)): + * persistence level. This value indicates what device management + * actions can cause it to be destroyed. In particular, it indicates + * whether the key is _volatile_ or _persistent_. + * See ::psa_key_persistence_t for more information. + * - Bits 8-31 (#PSA_KEY_LIFETIME_GET_LOCATION(\c lifetime)): + * location indicator. This value indicates where the key is stored + * and where operations on the key are performed. + * See ::psa_key_location_t for more information. + * + * Volatile keys are automatically destroyed when the application instance + * terminates or on a power reset of the device. Persistent keys are + * preserved until the application explicitly destroys them or until an + * implementation-specific device management event occurs (for example, + * a factory reset). + * + * Persistent keys have a key identifier of type #psa_key_id_t. + * This identifier remains valid throughout the lifetime of the key, + * even if the application instance that created the key terminates. + * The application can call psa_open_key() to open a persistent key that + * it created previously. + * + * This specification defines two basic lifetime values: + * - Keys with the lifetime #PSA_KEY_LIFETIME_VOLATILE are volatile. + * All implementations should support this lifetime. + * - Keys with the lifetime #PSA_KEY_LIFETIME_PERSISTENT are persistent. + * All implementations that have access to persistent storage with + * appropriate security guarantees should support this lifetime. + */ +typedef uint32_t psa_key_lifetime_t; + +/** Encoding of key persistence levels. + * + * What distinguishes different persistence levels is what device management + * events may cause keys to be destroyed. _Volatile_ keys are destroyed + * by a power reset. Persistent keys may be destroyed by events such as + * a transfer of ownership or a factory reset. What management events + * actually affect persistent keys at different levels is outside the + * scope of the PSA Cryptography specification. + * + * This specification defines the following values of persistence levels: + * - \c 0 = #PSA_KEY_PERSISTENCE_VOLATILE: volatile key. + * A volatile key is automatically destroyed by the implementation when + * the application instance terminates. In particular, a volatile key + * is automatically destroyed on a power reset of the device. + * - \c 1 = #PSA_KEY_PERSISTENCE_DEFAULT: + * persistent key with a default lifetime. + * Implementations should support this value if they support persistent + * keys at all. + * Applications should use this value if they have no specific needs that + * are only met by implementation-specific features. + * - \c 2-127: persistent key with a PSA-specified lifetime. + * The PSA Cryptography specification does not define the meaning of these + * values, but other PSA specifications may do so. + * - \c 128-254: persistent key with a vendor-specified lifetime. + * No PSA specification will define the meaning of these values, so + * implementations may choose the meaning freely. + * As a guideline, higher persistence levels should cause a key to survive + * more management events than lower levels. + * - \c 255 = #PSA_KEY_PERSISTENCE_READ_ONLY: + * read-only or write-once key. + * A key with this persistence level cannot be destroyed. + * Implementations that support such keys may either allow their creation + * through the PSA Cryptography API, preferably only to applications with + * the appropriate privilege, or only expose keys created through + * implementation-specific means such as a factory ROM engraving process. + * Note that keys that are read-only due to policy restrictions + * rather than due to physical limitations should not have this + * persistence levels. + * + * \note Key persistence levels are 8-bit values. Key management + * interfaces operate on lifetimes (type ::psa_key_lifetime_t) which + * encode the persistence as the lower 8 bits of a 32-bit value. + */ +typedef uint8_t psa_key_persistence_t; + +/** Encoding of key location indicators. + * + * If an implementation of this API can make calls to external + * cryptoprocessors such as secure elements, the location of a key + * indicates which secure element performs the operations on the key. + * If an implementation offers multiple physical locations for persistent + * storage, the location indicator reflects at which physical location + * the key is stored. + * + * This specification defines the following values of location indicators: + * - \c 0: primary local storage. + * All implementations should support this value. + * The primary local storage is typically the same storage area that + * contains the key metadata. + * - \c 1: primary secure element. + * Implementations should support this value if there is a secure element + * attached to the operating environment. + * As a guideline, secure elements may provide higher resistance against + * side channel and physical attacks than the primary local storage, but may + * have restrictions on supported key types, sizes, policies and operations + * and may have different performance characteristics. + * - \c 2-0x7fffff: other locations defined by a PSA specification. + * The PSA Cryptography API does not currently assign any meaning to these + * locations, but future versions of this specification or other PSA + * specifications may do so. + * - \c 0x800000-0xffffff: vendor-defined locations. + * No PSA specification will assign a meaning to locations in this range. + * + * \note Key location indicators are 24-bit values. Key management + * interfaces operate on lifetimes (type ::psa_key_lifetime_t) which + * encode the location as the upper 24 bits of a 32-bit value. + */ +typedef uint32_t psa_key_location_t; + +/** Encoding of identifiers of persistent keys. + * + * - Applications may freely choose key identifiers in the range + * #PSA_KEY_ID_USER_MIN to #PSA_KEY_ID_USER_MAX. + * - Implementations may define additional key identifiers in the range + * #PSA_KEY_ID_VENDOR_MIN to #PSA_KEY_ID_VENDOR_MAX. + * - 0 is reserved as an invalid key identifier. + * - Key identifiers outside these ranges are reserved for future use. + */ +typedef uint32_t psa_key_id_t; +#define PSA_KEY_ID_INIT 0 + +/**@}*/ + +/** \defgroup policy Key policies + * @{ + */ + +/** \brief Encoding of permitted usage on a key. */ +typedef uint32_t psa_key_usage_t; + +/**@}*/ + +/** \defgroup attributes Key attributes + * @{ + */ + +/** The type of a structure containing key attributes. + * + * This is an opaque structure that can represent the metadata of a key + * object. Metadata that can be stored in attributes includes: + * - The location of the key in storage, indicated by its key identifier + * and its lifetime. + * - The key's policy, comprising usage flags and a specification of + * the permitted algorithm(s). + * - Information about the key itself: the key type and its size. + * - Implementations may define additional attributes. + * + * The actual key material is not considered an attribute of a key. + * Key attributes do not contain information that is generally considered + * highly confidential. + * + * An attribute structure can be a simple data structure where each function + * `psa_set_key_xxx` sets a field and the corresponding function + * `psa_get_key_xxx` retrieves the value of the corresponding field. + * However, implementations may report values that are equivalent to the + * original one, but have a different encoding. For example, an + * implementation may use a more compact representation for types where + * many bit-patterns are invalid or not supported, and store all values + * that it does not support as a special marker value. In such an + * implementation, after setting an invalid value, the corresponding + * get function returns an invalid value which may not be the one that + * was originally stored. + * + * An attribute structure may contain references to auxiliary resources, + * for example pointers to allocated memory or indirect references to + * pre-calculated values. In order to free such resources, the application + * must call psa_reset_key_attributes(). As an exception, calling + * psa_reset_key_attributes() on an attribute structure is optional if + * the structure has only been modified by the following functions + * since it was initialized or last reset with psa_reset_key_attributes(): + * - psa_set_key_id() + * - psa_set_key_lifetime() + * - psa_set_key_type() + * - psa_set_key_bits() + * - psa_set_key_usage_flags() + * - psa_set_key_algorithm() + * + * Before calling any function on a key attribute structure, the application + * must initialize it by any of the following means: + * - Set the structure to all-bits-zero, for example: + * \code + * psa_key_attributes_t attributes; + * memset(&attributes, 0, sizeof(attributes)); + * \endcode + * - Initialize the structure to logical zero values, for example: + * \code + * psa_key_attributes_t attributes = {0}; + * \endcode + * - Initialize the structure to the initializer #PSA_KEY_ATTRIBUTES_INIT, + * for example: + * \code + * psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; + * \endcode + * - Assign the result of the function psa_key_attributes_init() + * to the structure, for example: + * \code + * psa_key_attributes_t attributes; + * attributes = psa_key_attributes_init(); + * \endcode + * + * A freshly initialized attribute structure contains the following + * values: + * + * - lifetime: #PSA_KEY_LIFETIME_VOLATILE. + * - key identifier: 0 (which is not a valid key identifier). + * - type: \c 0 (meaning that the type is unspecified). + * - key size: \c 0 (meaning that the size is unspecified). + * - usage flags: \c 0 (which allows no usage except exporting a public key). + * - algorithm: \c 0 (which allows no cryptographic usage, but allows + * exporting). + * + * A typical sequence to create a key is as follows: + * -# Create and initialize an attribute structure. + * -# If the key is persistent, call psa_set_key_id(). + * Also call psa_set_key_lifetime() to place the key in a non-default + * location. + * -# Set the key policy with psa_set_key_usage_flags() and + * psa_set_key_algorithm(). + * -# Set the key type with psa_set_key_type(). + * Skip this step if copying an existing key with psa_copy_key(). + * -# When generating a random key with psa_generate_key() or deriving a key + * with psa_key_derivation_output_key(), set the desired key size with + * psa_set_key_bits(). + * -# Call a key creation function: psa_import_key(), psa_generate_key(), + * psa_key_derivation_output_key() or psa_copy_key(). This function reads + * the attribute structure, creates a key with these attributes, and + * outputs a key identifier to the newly created key. + * -# The attribute structure is now no longer necessary. + * You may call psa_reset_key_attributes(), although this is optional + * with the workflow presented here because the attributes currently + * defined in this specification do not require any additional resources + * beyond the structure itself. + * + * A typical sequence to query a key's attributes is as follows: + * -# Call psa_get_key_attributes(). + * -# Call `psa_get_key_xxx` functions to retrieve the attribute(s) that + * you are interested in. + * -# Call psa_reset_key_attributes() to free any resources that may be + * used by the attribute structure. + * + * Once a key has been created, it is impossible to change its attributes. + */ +typedef struct psa_client_key_attributes_s psa_key_attributes_t; + +/**@}*/ + +/** \defgroup derivation Key derivation + * @{ + */ + +/** \brief Encoding of the step of a key derivation. */ +typedef uint16_t psa_key_derivation_step_t; + +/**@}*/ + +#endif /* PSA_CRYPTO_TYPES_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_values.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_values.h new file mode 100644 index 0000000..9cca6b2 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/crypto_values.h @@ -0,0 +1,1785 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +/** + * \file psa/crypto_values.h + * + * \brief PSA cryptography module: macros to build and analyze integer values. + * + * \note This file may not be included directly. Applications must + * include psa/crypto.h. Drivers must include the appropriate driver + * header file. + * + * This file contains portable definitions of macros to build and analyze + * values of integral types that encode properties of cryptographic keys, + * designations of cryptographic algorithms, and error codes returned by + * the library. + * + * This header file only defines preprocessor macros. + */ + +#ifndef PSA_CRYPTO_VALUES_H +#define PSA_CRYPTO_VALUES_H + +/** \defgroup error Error codes + * @{ + */ + +/* PSA error codes */ + +/** The action was completed successfully. */ +#ifndef PSA_SUCCESS +#define PSA_SUCCESS ((psa_status_t)0) +#endif + +/** An error occurred that does not correspond to any defined + * failure cause. + * + * Implementations may use this error code if none of the other standard + * error codes are applicable. */ +#define PSA_ERROR_GENERIC_ERROR ((psa_status_t)-132) + +/** The requested operation or a parameter is not supported + * by this implementation. + * + * Implementations should return this error code when an enumeration + * parameter such as a key type, algorithm, etc. is not recognized. + * If a combination of parameters is recognized and identified as + * not valid, return #PSA_ERROR_INVALID_ARGUMENT instead. */ +#define PSA_ERROR_NOT_SUPPORTED ((psa_status_t)-134) + +/** The requested action is denied by a policy. + * + * Implementations should return this error code when the parameters + * are recognized as valid and supported, and a policy explicitly + * denies the requested operation. + * + * If a subset of the parameters of a function call identify a + * forbidden operation, and another subset of the parameters are + * not valid or not supported, it is unspecified whether the function + * returns #PSA_ERROR_NOT_PERMITTED, #PSA_ERROR_NOT_SUPPORTED or + * #PSA_ERROR_INVALID_ARGUMENT. */ +#define PSA_ERROR_NOT_PERMITTED ((psa_status_t)-133) + +/** An output buffer is too small. + * + * Applications can call the \c PSA_xxx_SIZE macro listed in the function + * description to determine a sufficient buffer size. + * + * Implementations should preferably return this error code only + * in cases when performing the operation with a larger output + * buffer would succeed. However implementations may return this + * error if a function has invalid or unsupported parameters in addition + * to the parameters that determine the necessary output buffer size. */ +#define PSA_ERROR_BUFFER_TOO_SMALL ((psa_status_t)-138) + +/** Asking for an item that already exists + * + * Implementations should return this error, when attempting + * to write an item (like a key) that already exists. */ +#define PSA_ERROR_ALREADY_EXISTS ((psa_status_t)-139) + +/** Asking for an item that doesn't exist + * + * Implementations should return this error, if a requested item (like + * a key) does not exist. */ +#define PSA_ERROR_DOES_NOT_EXIST ((psa_status_t)-140) + +/** The requested action cannot be performed in the current state. + * + * Multipart operations return this error when one of the + * functions is called out of sequence. Refer to the function + * descriptions for permitted sequencing of functions. + * + * Implementations shall not return this error code to indicate + * that a key either exists or not, + * but shall instead return #PSA_ERROR_ALREADY_EXISTS or #PSA_ERROR_DOES_NOT_EXIST + * as applicable. + * + * Implementations shall not return this error code to indicate that a + * key identifier is invalid, but shall return #PSA_ERROR_INVALID_HANDLE + * instead. */ +#define PSA_ERROR_BAD_STATE ((psa_status_t)-137) + +/** The parameters passed to the function are invalid. + * + * Implementations may return this error any time a parameter or + * combination of parameters are recognized as invalid. + * + * Implementations shall not return this error code to indicate that a + * key identifier is invalid, but shall return #PSA_ERROR_INVALID_HANDLE + * instead. + */ +#define PSA_ERROR_INVALID_ARGUMENT ((psa_status_t)-135) + +/** There is not enough runtime memory. + * + * If the action is carried out across multiple security realms, this + * error can refer to available memory in any of the security realms. */ +#define PSA_ERROR_INSUFFICIENT_MEMORY ((psa_status_t)-141) + +/** There is not enough persistent storage. + * + * Functions that modify the key storage return this error code if + * there is insufficient storage space on the host media. In addition, + * many functions that do not otherwise access storage may return this + * error code if the implementation requires a mandatory log entry for + * the requested action and the log storage space is full. */ +#define PSA_ERROR_INSUFFICIENT_STORAGE ((psa_status_t)-142) + +/** There was a communication failure inside the implementation. + * + * This can indicate a communication failure between the application + * and an external cryptoprocessor or between the cryptoprocessor and + * an external volatile or persistent memory. A communication failure + * may be transient or permanent depending on the cause. + * + * \warning If a function returns this error, it is undetermined + * whether the requested action has completed or not. Implementations + * should return #PSA_SUCCESS on successful completion whenever + * possible, however functions may return #PSA_ERROR_COMMUNICATION_FAILURE + * if the requested action was completed successfully in an external + * cryptoprocessor but there was a breakdown of communication before + * the cryptoprocessor could report the status to the application. + */ +#define PSA_ERROR_COMMUNICATION_FAILURE ((psa_status_t)-145) + +/** There was a storage failure that may have led to data loss. + * + * This error indicates that some persistent storage is corrupted. + * It should not be used for a corruption of volatile memory + * (use #PSA_ERROR_CORRUPTION_DETECTED), for a communication error + * between the cryptoprocessor and its external storage (use + * #PSA_ERROR_COMMUNICATION_FAILURE), or when the storage is + * in a valid state but is full (use #PSA_ERROR_INSUFFICIENT_STORAGE). + * + * Note that a storage failure does not indicate that any data that was + * previously read is invalid. However this previously read data may no + * longer be readable from storage. + * + * When a storage failure occurs, it is no longer possible to ensure + * the global integrity of the keystore. Depending on the global + * integrity guarantees offered by the implementation, access to other + * data may or may not fail even if the data is still readable but + * its integrity cannot be guaranteed. + * + * Implementations should only use this error code to report a + * permanent storage corruption. However application writers should + * keep in mind that transient errors while reading the storage may be + * reported using this error code. */ +#define PSA_ERROR_STORAGE_FAILURE ((psa_status_t)-146) + +/** A hardware failure was detected. + * + * A hardware failure may be transient or permanent depending on the + * cause. */ +#define PSA_ERROR_HARDWARE_FAILURE ((psa_status_t)-147) + +/** A tampering attempt was detected. + * + * If an application receives this error code, there is no guarantee + * that previously accessed or computed data was correct and remains + * confidential. Applications should not perform any security function + * and should enter a safe failure state. + * + * Implementations may return this error code if they detect an invalid + * state that cannot happen during normal operation and that indicates + * that the implementation's security guarantees no longer hold. Depending + * on the implementation architecture and on its security and safety goals, + * the implementation may forcibly terminate the application. + * + * This error code is intended as a last resort when a security breach + * is detected and it is unsure whether the keystore data is still + * protected. Implementations shall only return this error code + * to report an alarm from a tampering detector, to indicate that + * the confidentiality of stored data can no longer be guaranteed, + * or to indicate that the integrity of previously returned data is now + * considered compromised. Implementations shall not use this error code + * to indicate a hardware failure that merely makes it impossible to + * perform the requested operation (use #PSA_ERROR_COMMUNICATION_FAILURE, + * #PSA_ERROR_STORAGE_FAILURE, #PSA_ERROR_HARDWARE_FAILURE, + * #PSA_ERROR_INSUFFICIENT_ENTROPY or other applicable error code + * instead). + * + * This error indicates an attack against the application. Implementations + * shall not return this error code as a consequence of the behavior of + * the application itself. */ +#define PSA_ERROR_CORRUPTION_DETECTED ((psa_status_t)-151) + +/** There is not enough entropy to generate random data needed + * for the requested action. + * + * This error indicates a failure of a hardware random generator. + * Application writers should note that this error can be returned not + * only by functions whose purpose is to generate random data, such + * as key, IV or nonce generation, but also by functions that execute + * an algorithm with a randomized result, as well as functions that + * use randomization of intermediate computations as a countermeasure + * to certain attacks. + * + * Implementations should avoid returning this error after psa_crypto_init() + * has succeeded. Implementations should generate sufficient + * entropy during initialization and subsequently use a cryptographically + * secure pseudorandom generator (PRNG). However implementations may return + * this error at any time if a policy requires the PRNG to be reseeded + * during normal operation. */ +#define PSA_ERROR_INSUFFICIENT_ENTROPY ((psa_status_t)-148) + +/** The signature, MAC or hash is incorrect. + * + * Verification functions return this error if the verification + * calculations completed successfully, and the value to be verified + * was determined to be incorrect. + * + * If the value to verify has an invalid size, implementations may return + * either #PSA_ERROR_INVALID_ARGUMENT or #PSA_ERROR_INVALID_SIGNATURE. */ +#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)-149) + +/** The decrypted padding is incorrect. + * + * \warning In some protocols, when decrypting data, it is essential that + * the behavior of the application does not depend on whether the padding + * is correct, down to precise timing. Applications should prefer + * protocols that use authenticated encryption rather than plain + * encryption. If the application must perform a decryption of + * unauthenticated data, the application writer should take care not + * to reveal whether the padding is invalid. + * + * Implementations should strive to make valid and invalid padding + * as close as possible to indistinguishable to an external observer. + * In particular, the timing of a decryption operation should not + * depend on the validity of the padding. */ +#define PSA_ERROR_INVALID_PADDING ((psa_status_t)-150) + +/** Return this error when there's insufficient data when attempting + * to read from a resource. */ +#define PSA_ERROR_INSUFFICIENT_DATA ((psa_status_t)-143) + +/** The key identifier is not valid. See also :ref:\`key-handles\`. + */ +#define PSA_ERROR_INVALID_HANDLE ((psa_status_t)-136) + +/**@}*/ + +/** \defgroup crypto_types Key and algorithm types + * @{ + */ + +/** An invalid key type value. + * + * Zero is not the encoding of any key type. + */ +#define PSA_KEY_TYPE_NONE ((psa_key_type_t)0x0000) + +/** Vendor-defined key type flag. + * + * Key types defined by this standard will never have the + * #PSA_KEY_TYPE_VENDOR_FLAG bit set. Vendors who define additional key types + * must use an encoding with the #PSA_KEY_TYPE_VENDOR_FLAG bit set and should + * respect the bitwise structure used by standard encodings whenever practical. + */ +#define PSA_KEY_TYPE_VENDOR_FLAG ((psa_key_type_t)0x8000) + +#define PSA_KEY_TYPE_CATEGORY_MASK ((psa_key_type_t)0x7000) +#define PSA_KEY_TYPE_CATEGORY_RAW ((psa_key_type_t)0x1000) +#define PSA_KEY_TYPE_CATEGORY_SYMMETRIC ((psa_key_type_t)0x2000) +#define PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY ((psa_key_type_t)0x4000) +#define PSA_KEY_TYPE_CATEGORY_KEY_PAIR ((psa_key_type_t)0x7000) + +#define PSA_KEY_TYPE_CATEGORY_FLAG_PAIR ((psa_key_type_t)0x3000) + +/** Whether a key type is vendor-defined. + * + * See also #PSA_KEY_TYPE_VENDOR_FLAG. + */ +#define PSA_KEY_TYPE_IS_VENDOR_DEFINED(type) \ + (((type) & PSA_KEY_TYPE_VENDOR_FLAG) != 0) + +/** Whether a key type is an unstructured array of bytes. + * + * This encompasses both symmetric keys and non-key data. + */ +#define PSA_KEY_TYPE_IS_UNSTRUCTURED(type) \ + (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_RAW || \ + ((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_SYMMETRIC) + +/** Whether a key type is asymmetric: either a key pair or a public key. */ +#define PSA_KEY_TYPE_IS_ASYMMETRIC(type) \ + (((type) & PSA_KEY_TYPE_CATEGORY_MASK \ + & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR) == \ + PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY) +/** Whether a key type is the public part of a key pair. */ +#define PSA_KEY_TYPE_IS_PUBLIC_KEY(type) \ + (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_PUBLIC_KEY) +/** Whether a key type is a key pair containing a private part and a public + * part. */ +#define PSA_KEY_TYPE_IS_KEY_PAIR(type) \ + (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_KEY_PAIR) +/** The key pair type corresponding to a public key type. + * + * You may also pass a key pair type as \p type, it will be left unchanged. + * + * \param type A public key type or key pair type. + * + * \return The corresponding key pair type. + * If \p type is not a public key or a key pair, + * the return value is undefined. + */ +#define PSA_KEY_TYPE_KEY_PAIR_OF_PUBLIC_KEY(type) \ + ((type) | PSA_KEY_TYPE_CATEGORY_FLAG_PAIR) +/** The public key type corresponding to a key pair type. + * + * You may also pass a key pair type as \p type, it will be left unchanged. + * + * \param type A public key type or key pair type. + * + * \return The corresponding public key type. + * If \p type is not a public key or a key pair, + * the return value is undefined. + */ +#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(type) \ + ((type) & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR) + +/** Raw data. + * + * A "key" of this type cannot be used for any cryptographic operation. + * Applications may use this type to store arbitrary data in the keystore. */ +#define PSA_KEY_TYPE_RAW_DATA ((psa_key_type_t)0x1001) + +/** HMAC key. + * + * The key policy determines which underlying hash algorithm the key can be + * used for. + * + * HMAC keys should generally have the same size as the underlying hash. + * This size can be calculated with #PSA_HASH_SIZE(\c alg) where + * \c alg is the HMAC algorithm or the underlying hash algorithm. */ +#define PSA_KEY_TYPE_HMAC ((psa_key_type_t)0x1100) + +/** A secret for key derivation. + * + * The key policy determines which key derivation algorithm the key + * can be used for. + */ +#define PSA_KEY_TYPE_DERIVE ((psa_key_type_t)0x1200) + +/** Key for a cipher, AEAD or MAC algorithm based on the AES block cipher. + * + * The size of the key can be 16 bytes (AES-128), 24 bytes (AES-192) or + * 32 bytes (AES-256). + */ +#define PSA_KEY_TYPE_AES ((psa_key_type_t)0x2400) + +/** Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES). + * + * The size of the key can be 8 bytes (single DES), 16 bytes (2-key 3DES) or + * 24 bytes (3-key 3DES). + * + * Note that single DES and 2-key 3DES are weak and strongly + * deprecated and should only be used to decrypt legacy data. 3-key 3DES + * is weak and deprecated and should only be used in legacy protocols. + */ +#define PSA_KEY_TYPE_DES ((psa_key_type_t)0x2301) + +/** Key for a cipher, AEAD or MAC algorithm based on the + * Camellia block cipher. */ +#define PSA_KEY_TYPE_CAMELLIA ((psa_key_type_t)0x2403) + +/** Key for the RC4 stream cipher. + * + * Note that RC4 is weak and deprecated and should only be used in + * legacy protocols. */ +#define PSA_KEY_TYPE_ARC4 ((psa_key_type_t)0x2002) + +/** Key for the ChaCha20 stream cipher or the Chacha20-Poly1305 AEAD algorithm. + * + * ChaCha20 and the ChaCha20_Poly1305 construction are defined in RFC 7539. + * + * Implementations must support 12-byte nonces, may support 8-byte nonces, + * and should reject other sizes. + */ +#define PSA_KEY_TYPE_CHACHA20 ((psa_key_type_t)0x2004) + +/** RSA public key. */ +#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x4001) +/** RSA key pair (private and public key). */ +#define PSA_KEY_TYPE_RSA_KEY_PAIR ((psa_key_type_t)0x7001) +/** Whether a key type is an RSA key (pair or public-only). */ +#define PSA_KEY_TYPE_IS_RSA(type) \ + (PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY) + +#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x4100) +#define PSA_KEY_TYPE_ECC_KEY_PAIR_BASE ((psa_key_type_t)0x7100) +#define PSA_KEY_TYPE_ECC_CURVE_MASK ((psa_key_type_t)0x00ff) +/** Elliptic curve key pair. + * + * \param curve A value of type ::psa_ecc_family_t that + * identifies the ECC curve to be used. + */ +#define PSA_KEY_TYPE_ECC_KEY_PAIR(curve) \ + (PSA_KEY_TYPE_ECC_KEY_PAIR_BASE | (curve)) +/** Elliptic curve public key. + * + * \param curve A value of type ::psa_ecc_family_t that + * identifies the ECC curve to be used. + */ +#define PSA_KEY_TYPE_ECC_PUBLIC_KEY(curve) \ + (PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE | (curve)) + +/** Whether a key type is an elliptic curve key (pair or public-only). */ +#define PSA_KEY_TYPE_IS_ECC(type) \ + ((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(type) & \ + ~PSA_KEY_TYPE_ECC_CURVE_MASK) == PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE) +/** Whether a key type is an elliptic curve key pair. */ +#define PSA_KEY_TYPE_IS_ECC_KEY_PAIR(type) \ + (((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \ + PSA_KEY_TYPE_ECC_KEY_PAIR_BASE) +/** Whether a key type is an elliptic curve public key. */ +#define PSA_KEY_TYPE_IS_ECC_PUBLIC_KEY(type) \ + (((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == \ + PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE) + +/** Extract the curve from an elliptic curve key type. */ +#define PSA_KEY_TYPE_ECC_GET_FAMILY(type) \ + ((psa_ecc_family_t) (PSA_KEY_TYPE_IS_ECC(type) ? \ + ((type) & PSA_KEY_TYPE_ECC_CURVE_MASK) : \ + 0)) + +/** SEC Koblitz curves over prime fields. + * + * This family comprises the following curves: + * secp192k1, secp224k1, secp256k1. + * They are defined in _Standards for Efficient Cryptography_, + * _SEC 2: Recommended Elliptic Curve Domain Parameters_. + * https://www.secg.org/sec2-v2.pdf + */ +#define PSA_ECC_FAMILY_SECP_K1 ((psa_ecc_family_t) 0x17) + +/** SEC random curves over prime fields. + * + * This family comprises the following curves: + * secp192k1, secp224r1, secp256r1, secp384r1, secp521r1. + * They are defined in _Standards for Efficient Cryptography_, + * _SEC 2: Recommended Elliptic Curve Domain Parameters_. + * https://www.secg.org/sec2-v2.pdf + */ +#define PSA_ECC_FAMILY_SECP_R1 ((psa_ecc_family_t) 0x12) +/* SECP160R2 (SEC2 v1, obsolete) */ +#define PSA_ECC_FAMILY_SECP_R2 ((psa_ecc_family_t) 0x1b) + +/** SEC Koblitz curves over binary fields. + * + * This family comprises the following curves: + * sect163k1, sect233k1, sect239k1, sect283k1, sect409k1, sect571k1. + * They are defined in _Standards for Efficient Cryptography_, + * _SEC 2: Recommended Elliptic Curve Domain Parameters_. + * https://www.secg.org/sec2-v2.pdf + */ +#define PSA_ECC_FAMILY_SECT_K1 ((psa_ecc_family_t) 0x27) + +/** SEC random curves over binary fields. + * + * This family comprises the following curves: + * sect163r1, sect233r1, sect283r1, sect409r1, sect571r1. + * They are defined in _Standards for Efficient Cryptography_, + * _SEC 2: Recommended Elliptic Curve Domain Parameters_. + * https://www.secg.org/sec2-v2.pdf + */ +#define PSA_ECC_FAMILY_SECT_R1 ((psa_ecc_family_t) 0x22) + +/** SEC additional random curves over binary fields. + * + * This family comprises the following curve: + * sect163r2. + * It is defined in _Standards for Efficient Cryptography_, + * _SEC 2: Recommended Elliptic Curve Domain Parameters_. + * https://www.secg.org/sec2-v2.pdf + */ +#define PSA_ECC_FAMILY_SECT_R2 ((psa_ecc_family_t) 0x2b) + +/** Brainpool P random curves. + * + * This family comprises the following curves: + * brainpoolP160r1, brainpoolP192r1, brainpoolP224r1, brainpoolP256r1, + * brainpoolP320r1, brainpoolP384r1, brainpoolP512r1. + * It is defined in RFC 5639. + */ +#define PSA_ECC_FAMILY_BRAINPOOL_P_R1 ((psa_ecc_family_t) 0x30) + +/** Curve25519 and Curve448. + * + * This family comprises the following Montgomery curves: + * - 255-bit: Bernstein et al., + * _Curve25519: new Diffie-Hellman speed records_, LNCS 3958, 2006. + * The algorithm #PSA_ALG_ECDH performs X25519 when used with this curve. + * - 448-bit: Hamburg, + * _Ed448-Goldilocks, a new elliptic curve_, NIST ECC Workshop, 2015. + * The algorithm #PSA_ALG_ECDH performs X448 when used with this curve. + */ +#define PSA_ECC_FAMILY_MONTGOMERY ((psa_ecc_family_t) 0x41) + +#define PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE ((psa_key_type_t)0x4200) +#define PSA_KEY_TYPE_DH_KEY_PAIR_BASE ((psa_key_type_t)0x7200) +#define PSA_KEY_TYPE_DH_GROUP_MASK ((psa_key_type_t)0x00ff) +/** Diffie-Hellman key pair. + * + * \param group A value of type ::psa_dh_family_t that identifies the + * Diffie-Hellman group to be used. + */ +#define PSA_KEY_TYPE_DH_KEY_PAIR(group) \ + (PSA_KEY_TYPE_DH_KEY_PAIR_BASE | (group)) +/** Diffie-Hellman public key. + * + * \param group A value of type ::psa_dh_family_t that identifies the + * Diffie-Hellman group to be used. + */ +#define PSA_KEY_TYPE_DH_PUBLIC_KEY(group) \ + (PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE | (group)) + +/** Whether a key type is a Diffie-Hellman key (pair or public-only). */ +#define PSA_KEY_TYPE_IS_DH(type) \ + ((PSA_KEY_TYPE_PUBLIC_KEY_OF_KEY_PAIR(type) & \ + ~PSA_KEY_TYPE_DH_GROUP_MASK) == PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE) +/** Whether a key type is a Diffie-Hellman key pair. */ +#define PSA_KEY_TYPE_IS_DH_KEY_PAIR(type) \ + (((type) & ~PSA_KEY_TYPE_DH_GROUP_MASK) == \ + PSA_KEY_TYPE_DH_KEY_PAIR_BASE) +/** Whether a key type is a Diffie-Hellman public key. */ +#define PSA_KEY_TYPE_IS_DH_PUBLIC_KEY(type) \ + (((type) & ~PSA_KEY_TYPE_DH_GROUP_MASK) == \ + PSA_KEY_TYPE_DH_PUBLIC_KEY_BASE) + +/** Extract the group from a Diffie-Hellman key type. */ +#define PSA_KEY_TYPE_DH_GET_FAMILY(type) \ + ((psa_dh_family_t) (PSA_KEY_TYPE_IS_DH(type) ? \ + ((type) & PSA_KEY_TYPE_DH_GROUP_MASK) : \ + 0)) + +/** Diffie-Hellman groups defined in RFC 7919 Appendix A. + * + * This family includes groups with the following key sizes (in bits): + * 2048, 3072, 4096, 6144, 8192. A given implementation may support + * all of these sizes or only a subset. + */ +#define PSA_DH_FAMILY_RFC7919 ((psa_dh_family_t) 0x03) + +#define PSA_GET_KEY_TYPE_BLOCK_SIZE_EXPONENT(type) \ + (((type) >> 8) & 7) +/** The block size of a block cipher. + * + * \param type A cipher key type (value of type #psa_key_type_t). + * + * \return The block size for a block cipher, or 1 for a stream cipher. + * The return value is undefined if \p type is not a supported + * cipher key type. + * + * \note It is possible to build stream cipher algorithms on top of a block + * cipher, for example CTR mode (#PSA_ALG_CTR). + * This macro only takes the key type into account, so it cannot be + * used to determine the size of the data that #psa_cipher_update() + * might buffer for future processing in general. + * + * \note This macro returns a compile-time constant if its argument is one. + * + * \warning This macro may evaluate its argument multiple times. + */ +#define PSA_BLOCK_CIPHER_BLOCK_SIZE(type) \ + (((type) & PSA_KEY_TYPE_CATEGORY_MASK) == PSA_KEY_TYPE_CATEGORY_SYMMETRIC ? \ + 1u << PSA_GET_KEY_TYPE_BLOCK_SIZE_EXPONENT(type) : \ + 0u) + +/** Vendor-defined algorithm flag. + * + * Algorithms defined by this standard will never have the #PSA_ALG_VENDOR_FLAG + * bit set. Vendors who define additional algorithms must use an encoding with + * the #PSA_ALG_VENDOR_FLAG bit set and should respect the bitwise structure + * used by standard encodings whenever practical. + */ +#define PSA_ALG_VENDOR_FLAG ((psa_algorithm_t)0x80000000) + +#define PSA_ALG_CATEGORY_MASK ((psa_algorithm_t)0x7f000000) +#define PSA_ALG_CATEGORY_HASH ((psa_algorithm_t)0x02000000) +#define PSA_ALG_CATEGORY_MAC ((psa_algorithm_t)0x03000000) +#define PSA_ALG_CATEGORY_CIPHER ((psa_algorithm_t)0x04000000) +#define PSA_ALG_CATEGORY_AEAD ((psa_algorithm_t)0x05000000) +#define PSA_ALG_CATEGORY_SIGN ((psa_algorithm_t)0x06000000) +#define PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION ((psa_algorithm_t)0x07000000) +#define PSA_ALG_CATEGORY_KEY_DERIVATION ((psa_algorithm_t)0x08000000) +#define PSA_ALG_CATEGORY_KEY_AGREEMENT ((psa_algorithm_t)0x09000000) + +/** Whether an algorithm is vendor-defined. + * + * See also #PSA_ALG_VENDOR_FLAG. + */ +#define PSA_ALG_IS_VENDOR_DEFINED(alg) \ + (((alg) & PSA_ALG_VENDOR_FLAG) != 0) + +/** Whether the specified algorithm is a hash algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a hash algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_HASH(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_HASH) + +/** Whether the specified algorithm is a MAC algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a MAC algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_MAC(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_MAC) + +/** Whether the specified algorithm is a symmetric cipher algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a symmetric cipher algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_CIPHER(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_CIPHER) + +/** Whether the specified algorithm is an authenticated encryption + * with associated data (AEAD) algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is an AEAD algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_AEAD(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_AEAD) + +/** Whether the specified algorithm is an asymmetric signature algorithm, + * also known as public-key signature algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is an asymmetric signature algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_SIGN(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_SIGN) + +/** Whether the specified algorithm is an asymmetric encryption algorithm, + * also known as public-key encryption algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is an asymmetric encryption algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_ASYMMETRIC_ENCRYPTION(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_ASYMMETRIC_ENCRYPTION) + +/** Whether the specified algorithm is a key agreement algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a key agreement algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_KEY_AGREEMENT(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_AGREEMENT) + +/** Whether the specified algorithm is a key derivation algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a key derivation algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_KEY_DERIVATION(alg) \ + (((alg) & PSA_ALG_CATEGORY_MASK) == PSA_ALG_CATEGORY_KEY_DERIVATION) + +#define PSA_ALG_HASH_MASK ((psa_algorithm_t)0x000000ff) +/** MD2 */ +#define PSA_ALG_MD2 ((psa_algorithm_t)0x02000001) +/** MD4 */ +#define PSA_ALG_MD4 ((psa_algorithm_t)0x02000002) +/** MD5 */ +#define PSA_ALG_MD5 ((psa_algorithm_t)0x02000003) +/** PSA_ALG_RIPEMD160 */ +#define PSA_ALG_RIPEMD160 ((psa_algorithm_t)0x02000004) +/** SHA1 */ +#define PSA_ALG_SHA_1 ((psa_algorithm_t)0x02000005) +/** SHA2-224 */ +#define PSA_ALG_SHA_224 ((psa_algorithm_t)0x02000008) +/** SHA2-256 */ +#define PSA_ALG_SHA_256 ((psa_algorithm_t)0x02000009) +/** SHA2-384 */ +#define PSA_ALG_SHA_384 ((psa_algorithm_t)0x0200000a) +/** SHA2-512 */ +#define PSA_ALG_SHA_512 ((psa_algorithm_t)0x0200000b) +/** SHA2-512/224 */ +#define PSA_ALG_SHA_512_224 ((psa_algorithm_t)0x0200000c) +/** SHA2-512/256 */ +#define PSA_ALG_SHA_512_256 ((psa_algorithm_t)0x0200000d) +/** SHA3-224 */ +#define PSA_ALG_SHA3_224 ((psa_algorithm_t)0x02000010) +/** SHA3-256 */ +#define PSA_ALG_SHA3_256 ((psa_algorithm_t)0x02000011) +/** SHA3-384 */ +#define PSA_ALG_SHA3_384 ((psa_algorithm_t)0x02000012) +/** SHA3-512 */ +#define PSA_ALG_SHA3_512 ((psa_algorithm_t)0x02000013) + +/** In a hash-and-sign algorithm policy, allow any hash algorithm. + * + * This value may be used to form the algorithm usage field of a policy + * for a signature algorithm that is parametrized by a hash. The key + * may then be used to perform operations using the same signature + * algorithm parametrized with any supported hash. + * + * That is, suppose that `PSA_xxx_SIGNATURE` is one of the following macros: + * - #PSA_ALG_RSA_PKCS1V15_SIGN, #PSA_ALG_RSA_PSS, + * - #PSA_ALG_ECDSA, #PSA_ALG_DETERMINISTIC_ECDSA. + * Then you may create and use a key as follows: + * - Set the key usage field using #PSA_ALG_ANY_HASH, for example: + * ``` + * psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_SIGN_HASH); // or VERIFY + * psa_set_key_algorithm(&attributes, PSA_xxx_SIGNATURE(PSA_ALG_ANY_HASH)); + * ``` + * - Import or generate key material. + * - Call psa_sign_hash() or psa_verify_hash(), passing + * an algorithm built from `PSA_xxx_SIGNATURE` and a specific hash. Each + * call to sign or verify a message may use a different hash. + * ``` + * psa_sign_hash(key, PSA_xxx_SIGNATURE(PSA_ALG_SHA_256), ...); + * psa_sign_hash(key, PSA_xxx_SIGNATURE(PSA_ALG_SHA_512), ...); + * psa_sign_hash(key, PSA_xxx_SIGNATURE(PSA_ALG_SHA3_256), ...); + * ``` + * + * This value may not be used to build other algorithms that are + * parametrized over a hash. For any valid use of this macro to build + * an algorithm \c alg, #PSA_ALG_IS_HASH_AND_SIGN(\c alg) is true. + * + * This value may not be used to build an algorithm specification to + * perform an operation. It is only valid to build policies. + */ +#define PSA_ALG_ANY_HASH ((psa_algorithm_t)0x020000ff) + +#define PSA_ALG_MAC_SUBCATEGORY_MASK ((psa_algorithm_t)0x00c00000) +#define PSA_ALG_HMAC_BASE ((psa_algorithm_t)0x03800000) +/** Macro to build an HMAC algorithm. + * + * For example, #PSA_ALG_HMAC(#PSA_ALG_SHA_256) is HMAC-SHA-256. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * + * \return The corresponding HMAC algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_HMAC(hash_alg) \ + (PSA_ALG_HMAC_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) + +#define PSA_ALG_HMAC_GET_HASH(hmac_alg) \ + (PSA_ALG_CATEGORY_HASH | ((hmac_alg) & PSA_ALG_HASH_MASK)) + +/** Whether the specified algorithm is an HMAC algorithm. + * + * HMAC is a family of MAC algorithms that are based on a hash function. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is an HMAC algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_HMAC(alg) \ + (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \ + PSA_ALG_HMAC_BASE) + +/* In the encoding of a MAC algorithm, the bits corresponding to + * PSA_ALG_MAC_TRUNCATION_MASK encode the length to which the MAC is + * truncated. As an exception, the value 0 means the untruncated algorithm, + * whatever its length is. The length is encoded in 6 bits, so it can + * reach up to 63; the largest MAC is 64 bytes so its trivial truncation + * to full length is correctly encoded as 0 and any non-trivial truncation + * is correctly encoded as a value between 1 and 63. */ +#define PSA_ALG_MAC_TRUNCATION_MASK ((psa_algorithm_t)0x003f0000) +#define PSA_MAC_TRUNCATION_OFFSET 16 + +/** Macro to build a truncated MAC algorithm. + * + * A truncated MAC algorithm is identical to the corresponding MAC + * algorithm except that the MAC value for the truncated algorithm + * consists of only the first \p mac_length bytes of the MAC value + * for the untruncated algorithm. + * + * \note This macro may allow constructing algorithm identifiers that + * are not valid, either because the specified length is larger + * than the untruncated MAC or because the specified length is + * smaller than permitted by the implementation. + * + * \note It is implementation-defined whether a truncated MAC that + * is truncated to the same length as the MAC of the untruncated + * algorithm is considered identical to the untruncated algorithm + * for policy comparison purposes. + * + * \param mac_alg A MAC algorithm identifier (value of type + * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg) + * is true). This may be a truncated or untruncated + * MAC algorithm. + * \param mac_length Desired length of the truncated MAC in bytes. + * This must be at most the full length of the MAC + * and must be at least an implementation-specified + * minimum. The implementation-specified minimum + * shall not be zero. + * + * \return The corresponding MAC algorithm with the specified + * length. + * \return Unspecified if \p alg is not a supported + * MAC algorithm or if \p mac_length is too small or + * too large for the specified MAC algorithm. + */ +#define PSA_ALG_TRUNCATED_MAC(mac_alg, mac_length) \ + (((mac_alg) & ~PSA_ALG_MAC_TRUNCATION_MASK) | \ + ((mac_length) << PSA_MAC_TRUNCATION_OFFSET & PSA_ALG_MAC_TRUNCATION_MASK)) + +/** Macro to build the base MAC algorithm corresponding to a truncated + * MAC algorithm. + * + * \param mac_alg A MAC algorithm identifier (value of type + * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg) + * is true). This may be a truncated or untruncated + * MAC algorithm. + * + * \return The corresponding base MAC algorithm. + * \return Unspecified if \p alg is not a supported + * MAC algorithm. + */ +#define PSA_ALG_FULL_LENGTH_MAC(mac_alg) \ + ((mac_alg) & ~PSA_ALG_MAC_TRUNCATION_MASK) + +/** Length to which a MAC algorithm is truncated. + * + * \param mac_alg A MAC algorithm identifier (value of type + * #psa_algorithm_t such that #PSA_ALG_IS_MAC(\p alg) + * is true). + * + * \return Length of the truncated MAC in bytes. + * \return 0 if \p alg is a non-truncated MAC algorithm. + * \return Unspecified if \p alg is not a supported + * MAC algorithm. + */ +#define PSA_MAC_TRUNCATED_LENGTH(mac_alg) \ + (((mac_alg) & PSA_ALG_MAC_TRUNCATION_MASK) >> PSA_MAC_TRUNCATION_OFFSET) + +#define PSA_ALG_CIPHER_MAC_BASE ((psa_algorithm_t)0x03c00000) +/** The CBC-MAC construction over a block cipher + * + * \warning CBC-MAC is insecure in many cases. + * A more secure mode, such as #PSA_ALG_CMAC, is recommended. + */ +#define PSA_ALG_CBC_MAC ((psa_algorithm_t)0x03c00100) +/** The CMAC construction over a block cipher */ +#define PSA_ALG_CMAC ((psa_algorithm_t)0x03c00200) + +/** Whether the specified algorithm is a MAC algorithm based on a block cipher. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a MAC algorithm based on a block cipher, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) \ + (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \ + PSA_ALG_CIPHER_MAC_BASE) + +#define PSA_ALG_CIPHER_STREAM_FLAG ((psa_algorithm_t)0x00800000) +#define PSA_ALG_CIPHER_FROM_BLOCK_FLAG ((psa_algorithm_t)0x00400000) + +/** Whether the specified algorithm is a stream cipher. + * + * A stream cipher is a symmetric cipher that encrypts or decrypts messages + * by applying a bitwise-xor with a stream of bytes that is generated + * from a key. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a stream cipher algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier or if it is not a symmetric cipher algorithm. + */ +#define PSA_ALG_IS_STREAM_CIPHER(alg) \ + (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_CIPHER_STREAM_FLAG)) == \ + (PSA_ALG_CATEGORY_CIPHER | PSA_ALG_CIPHER_STREAM_FLAG)) + +/** The stream cipher mode of a stream cipher algorithm. + * + * The underlying stream cipher is determined by the key type. + * - To use ChaCha20, use a key type of #PSA_KEY_TYPE_CHACHA20. + * - To use ARC4, use a key type of #PSA_KEY_TYPE_ARC4. + */ +#define PSA_ALG_STREAM_CIPHER ((psa_algorithm_t)0x04800100) + +/** The CTR stream cipher mode. + * + * CTR is a stream cipher which is built from a block cipher. + * The underlying block cipher is determined by the key type. + * For example, to use AES-128-CTR, use this algorithm with + * a key of type #PSA_KEY_TYPE_AES and a length of 128 bits (16 bytes). + */ +#define PSA_ALG_CTR ((psa_algorithm_t)0x04c01000) + +/** The CFB stream cipher mode. + * + * The underlying block cipher is determined by the key type. + */ +#define PSA_ALG_CFB ((psa_algorithm_t)0x04c01100) + +/** The OFB stream cipher mode. + * + * The underlying block cipher is determined by the key type. + */ +#define PSA_ALG_OFB ((psa_algorithm_t)0x04c01200) + +/** The XTS cipher mode. + * + * XTS is a cipher mode which is built from a block cipher. It requires at + * least one full block of input, but beyond this minimum the input + * does not need to be a whole number of blocks. + */ +#define PSA_ALG_XTS ((psa_algorithm_t)0x0440ff00) + +/** The Electronic Code Book (ECB) mode of a block cipher, with no padding. + * + * \warning ECB mode does not protect the confidentiality of the encrypted data + * except in extremely narrow circumstances. It is recommended that applications + * only use ECB if they need to construct an operating mode that the + * implementation does not provide. Implementations are encouraged to provide + * the modes that applications need in preference to supporting direct access + * to ECB. + * + * The underlying block cipher is determined by the key type. + * + * This symmetric cipher mode can only be used with messages whose lengths are a + * multiple of the block size of the chosen block cipher. + * + * ECB mode does not accept an initialization vector (IV). When using a + * multi-part cipher operation with this algorithm, psa_cipher_generate_iv() + * and psa_cipher_set_iv() must not be called. + */ +#define PSA_ALG_ECB_NO_PADDING ((psa_algorithm_t)0x04404400) + +/** The CBC block cipher chaining mode, with no padding. + * + * The underlying block cipher is determined by the key type. + * + * This symmetric cipher mode can only be used with messages whose lengths + * are whole number of blocks for the chosen block cipher. + */ +#define PSA_ALG_CBC_NO_PADDING ((psa_algorithm_t)0x04404000) + +/** The CBC block cipher chaining mode with PKCS#7 padding. + * + * The underlying block cipher is determined by the key type. + * + * This is the padding method defined by PKCS#7 (RFC 2315) §10.3. + */ +#define PSA_ALG_CBC_PKCS7 ((psa_algorithm_t)0x04404100) + +#define PSA_ALG_AEAD_FROM_BLOCK_FLAG ((psa_algorithm_t)0x00400000) + +/** Whether the specified algorithm is an AEAD mode on a block cipher. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is an AEAD algorithm which is an AEAD mode based on + * a block cipher, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_AEAD_ON_BLOCK_CIPHER(alg) \ + (((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_AEAD_FROM_BLOCK_FLAG)) == \ + (PSA_ALG_CATEGORY_AEAD | PSA_ALG_AEAD_FROM_BLOCK_FLAG)) + +/** The CCM authenticated encryption algorithm. + * + * The underlying block cipher is determined by the key type. + */ +#define PSA_ALG_CCM ((psa_algorithm_t)0x05500100) + +/** The GCM authenticated encryption algorithm. + * + * The underlying block cipher is determined by the key type. + */ +#define PSA_ALG_GCM ((psa_algorithm_t)0x05500200) + +/** The Chacha20-Poly1305 AEAD algorithm. + * + * The ChaCha20_Poly1305 construction is defined in RFC 7539. + * + * Implementations must support 12-byte nonces, may support 8-byte nonces, + * and should reject other sizes. + * + * Implementations must support 16-byte tags and should reject other sizes. + */ +#define PSA_ALG_CHACHA20_POLY1305 ((psa_algorithm_t)0x05100500) + +/* In the encoding of a AEAD algorithm, the bits corresponding to + * PSA_ALG_AEAD_TAG_LENGTH_MASK encode the length of the AEAD tag. + * The constants for default lengths follow this encoding. + */ +#define PSA_ALG_AEAD_TAG_LENGTH_MASK ((psa_algorithm_t)0x003f0000) +#define PSA_AEAD_TAG_LENGTH_OFFSET 16 + +/** Macro to build a shortened AEAD algorithm. + * + * A shortened AEAD algorithm is similar to the corresponding AEAD + * algorithm, but has an authentication tag that consists of fewer bytes. + * Depending on the algorithm, the tag length may affect the calculation + * of the ciphertext. + * + * \param aead_alg An AEAD algorithm identifier (value of type + * #psa_algorithm_t such that #PSA_ALG_IS_AEAD(\p alg) + * is true). + * \param tag_length Desired length of the authentication tag in bytes. + * + * \return The corresponding AEAD algorithm with the specified + * length. + * \return Unspecified if \p alg is not a supported + * AEAD algorithm or if \p tag_length is not valid + * for the specified AEAD algorithm. + */ +#define PSA_ALG_AEAD_WITH_TAG_LENGTH(aead_alg, tag_length) \ + (((aead_alg) & ~PSA_ALG_AEAD_TAG_LENGTH_MASK) | \ + ((tag_length) << PSA_AEAD_TAG_LENGTH_OFFSET & \ + PSA_ALG_AEAD_TAG_LENGTH_MASK)) + +/** Calculate the corresponding AEAD algorithm with the default tag length. + * + * \param aead_alg An AEAD algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_AEAD(\p alg) is true). + * + * \return The corresponding AEAD algorithm with the default + * tag length for that algorithm. + */ +#define PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH(aead_alg) \ + ( \ + PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH_CASE(aead_alg, PSA_ALG_CCM) \ + PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH_CASE(aead_alg, PSA_ALG_GCM) \ + PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH_CASE(aead_alg, PSA_ALG_CHACHA20_POLY1305) \ + 0) +#define PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH_CASE(aead_alg, ref) \ + PSA_ALG_AEAD_WITH_TAG_LENGTH(aead_alg, 0) == \ + PSA_ALG_AEAD_WITH_TAG_LENGTH(ref, 0) ? \ + ref : + +#define PSA_ALG_RSA_PKCS1V15_SIGN_BASE ((psa_algorithm_t)0x06000200) +/** RSA PKCS#1 v1.5 signature with hashing. + * + * This is the signature scheme defined by RFC 8017 + * (PKCS#1: RSA Cryptography Specifications) under the name + * RSASSA-PKCS1-v1_5. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * This includes #PSA_ALG_ANY_HASH + * when specifying the algorithm in a usage policy. + * + * \return The corresponding RSA PKCS#1 v1.5 signature algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_RSA_PKCS1V15_SIGN(hash_alg) \ + (PSA_ALG_RSA_PKCS1V15_SIGN_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +/** Raw PKCS#1 v1.5 signature. + * + * The input to this algorithm is the DigestInfo structure used by + * RFC 8017 (PKCS#1: RSA Cryptography Specifications), §9.2 + * steps 3–6. + */ +#define PSA_ALG_RSA_PKCS1V15_SIGN_RAW PSA_ALG_RSA_PKCS1V15_SIGN_BASE +#define PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PKCS1V15_SIGN_BASE) + +#define PSA_ALG_RSA_PSS_BASE ((psa_algorithm_t)0x06000300) +/** RSA PSS signature with hashing. + * + * This is the signature scheme defined by RFC 8017 + * (PKCS#1: RSA Cryptography Specifications) under the name + * RSASSA-PSS, with the message generation function MGF1, and with + * a salt length equal to the length of the hash. The specified + * hash algorithm is used to hash the input message, to create the + * salted hash, and for the mask generation. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * This includes #PSA_ALG_ANY_HASH + * when specifying the algorithm in a usage policy. + * + * \return The corresponding RSA PSS signature algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_RSA_PSS(hash_alg) \ + (PSA_ALG_RSA_PSS_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +#define PSA_ALG_IS_RSA_PSS(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_PSS_BASE) + +#define PSA_ALG_ECDSA_BASE ((psa_algorithm_t)0x06000600) +/** ECDSA signature with hashing. + * + * This is the ECDSA signature scheme defined by ANSI X9.62, + * with a random per-message secret number (*k*). + * + * The representation of the signature as a byte string consists of + * the concatentation of the signature values *r* and *s*. Each of + * *r* and *s* is encoded as an *N*-octet string, where *N* is the length + * of the base point of the curve in octets. Each value is represented + * in big-endian order (most significant octet first). + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * This includes #PSA_ALG_ANY_HASH + * when specifying the algorithm in a usage policy. + * + * \return The corresponding ECDSA signature algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_ECDSA(hash_alg) \ + (PSA_ALG_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +/** ECDSA signature without hashing. + * + * This is the same signature scheme as #PSA_ALG_ECDSA(), but + * without specifying a hash algorithm. This algorithm may only be + * used to sign or verify a sequence of bytes that should be an + * already-calculated hash. Note that the input is padded with + * zeros on the left or truncated on the left as required to fit + * the curve size. + */ +#define PSA_ALG_ECDSA_ANY PSA_ALG_ECDSA_BASE +#define PSA_ALG_DETERMINISTIC_ECDSA_BASE ((psa_algorithm_t)0x06000700) +/** Deterministic ECDSA signature with hashing. + * + * This is the deterministic ECDSA signature scheme defined by RFC 6979. + * + * The representation of a signature is the same as with #PSA_ALG_ECDSA(). + * + * Note that when this algorithm is used for verification, signatures + * made with randomized ECDSA (#PSA_ALG_ECDSA(\p hash_alg)) with the + * same private key are accepted. In other words, + * #PSA_ALG_DETERMINISTIC_ECDSA(\p hash_alg) differs from + * #PSA_ALG_ECDSA(\p hash_alg) only for signature, not for verification. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * This includes #PSA_ALG_ANY_HASH + * when specifying the algorithm in a usage policy. + * + * \return The corresponding deterministic ECDSA signature + * algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_DETERMINISTIC_ECDSA(hash_alg) \ + (PSA_ALG_DETERMINISTIC_ECDSA_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +#define PSA_ALG_ECDSA_DETERMINISTIC_FLAG ((psa_algorithm_t)0x00000100) +#define PSA_ALG_IS_ECDSA(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK & ~PSA_ALG_ECDSA_DETERMINISTIC_FLAG) == \ + PSA_ALG_ECDSA_BASE) +#define PSA_ALG_ECDSA_IS_DETERMINISTIC(alg) \ + (((alg) & PSA_ALG_ECDSA_DETERMINISTIC_FLAG) != 0) +#define PSA_ALG_IS_DETERMINISTIC_ECDSA(alg) \ + (PSA_ALG_IS_ECDSA(alg) && PSA_ALG_ECDSA_IS_DETERMINISTIC(alg)) +#define PSA_ALG_IS_RANDOMIZED_ECDSA(alg) \ + (PSA_ALG_IS_ECDSA(alg) && !PSA_ALG_ECDSA_IS_DETERMINISTIC(alg)) + +/** Whether the specified algorithm is a hash-and-sign algorithm. + * + * Hash-and-sign algorithms are asymmetric (public-key) signature algorithms + * structured in two parts: first the calculation of a hash in a way that + * does not depend on the key, then the calculation of a signature from the + * hash value and the key. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a hash-and-sign algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_HASH_AND_SIGN(alg) \ + (PSA_ALG_IS_RSA_PSS(alg) || PSA_ALG_IS_RSA_PKCS1V15_SIGN(alg) || \ + PSA_ALG_IS_ECDSA(alg)) + +/** Get the hash used by a hash-and-sign signature algorithm. + * + * A hash-and-sign algorithm is a signature algorithm which is + * composed of two phases: first a hashing phase which does not use + * the key and produces a hash of the input message, then a signing + * phase which only uses the hash and the key and not the message + * itself. + * + * \param alg A signature algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_SIGN(\p alg) is true). + * + * \return The underlying hash algorithm if \p alg is a hash-and-sign + * algorithm. + * \return 0 if \p alg is a signature algorithm that does not + * follow the hash-and-sign structure. + * \return Unspecified if \p alg is not a signature algorithm or + * if it is not supported by the implementation. + */ +#define PSA_ALG_SIGN_GET_HASH(alg) \ + (PSA_ALG_IS_HASH_AND_SIGN(alg) ? \ + ((alg) & PSA_ALG_HASH_MASK) == 0 ? /*"raw" algorithm*/ 0 : \ + ((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \ + 0) + +/** RSA PKCS#1 v1.5 encryption. + */ +#define PSA_ALG_RSA_PKCS1V15_CRYPT ((psa_algorithm_t)0x07000200) + +#define PSA_ALG_RSA_OAEP_BASE ((psa_algorithm_t)0x07000300) +/** RSA OAEP encryption. + * + * This is the encryption scheme defined by RFC 8017 + * (PKCS#1: RSA Cryptography Specifications) under the name + * RSAES-OAEP, with the message generation function MGF1. + * + * \param hash_alg The hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true) to use + * for MGF1. + * + * \return The corresponding RSA OAEP encryption algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_RSA_OAEP(hash_alg) \ + (PSA_ALG_RSA_OAEP_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +#define PSA_ALG_IS_RSA_OAEP(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_RSA_OAEP_BASE) +#define PSA_ALG_RSA_OAEP_GET_HASH(alg) \ + (PSA_ALG_IS_RSA_OAEP(alg) ? \ + ((alg) & PSA_ALG_HASH_MASK) | PSA_ALG_CATEGORY_HASH : \ + 0) + +#define PSA_ALG_HKDF_BASE ((psa_algorithm_t)0x08000100) +/** Macro to build an HKDF algorithm. + * + * For example, `PSA_ALG_HKDF(PSA_ALG_SHA256)` is HKDF using HMAC-SHA-256. + * + * This key derivation algorithm uses the following inputs: + * - #PSA_KEY_DERIVATION_INPUT_SALT is the salt used in the "extract" step. + * It is optional; if omitted, the derivation uses an empty salt. + * - #PSA_KEY_DERIVATION_INPUT_SECRET is the secret key used in the "extract" step. + * - #PSA_KEY_DERIVATION_INPUT_INFO is the info string used in the "expand" step. + * You must pass #PSA_KEY_DERIVATION_INPUT_SALT before #PSA_KEY_DERIVATION_INPUT_SECRET. + * You may pass #PSA_KEY_DERIVATION_INPUT_INFO at any time after steup and before + * starting to generate output. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * + * \return The corresponding HKDF algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_HKDF(hash_alg) \ + (PSA_ALG_HKDF_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) +/** Whether the specified algorithm is an HKDF algorithm. + * + * HKDF is a family of key derivation algorithms that are based on a hash + * function and the HMAC construction. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is an HKDF algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \c alg is not a supported + * key derivation algorithm identifier. + */ +#define PSA_ALG_IS_HKDF(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_HKDF_BASE) +#define PSA_ALG_HKDF_GET_HASH(hkdf_alg) \ + (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK)) + +#define PSA_ALG_TLS12_PRF_BASE ((psa_algorithm_t)0x08000200) +/** Macro to build a TLS-1.2 PRF algorithm. + * + * TLS 1.2 uses a custom pseudorandom function (PRF) for key schedule, + * specified in Section 5 of RFC 5246. It is based on HMAC and can be + * used with either SHA-256 or SHA-384. + * + * This key derivation algorithm uses the following inputs, which must be + * passed in the order given here: + * - #PSA_KEY_DERIVATION_INPUT_SEED is the seed. + * - #PSA_KEY_DERIVATION_INPUT_SECRET is the secret key. + * - #PSA_KEY_DERIVATION_INPUT_LABEL is the label. + * + * For the application to TLS-1.2 key expansion, the seed is the + * concatenation of ServerHello.Random + ClientHello.Random, + * and the label is "key expansion". + * + * For example, `PSA_ALG_TLS12_PRF(PSA_ALG_SHA256)` represents the + * TLS 1.2 PRF using HMAC-SHA-256. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * + * \return The corresponding TLS-1.2 PRF algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_TLS12_PRF(hash_alg) \ + (PSA_ALG_TLS12_PRF_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) + +/** Whether the specified algorithm is a TLS-1.2 PRF algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is a TLS-1.2 PRF algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \c alg is not a supported + * key derivation algorithm identifier. + */ +#define PSA_ALG_IS_TLS12_PRF(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_TLS12_PRF_BASE) +#define PSA_ALG_TLS12_PRF_GET_HASH(hkdf_alg) \ + (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK)) + +#define PSA_ALG_TLS12_PSK_TO_MS_BASE ((psa_algorithm_t)0x08000300) +/** Macro to build a TLS-1.2 PSK-to-MasterSecret algorithm. + * + * In a pure-PSK handshake in TLS 1.2, the master secret is derived + * from the PreSharedKey (PSK) through the application of padding + * (RFC 4279, Section 2) and the TLS-1.2 PRF (RFC 5246, Section 5). + * The latter is based on HMAC and can be used with either SHA-256 + * or SHA-384. + * + * This key derivation algorithm uses the following inputs, which must be + * passed in the order given here: + * - #PSA_KEY_DERIVATION_INPUT_SEED is the seed. + * - #PSA_KEY_DERIVATION_INPUT_SECRET is the secret key. + * - #PSA_KEY_DERIVATION_INPUT_LABEL is the label. + * + * For the application to TLS-1.2, the seed (which is + * forwarded to the TLS-1.2 PRF) is the concatenation of the + * ClientHello.Random + ServerHello.Random, + * and the label is "master secret" or "extended master secret". + * + * For example, `PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA256)` represents the + * TLS-1.2 PSK to MasterSecret derivation PRF using HMAC-SHA-256. + * + * \param hash_alg A hash algorithm (\c PSA_ALG_XXX value such that + * #PSA_ALG_IS_HASH(\p hash_alg) is true). + * + * \return The corresponding TLS-1.2 PSK to MS algorithm. + * \return Unspecified if \p hash_alg is not a supported + * hash algorithm. + */ +#define PSA_ALG_TLS12_PSK_TO_MS(hash_alg) \ + (PSA_ALG_TLS12_PSK_TO_MS_BASE | ((hash_alg) & PSA_ALG_HASH_MASK)) + +/** Whether the specified algorithm is a TLS-1.2 PSK to MS algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is a TLS-1.2 PSK to MS algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \c alg is not a supported + * key derivation algorithm identifier. + */ +#define PSA_ALG_IS_TLS12_PSK_TO_MS(alg) \ + (((alg) & ~PSA_ALG_HASH_MASK) == PSA_ALG_TLS12_PSK_TO_MS_BASE) +#define PSA_ALG_TLS12_PSK_TO_MS_GET_HASH(hkdf_alg) \ + (PSA_ALG_CATEGORY_HASH | ((hkdf_alg) & PSA_ALG_HASH_MASK)) + +#define PSA_ALG_KEY_DERIVATION_MASK ((psa_algorithm_t)0xfe00ffff) +#define PSA_ALG_KEY_AGREEMENT_MASK ((psa_algorithm_t)0xffff0000) + +/** Macro to build a combined algorithm that chains a key agreement with + * a key derivation. + * + * \param ka_alg A key agreement algorithm (\c PSA_ALG_XXX value such + * that #PSA_ALG_IS_KEY_AGREEMENT(\p ka_alg) is true). + * \param kdf_alg A key derivation algorithm (\c PSA_ALG_XXX value such + * that #PSA_ALG_IS_KEY_DERIVATION(\p kdf_alg) is true). + * + * \return The corresponding key agreement and derivation + * algorithm. + * \return Unspecified if \p ka_alg is not a supported + * key agreement algorithm or \p kdf_alg is not a + * supported key derivation algorithm. + */ +#define PSA_ALG_KEY_AGREEMENT(ka_alg, kdf_alg) \ + ((ka_alg) | (kdf_alg)) + +#define PSA_ALG_KEY_AGREEMENT_GET_KDF(alg) \ + (((alg) & PSA_ALG_KEY_DERIVATION_MASK) | PSA_ALG_CATEGORY_KEY_DERIVATION) + +#define PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) \ + (((alg) & PSA_ALG_KEY_AGREEMENT_MASK) | PSA_ALG_CATEGORY_KEY_AGREEMENT) + +/** Whether the specified algorithm is a raw key agreement algorithm. + * + * A raw key agreement algorithm is one that does not specify + * a key derivation function. + * Usually, raw key agreement algorithms are constructed directly with + * a \c PSA_ALG_xxx macro while non-raw key agreement algorithms are + * constructed with #PSA_ALG_KEY_AGREEMENT(). + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \p alg is a raw key agreement algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \p alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_RAW_KEY_AGREEMENT(alg) \ + (PSA_ALG_IS_KEY_AGREEMENT(alg) && \ + PSA_ALG_KEY_AGREEMENT_GET_KDF(alg) == PSA_ALG_CATEGORY_KEY_DERIVATION) + +#define PSA_ALG_IS_KEY_DERIVATION_OR_AGREEMENT(alg) \ + ((PSA_ALG_IS_KEY_DERIVATION(alg) || PSA_ALG_IS_KEY_AGREEMENT(alg))) + +/** The finite-field Diffie-Hellman (DH) key agreement algorithm. + * + * The shared secret produced by key agreement is + * `g^{ab}` in big-endian format. + * It is `ceiling(m / 8)` bytes long where `m` is the size of the prime `p` + * in bits. + */ +#define PSA_ALG_FFDH ((psa_algorithm_t)0x09010000) + +/** Whether the specified algorithm is a finite field Diffie-Hellman algorithm. + * + * This includes the raw finite field Diffie-Hellman algorithm as well as + * finite-field Diffie-Hellman followed by any supporter key derivation + * algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is a finite field Diffie-Hellman algorithm, 0 otherwise. + * This macro may return either 0 or 1 if \c alg is not a supported + * key agreement algorithm identifier. + */ +#define PSA_ALG_IS_FFDH(alg) \ + (PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_FFDH) + +/** The elliptic curve Diffie-Hellman (ECDH) key agreement algorithm. + * + * The shared secret produced by key agreement is the x-coordinate of + * the shared secret point. It is always `ceiling(m / 8)` bytes long where + * `m` is the bit size associated with the curve, i.e. the bit size of the + * order of the curve's coordinate field. When `m` is not a multiple of 8, + * the byte containing the most significant bit of the shared secret + * is padded with zero bits. The byte order is either little-endian + * or big-endian depending on the curve type. + * + * - For Montgomery curves (curve types `PSA_ECC_FAMILY_CURVEXXX`), + * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A` + * in little-endian byte order. + * The bit size is 448 for Curve448 and 255 for Curve25519. + * - For Weierstrass curves over prime fields (curve types + * `PSA_ECC_FAMILY_SECPXXX` and `PSA_ECC_FAMILY_BRAINPOOL_PXXX`), + * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A` + * in big-endian byte order. + * The bit size is `m = ceiling(log_2(p))` for the field `F_p`. + * - For Weierstrass curves over binary fields (curve types + * `PSA_ECC_FAMILY_SECTXXX`), + * the shared secret is the x-coordinate of `d_A Q_B = d_B Q_A` + * in big-endian byte order. + * The bit size is `m` for the field `F_{2^m}`. + */ +#define PSA_ALG_ECDH ((psa_algorithm_t)0x09020000) + +/** Whether the specified algorithm is an elliptic curve Diffie-Hellman + * algorithm. + * + * This includes the raw elliptic curve Diffie-Hellman algorithm as well as + * elliptic curve Diffie-Hellman followed by any supporter key derivation + * algorithm. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is an elliptic curve Diffie-Hellman algorithm, + * 0 otherwise. + * This macro may return either 0 or 1 if \c alg is not a supported + * key agreement algorithm identifier. + */ +#define PSA_ALG_IS_ECDH(alg) \ + (PSA_ALG_KEY_AGREEMENT_GET_BASE(alg) == PSA_ALG_ECDH) + +/** Whether the specified algorithm encoding is a wildcard. + * + * Wildcard values may only be used to set the usage algorithm field in + * a policy, not to perform an operation. + * + * \param alg An algorithm identifier (value of type #psa_algorithm_t). + * + * \return 1 if \c alg is a wildcard algorithm encoding. + * \return 0 if \c alg is a non-wildcard algorithm encoding (suitable for + * an operation). + * \return This macro may return either 0 or 1 if \c alg is not a supported + * algorithm identifier. + */ +#define PSA_ALG_IS_WILDCARD(alg) \ + (PSA_ALG_IS_HASH_AND_SIGN(alg) ? \ + PSA_ALG_SIGN_GET_HASH(alg) == PSA_ALG_ANY_HASH : \ + (alg) == PSA_ALG_ANY_HASH) + +/**@}*/ + +/** \defgroup key_lifetimes Key lifetimes + * @{ + */ + +/** The default lifetime for volatile keys. + * + * A volatile key only exists as long as the identifier to it is not destroyed. + * The key material is guaranteed to be erased on a power reset. + * + * A key with this lifetime is typically stored in the RAM area of the + * PSA Crypto subsystem. However this is an implementation choice. + * If an implementation stores data about the key in a non-volatile memory, + * it must release all the resources associated with the key and erase the + * key material if the calling application terminates. + */ +#define PSA_KEY_LIFETIME_VOLATILE ((psa_key_lifetime_t)0x00000000) + +/** The default lifetime for persistent keys. + * + * A persistent key remains in storage until it is explicitly destroyed or + * until the corresponding storage area is wiped. This specification does + * not define any mechanism to wipe a storage area, but implementations may + * provide their own mechanism (for example to perform a factory reset, + * to prepare for device refurbishment, or to uninstall an application). + * + * This lifetime value is the default storage area for the calling + * application. Implementations may offer other storage areas designated + * by other lifetime values as implementation-specific extensions. + * See ::psa_key_lifetime_t for more information. + */ +#define PSA_KEY_LIFETIME_PERSISTENT ((psa_key_lifetime_t)0x00000001) + +/** The persistence level of volatile keys. + * + * See ::psa_key_persistence_t for more information. + */ +#define PSA_KEY_PERSISTENCE_VOLATILE ((psa_key_persistence_t)0x00) + +/** The default persistence level for persistent keys. + * + * See ::psa_key_persistence_t for more information. + */ +#define PSA_KEY_PERSISTENCE_DEFAULT ((psa_key_persistence_t)0x01) + +/** A persistence level indicating that a key is never destroyed. + * + * See ::psa_key_persistence_t for more information. + */ +#define PSA_KEY_PERSISTENCE_READ_ONLY ((psa_key_persistence_t)0xff) + +#define PSA_KEY_LIFETIME_GET_PERSISTENCE(lifetime) \ + ((psa_key_persistence_t)((lifetime) & 0x000000ff)) + +#define PSA_KEY_LIFETIME_GET_LOCATION(lifetime) \ + ((psa_key_location_t)((lifetime) >> 8)) + +/** Whether a key lifetime indicates that the key is volatile. + * + * A volatile key is automatically destroyed by the implementation when + * the application instance terminates. In particular, a volatile key + * is automatically destroyed on a power reset of the device. + * + * A key that is not volatile is persistent. Persistent keys are + * preserved until the application explicitly destroys them or until an + * implementation-specific device management event occurs (for example, + * a factory reset). + * + * \param lifetime The lifetime value to query (value of type + * ::psa_key_lifetime_t). + * + * \return \c 1 if the key is volatile, otherwise \c 0. + */ +#define PSA_KEY_LIFETIME_IS_VOLATILE(lifetime) \ + (PSA_KEY_LIFETIME_GET_PERSISTENCE(lifetime) == \ + PSA_KEY_PERSISTENCE_VOLATILE) + +/** Construct a lifetime from a persistence level and a location. + * + * \param persistence The persistence level + * (value of type ::psa_key_persistence_t). + * \param location The location indicator + * (value of type ::psa_key_location_t). + * + * \return The constructed lifetime value. + */ +#define PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION(persistence, location) \ + ((location) << 8 | (persistence)) + +/** The local storage area for persistent keys. + * + * This storage area is available on all systems that can store persistent + * keys without delegating the storage to a third-party cryptoprocessor. + * + * See ::psa_key_location_t for more information. + */ +#define PSA_KEY_LOCATION_LOCAL_STORAGE ((psa_key_location_t)0x000000) + +#define PSA_KEY_LOCATION_VENDOR_FLAG ((psa_key_location_t)0x800000) + +/** The minimum value for a key identifier chosen by the application. + */ +#define PSA_KEY_ID_USER_MIN ((psa_key_id_t)0x00000001) +/** The maximum value for a key identifier chosen by the application. + */ +#define PSA_KEY_ID_USER_MAX ((psa_key_id_t)0x3fffffff) +/** The minimum value for a key identifier chosen by the implementation. + */ +#define PSA_KEY_ID_VENDOR_MIN ((psa_key_id_t)0x40000000) +/** The maximum value for a key identifier chosen by the implementation. + */ +#define PSA_KEY_ID_VENDOR_MAX ((psa_key_id_t)0x7fffffff) + +/**@}*/ + +/** \defgroup policy Key policies + * @{ + */ + +/** Whether the key may be exported. + * + * A public key or the public part of a key pair may always be exported + * regardless of the value of this permission flag. + * + * If a key does not have export permission, implementations shall not + * allow the key to be exported in plain form from the cryptoprocessor, + * whether through psa_export_key() or through a proprietary interface. + * The key may however be exportable in a wrapped form, i.e. in a form + * where it is encrypted by another key. + */ +#define PSA_KEY_USAGE_EXPORT ((psa_key_usage_t)0x00000001) + +/** Whether the key may be copied. + * + * This flag allows the use of psa_copy_key() to make a copy of the key + * with the same policy or a more restrictive policy. + * + * For lifetimes for which the key is located in a secure element which + * enforce the non-exportability of keys, copying a key outside the secure + * element also requires the usage flag #PSA_KEY_USAGE_EXPORT. + * Copying the key inside the secure element is permitted with just + * #PSA_KEY_USAGE_COPY if the secure element supports it. + * For keys with the lifetime #PSA_KEY_LIFETIME_VOLATILE or + * #PSA_KEY_LIFETIME_PERSISTENT, the usage flag #PSA_KEY_USAGE_COPY + * is sufficient to permit the copy. + */ +#define PSA_KEY_USAGE_COPY ((psa_key_usage_t)0x00000002) + +/** Whether the key may be used to encrypt a message. + * + * This flag allows the key to be used for a symmetric encryption operation, + * for an AEAD encryption-and-authentication operation, + * or for an asymmetric encryption operation, + * if otherwise permitted by the key's type and policy. + * + * For a key pair, this concerns the public key. + */ +#define PSA_KEY_USAGE_ENCRYPT ((psa_key_usage_t)0x00000100) + +/** Whether the key may be used to decrypt a message. + * + * This flag allows the key to be used for a symmetric decryption operation, + * for an AEAD decryption-and-verification operation, + * or for an asymmetric decryption operation, + * if otherwise permitted by the key's type and policy. + * + * For a key pair, this concerns the private key. + */ +#define PSA_KEY_USAGE_DECRYPT ((psa_key_usage_t)0x00000200) + +/** Whether the key may be used to sign a message. + * + * This flag allows the key to be used for a MAC calculation operation + * or for an asymmetric signature operation, + * if otherwise permitted by the key's type and policy. + * + * For a key pair, this concerns the private key. + */ +#define PSA_KEY_USAGE_SIGN_HASH ((psa_key_usage_t)0x00001000) + +/** Whether the key may be used to verify a message signature. + * + * This flag allows the key to be used for a MAC verification operation + * or for an asymmetric signature verification operation, + * if otherwise permitted by by the key's type and policy. + * + * For a key pair, this concerns the public key. + */ +#define PSA_KEY_USAGE_VERIFY_HASH ((psa_key_usage_t)0x00002000) + +/** Whether the key may be used to derive other keys. + */ +#define PSA_KEY_USAGE_DERIVE ((psa_key_usage_t)0x00004000) + +/**@}*/ + +/** \defgroup derivation Key derivation + * @{ + */ + +/** A secret input for key derivation. + * + * This should be a key of type #PSA_KEY_TYPE_DERIVE + * (passed to psa_key_derivation_input_key()) + * or the shared secret resulting from a key agreement + * (obtained via psa_key_derivation_key_agreement()). + * + * The secret can also be a direct input (passed to + * key_derivation_input_bytes()). In this case, the derivation operation + * may not be used to derive keys: the operation will only allow + * psa_key_derivation_output_bytes(), not psa_key_derivation_output_key(). + */ +#define PSA_KEY_DERIVATION_INPUT_SECRET ((psa_key_derivation_step_t)0x0101) + +/** A label for key derivation. + * + * This should be a direct input. + * It can also be a key of type #PSA_KEY_TYPE_RAW_DATA. + */ +#define PSA_KEY_DERIVATION_INPUT_LABEL ((psa_key_derivation_step_t)0x0201) + +/** A salt for key derivation. + * + * This should be a direct input. + * It can also be a key of type #PSA_KEY_TYPE_RAW_DATA. + */ +#define PSA_KEY_DERIVATION_INPUT_SALT ((psa_key_derivation_step_t)0x0202) + +/** An information string for key derivation. + * + * This should be a direct input. + * It can also be a key of type #PSA_KEY_TYPE_RAW_DATA. + */ +#define PSA_KEY_DERIVATION_INPUT_INFO ((psa_key_derivation_step_t)0x0203) + +/** A seed for key derivation. + * + * This should be a direct input. + * It can also be a key of type #PSA_KEY_TYPE_RAW_DATA. + */ +#define PSA_KEY_DERIVATION_INPUT_SEED ((psa_key_derivation_step_t)0x0204) + +/**@}*/ + +#endif /* PSA_CRYPTO_VALUES_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/error.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/error.h new file mode 100644 index 0000000..e8903f0 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/error.h @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/** + * \file psa/error.h + * \brief Standard error codes for the SPM and RoT Services + */ + +#ifndef __PSA_ERROR_H__ +#define __PSA_ERROR_H__ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* If #PSA_SUCCESS is already defined, it means that #psa_status_t + * is also defined in an external header, so prevent its multiple + * definition. + */ +#ifndef PSA_SUCCESS +typedef int32_t psa_status_t; +#endif + +#define PSA_SUCCESS ((psa_status_t)0) +#define PSA_SUCCESS_REBOOT ((psa_status_t)1) +#define PSA_SUCCESS_RESTART ((psa_status_t)2) + +#define PSA_ERROR_PROGRAMMER_ERROR ((psa_status_t)-129) +#define PSA_ERROR_CONNECTION_REFUSED ((psa_status_t)-130) +#define PSA_ERROR_CONNECTION_BUSY ((psa_status_t)-131) +#define PSA_ERROR_GENERIC_ERROR ((psa_status_t)-132) +#define PSA_ERROR_NOT_PERMITTED ((psa_status_t)-133) +#define PSA_ERROR_NOT_SUPPORTED ((psa_status_t)-134) +#define PSA_ERROR_INVALID_ARGUMENT ((psa_status_t)-135) +#define PSA_ERROR_INVALID_HANDLE ((psa_status_t)-136) +#define PSA_ERROR_BAD_STATE ((psa_status_t)-137) +#define PSA_ERROR_BUFFER_TOO_SMALL ((psa_status_t)-138) +#define PSA_ERROR_ALREADY_EXISTS ((psa_status_t)-139) +#define PSA_ERROR_DOES_NOT_EXIST ((psa_status_t)-140) +#define PSA_ERROR_INSUFFICIENT_MEMORY ((psa_status_t)-141) +#define PSA_ERROR_INSUFFICIENT_STORAGE ((psa_status_t)-142) +#define PSA_ERROR_INSUFFICIENT_DATA ((psa_status_t)-143) +#define PSA_ERROR_SERVICE_FAILURE ((psa_status_t)-144) +#define PSA_ERROR_COMMUNICATION_FAILURE ((psa_status_t)-145) +#define PSA_ERROR_STORAGE_FAILURE ((psa_status_t)-146) +#define PSA_ERROR_HARDWARE_FAILURE ((psa_status_t)-147) +#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)-149) +#define PSA_ERROR_DEPENDENCY_NEEDED ((psa_status_t)-156) +#define PSA_ERROR_CURRENTLY_INSTALLING ((psa_status_t)-157) +#ifdef __cplusplus +} +#endif + +#endif /* __PSA_ERROR_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/initial_attestation.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/initial_attestation.h new file mode 100644 index 0000000..732181a --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/initial_attestation.h @@ -0,0 +1,228 @@ +/* + * Copyright (c) 2018-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/***************************************************************************/ +/* DRAFT UNDER REVIEW */ +/* These APIs are still evolving and are meant as a prototype for review.*/ +/* The APIs will change depending on feedback and will be firmed up */ +/* to a stable set of APIs once all the feedback has been considered. */ +/***************************************************************************/ + +#ifndef __PSA_INITIAL_ATTESTATION_H__ +#define __PSA_INITIAL_ATTESTATION_H__ + +#include +#include +#include +#include "psa/crypto.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief PSA INITIAL ATTESTATION API version + * + * Initial attestation API version is: 1.0.0 + */ +#define PSA_INITIAL_ATTEST_API_VERSION_MAJOR (1) +#define PSA_INITIAL_ATTEST_API_VERSION_MINOR (0) + +/** + * The allowed size of input challenge in bytes: 32, 48, 64 + * Challenge can be a nonce from server + * or the hash of some combined data : nonce + attested data by caller. + */ +#define PSA_INITIAL_ATTEST_CHALLENGE_SIZE_32 (32u) +#define PSA_INITIAL_ATTEST_CHALLENGE_SIZE_48 (48u) +#define PSA_INITIAL_ATTEST_CHALLENGE_SIZE_64 (64u) + +/** + * The maximum size of an attestation token that can be generated by the + * attestation service. Used to configure buffers for services that verify the + * produced tokens. + */ +#define PSA_INITIAL_ATTEST_MAX_TOKEN_SIZE (0x500) + +/** + * The list of fixed claims in the initial attestation token is still evolving, + * you can expect slight changes in the future. + * + * The initial attestation token is planned to be aligned with future version of + * Entity Attestation Token format: + * https://tools.ietf.org/html/draft-mandyam-eat-01 + * + * Current list of claims: + * - Challenge: Input object from caller. Can be a single nonce from server + * or hash of nonce and attested data. It is intended to provide + * freshness to reports and the caller has responsibility to + * arrange this. Allowed length: 32, 48, 64 bytes. The claim is + * modeled to be eventually represented by the EAT standard + * claim nonce. Until such a time as that standard exists, + * the claim will be represented by a custom claim. Value + * is encoded as byte string. + * + * - Instance ID: It represents the unique identifier of the instance. In the + * PSA definition it is a hash of the public attestation key + * of the instance. The claim is modeled to be eventually + * represented by the EAT standard claim UEID of type GUID. + * Until such a time as that standard exists, the claim will be + * represented by a custom claim Value is encoded as byte + * string. + * + * - Verification service indicator: Optional, recommended claim. It is used by + * a Relying Party to locate a validation service for the token. + * The value is a text string that can be used to locate the + * service or a URL specifying the address of the service. The + * claim is modeled to be eventually represented by the EAT + * standard claim origination. Until such a time as that + * standard exists, the claim will be represented by a custom + * claim. Value is encoded as text string. + * + * - Profile definition: Optional, recommended claim. It contains the name of + * a document that describes the 'profile' of the token, being + * a full description of the claims, their usage, verification + * and token signing. The document name may include versioning. + * Custom claim with a value encoded as text string. + * + * - Implementation ID: It represents the original implementation signer of the + * attestation key and identifies the contract between the + * report and verification. A verification service will use this + * claim to locate the details of the verification process. + * Custom claim with a value encoded as byte string. + * + * - Security lifecycle: It represents the current lifecycle state of the + * instance. Custom claim with a value encoded as integer that + * is divided to convey a major state and a minor state. The + * PSA state and implementation state are encoded as follows: + * - version[15:8] - PSA lifecycle state - major + * - version[7:0] - IMPLEMENTATION DEFINED state - minor + * Possible PSA lifecycle states: + * - Unknown (0x1000u), + * - PSA_RoT_Provisioning (0x2000u), + * - Secured (0x3000u), + * - Non_PSA_RoT_Debug(0x4000u), + * - Recoverable_PSA_RoT_Debug (0x5000u), + * - Decommissioned (0x6000u) + * + * - Client ID: The partition ID of that secure partition or non-secure + * thread who called the initial attestation API. Custom claim + * with a value encoded as a *signed* integer. Negative number + * represents non-secure caller, positive numbers represents + * secure callers, zero is invalid. + * + * - HW version: Optional claim. Globally unique number in EAN-13 format + * identifying the GDSII that went to fabrication, HW and ROM. + * It can be used to reference the security level of the PSA-ROT + * via a certification website. Custom claim with a value is + * encoded as text string. + + * - Boot seed: It represents a random value created at system boot time that + * will allow differentiation of reports from different system + * sessions. The size is 32 bytes. Custom claim with a value is + * encoded as byte string. + * + * - Software components: Recommended claim. It represents the software state + * of the system. The value of the claim is an array of CBOR map + * entries, with one entry per software component within the + * device. Each map contains multiple claims that describe + * evidence about the details of the software component. + * + * - Measurement type: Optional claim. It represents the role of the + * software component. Value is encoded as short(!) text + * string. + * + * - Measurement value: It represents a hash of the invariant software + * component in memory at start-up time. The value must be a + * cryptographic hash of 256 bits or stronger.Value is + * encoded as byte string. + * + * - Version: Optional claim. It represents the issued software version. + * Value is encoded as text string. + * + * - Signer ID: It represents the hash of a signing authority public key. + * Value is encoded as byte string. + * + * - Measurement description: Optional claim. It represents the way in which + * the measurement value of the software component is + * computed. Value is encoded as text string containing an + * abbreviated description (name) of the measurement method. + * + * - No software measurements: In the event that the implementation does not + * contain any software measurements then the software + * components claim above can be omitted but instead + * it is mandatory to include this claim to indicate this is a + * deliberate state. Custom claim a value is encoded as unsigned + * integer set to 1. + */ + +/** + * \brief Get initial attestation token + * + * \param[in] auth_challenge Pointer to buffer where challenge input is + * stored. Nonce and / or hash of attested data. + * Must be always + * \ref PSA_INITIAL_ATTEST_TOKEN_SIZE bytes + * long. + * \param[in] challenge_size Size of challenge object in bytes. + * \param[out] token_buf Pointer to the buffer where attestation token + * will be stored. + * \param[in] token_buf_size Size of allocated buffer for token, in bytes. + * \param[out] token_size Size of the token that has been returned, in + * bytes. + * + * \return Returns error code as specified in \ref psa_status_t + */ +psa_status_t +psa_initial_attest_get_token(const uint8_t *auth_challenge, + size_t challenge_size, + uint8_t *token_buf, + size_t token_buf_size, + size_t *token_size); + +/** + * \brief Get the exact size of initial attestation token in bytes. + * + * It just returns with the size of the IAT token. It can be used if the caller + * dynamically allocates memory for the token buffer. + * + * \param[in] challenge_size Size of challenge object in bytes. This must be + * a supported challenge size (as above). + * \param[out] token_size Size of the token in bytes, which is created by + * initial attestation service. + * + * \return Returns error code as specified in \ref psa_status_t + */ +psa_status_t +psa_initial_attest_get_token_size(size_t challenge_size, + size_t *token_size); + +/** + * \brief Get the initial attestation public key. + * + * \param[out] public_key Pointer to the buffer where the public key + * will be stored. + * \param[in] key_buf_size Size of allocated buffer for key, in bytes. + * \param[out] public_key_len Size of public key in bytes. + * \param[out] public_key_curve Type of the elliptic curve which the key + * belongs to. + * + * \note Currently only the ECDSA P-256 over SHA-256 algorithm is supported. + * + * \return Returns error code as specified in \ref psa_status_t + */ +psa_status_t +tfm_initial_attest_get_public_key(uint8_t *public_key, + size_t public_key_buf_size, + size_t *public_key_len, + psa_ecc_family_t *elliptic_curve_type); + +#ifdef __cplusplus +} +#endif + +#endif /* __PSA_INITIAL_ATTESTATION_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/internal_trusted_storage.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/internal_trusted_storage.h new file mode 100644 index 0000000..3920bc9 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/internal_trusted_storage.h @@ -0,0 +1,164 @@ +/* + * Copyright (c) 2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/** This file describes the PSA Internal Trusted Storage API +*/ + +#ifndef PSA_INTERNAL_TRUSTED_STORAGE_H +#define PSA_INTERNAL_TRUSTED_STORAGE_H + +#include +#include + +#include "psa/error.h" +#include "psa/storage_common.h" + +#ifdef __cplusplus +extern "C" { +#endif +#define PSA_ITS_API_VERSION_MAJOR 1 /**< The major version number of the + * PSA ITS API + */ +#define PSA_ITS_API_VERSION_MINOR 0 /**< The minor version number of the + * PSA ITS API + */ +// This version of the header file is associated with 1.0 final release. + +/** + * \brief Create a new, or modify an existing, uid/value pair + * + * Stores data in the internal storage. + * + * \param[in] uid The identifier for the data + * \param[in] data_length The size in bytes of the data in `p_data` + * \param[in] p_data A buffer containing the data + * \param[in] create_flags The flags that the data will be stored with + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_NOT_PERMITTED The operation failed because the + * provided `uid` value was already + * created with + * PSA_STORAGE_FLAG_WRITE_ONCE + * \retval PSA_ERROR_NOT_SUPPORTED The operation failed because one or + * more of the flags provided in + * `create_flags` is not supported or is + * not valid + * \retval PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there + * was insufficient space on the + * storage medium + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the + * physical storage has failed (Fatal + * error) + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one + * of the provided pointers(`p_data`) + * is invalid, for example is `NULL` or + * references memory the caller cannot + * access + */ +psa_status_t psa_its_set(psa_storage_uid_t uid, + size_t data_length, + const void *p_data, + psa_storage_create_flags_t create_flags); + +/** + * \brief Retrieve data associated with a provided UID + * + * Retrieves up to `data_size` bytes of the data associated with `uid`, starting + * at `data_offset` bytes from the beginning of the data. Upon successful + * completion, the data will be placed in the `p_data` buffer, which must be at + * least `data_size` bytes in size. The length of the data returned will be in + * `p_data_length`. If `data_size` is 0, the contents of `p_data_length` will + * be set to zero. + * + * \param[in] uid The uid value + * \param[in] data_offset The starting offset of the data requested + * \param[in] data_size The amount of data requested + * \param[out] p_data On success, the buffer where the data will + * be placed + * \param[out] p_data_length On success, this will contain size of the data + * placed in `p_data` + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the + * provided `uid` value was not found in + * the storage + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the + * physical storage has failed (Fatal + * error) + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the + * provided arguments (`p_data`, + * `p_data_length`) is invalid, for example + * is `NULL` or references memory the + * caller cannot access. In addition, this + * can also happen if `data_offset` is + * larger than the size of the data + * associated with `uid` + */ +psa_status_t psa_its_get(psa_storage_uid_t uid, + size_t data_offset, + size_t data_size, + void *p_data, + size_t *p_data_length); + +/** + * \brief Retrieve the metadata about the provided uid + * + * Retrieves the metadata stored for a given `uid` as a `psa_storage_info_t` + * structure. + * + * \param[in] uid The `uid` value + * \param[out] p_info A pointer to the `psa_storage_info_t` struct that will + * be populated with the metadata + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided + * uid value was not found in the storage + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the physical + * storage has failed (Fatal error) + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the + * provided pointers(`p_info`) + * is invalid, for example is `NULL` or + * references memory the caller cannot + * access + */ +psa_status_t psa_its_get_info(psa_storage_uid_t uid, + struct psa_storage_info_t *p_info); + +/** + * \brief Remove the provided uid and its associated data from the storage + * + * Deletes the data from internal storage. + * + * \param[in] uid The `uid` value + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one or more + * of the given arguments were invalid (null + * pointer, wrong flags and so on) + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided + * uid value was not found in the storage + * \retval PSA_ERROR_NOT_PERMITTED The operation failed because the provided + * uid value was created with + * PSA_STORAGE_FLAG_WRITE_ONCE + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the physical + * storage has failed (Fatal error) + */ +psa_status_t psa_its_remove(psa_storage_uid_t uid); + +#ifdef __cplusplus +} +#endif + +#endif // PSA_INTERNAL_TRUSTED_STORAGE_H diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/protected_storage.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/protected_storage.h new file mode 100644 index 0000000..e76205c --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/protected_storage.h @@ -0,0 +1,282 @@ +/* + * Copyright (c) 2019-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/* This file describes the PSA Protected Storage API */ + +#ifndef PSA_PROTECTED_STORAGE_H +#define PSA_PROTECTED_STORAGE_H + +#include +#include + +#include "psa/error.h" +#include "psa/storage_common.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief PSA_PS_API_VERSION version + * + * Major and minor PSA_PS_API_VERSION numbers + */ +#define PSA_PS_API_VERSION_MAJOR 1 +#define PSA_PS_API_VERSION_MINOR 0 + +// This version of the header file is associated with 1.0 final release + +/** + * \brief Create a new, or modify an existing, uid/value pair + * + * Stores data in the protected storage. + * + * \param[in] uid The identifier for the data + * \param[in] data_length The size in bytes of the data in `p_data` + * \param[in] p_data A buffer containing the data + * \param[in] create_flags The flags that the data will be stored with + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_NOT_PERMITTED The operation failed because the + * provided `uid` value was already + * created with + * PSA_STORAGE_FLAG_WRITE_ONCE + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one + * of the provided pointers(`p_data`) + * is invalid, for example is `NULL` or + * references memory the caller cannot + * access + * \retval PSA_ERROR_NOT_SUPPORTED The operation failed because one or + * more of the flags provided in + * `create_flags` is not supported or is + * not valid + * \retval PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there + * was insufficient space on the + * storage medium + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the + * physical storage has failed (Fatal + * error) + * \retval PSA_ERROR_GENERIC_ERROR The operation failed because of an + * unspecified internal failure + */ +psa_status_t psa_ps_set(psa_storage_uid_t uid, + size_t data_length, + const void *p_data, + psa_storage_create_flags_t create_flags); + +/** + * \brief Retrieve data associated with a provided uid + * + * Retrieves up to `data_size` bytes of the data associated with `uid`, starting + * at `data_offset` bytes from the beginning of the data. Upon successful + * completion, the data will be placed in the `p_data` buffer, which must be at + * least `data_size` bytes in size. The length of the data returned will be in + * `p_data_length`. If `data_size` is 0, the contents of `p_data_length` will + * be set to zero. + * + * \param[in] uid The uid value + * \param[in] data_offset The starting offset of the data requested + * \param[in] data_size The amount of data requested + * \param[out] p_data On success, the buffer where the data will + * be placed + * \param[out] p_data_length On success, this will contain size of the data + * placed in `p_data` + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the + * provided arguments (`p_data`, + * `p_data_length`) is invalid, for example + * is `NULL` or references memory the + * caller cannot access. In addition, this + * can also happen if `data_offset` is + * larger than the size of the data + * associated with `uid` + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the + * provided `uid` value was not found in + * the storage + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the + * physical storage has failed (Fatal + * error) + * \retval PSA_ERROR_GENERIC_ERROR The operation failed because of an + * unspecified internal failure + * \retval PSA_ERROR_DATA_CORRUPT The operation failed because the data + * associated with the UID was corrupt + * \retval PSA_ERROR_INVALID_SIGNATURE The operation failed because the data + * associated with the UID failed + * authentication + */ +psa_status_t psa_ps_get(psa_storage_uid_t uid, + size_t data_offset, + size_t data_size, + void *p_data, + size_t *p_data_length); + +/** + * \brief Retrieve the metadata about the provided uid + * + * Retrieves the metadata stored for a given `uid` + * + * \param[in] uid The `uid` value + * \param[out] p_info A pointer to the `psa_storage_info_t` struct that will + * be populated with the metadata + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the + * provided pointers(`p_info`) + * is invalid, for example is `NULL` or + * references memory the caller cannot + * access + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided + * uid value was not found in the storage + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the physical + * storage has failed (Fatal error) + * \retval PSA_ERROR_GENERIC_ERROR The operation failed because of an + * unspecified internal failure + * \retval PSA_ERROR_DATA_CORRUPT The operation failed because the data + * associated with the UID was corrupt + */ +psa_status_t psa_ps_get_info(psa_storage_uid_t uid, + struct psa_storage_info_t *p_info); + +/** + * \brief Remove the provided uid and its associated data from the storage + * + * Removes previously stored data and any associated metadata, + * including rollback protection data. + * + * \param[in] uid The `uid` value + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one or more + * of the given arguments were invalid (null + * pointer, wrong flags and so on) + * \retval PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided + * uid value was not found in the storage + * \retval PSA_ERROR_NOT_PERMITTED The operation failed because the provided + * uid value was created with + * PSA_STORAGE_FLAG_WRITE_ONCE + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the physical + * storage has failed (Fatal error) + * \retval PSA_ERROR_GENERIC_ERROR The operation failed because of an + * unspecified internal failure + */ +psa_status_t psa_ps_remove(psa_storage_uid_t uid); + +/** + * \brief Reserves storage for the specified uid + * + * Upon success, the capacity of the storage will be capacity, and the size + * will be 0. It is only necessary to call this function for assets that will + * be written with the psa_ps_set_extended function. If only the psa_ps_set + * function is needed, calls to this function are redundant. + * + * \param[in] uid The `uid` value + * \param[in] capacity The capacity to be allocated in bytes + * \param[in] create_flags Flags indicating properties of storage + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The operation completed successfully + * \retval PSA_ERROR_STORAGE_FAILURE The operation failed because the + * physical storage has failed + * (Fatal error) + * \retval PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because the + * capacity is bigger than the current + * available space + * \retval PSA_ERROR_NOT_SUPPORTED The operation failed because the + * function is not implemented or one + * or more create_flags are not + * supported. + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because uid was + * 0 or create_flags specified flags + * that are not defined in the API. + * \retval PSA_ERROR_GENERIC_ERROR The operation failed due to an + * unspecified error + * \retval PSA_ERROR_ALREADY_EXISTS Storage for the specified uid + * already exists + */ +psa_status_t psa_ps_create(psa_storage_uid_t uid, + size_t capacity, + psa_storage_create_flags_t create_flags); + +/** + * \brief Sets partial data into an asset + * + * Before calling this function, the storage must have been reserved with a call + * to psa_ps_create. It can also be used to overwrite data in an asset that was + * created with a call to psa_ps_set. Calling this function with data_length = 0 + * is permitted, which will make no change to the stored data.This function can + * overwrite existing data and/or extend it up to the capacity for the uid + * specified in psa_ps_create, but cannot create gaps. + * + * That is, it has preconditions: + * - data_offset <= size + * - data_offset + data_length <= capacity + * and postconditions: + * - size = max(size, data_offset + data_length) + * - capacity unchanged. + * + * \param[in] uid The `uid` value + * \param[in] data_offset Offset within the asset to start the write + * \param[in] data_length The size in bytes of the data in p_data to write + * \param[in] p_data Pointer to a buffer which contains the data to write + * + * \return A status indicating the success/failure of the operation + * + * \retval PSA_SUCCESS The asset exists, the input parameters + * are correct and the data is correctly + * written in the physical storage. + * \retval PSA_ERROR_STORAGE_FAILURE The data was not written correctly in + * the physical storage + * \retval PSA_ERROR_INVALID_ARGUMENT The operation failed because one or more + * of the preconditions listed above + * regarding data_offset, size, or + * data_length was violated. + * \retval PSA_ERROR_DOES_NOT_EXIST The specified uid was not found + * \retval PSA_ERROR_NOT_SUPPORTED The implementation of the API does not + * support this function + * \retval PSA_ERROR_GENERIC_ERROR The operation failed due to an + * unspecified error + * \retval PSA_ERROR_DATA_CORRUPT The operation failed because the + * existing data has been corrupted. + * \retval PSA_ERROR_INVALID_SIGNATURE The operation failed because the + * existing data failed authentication + * (MAC check failed). + * \retval PSA_ERROR_NOT_PERMITTED The operation failed because it was + * attempted on an asset which was written + * with the flag + * PSA_STORAGE_FLAG_WRITE_ONCE + */ +psa_status_t psa_ps_set_extended(psa_storage_uid_t uid, + size_t data_offset, + size_t data_length, + const void *p_data); + +/** + * \brief Lists optional features. + * + * \return A bitmask with flags set for all of + * the optional features supported by the + * implementation.Currently defined flags + * are limited to + * PSA_STORAGE_SUPPORT_SET_EXTENDED + */ +uint32_t psa_ps_get_support(void); + +#ifdef __cplusplus +} +#endif + +#endif /* PSA_PROTECTED_STORAGE_H */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa/storage_common.h b/COMPONENT_TFM_NS_INTERFACE/include/psa/storage_common.h new file mode 100644 index 0000000..3f901c5 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa/storage_common.h @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/* This file includes common definitions for PSA storage +*/ + +#ifndef PSA_STORAGE_COMMON_H +#define PSA_STORAGE_COMMON_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +typedef uint32_t psa_storage_create_flags_t; + +typedef uint64_t psa_storage_uid_t; + +/* Flags */ + +#define PSA_STORAGE_FLAG_NONE 0u +#define PSA_STORAGE_FLAG_WRITE_ONCE (1u << 0) +#define PSA_STORAGE_FLAG_NO_CONFIDENTIALITY (1u << 1) +#define PSA_STORAGE_FLAG_NO_REPLAY_PROTECTION (1u << 2) + +/* A container for metadata associated with a specific uid */ + +struct psa_storage_info_t { + size_t capacity; + size_t size; + psa_storage_create_flags_t flags; +}; + +#define PSA_STORAGE_SUPPORT_SET_EXTENDED (1u << 0) + +#define PSA_ERROR_INVALID_SIGNATURE ((psa_status_t)-149) +#define PSA_ERROR_DATA_CORRUPT ((psa_status_t)-152) + +#ifdef __cplusplus +} +#endif + +#endif // PSA_STORAGE_COMMON_H diff --git a/COMPONENT_TFM_NS_INTERFACE/include/psa_manifest/sid.h b/COMPONENT_TFM_NS_INTERFACE/include/psa_manifest/sid.h new file mode 100644 index 0000000..220ea8f --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/psa_manifest/sid.h @@ -0,0 +1,220 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/*********** WARNING: This is an auto-generated file. Do not edit! ***********/ + +#ifndef __PSA_MANIFEST_SID_H__ +#define __PSA_MANIFEST_SID_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +/******** TFM_SP_PS ********/ +#define TFM_PS_SET_SID (0x00000060U) +#define TFM_PS_SET_VERSION (1U) +#define TFM_PS_GET_SID (0x00000061U) +#define TFM_PS_GET_VERSION (1U) +#define TFM_PS_GET_INFO_SID (0x00000062U) +#define TFM_PS_GET_INFO_VERSION (1U) +#define TFM_PS_REMOVE_SID (0x00000063U) +#define TFM_PS_REMOVE_VERSION (1U) +#define TFM_PS_GET_SUPPORT_SID (0x00000064U) +#define TFM_PS_GET_SUPPORT_VERSION (1U) + +/******** TFM_SP_ITS ********/ +#define TFM_ITS_SET_SID (0x00000070U) +#define TFM_ITS_SET_VERSION (1U) +#define TFM_ITS_GET_SID (0x00000071U) +#define TFM_ITS_GET_VERSION (1U) +#define TFM_ITS_GET_INFO_SID (0x00000072U) +#define TFM_ITS_GET_INFO_VERSION (1U) +#define TFM_ITS_REMOVE_SID (0x00000073U) +#define TFM_ITS_REMOVE_VERSION (1U) + +/******** TFM_SP_CRYPTO ********/ +#define TFM_CRYPTO_SID (0x00000080U) +#define TFM_CRYPTO_VERSION (1U) + +/******** TFM_SP_PLATFORM ********/ +#define TFM_SP_PLATFORM_SYSTEM_RESET_SID (0x00000040U) +#define TFM_SP_PLATFORM_SYSTEM_RESET_VERSION (1U) +#define TFM_SP_PLATFORM_IOCTL_SID (0x00000041U) +#define TFM_SP_PLATFORM_IOCTL_VERSION (1U) +#define TFM_SP_PLATFORM_NV_COUNTER_SID (0x00000042U) +#define TFM_SP_PLATFORM_NV_COUNTER_VERSION (1U) + +/******** TFM_SP_INITIAL_ATTESTATION ********/ +#define TFM_ATTEST_GET_TOKEN_SID (0x00000020U) +#define TFM_ATTEST_GET_TOKEN_VERSION (1U) +#define TFM_ATTEST_GET_TOKEN_SIZE_SID (0x00000021U) +#define TFM_ATTEST_GET_TOKEN_SIZE_VERSION (1U) +#define TFM_ATTEST_GET_PUBLIC_KEY_SID (0x00000022U) +#define TFM_ATTEST_GET_PUBLIC_KEY_VERSION (1U) + +/******** TFM_SP_CORE_TEST ********/ +#define SPM_CORE_TEST_INIT_SUCCESS_SID (0x0000F020U) +#define SPM_CORE_TEST_INIT_SUCCESS_VERSION (1U) +#define SPM_CORE_TEST_DIRECT_RECURSION_SID (0x0000F021U) +#define SPM_CORE_TEST_DIRECT_RECURSION_VERSION (1U) +#define SPM_CORE_TEST_SS_TO_SS_SID (0x0000F024U) +#define SPM_CORE_TEST_SS_TO_SS_VERSION (1U) +#define SPM_CORE_TEST_SS_TO_SS_BUFFER_SID (0x0000F025U) +#define SPM_CORE_TEST_SS_TO_SS_BUFFER_VERSION (1U) +#define SPM_CORE_TEST_OUTVEC_WRITE_SID (0x0000F026U) +#define SPM_CORE_TEST_OUTVEC_WRITE_VERSION (1U) +#define SPM_CORE_TEST_PERIPHERAL_ACCESS_SID (0x0000F027U) +#define SPM_CORE_TEST_PERIPHERAL_ACCESS_VERSION (1U) +#define SPM_CORE_TEST_GET_CALLER_CLIENT_ID_SID (0x0000F028U) +#define SPM_CORE_TEST_GET_CALLER_CLIENT_ID_VERSION (1U) +#define SPM_CORE_TEST_SPM_REQUEST_SID (0x0000F029U) +#define SPM_CORE_TEST_SPM_REQUEST_VERSION (1U) +#define SPM_CORE_TEST_BLOCK_SID (0x0000F02AU) +#define SPM_CORE_TEST_BLOCK_VERSION (1U) +#define SPM_CORE_TEST_NS_THREAD_SID (0x0000F02BU) +#define SPM_CORE_TEST_NS_THREAD_VERSION (1U) + +/******** TFM_SP_CORE_TEST_2 ********/ +#define SPM_CORE_TEST_2_SLAVE_SERVICE_SID (0x0000F040U) +#define SPM_CORE_TEST_2_SLAVE_SERVICE_VERSION (1U) +#define SPM_CORE_TEST_2_CHECK_CALLER_CLIENT_ID_SID (0x0000F041U) +#define SPM_CORE_TEST_2_CHECK_CALLER_CLIENT_ID_VERSION (1U) +#define SPM_CORE_TEST_2_GET_EVERY_SECOND_BYTE_SID (0x0000F042U) +#define SPM_CORE_TEST_2_GET_EVERY_SECOND_BYTE_VERSION (1U) +#define SPM_CORE_TEST_2_INVERT_SID (0x0000F043U) +#define SPM_CORE_TEST_2_INVERT_VERSION (1U) +#define SPM_CORE_TEST_2_PREPARE_TEST_SCENARIO_SID (0x0000F044U) +#define SPM_CORE_TEST_2_PREPARE_TEST_SCENARIO_VERSION (1U) +#define SPM_CORE_TEST_2_EXECUTE_TEST_SCENARIO_SID (0x0000F045U) +#define SPM_CORE_TEST_2_EXECUTE_TEST_SCENARIO_VERSION (1U) + +/******** TFM_SP_SECURE_TEST_PARTITION ********/ +#define TFM_SECURE_CLIENT_SFN_RUN_TESTS_SID (0x0000F000U) +#define TFM_SECURE_CLIENT_SFN_RUN_TESTS_VERSION (1U) + +/******** TFM_SP_IPC_SERVICE_TEST ********/ +#define IPC_SERVICE_TEST_BASIC_SID (0x0000F080U) +#define IPC_SERVICE_TEST_BASIC_VERSION (1U) +#define IPC_SERVICE_TEST_PSA_ACCESS_APP_MEM_SID (0x0000F081U) +#define IPC_SERVICE_TEST_PSA_ACCESS_APP_MEM_VERSION (1U) +#define IPC_SERVICE_TEST_PSA_ACCESS_APP_READ_ONLY_MEM_SID (0x0000F082U) +#define IPC_SERVICE_TEST_PSA_ACCESS_APP_READ_ONLY_MEM_VERSION (1U) +#define IPC_SERVICE_TEST_APP_ACCESS_PSA_MEM_SID (0x0000F083U) +#define IPC_SERVICE_TEST_APP_ACCESS_PSA_MEM_VERSION (1U) +#define IPC_SERVICE_TEST_CLIENT_PROGRAMMER_ERROR_SID (0x0000F084U) +#define IPC_SERVICE_TEST_CLIENT_PROGRAMMER_ERROR_VERSION (1U) + +/******** TFM_SP_IPC_CLIENT_TEST ********/ +#define IPC_CLIENT_TEST_BASIC_SID (0x0000F060U) +#define IPC_CLIENT_TEST_BASIC_VERSION (1U) +#define IPC_CLIENT_TEST_PSA_ACCESS_APP_MEM_SID (0x0000F061U) +#define IPC_CLIENT_TEST_PSA_ACCESS_APP_MEM_VERSION (1U) +#define IPC_CLIENT_TEST_PSA_ACCESS_APP_READ_ONLY_MEM_SID (0x0000F062U) +#define IPC_CLIENT_TEST_PSA_ACCESS_APP_READ_ONLY_MEM_VERSION (1U) +#define IPC_CLIENT_TEST_APP_ACCESS_PSA_MEM_SID (0x0000F063U) +#define IPC_CLIENT_TEST_APP_ACCESS_PSA_MEM_VERSION (1U) +#define IPC_CLIENT_TEST_MEM_CHECK_SID (0x0000F064U) +#define IPC_CLIENT_TEST_MEM_CHECK_VERSION (1U) +#define IPC_CLIENT_TEST_RETRIEVE_APP_MEM_SID (0x0000F065U) +#define IPC_CLIENT_TEST_RETRIEVE_APP_MEM_VERSION (1U) + +/******** TFM_IRQ_TEST_1 ********/ +#define SPM_CORE_IRQ_TEST_1_PREPARE_TEST_SCENARIO_SID (0x0000F0A0U) +#define SPM_CORE_IRQ_TEST_1_PREPARE_TEST_SCENARIO_VERSION (1U) +#define SPM_CORE_IRQ_TEST_1_EXECUTE_TEST_SCENARIO_SID (0x0000F0A1U) +#define SPM_CORE_IRQ_TEST_1_EXECUTE_TEST_SCENARIO_VERSION (1U) + +/******** TFM_SP_PS_TEST ********/ +#define TFM_PS_TEST_PREPARE_SID (0x0000F0C0U) +#define TFM_PS_TEST_PREPARE_VERSION (1U) + +/******** TFM_SP_PSOC_SERVICE_TEST ********/ +#define PSOC_SERVICE_TEST_PSA_INIT_WD_SID (0x00002001U) +#define PSOC_SERVICE_TEST_PSA_INIT_WD_VERSION (1U) +#define PSOC_SERVICE_TEST_PSA_POKE_WD_SID (0x00002002U) +#define PSOC_SERVICE_TEST_PSA_POKE_WD_VERSION (1U) +#define PSOC_SERVICE_TEST_PSA_KILL_WD_SID (0x00002003U) +#define PSOC_SERVICE_TEST_PSA_KILL_WD_VERSION (1U) +#define PSOC_SERVICE_TEST_PSA_WRITE_FLASH_SID (0x00002004U) +#define PSOC_SERVICE_TEST_PSA_WRITE_FLASH_VERSION (1U) +#define PSOC_SERVICE_TEST_PSA_READ_FLASH_SID (0x00002005U) +#define PSOC_SERVICE_TEST_PSA_READ_FLASH_VERSION (1U) +#define PSOC_SERVICE_TEST_PSA_GET_REBOOT_REASON_SID (0x00002006U) +#define PSOC_SERVICE_TEST_PSA_GET_REBOOT_REASON_VERSION (1U) + +/******** TFM_PSOC_CLIENT_TEST ********/ +#define PSOC_CLIENT_TEST_LVL2_SID (0x00002000U) +#define PSOC_CLIENT_TEST_LVL2_VERSION (1U) + +/******** TFM_SP_SECURE_CLIENT_2 ********/ +#define TFM_SECURE_CLIENT_2_SID (0x0000F0E0U) +#define TFM_SECURE_CLIENT_2_VERSION (1U) + +/******** TFM_SP_PSA_PROXY ********/ +#define TFM_CRYPTO_SID (0x00000080U) +#define TFM_CRYPTO_VERSION (1U) +#define TFM_ATTEST_GET_TOKEN_SID (0x00000020U) +#define TFM_ATTEST_GET_TOKEN_VERSION (1U) +#define TFM_ATTEST_GET_TOKEN_SIZE_SID (0x00000021U) +#define TFM_ATTEST_GET_TOKEN_SIZE_VERSION (1U) +#define TFM_ATTEST_GET_PUBLIC_KEY_SID (0x00000022U) +#define TFM_ATTEST_GET_PUBLIC_KEY_VERSION (1U) +#define TFM_ITS_SET_SID (0x00000070U) +#define TFM_ITS_SET_VERSION (1U) +#define TFM_ITS_GET_SID (0x00000071U) +#define TFM_ITS_GET_VERSION (1U) +#define TFM_ITS_GET_INFO_SID (0x00000072U) +#define TFM_ITS_GET_INFO_VERSION (1U) +#define TFM_ITS_REMOVE_SID (0x00000073U) +#define TFM_ITS_REMOVE_VERSION (1U) +#define TFM_SP_PLATFORM_SYSTEM_RESET_SID (0x00000040U) +#define TFM_SP_PLATFORM_SYSTEM_RESET_VERSION (1U) +#define TFM_SP_PLATFORM_IOCTL_SID (0x00000041U) +#define TFM_SP_PLATFORM_IOCTL_VERSION (1U) +#define TFM_SP_PLATFORM_NV_COUNTER_SID (0x00000042U) +#define TFM_SP_PLATFORM_NV_COUNTER_VERSION (1U) +#define TFM_PS_SET_SID (0x00000060U) +#define TFM_PS_SET_VERSION (1U) +#define TFM_PS_GET_SID (0x00000061U) +#define TFM_PS_GET_VERSION (1U) +#define TFM_PS_GET_INFO_SID (0x00000062U) +#define TFM_PS_GET_INFO_VERSION (1U) +#define TFM_PS_REMOVE_SID (0x00000063U) +#define TFM_PS_REMOVE_VERSION (1U) +#define TFM_PS_GET_SUPPORT_SID (0x00000064U) +#define TFM_PS_GET_SUPPORT_VERSION (1U) + +/******** TFM_SP_FWU ********/ +#define TFM_FWU_WRITE_SID (0x000000A0U) +#define TFM_FWU_WRITE_VERSION (1U) +#define TFM_FWU_INSTALL_SID (0x000000A1U) +#define TFM_FWU_INSTALL_VERSION (1U) +#define TFM_FWU_ABORT_SID (0x000000A2U) +#define TFM_FWU_ABORT_VERSION (1U) +#define TFM_FWU_QUERY_SID (0x000000A3U) +#define TFM_FWU_QUERY_VERSION (1U) +#define TFM_FWU_REQUEST_REBOOT_SID (0x000000A4U) +#define TFM_FWU_REQUEST_REBOOT_VERSION (1U) +#define TFM_FWU_ACCEPT_SID (0x000000A5U) +#define TFM_FWU_ACCEPT_VERSION (1U) + +/******** TFM_SP_FFM11 ********/ +#define TFM_FFM11_SERVICE1_SID (0x0000F120U) +#define TFM_FFM11_SERVICE1_VERSION (1U) +#define TFM_FFM11_SERVICE1_HANDLE (0x40000104U) +#define TFM_FFM11_SERVICE2_SID (0x0000F121U) +#define TFM_FFM11_SERVICE2_VERSION (1U) +#define TFM_FFM11_SERVICE2_HANDLE (0x40000101U) +#define TFM_FFM11_SERVICE3_SID (0x0000F122U) +#define TFM_FFM11_SERVICE3_VERSION (1U) +#define TFM_FFM11_SERVICE3_HANDLE (0x40000103U) + +#ifdef __cplusplus +} +#endif + +#endif /* __PSA_MANIFEST_SID_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_api.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_api.h new file mode 100644 index 0000000..fea18cd --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_api.h @@ -0,0 +1,140 @@ +/* + * Copyright (c) 2017-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __TFM_API_H__ +#define __TFM_API_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include "psa/client.h" + +#define TFM_INVALID_CLIENT_ID 0 + +/** + * \brief Checks if the provided client ID is a secure client ID. + * + * \param[in] client_id Client ID to check. + * + * \retval 1 Client ID is secure. + * \retval 0 Client ID is non-secure. + */ +#define TFM_CLIENT_ID_IS_S(client_id) ((client_id)>0) + +/** + * \brief Checks if the provided client ID is a non-secure client ID. + * + * \param[in] client_id Client ID to check. + * + * \retval 1 Client ID is non-secure. + * \retval 0 Client ID is secure. + */ +#define TFM_CLIENT_ID_IS_NS(client_id) ((client_id)<0) + +/* The mask used for timeout values */ +#define PSA_TIMEOUT_MASK PSA_BLOCK + +/* FixMe: sort out DEBUG compile option and limit return value options + * on external interfaces */ +enum tfm_status_e +{ + TFM_SUCCESS = 0, + TFM_PARTITION_BUSY, + TFM_ERROR_SECURE_DOMAIN_LOCKED, + TFM_ERROR_INVALID_PARAMETER, + TFM_ERROR_PARTITION_NON_REENTRANT, + TFM_ERROR_NS_THREAD_MODE_CALL, + TFM_ERROR_NOT_INITIALIZED, + TFM_ERROR_NO_ACTIVE_PARTITION, + TFM_ERROR_INVALID_EXC_MODE, + TFM_SECURE_LOCK_FAILED, + TFM_SECURE_UNLOCK_FAILED, + TFM_ERROR_GENERIC = 0x1F, +}; + +/* + * Structure to package type, in_len and out_len, it is mainly used for + * psa_call. + */ +struct tfm_control_parameter_t { + int32_t type; + size_t in_len; + size_t out_len; +}; + +/********************* Secure function declarations ***************************/ + +/** + * \brief Assign client ID to the current TZ context. + * + * \param[in] ns_client_id The client ID to be assigned to the current + * context. + * \retval TFM_SUCCESS The client ID assigned successfully. + * \retval error code The client ID assignment failed, an error code + * returned according to \ref tfm_status_e. + * \note This function have to be called from handler mode. + */ +enum tfm_status_e tfm_register_client_id (int32_t ns_client_id); + +/** + * \brief Retrieve the version of the PSA Framework API that is implemented. + * + * \return The version of the PSA Framework. + */ +uint32_t tfm_psa_framework_version_veneer(void); + +/** + * \brief Return version of secure function provided by secure binary. + * + * \param[in] sid ID of secure service. + * + * \return Version number of secure function. + */ +uint32_t tfm_psa_version_veneer(uint32_t sid); + +/** + * \brief Connect to secure function. + * + * \param[in] sid ID of secure service. + * \param[in] version Version of SF requested by client. + * + * \return Returns handle to connection. + */ +psa_handle_t tfm_psa_connect_veneer(uint32_t sid, uint32_t version); + +/** + * \brief Call a secure function referenced by a connection handle. + * + * \param[in] handle Handle to connection. + * \param[in] ctrl_param Parameter structure, includes request type, + * in_num and out_num. + * \param[in] in_vec Array of input \ref psa_invec structures. + * \param[in,out] out_vec Array of output \ref psa_outvec structures. + * + * \return Returns \ref psa_status_t status code. + */ +psa_status_t tfm_psa_call_veneer(psa_handle_t handle, + const struct tfm_control_parameter_t *ctrl_param, + const psa_invec *in_vec, + psa_outvec *out_vec); + +/** + * \brief Close connection to secure function referenced by a connection handle. + * + * \param[in] handle Handle to connection + */ +void tfm_psa_close_veneer(psa_handle_t handle); + +/***************** End Secure function declarations ***************************/ + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_API_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_crypto_defs.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_crypto_defs.h new file mode 100644 index 0000000..b4c771f --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_crypto_defs.h @@ -0,0 +1,165 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __TFM_CRYPTO_DEFS_H__ +#define __TFM_CRYPTO_DEFS_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include "tfm_api.h" +#include "psa/crypto.h" + +/** + * \brief This type is used to overcome a limitation in the number of maximum + * IOVECs that can be used especially in psa_aead_encrypt and + * psa_aead_decrypt. To be removed in case the AEAD APIs number of + * parameters passed gets restructured + */ +#define TFM_CRYPTO_MAX_NONCE_LENGTH (16u) +struct tfm_crypto_aead_pack_input { + uint8_t nonce[TFM_CRYPTO_MAX_NONCE_LENGTH]; + uint32_t nonce_length; +}; + +/** + * \brief Structure used to pack non-pointer types in a call + * + */ +struct tfm_crypto_pack_iovec { + uint32_t sfn_id; /*!< Secure function ID used to dispatch the + * request + */ + uint16_t step; /*!< Key derivation step */ + psa_key_id_t key_id; /*!< Key id */ + psa_algorithm_t alg; /*!< Algorithm */ + uint32_t op_handle; /*!< Frontend context handle associated to a + * multipart operation + */ + size_t capacity; /*!< Key derivation capacity */ + + struct tfm_crypto_aead_pack_input aead_in; /*!< FixMe: Temporarily used for + * AEAD until the API is + * restructured + */ +}; + +/** + * \brief Define a progressive numerical value for each SID which can be used + * when dispatching the requests to the service + */ +enum { + TFM_CRYPTO_GET_KEY_ATTRIBUTES_SID = (0u), + TFM_CRYPTO_RESET_KEY_ATTRIBUTES_SID, + TFM_CRYPTO_OPEN_KEY_SID, + TFM_CRYPTO_CLOSE_KEY_SID, + TFM_CRYPTO_IMPORT_KEY_SID, + TFM_CRYPTO_DESTROY_KEY_SID, + TFM_CRYPTO_EXPORT_KEY_SID, + TFM_CRYPTO_EXPORT_PUBLIC_KEY_SID, + TFM_CRYPTO_PURGE_KEY_SID, + TFM_CRYPTO_COPY_KEY_SID, + TFM_CRYPTO_HASH_COMPUTE_SID, + TFM_CRYPTO_HASH_COMPARE_SID, + TFM_CRYPTO_HASH_SETUP_SID, + TFM_CRYPTO_HASH_UPDATE_SID, + TFM_CRYPTO_HASH_FINISH_SID, + TFM_CRYPTO_HASH_VERIFY_SID, + TFM_CRYPTO_HASH_ABORT_SID, + TFM_CRYPTO_HASH_CLONE_SID, + TFM_CRYPTO_MAC_COMPUTE_SID, + TFM_CRYPTO_MAC_VERIFY_SID, + TFM_CRYPTO_MAC_SIGN_SETUP_SID, + TFM_CRYPTO_MAC_VERIFY_SETUP_SID, + TFM_CRYPTO_MAC_UPDATE_SID, + TFM_CRYPTO_MAC_SIGN_FINISH_SID, + TFM_CRYPTO_MAC_VERIFY_FINISH_SID, + TFM_CRYPTO_MAC_ABORT_SID, + TFM_CRYPTO_CIPHER_ENCRYPT_SID, + TFM_CRYPTO_CIPHER_DECRYPT_SID, + TFM_CRYPTO_CIPHER_ENCRYPT_SETUP_SID, + TFM_CRYPTO_CIPHER_DECRYPT_SETUP_SID, + TFM_CRYPTO_CIPHER_GENERATE_IV_SID, + TFM_CRYPTO_CIPHER_SET_IV_SID, + TFM_CRYPTO_CIPHER_UPDATE_SID, + TFM_CRYPTO_CIPHER_FINISH_SID, + TFM_CRYPTO_CIPHER_ABORT_SID, + TFM_CRYPTO_AEAD_ENCRYPT_SID, + TFM_CRYPTO_AEAD_DECRYPT_SID, + TFM_CRYPTO_AEAD_ENCRYPT_SETUP_SID, + TFM_CRYPTO_AEAD_DECRYPT_SETUP_SID, + TFM_CRYPTO_AEAD_GENERATE_NONCE_SID, + TFM_CRYPTO_AEAD_SET_NONCE_SID, + TFM_CRYPTO_AEAD_SET_LENGTHS_SID, + TFM_CRYPTO_AEAD_UPDATE_AD_SID, + TFM_CRYPTO_AEAD_UPDATE_SID, + TFM_CRYPTO_AEAD_FINISH_SID, + TFM_CRYPTO_AEAD_VERIFY_SID, + TFM_CRYPTO_AEAD_ABORT_SID, + TFM_CRYPTO_SIGN_HASH_SID, + TFM_CRYPTO_VERIFY_HASH_SID, + TFM_CRYPTO_ASYMMETRIC_ENCRYPT_SID, + TFM_CRYPTO_ASYMMETRIC_DECRYPT_SID, + TFM_CRYPTO_KEY_DERIVATION_SETUP_SID, + TFM_CRYPTO_KEY_DERIVATION_GET_CAPACITY_SID, + TFM_CRYPTO_KEY_DERIVATION_SET_CAPACITY_SID, + TFM_CRYPTO_KEY_DERIVATION_INPUT_BYTES_SID, + TFM_CRYPTO_KEY_DERIVATION_INPUT_KEY_SID, + TFM_CRYPTO_KEY_DERIVATION_KEY_AGREEMENT_SID, + TFM_CRYPTO_KEY_DERIVATION_OUTPUT_BYTES_SID, + TFM_CRYPTO_KEY_DERIVATION_OUTPUT_KEY_SID, + TFM_CRYPTO_KEY_DERIVATION_ABORT_SID, + TFM_CRYPTO_RAW_KEY_AGREEMENT_SID, + TFM_CRYPTO_GENERATE_RANDOM_SID, + TFM_CRYPTO_GENERATE_KEY_SID, + TFM_CRYPTO_SET_KEY_DOMAIN_PARAMETERS_SID, + TFM_CRYPTO_GET_KEY_DOMAIN_PARAMETERS_SID, + TFM_CRYPTO_SID_MAX, +}; + +/** + * \brief Define an invalid value for an SID + * + */ +#define TFM_CRYPTO_SID_INVALID (~0x0u) + +/** + * \brief This value is used to mark an handle as invalid. + * + */ +#define TFM_CRYPTO_INVALID_HANDLE (0x0u) + +/** + * \brief The persistent key identifier that refers to the hardware unique key. + * + */ +#define TFM_CRYPTO_KEY_ID_HUK (0xFFFF815Bu) + +/** + * \brief The algorithm identifier that refers to key derivation from the + * hardware unique key. + * + */ +#define TFM_CRYPTO_ALG_HUK_DERIVATION ((psa_algorithm_t)0xB0000F00) + +/** + * \brief Define miscellaneous literal constants that are used in the service + * + */ +enum { + TFM_CRYPTO_NOT_IN_USE = 0, + TFM_CRYPTO_IN_USE = 1 +}; + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_CRYPTO_DEFS_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox.h new file mode 100644 index 0000000..74527a2 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox.h @@ -0,0 +1,155 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/* + * This is header file of common mailbox objects shared by NSPE and SPE. + * Please refer to tfm_ns_mailbox.h for the definitions only used in NSPE + * mailbox library. + * Please refer to tfm_spe_mailbox.h for the SPE specific definitions and APIs. + */ + +#ifndef __TFM_MAILBOX_H__ +#define __TFM_MAILBOX_H__ + +#include +#include +#include + +#include "psa/client.h" +#include "tfm_mailbox_config.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* PSA client call type value */ +#define MAILBOX_PSA_FRAMEWORK_VERSION (0x1) +#define MAILBOX_PSA_VERSION (0x2) +#define MAILBOX_PSA_CONNECT (0x3) +#define MAILBOX_PSA_CALL (0x4) +#define MAILBOX_PSA_CLOSE (0x5) + +/* Return code of mailbox APIs */ +#define MAILBOX_SUCCESS (0) +#define MAILBOX_QUEUE_FULL (INT32_MIN + 1) +#define MAILBOX_INVAL_PARAMS (INT32_MIN + 2) +#define MAILBOX_NO_PERMS (INT32_MIN + 3) +#define MAILBOX_NO_PEND_EVENT (INT32_MIN + 4) +#define MAILBOX_CHAN_BUSY (INT32_MIN + 5) +#define MAILBOX_CALLBACK_REG_ERROR (INT32_MIN + 6) +#define MAILBOX_INIT_ERROR (INT32_MIN + 7) +#define MAILBOX_GENERIC_ERROR (INT32_MIN + 8) + +/* + * This structure holds the parameters used in a PSA client call. + */ +struct psa_client_params_t { + union { + struct { + uint32_t sid; + } psa_version_params; + + struct { + uint32_t sid; + uint32_t version; + } psa_connect_params; + + struct { + psa_handle_t handle; + int32_t type; + const psa_invec *in_vec; + size_t in_len; + psa_outvec *out_vec; + size_t out_len; + } psa_call_params; + + struct { + psa_handle_t handle; + } psa_close_params; + }; +}; + +/* Mailbox message passed from NSPE to SPE to deliver a PSA client call */ +struct mailbox_msg_t { + uint32_t call_type; /* PSA client call type */ + struct psa_client_params_t params; /* Contain parameters used in PSA + * client call + */ + + int32_t client_id; /* Optional client ID of the + * non-secure caller. + * It is required to identify the + * non-secure task when NSPE OS + * enforces non-secure task isolation + */ +}; + +/* + * Mailbox reply structure in non-secure memory + * to hold the PSA client call return result from SPE + */ +struct mailbox_reply_t { + int32_t return_val; + const void *owner; /* Handle of owner task. */ + int32_t *reply; /* Address of reply value belonging + * to owner task. + */ +#ifdef TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD + uint8_t *woken_flag; /* Indicate that owner task has been + * or should be woken up, after the + * reply is received. + */ +#else + bool is_woken; /* Indicate that owner task has been + * or should be woken up, after the + * reply is received. + */ +#endif +}; + +/* A single slot structure in NSPE mailbox queue */ +struct ns_mailbox_slot_t { + struct mailbox_msg_t msg; + struct mailbox_reply_t reply; +}; + +typedef uint32_t mailbox_queue_status_t; + +/* NSPE mailbox queue */ +struct ns_mailbox_queue_t { + mailbox_queue_status_t empty_slots; /* Bitmask of empty slots */ + mailbox_queue_status_t pend_slots; /* Bitmask of slots pending + * for SPE handling + */ + mailbox_queue_status_t replied_slots; /* Bitmask of active slots + * containing PSA client call + * return result + */ + + struct ns_mailbox_slot_t queue[NUM_MAILBOX_QUEUE_SLOT]; + +#ifdef TFM_MULTI_CORE_TEST + uint32_t nr_tx; /* The total number of + * submission of NS PSA Client + * calls from NS task via + * mailbox. + */ + uint32_t nr_used_slots; /* The total number of used + * mailbox queue slots each time + * NS thread requests a mailbox + * queue slot. + */ + + bool is_full; /* Queue if full */ +#endif +}; + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_MAILBOX_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox_config.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox_config.h new file mode 100644 index 0000000..018400e --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mailbox_config.h @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2020-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef _TFM_MAILBOX_CONFIG_ +#define _TFM_MAILBOX_CONFIG_ + +/* + * \note Don't modify this file. Change the build configuration value + * and re-build TF-M SPE side to update the value. + */ + +/* Get number of mailbox queue slots from build configuration */ +#define NUM_MAILBOX_QUEUE_SLOT 4 + +#ifndef NUM_MAILBOX_QUEUE_SLOT +#define NUM_MAILBOX_QUEUE_SLOT 1 +#endif + +#if (NUM_MAILBOX_QUEUE_SLOT < 1) +#error "Error: Invalid NUM_MAILBOX_QUEUE_SLOT. The value should be >= 1" +#endif + +/* + * The number of slots should be no more than the number of bits in + * mailbox_queue_status_t. + * Here the value is hardcoded. A better way is to define a sizeof() to + * calculate the bits in mailbox_queue_status_t and dump it with pragma message. + */ +#if (NUM_MAILBOX_QUEUE_SLOT > 32) +#error "Error: Invalid NUM_MAILBOX_QUEUE_SLOT. The value should be <= 32" +#endif + +#endif /* _TFM_MAILBOX_CONFIG_ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_mbedtls_version.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mbedtls_version.h new file mode 100644 index 0000000..3af1cec --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_mbedtls_version.h @@ -0,0 +1,28 @@ +/* + * Copyright (c) 2021, Cypress Semiconductor Corporation. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __TFM_MBEDTLS_VERSION_H__ +#define __TFM_MBEDTLS_VERSION_H__ + +/** + * The version number x.y.z is split into three parts. + * Major, Minor, Patchlevel + */ +#define TFM_MBEDTLS_VERSION_MAJOR 2 +#define TFM_MBEDTLS_VERSION_MINOR 25 +#define TFM_MBEDTLS_VERSION_PATCH 0 + +/** + * The single version number has the following structure: + * MMNNPP00 + * Major version | Minor version | Patch version + */ +#define TFM_MBEDTLS_VERSION_NUMBER 0x02190000 +#define TFM_MBEDTLS_VERSION_STRING "2.25.0" +#define TFM_MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.25.0" + +#endif /* __TFM_MBEDTLS_VERSION_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_multi_core_api.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_multi_core_api.h new file mode 100644 index 0000000..752cf96 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_multi_core_api.h @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __TFM_MULTI_CORE_API__ +#define __TFM_MULTI_CORE_API__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +/** + * \brief Called on the non-secure CPU. + * Flags that the non-secure side has completed its initialization. + * Waits, if necessary, for the secure CPU to flag that it has completed + * its initialization. + * + * \return Return 0 if succeeds. + * \return Otherwise, return specific error code. + */ +int32_t tfm_ns_wait_for_s_cpu_ready(void); + +/** + * \brief Synchronisation with secure CPU, platform-specific implementation. + * Flags that the non-secure side has completed its initialization. + * Waits, if necessary, for the secure CPU to flag that it has completed + * its initialization. + * + * \retval Return 0 if succeeds. + * \retval Otherwise, return specific error code. + */ +int32_t tfm_platform_ns_wait_for_s_cpu_ready(void); + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_MULTI_CORE_API__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_interface.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_interface.h new file mode 100644 index 0000000..1dd0692 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_interface.h @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2017-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ +#ifndef __TFM_NS_INTERFACE_H__ +#define __TFM_NS_INTERFACE_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include "tfm_api.h" + +typedef int32_t (*veneer_fn) (uint32_t arg0, uint32_t arg1, + uint32_t arg2, uint32_t arg3); + +/** + * \brief NS interface, veneer function dispatcher + * + * \details This function implements the dispatching mechanism for the + * desired veneer function, to be called with the parameters + * described from arg0 to arg3. + * + * \param[in] fn Function pointer to the veneer function desired + * \param[in] arg0 Argument 0 + * \param[in] arg1 Argument 1 + * \param[in] arg2 Argument 2 + * \param[in] arg3 Argument 3 + * + * \return Returns the same return value of the requested veneer function + * + * \note This API must ensure the return value is from the veneer function. + * Other unrecoverable errors must be considered as fatal error and should + * not return. + */ +int32_t tfm_ns_interface_dispatch(veneer_fn fn, + uint32_t arg0, uint32_t arg1, + uint32_t arg2, uint32_t arg3); + +/** + * \brief NS interface, Initialise the NS interface + * + * \details This function needs to be called from the NS world to + * properly initialise the NS interface towards TF-M. This + * function will initialise all the objects required for + * runtime dispatching of TF-M requests to services + * + * \return A value according to \ref enum tfm_status_e + */ +enum tfm_status_e tfm_ns_interface_init(void); +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_NS_INTERFACE_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_mailbox.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_mailbox.h new file mode 100644 index 0000000..7ba15bf --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_mailbox.h @@ -0,0 +1,387 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/* Data types and API definitions in NSPE mailbox library */ + +#ifndef __TFM_NS_MAILBOX_H__ +#define __TFM_NS_MAILBOX_H__ + +#include +#include + +#include "cmsis_compiler.h" +#include "tfm_mailbox.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#if !defined(TFM_MULTI_CORE_NS_OS) && (NUM_MAILBOX_QUEUE_SLOT > 1) +#error "NUM_MAILBOX_QUEUE_SLOT should be set to 1 for NS bare metal environment" +#endif + +#ifdef TFM_MULTI_CORE_TEST +/** + * \brief The structure to hold the statistics result of NSPE mailbox + */ +struct ns_mailbox_stats_res_t { + uint8_t avg_nr_slots; /* The value before the decimal point + * in the average number of NSPE + * mailbox slots in use. + */ + uint8_t avg_nr_slots_tenths; /* The first digit value after the + * decimal point in the average + * number of NSPE mailbox slots in use. + */ +}; +#endif + +/** + * \brief NSPE mailbox initialization + * + * \param[in] queue The base address of NSPE mailbox queue to be + * initialized. + * + * \retval MAILBOX_SUCCESS Operation succeeded. + * \retval Other return code Operation failed with an error code. + */ +int32_t tfm_ns_mailbox_init(struct ns_mailbox_queue_t *queue); + +/** + * \brief Send PSA client call to SPE via mailbox. Wait and fetch PSA client + * call result. + * + * \param[in] call_type PSA client call type + * \param[in] params Parameters used for PSA client call + * \param[in] client_id Optional client ID of non-secure caller. + * It is required to identify the non-secure caller + * when NSPE OS enforces non-secure task isolation. + * \param[out] reply The buffer written with PSA client call result. + * + * \retval MAILBOX_SUCCESS The PSA client call is completed successfully. + * \retval Other return code Operation failed with an error code. + */ +int32_t tfm_ns_mailbox_client_call(uint32_t call_type, + const struct psa_client_params_t *params, + int32_t client_id, + int32_t *reply); + +#ifdef TFM_MULTI_CORE_NS_OS +/** + * \brief Go through mailbox messages already replied by SPE mailbox and + * wake up the owner tasks of replied mailbox messages. + * This function is intended to be called inside platform specific + * notification IRQ handler. + * + * \return MAILBOX_SUCCESS The tasks of replied mailbox messages + * were found and wake-up signals were sent. + * \return MAILBOX_NO_PEND_EVENT No replied mailbox message is found. + * \return Other return code Failed with an error code + */ +int32_t tfm_ns_mailbox_wake_reply_owner_isr(void); +#else +static inline int32_t tfm_ns_mailbox_wake_reply_owner_isr(void) +{ + return MAILBOX_NO_PEND_EVENT; +} +#endif + +#ifdef TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD +/** + * \brief Handling PSA client calls in a dedicated NS mailbox thread. + * This function constructs NS mailbox messages, transmits them to SPE + * mailbox and returns the results to NS PSA client. + * + * \param[in] args The pointer to the structure of PSA client call + * parameters. + */ +void tfm_ns_mailbox_thread_runner(void *args); +#else /* TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD */ +#define tfm_ns_mailbox_thread_runner(args) do {} while (0) +#endif /* TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD */ + +/** + * \brief Platform specific NSPE mailbox initialization. + * Invoked by \ref tfm_ns_mailbox_init(). + * + * \param[in] queue The base address of NSPE mailbox queue to be + * initialized. + * + * \retval MAILBOX_SUCCESS Operation succeeded. + * \retval Other return code Operation failed with an error code. + */ +int32_t tfm_ns_mailbox_hal_init(struct ns_mailbox_queue_t *queue); + +/** + * \brief Notify SPE to deal with the PSA client call sent via mailbox + * + * \note The implementation depends on platform specific hardware and use case. + * + * \retval MAILBOX_SUCCESS Operation succeeded. + * \retval Other return code Operation failed with an error code. + */ +int32_t tfm_ns_mailbox_hal_notify_peer(void); + +/** + * \brief Enter critical section of NSPE mailbox. + * + * \note The implementation depends on platform specific hardware and use case. + */ +void tfm_ns_mailbox_hal_enter_critical(void); + +/** + * \brief Exit critical section of NSPE mailbox. + * + * \note The implementation depends on platform specific hardware and use case. + */ +void tfm_ns_mailbox_hal_exit_critical(void); + +/** + * \brief Enter critical section of NSPE mailbox in IRQ handler. + * + * \note The implementation depends on platform specific hardware and use case. + */ +void tfm_ns_mailbox_hal_enter_critical_isr(void); + +/** + * \brief Enter critical section of NSPE mailbox in IRQ handler + * + * \note The implementation depends on platform specific hardware and use case. + */ +void tfm_ns_mailbox_hal_exit_critical_isr(void); + +#ifdef TFM_MULTI_CORE_NS_OS +/** + * \brief Initialize the multi-core lock for synchronizing PSA client call(s) + * The actual implementation depends on the non-secure use scenario. + * + * \return \ref MAILBOX_SUCCESS on success + * \return \ref MAILBOX_GENERIC_ERROR on error + */ +int32_t tfm_ns_mailbox_os_lock_init(void); + +/** + * \brief Acquire the multi-core lock for synchronizing PSA client call(s) + * The actual implementation depends on the non-secure use scenario. + * + * \return \ref MAILBOX_SUCCESS on success + * \return \ref MAILBOX_GENERIC_ERROR on error + */ +int32_t tfm_ns_mailbox_os_lock_acquire(void); + +/** + * \brief Release the multi-core lock for synchronizing PSA client call(s) + * The actual implementation depends on the non-secure use scenario. + * + * \return \ref MAILBOX_SUCCESS on success + * \return \ref MAILBOX_GENERIC_ERROR on error + */ +int32_t tfm_ns_mailbox_os_lock_release(void); + +/** + * \brief Get the handle of the current non-secure task executing mailbox + * functionalities + * + * \note This function should be implemented according to NS OS and + * actual use scenario. + * This function can be ignored or return NULL if sleep/wake-up mechanism + * is not required in PSA Client API implementation. + * + * \return Return the handle of task. + */ +const void *tfm_ns_mailbox_os_get_task_handle(void); + +/** + * \brief Performs use scenario and NS OS specific waiting mechanism to wait for + * the reply to be returned from SPE. + * + * \note This function is implemented by NS OS specific waiting mechanism + * according to use scenario. + */ +void tfm_ns_mailbox_os_wait_reply(void); + +/* + * \brief Performs use scenario and NS OS specific mechanism in a mailbox IRQ + * handler, to wake up a sleeping task which is waiting for its mailbox + * message reply. + * + * \note The underlying NS OS specific function called inside this function + * should be able to work in an IRQ handler. + * + * \note This function is implemented by NS OS specific waiting + * mechanism according to use scenario. + * + * \param[in] task_handle The handle to the task to be woken up. + */ +void tfm_ns_mailbox_os_wake_task_isr(const void *task_handle); + +/** + * \brief Create and initialize a message queue + * + * \param[in] msg_size The maximum message size in bytes + * \param[in] msg_count The maximum number of messages in queue + * + * \return Returns handle of the message queue created, or NULL in case of error + */ +void *tfm_ns_mailbox_os_mq_create(size_t msg_size, uint8_t msg_count); + +/** + * \brief Send a request via message queue + * + * \param[in] mq_handle The handle of message queue + * \param[in] msg_ptr The pointer to the message to be sent + * + * \note The message size must be the same as the value set in + * \ref tfm_ns_mailbox_os_mq_create. + * + * \return \ref MAILBOX_SUCCESS if the message is successfully sent, or + * other return code in case of error + */ +int32_t tfm_ns_mailbox_os_mq_send(void *mq_handle, const void *msg_ptr); + +/** + * \brief Receive a request from message queue + * + * \param[in] mq_handle The handle of message queue + * \param[in] msg_ptr The pointer to buffer for message to be received + * + * \return \ref MAILBOX_SUCCESS if the message is successfully received, or + * other return code in case of error + * + * \note The message size is the same as the value set in + * \ref tfm_ns_mailbox_os_mq_create. + * + * \note The function should be blocked until a message is received from message + * queue, unless a fatal error occurs. + */ +int32_t tfm_ns_mailbox_os_mq_receive(void *mq_handle, void *msg_ptr); +#else /* TFM_MULTI_CORE_NS_OS */ +#define tfm_ns_mailbox_os_wait_reply() do {} while (0) + +#define tfm_ns_mailbox_os_wake_task_isr(task) do {} while (0) + +static inline int32_t tfm_ns_mailbox_os_lock_init(void) +{ + return MAILBOX_SUCCESS; +} + +static inline int32_t tfm_ns_mailbox_os_lock_acquire(void) +{ + return MAILBOX_SUCCESS; +} + +static inline int32_t tfm_ns_mailbox_os_lock_release(void) +{ + return MAILBOX_SUCCESS; +} + +static inline const void *tfm_ns_mailbox_os_get_task_handle(void) +{ + return NULL; +} +#endif /* TFM_MULTI_CORE_NS_OS */ + +#ifdef TFM_MULTI_CORE_TEST +/** + * \brief Initialize the statistics module in TF-M NSPE mailbox. + * + * \note This function is only available when multi-core tests are enabled. + * + * \param[in] ns_queue The NSPE mailbox queue to be tracked. + */ +void tfm_ns_mailbox_tx_stats_init(struct ns_mailbox_queue_t *ns_queue); + +/** + * \brief Re-initialize the statistics module in TF-M NSPE mailbox. + * Clean up statistics data. + * + * \note This function is only available when multi-core tests are enabled. + * + * \return \ref MAILBOX_SUCCESS if the operation succeeded, or other return code + in case of error + */ +int32_t tfm_ns_mailbox_tx_stats_reinit(void); + +/** + * \brief Update the statistics result of NSPE mailbox message transmission. + * + * \note This function is only available when multi-core tests are enabled. + */ +void tfm_ns_mailbox_tx_stats_update(void); + +/** + * \brief Calculate the average number of used NS mailbox queue slots each time + * NS task requires a queue slot to submit mailbox message, which is + * recorded in NS mailbox statisitics module. + * + * \note This function is only available when multi-core tests are enabled. + * + * \param[in] stats_res The buffer to be written with + * \ref ns_mailbox_stats_res_t. + * + * \return Return the calculation result. + */ +void tfm_ns_mailbox_stats_avg_slot(struct ns_mailbox_stats_res_t *stats_res); +#endif + +#ifdef TFM_MULTI_CORE_NS_OS +/* + * When NSPE mailbox only covers a single non-secure core, spinlock only + * requires to disable IRQ. + */ +static inline void ns_mailbox_spin_lock(void) +{ + __disable_irq(); +} + +/* + * It is assumed that IRQ is always enabled when spinlock is acquired. + * Otherwise, the waiting thread won't be woken up. + */ +static inline void ns_mailbox_spin_unlock(void) +{ + __enable_irq(); +} +#else /* TFM_MULTI_CORE_NS_OS */ +/* + * Local spinlock is implemented as a dummy one when integrating with NS bare + * metal environment since interrupt is not required in NS mailbox. + */ +#define ns_mailbox_spin_lock() do {} while (0) + +#define ns_mailbox_spin_unlock() do {} while (0) +#endif /* TFM_MULTI_CORE_NS_OS */ + +/* The following inline functions configure non-secure mailbox queue status */ +static inline void clear_queue_slot_empty(struct ns_mailbox_queue_t *queue_ptr, + uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + queue_ptr->empty_slots &= ~(1UL << idx); + } +} + +static inline void set_queue_slot_pend(struct ns_mailbox_queue_t *queue_ptr, + uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + queue_ptr->pend_slots |= (1UL << idx); + } +} + +static inline void clear_queue_slot_all_replied( + struct ns_mailbox_queue_t *queue_ptr, + mailbox_queue_status_t status) +{ + queue_ptr->replied_slots &= ~status; +} + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_NS_MAILBOX_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_svc.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_svc.h new file mode 100644 index 0000000..def0c2f --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_ns_svc.h @@ -0,0 +1,68 @@ +/* + * Copyright (c) 2017-2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include +#include "cmsis_compiler.h" + +#ifndef __TFM_NS_SVC_H__ +#define __TFM_NS_SVC_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief Include all the SVC handler headers + */ +#include "tfm_nspm_svc_handler.h" + +/** + * \brief Macro to encode an svc instruction + * + */ +#define SVC(code) __ASM volatile("svc %0" : : "I" (code)) + +/** + * \def LIST_SVC_NSPM + * + * \brief This is an X macro which lists + * the SVC interface exposed by TF-M + * for the NS OS. + * + */ +#define LIST_SVC_NSPM \ + X(SVC_TFM_NSPM_REGISTER_CLIENT_ID, tfm_nspm_svc_register_client_id) \ + +/** + * \brief Numbers associated to each SVC available + * + * \details Start from 1 as 0 is reserved by RTX + */ +enum tfm_svc_num { + SVC_INVALID = 0, + +#define X(SVC_ENUM, SVC_HANDLER) SVC_ENUM, + + /* SVC API for Services */ +#ifdef TFM_NS_CLIENT_IDENTIFICATION + LIST_SVC_NSPM +#endif + +#undef X + + /* add all the new entries above this line */ + SVC_TFM_MAX, +}; + +/* number of user SVC functions */ +#define USER_SVC_COUNT ((uint32_t)SVC_TFM_MAX - 1) + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_NS_SVC_H__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/include/tfm_platform_api.h b/COMPONENT_TFM_NS_INTERFACE/include/tfm_platform_api.h new file mode 100644 index 0000000..8c9b0db --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/include/tfm_platform_api.h @@ -0,0 +1,98 @@ +/* + * Copyright (c) 2018-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#ifndef __TFM_PLATFORM_API__ +#define __TFM_PLATFORM_API__ + +#include +#include +#include +#include "tfm_api.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \brief TFM secure partition platform API version + */ +#define TFM_PLATFORM_API_VERSION_MAJOR (0) +#define TFM_PLATFORM_API_VERSION_MINOR (3) + +#define TFM_PLATFORM_API_ID_NV_READ (1010) +#define TFM_PLATFORM_API_ID_NV_INCREMENT (1011) + +/*! + * \enum tfm_platform_err_t + * + * \brief Platform service error types + * + */ +enum tfm_platform_err_t { + TFM_PLATFORM_ERR_SUCCESS = 0, + TFM_PLATFORM_ERR_SYSTEM_ERROR, + TFM_PLATFORM_ERR_INVALID_PARAM, + TFM_PLATFORM_ERR_NOT_SUPPORTED, + + /* Following entry is only to ensure the error code of int size */ + TFM_PLATFORM_ERR_FORCE_INT_SIZE = INT_MAX +}; + +typedef int32_t tfm_platform_ioctl_req_t; + +/*! + * \brief Resets the system. + * + * \return Returns values as specified by the \ref tfm_platform_err_t + */ +enum tfm_platform_err_t tfm_platform_system_reset(void); + +/*! + * \brief Performs a platform-specific service + * + * \param[in] request Request identifier (valid values vary + * based on the platform) + * \param[in] input Input buffer to the requested service (or NULL) + * \param[in,out] output Output buffer to the requested service (or NULL) + * + * \return Returns values as specified by the \ref tfm_platform_err_t + */ +enum tfm_platform_err_t tfm_platform_ioctl(tfm_platform_ioctl_req_t request, + psa_invec *input, + psa_outvec *output); + +/*! + * \brief Increments the given non-volatile (NV) counter by one + * + * \param[in] counter_id NV counter ID. + * + * \return TFM_PLATFORM_ERR_SUCCESS if the value is read correctly. Otherwise, + * it returns TFM_PLATFORM_ERR_SYSTEM_ERROR. + */ +enum tfm_platform_err_t +tfm_platform_nv_counter_increment(uint32_t counter_id); + +/*! + * \brief Reads the given non-volatile (NV) counter + * + * \param[in] counter_id NV counter ID. + * \param[in] size Size of the buffer to store NV counter value + * in bytes. + * \param[out] val Pointer to store the current NV counter value. + * + * \return TFM_PLATFORM_ERR_SUCCESS if the value is read correctly. Otherwise, + * it returns TFM_PLATFORM_ERR_SYSTEM_ERROR. + */ +enum tfm_platform_err_t +tfm_platform_nv_counter_read(uint32_t counter_id, + uint32_t size, uint8_t *val); + +#ifdef __cplusplus +} +#endif + +#endif /* __TFM_PLATFORM_API__ */ diff --git a/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_cyabs_rtos.c b/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_cyabs_rtos.c new file mode 100644 index 0000000..8aff2d9 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_cyabs_rtos.c @@ -0,0 +1,252 @@ +/* + * Copyright (c) 2017-2021, Arm Limited. All rights reserved. + * Copyright (c) 2017-2021, Cypress Semiconductor Corporation. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#if (defined(CY_RTOS_AWARE) || defined(COMPONENT_RTOS_AWARE)) +#include +#include +#include "cyabs_rtos.h" + +#include "os_wrapper/common.h" +#include "os_wrapper/mutex.h" +#include "os_wrapper/semaphore.h" +#include "os_wrapper/thread.h" + +void *os_wrapper_thread_new(const char* name, int32_t stack_size, + os_wrapper_thread_func func, void *arg, + uint32_t priority) +{ + uint32_t ssize = stack_size > 0U ? stack_size : CY_RTOS_MIN_STACK_SIZE; + cy_thread_t handle; + + if (CY_RSLT_SUCCESS != cy_rtos_create_thread(&handle, (cy_thread_entry_fn_t)func, name, NULL, ssize, + (cy_thread_priority_t)priority, (cy_thread_arg_t) arg)) + { + return NULL; + } + return (void *)handle; +} + + +void *os_wrapper_semaphore_create(uint32_t max_count, uint32_t initial_count, + const char* name) +{ + (void)name; + cy_semaphore_t * handle = (cy_semaphore_t *) malloc(sizeof(cy_semaphore_t)); + if (NULL == handle) + { + return NULL; + } + if (CY_RSLT_SUCCESS != cy_rtos_init_semaphore(handle, max_count, initial_count)) + { + free(handle); + return NULL; + } + return (void *)handle; +} + +uint32_t os_wrapper_semaphore_acquire(void *handle, uint32_t timeout) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if (CY_RSLT_SUCCESS != cy_rtos_get_semaphore((cy_semaphore_t *) handle, (cy_time_t) timeout, false)) + { + return OS_WRAPPER_ERROR; + } + + return OS_WRAPPER_SUCCESS; +} + +uint32_t os_wrapper_semaphore_release(void *handle) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if (CY_RSLT_SUCCESS != cy_rtos_set_semaphore((cy_semaphore_t *) handle, false)) + { + return OS_WRAPPER_ERROR; + } + return OS_WRAPPER_SUCCESS; +} + +uint32_t os_wrapper_semaphore_release_isr(void *handle) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if (CY_RSLT_SUCCESS != cy_rtos_set_semaphore((cy_semaphore_t *) handle, true)) + { + return OS_WRAPPER_ERROR; + } + return OS_WRAPPER_SUCCESS; +} + +void os_wrapper_isr_yield(uint32_t yield) +{ + (void)yield; +} + +uint32_t os_wrapper_semaphore_delete(void *handle) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if (CY_RSLT_SUCCESS != cy_rtos_deinit_semaphore((cy_semaphore_t *) handle)) + { + return OS_WRAPPER_ERROR; + } + free(handle); + return OS_WRAPPER_SUCCESS; +} + +void *os_wrapper_mutex_create(void) +{ + cy_mutex_t *handle = (cy_mutex_t *) malloc(sizeof(cy_mutex_t)); + if (NULL == handle) + { + return NULL; + } + + if (CY_RSLT_SUCCESS != cy_rtos_init_mutex(handle)) + { + free(handle); + return NULL; + } + return (void *)handle; +} + +uint32_t os_wrapper_mutex_acquire(void *handle, uint32_t timeout) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if(CY_RSLT_SUCCESS != cy_rtos_get_mutex((cy_mutex_t *) handle, (cy_time_t) timeout)) + { + return OS_WRAPPER_ERROR; + } + return OS_WRAPPER_SUCCESS; +} + +uint32_t os_wrapper_mutex_release(void *handle) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if(CY_RSLT_SUCCESS != cy_rtos_set_mutex((cy_mutex_t *) handle)) + { + return OS_WRAPPER_ERROR; + } + return OS_WRAPPER_SUCCESS; +} + +uint32_t os_wrapper_mutex_delete(void *handle) +{ + if (NULL == handle) + { + return OS_WRAPPER_ERROR; + } + + if(CY_RSLT_SUCCESS != cy_rtos_deinit_mutex((cy_mutex_t *)handle)) + { + return OS_WRAPPER_ERROR; + } + free(handle); + return OS_WRAPPER_SUCCESS; +} + +void *os_wrapper_thread_get_handle(void) +{ + cy_thread_t handle; + if (CY_RSLT_SUCCESS == cy_rtos_get_thread_handle(&handle)) + { + return (void *)handle; + } + else + { + return NULL; + } +} + +uint32_t os_wrapper_thread_get_priority(void *handle, uint32_t *priority) +{ + (void)handle; + (void)priority; + /* not supported by CY_RTOS abstraction layer */ + return OS_WRAPPER_ERROR; +} + +void os_wrapper_thread_exit(void) +{ + cy_rtos_exit_thread(); +} + +uint32_t os_wrapper_join_thread(void* handle) +{ + if (CY_RSLT_SUCCESS == cy_rtos_join_thread((cy_thread_t *) handle)) + { + return OS_WRAPPER_SUCCESS; + } + else + { + return OS_WRAPPER_ERROR; + } +} + +uint32_t os_wrapper_thread_set_flag(void *handle, uint32_t flags) +{ + (void)flags; + cy_thread_t cy_handle = (cy_thread_t) handle; + if (CY_RSLT_SUCCESS == cy_rtos_set_thread_notification(&cy_handle, false)) + { + return OS_WRAPPER_SUCCESS; + } + else + { + return OS_WRAPPER_ERROR; + } +} + +uint32_t os_wrapper_thread_set_flag_isr(void *handle, uint32_t flags) +{ + (void)flags; + cy_thread_t cy_handle = (cy_thread_t) handle; + if (CY_RSLT_SUCCESS == cy_rtos_set_thread_notification(&cy_handle, true)) + { + return OS_WRAPPER_SUCCESS; + } + else + { + return OS_WRAPPER_ERROR; + } +} + +uint32_t os_wrapper_thread_wait_flag(uint32_t flags, uint32_t timeout) +{ + (void)flags; + if (CY_RSLT_SUCCESS == cy_rtos_wait_thread_notification(timeout)) + { + return OS_WRAPPER_SUCCESS; + } + else + { + return OS_WRAPPER_ERROR; + } +} +#endif /* (defined(CY_RTOS_AWARE) || defined(COMPONENT_RTOS_AWARE)) */ diff --git a/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_stub.c b/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_stub.c new file mode 100644 index 0000000..812c4f8 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/os_wrapper_stub.c @@ -0,0 +1,163 @@ +/* + * Copyright (c) 2017-2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include + +#include "os_wrapper/common.h" +#include "os_wrapper/mutex.h" +#include "os_wrapper/semaphore.h" +#include "os_wrapper/thread.h" + +__attribute__((weak)) +void *os_wrapper_thread_new(const char* name, int32_t stack_size, + os_wrapper_thread_func func, void *arg, + uint32_t priority) +{ + (void) name; + (void) stack_size; + (void) func; + (void) arg; + (void) priority; + + return NULL; +} + +__attribute__((weak)) +void *os_wrapper_semaphore_create(uint32_t max_count, uint32_t initial_count, + const char* name) +{ + (void) max_count; + (void) initial_count; + (void) name; + + return NULL; +} + +__attribute__((weak)) +uint32_t os_wrapper_semaphore_acquire(void *handle, uint32_t timeout) +{ + (void) handle; + (void) timeout; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_semaphore_release(void *handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_semaphore_release_isr(void *handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +void os_wrapper_isr_yield(uint32_t yield) +{ + (void) yield; +} + +__attribute__((weak)) +uint32_t os_wrapper_semaphore_delete(void *handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +void *os_wrapper_mutex_create(void) +{ + return NULL; +} + +__attribute__((weak)) +uint32_t os_wrapper_mutex_acquire(void *handle, uint32_t timeout) +{ + (void) handle; + (void) timeout; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_mutex_release(void *handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_mutex_delete(void *handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +void *os_wrapper_thread_get_handle(void) +{ + return NULL; +} + +__attribute__((weak)) +uint32_t os_wrapper_thread_get_priority(void *handle, uint32_t *priority) +{ + (void) handle; + (void) priority; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +void os_wrapper_thread_exit(void) +{ +} + +__attribute__((weak)) +uint32_t os_wrapper_join_thread(void* handle) +{ + (void) handle; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_thread_set_flag(void *handle, uint32_t flags) +{ + (void) handle; + (void) flags; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_thread_set_flag_isr(void *handle, uint32_t flags) +{ + (void) handle; + (void) flags; + + return OS_WRAPPER_SUCCESS; +} + +__attribute__((weak)) +uint32_t os_wrapper_thread_wait_flag(uint32_t flags, uint32_t timeout) +{ + (void) flags; + (void) timeout; + + return OS_WRAPPER_SUCCESS; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/platform_multicore.c b/COMPONENT_TFM_NS_INTERFACE/src/platform_multicore.c new file mode 100644 index 0000000..2c41e8e --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/platform_multicore.c @@ -0,0 +1,130 @@ +/* + * Copyright (c) 2019-2021 Arm Limited. All rights reserved. + * Copyright (c) 2019 Cypress Semiconductor Corporation. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#include "cmsis_compiler.h" + +#include "platform_multicore.h" +#include "tfm_multi_core_api.h" + +#include "cy_ipc_drv.h" +#include "cy_sysint.h" +#if CY_SYSTEM_CPU_CM0P +#include "spe_ipc_config.h" +#else +#include "ns_ipc_config.h" +#endif + +int platform_mailbox_fetch_msg_ptr(void **msg_ptr) +{ + cy_en_ipcdrv_status_t status; + + if (!msg_ptr) { + return PLATFORM_MAILBOX_INVAL_PARAMS; + } + + status = Cy_IPC_Drv_ReadMsgPtr(Cy_IPC_Drv_GetIpcBaseAddress(IPC_RX_CHAN), + msg_ptr); + if (status != CY_IPC_DRV_SUCCESS) { + return PLATFORM_MAILBOX_RX_ERROR; + } + + Cy_IPC_Drv_ReleaseNotify(Cy_IPC_Drv_GetIpcBaseAddress(IPC_RX_CHAN), + IPC_RX_RELEASE_MASK); + return PLATFORM_MAILBOX_SUCCESS; +} + +int platform_mailbox_fetch_msg_data(uint32_t *data_ptr) +{ + cy_en_ipcdrv_status_t status; + + if (!data_ptr) { + return PLATFORM_MAILBOX_INVAL_PARAMS; + } + + status = Cy_IPC_Drv_ReadMsgWord(Cy_IPC_Drv_GetIpcBaseAddress(IPC_RX_CHAN), + data_ptr); + if (status != CY_IPC_DRV_SUCCESS) { + return PLATFORM_MAILBOX_RX_ERROR; + } + + Cy_IPC_Drv_ReleaseNotify(Cy_IPC_Drv_GetIpcBaseAddress(IPC_RX_CHAN), + IPC_RX_RELEASE_MASK); + return PLATFORM_MAILBOX_SUCCESS; +} + +int platform_mailbox_send_msg_ptr(const void *msg_ptr) +{ + cy_en_ipcdrv_status_t status; + + if (!msg_ptr) + return PLATFORM_MAILBOX_INVAL_PARAMS; + + status = Cy_IPC_Drv_SendMsgPtr(Cy_IPC_Drv_GetIpcBaseAddress(IPC_TX_CHAN), + IPC_TX_NOTIFY_MASK, msg_ptr); + if (status != CY_IPC_DRV_SUCCESS) { + return PLATFORM_MAILBOX_TX_ERROR; + } + + return PLATFORM_MAILBOX_SUCCESS; +} + +int platform_mailbox_send_msg_data(uint32_t data) +{ + cy_en_ipcdrv_status_t status; + + status = Cy_IPC_Drv_SendMsgWord(Cy_IPC_Drv_GetIpcBaseAddress(IPC_TX_CHAN), + IPC_TX_NOTIFY_MASK, data); + if (status != CY_IPC_DRV_SUCCESS) { + return PLATFORM_MAILBOX_TX_ERROR; + } + + return PLATFORM_MAILBOX_SUCCESS; +} + +void platform_mailbox_wait_for_notify(void) +{ + uint32_t status; + + while (1) { + status = Cy_IPC_Drv_GetInterruptStatusMasked( + Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT)); + status >>= CY_IPC_NOTIFY_SHIFT; + if (status & IPC_RX_INT_MASK) { + break; + } + } + + Cy_IPC_Drv_ClearInterrupt(Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT), + 0, IPC_RX_INT_MASK); +} + +int platform_ns_ipc_init(void) +{ + Cy_IPC_Drv_SetInterruptMask(Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT), + 0, IPC_RX_INT_MASK); + return PLATFORM_MAILBOX_SUCCESS; +} + +int32_t tfm_platform_ns_wait_for_s_cpu_ready(void) +{ + uint32_t data = 0; + + if (platform_ns_ipc_init() != PLATFORM_MAILBOX_SUCCESS) { + return PLATFORM_MAILBOX_INVAL_PARAMS; + } + while(data != IPC_SYNC_MAGIC) + { + platform_mailbox_wait_for_notify(); + platform_mailbox_fetch_msg_data(&data); + } + + if (platform_mailbox_send_msg_data(~IPC_SYNC_MAGIC) != + PLATFORM_MAILBOX_SUCCESS) { + return PLATFORM_MAILBOX_RX_ERROR; + } + return PLATFORM_MAILBOX_SUCCESS; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/platform_ns_mailbox.c b/COMPONENT_TFM_NS_INTERFACE/src/platform_ns_mailbox.c new file mode 100644 index 0000000..f6a483d --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/platform_ns_mailbox.c @@ -0,0 +1,164 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * Copyright (c) 2019, Cypress Semiconductor Corporation. All rights reserved + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +/* -------------------------------------- Includes ----------------------------------- */ +#include +#include + +#include "cmsis_compiler.h" + +#include "cy_ipc_drv.h" +#include "cy_sysint.h" + +#include "ns_ipc_config.h" +#include "os_wrapper/thread.h" +#include "tfm_ns_mailbox.h" +#include "platform_multicore.h" + +static uint8_t saved_irq_state = 1; + +/* -------------------------------------- HAL API ------------------------------------ */ + +static void mailbox_ipc_init(void) +{ + Cy_IPC_Drv_SetInterruptMask(Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT), + 0, IPC_RX_INT_MASK); +} + +static void mailbox_ipc_config(void) +{ + NVIC_SetPriority(PSA_CLIENT_REPLY_NVIC_IRQn, PSA_CLIENT_REPLY_IRQ_PRIORITY); + + NVIC_EnableIRQ(PSA_CLIENT_REPLY_NVIC_IRQn); +} + +int32_t tfm_ns_mailbox_hal_notify_peer(void) +{ + cy_en_ipcdrv_status_t status; + + status = Cy_IPC_Drv_SendMsgWord(Cy_IPC_Drv_GetIpcBaseAddress(IPC_TX_CHAN), + IPC_TX_NOTIFY_MASK, + PSA_CLIENT_CALL_REQ_MAGIC); + + if (status == CY_IPC_DRV_SUCCESS) { + return MAILBOX_SUCCESS; + } else { + return MAILBOX_CHAN_BUSY; + } +} + +int32_t tfm_ns_mailbox_hal_init(struct ns_mailbox_queue_t *queue) +{ + uint32_t stage; + + if (!queue) { + return MAILBOX_INVAL_PARAMS; + } + + /* + * FIXME + * Further verification of mailbox queue address may be required according + * to diverse NSPE implementations. + */ + + mailbox_ipc_init(); + + /* + * Wait until SPE mailbox library is ready to receive NSPE mailbox queue + * address. + */ + while (1) { + platform_mailbox_wait_for_notify(); + + platform_mailbox_fetch_msg_data(&stage); + if (stage == NS_MAILBOX_INIT_ENABLE) { + break; + } + } + + /* Send out the address */ + platform_mailbox_send_msg_ptr(queue); + + /* Wait until SPE mailbox service is ready */ + while (1) { + platform_mailbox_wait_for_notify(); + + platform_mailbox_fetch_msg_data(&stage); + if (stage == S_MAILBOX_READY) { + break; + } + } + + mailbox_ipc_config(); + + return MAILBOX_SUCCESS; +} + +void tfm_ns_mailbox_hal_enter_critical(void) +{ + saved_irq_state = Cy_SysLib_EnterCriticalSection(); + + IPC_STRUCT_Type* ipc_struct = + Cy_IPC_Drv_GetIpcBaseAddress(IPC_PSA_MAILBOX_LOCK_CHAN); + while(CY_IPC_DRV_SUCCESS != Cy_IPC_Drv_LockAcquire (ipc_struct)) + { + } +} + +void tfm_ns_mailbox_hal_exit_critical(void) +{ + IPC_STRUCT_Type* ipc_struct = + Cy_IPC_Drv_GetIpcBaseAddress(IPC_PSA_MAILBOX_LOCK_CHAN); + Cy_IPC_Drv_LockRelease(ipc_struct, CY_IPC_NO_NOTIFICATION); + Cy_SysLib_ExitCriticalSection(saved_irq_state); +} + +void tfm_ns_mailbox_hal_enter_critical_isr(void) +{ + IPC_STRUCT_Type* ipc_struct = + Cy_IPC_Drv_GetIpcBaseAddress(IPC_PSA_MAILBOX_LOCK_CHAN); + while(CY_IPC_DRV_SUCCESS != Cy_IPC_Drv_LockAcquire (ipc_struct)) + { + } +} + +void tfm_ns_mailbox_hal_exit_critical_isr(void) +{ + IPC_STRUCT_Type* ipc_struct = + Cy_IPC_Drv_GetIpcBaseAddress(IPC_PSA_MAILBOX_LOCK_CHAN); + Cy_IPC_Drv_LockRelease(ipc_struct, CY_IPC_NO_NOTIFICATION); +} + +static bool mailbox_clear_intr(void) +{ + uint32_t status; + + status = Cy_IPC_Drv_GetInterruptStatusMasked( + Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT)); + status >>= CY_IPC_NOTIFY_SHIFT; + if ((status & IPC_RX_INT_MASK) == 0) { + return false; + } + + Cy_IPC_Drv_ClearInterrupt(Cy_IPC_Drv_GetIntrBaseAddr(IPC_RX_INTR_STRUCT), + 0, IPC_RX_INT_MASK); + return true; +} + +void cpuss_interrupts_ipc_8_IRQHandler(void) +{ + uint32_t magic; + + if (!mailbox_clear_intr()) + return; + + platform_mailbox_fetch_msg_data(&magic); + if (magic == PSA_CLIENT_CALL_REPLY_MAGIC) { + /* Handle all the pending replies */ + tfm_ns_mailbox_wake_reply_owner_isr(); + } +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_crypto_ipc_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_crypto_ipc_api.c new file mode 100644 index 0000000..a89dd2b --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_crypto_ipc_api.c @@ -0,0 +1,1747 @@ +/* + * Copyright (c) 2018-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include "tfm_crypto_defs.h" +#include "psa/crypto.h" +#include "tfm_ns_interface.h" +#include "psa_manifest/sid.h" +#include "psa/client.h" + +#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) + +#define PSA_CONNECT(service) \ + psa_handle_t ipc_handle; \ + ipc_handle = psa_connect(service##_SID, service##_VERSION); \ + if (!PSA_HANDLE_IS_VALID(ipc_handle)) { \ + return PSA_ERROR_GENERIC_ERROR; \ + } \ + +#define PSA_CLOSE() psa_close(ipc_handle) + +#define API_DISPATCH(sfn_name, sfn_id) \ + psa_call(ipc_handle, PSA_IPC_CALL, \ + in_vec, ARRAY_SIZE(in_vec), \ + out_vec, ARRAY_SIZE(out_vec)) + +#define API_DISPATCH_NO_OUTVEC(sfn_name, sfn_id) \ + psa_call(ipc_handle, PSA_IPC_CALL, \ + in_vec, ARRAY_SIZE(in_vec), \ + (psa_outvec *)NULL, 0) + +psa_status_t psa_crypto_init(void) +{ + /* Service init is performed during TFM boot up, + * so application level initialisation is empty + */ + return PSA_SUCCESS; +} + +psa_status_t psa_open_key(psa_key_id_t id, + psa_key_id_t *key) +{ + psa_status_t status; + const struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_OPEN_KEY_SID, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = &id, .len = sizeof(psa_key_id_t)}, + }; + psa_outvec out_vec[] = { + {.base = key, .len = sizeof(psa_key_id_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_open_key, + TFM_CRYPTO_OPEN_KEY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_close_key(psa_key_id_t key) +{ + psa_status_t status; + const struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CLOSE_KEY_SID, + .key_id = key, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_close_key, + TFM_CRYPTO_CLOSE_KEY);; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_import_key(const psa_key_attributes_t *attributes, + const uint8_t *data, + size_t data_length, + psa_key_id_t *key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_IMPORT_KEY_SID, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + {.base = data, .len = data_length} + }; + psa_outvec out_vec[] = { + {.base = key, .len = sizeof(psa_key_id_t)} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_import_key, + TFM_CRYPTO_IMPORT_KEY); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_destroy_key(psa_key_id_t key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_DESTROY_KEY_SID, + .key_id = key, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_destroy_key, + TFM_CRYPTO_DESTROY_KEY); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_get_key_attributes(psa_key_id_t key, + psa_key_attributes_t *attributes) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_GET_KEY_ATTRIBUTES_SID, + .key_id = key, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_get_key_attributes, + TFM_CRYPTO_GET_KEY_ATTRIBUTES); + PSA_CLOSE(); + + return status; +} + +void psa_reset_key_attributes(psa_key_attributes_t *attributes) +{ + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_RESET_KEY_ATTRIBUTES_SID, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + }; + + psa_handle_t ipc_handle; + ipc_handle = psa_connect(TFM_CRYPTO_SID, TFM_CRYPTO_VERSION); + if (!PSA_HANDLE_IS_VALID(ipc_handle)) { + return; + } + + (void)API_DISPATCH(tfm_crypto_reset_key_attributes, + TFM_CRYPTO_RESET_KEY_ATTRIBUTES); + PSA_CLOSE(); + + return; +} + +psa_status_t psa_export_key(psa_key_id_t key, + uint8_t *data, + size_t data_size, + size_t *data_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_EXPORT_KEY_SID, + .key_id = key, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = data, .len = data_size} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_export_key, + TFM_CRYPTO_EXPORT_KEY); + + *data_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_export_public_key(psa_key_id_t key, + uint8_t *data, + size_t data_size, + size_t *data_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_EXPORT_PUBLIC_KEY_SID, + .key_id = key, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = data, .len = data_size} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_export_public_key, + TFM_CRYPTO_EXPORT_PUBLIC_KEY); + + *data_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_purge_key(psa_key_id_t key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_PURGE_KEY_SID, + .key_id = key, + }; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_purge_key, + TFM_CRYPTO_PURGE_KEY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_copy_key(psa_key_id_t source_key, + const psa_key_attributes_t *attributes, + psa_key_id_t *target_key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_COPY_KEY_SID, + .key_id = source_key, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + + }; + + psa_outvec out_vec[] = { + {.base = target_key, .len = sizeof(psa_key_id_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_copy_key, + TFM_CRYPTO_COPY_KEY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_generate_iv(psa_cipher_operation_t *operation, + unsigned char *iv, + size_t iv_size, + size_t *iv_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_GENERATE_IV_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + {.base = iv, .len = iv_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_generate_iv, + TFM_CRYPTO_CIPHER_GENERATE_IV); + + *iv_length = out_vec[1].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_set_iv(psa_cipher_operation_t *operation, + const unsigned char *iv, + size_t iv_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_SET_IV_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = iv, .len = iv_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_set_iv, + TFM_CRYPTO_CIPHER_SET_IV); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_encrypt_setup(psa_cipher_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_ENCRYPT_SETUP_SID, + .key_id = key, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_encrypt_setup, + TFM_CRYPTO_CIPHER_ENCRYPT_SETUP); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_DECRYPT_SETUP_SID, + .key_id = key, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_decrypt_setup, + TFM_CRYPTO_CIPHER_DECRYPT_SETUP); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_update(psa_cipher_operation_t *operation, + const uint8_t *input, + size_t input_length, + unsigned char *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_UPDATE_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + {.base = output, .len = output_size} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_update, + TFM_CRYPTO_CIPHER_UPDATE); + + *output_length = out_vec[1].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_ABORT_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_abort, + TFM_CRYPTO_CIPHER_ABORT); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_CIPHER_FINISH_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + {.base = output, .len = output_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_cipher_finish, + TFM_CRYPTO_CIPHER_FINISH); + + *output_length = out_vec[1].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_setup(psa_hash_operation_t *operation, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_SETUP_SID, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_setup, + TFM_CRYPTO_HASH_SETUP); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_update(psa_hash_operation_t *operation, + const uint8_t *input, + size_t input_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_UPDATE_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_update, + TFM_CRYPTO_HASH_UPDATE); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_finish(psa_hash_operation_t *operation, + uint8_t *hash, + size_t hash_size, + size_t *hash_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_FINISH_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + {.base = hash, .len = hash_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_finish, + TFM_CRYPTO_HASH_FINISH); + + *hash_length = out_vec[1].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_verify(psa_hash_operation_t *operation, + const uint8_t *hash, + size_t hash_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_VERIFY_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = hash, .len = hash_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_verify, + TFM_CRYPTO_HASH_VERIFY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_abort(psa_hash_operation_t *operation) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_ABORT_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_abort, + TFM_CRYPTO_HASH_ABORT); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_clone(const psa_hash_operation_t *source_operation, + psa_hash_operation_t *target_operation) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_CLONE_SID, + .op_handle = source_operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = target_operation, .len = sizeof(psa_hash_operation_t)}, + }; + + if (target_operation && (target_operation->handle != 0)) { + return PSA_ERROR_BAD_STATE; + } + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_clone, + TFM_CRYPTO_HASH_CLONE); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_compute(psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *hash, + size_t hash_size, + size_t *hash_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_COMPUTE_SID, + .alg = alg, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + }; + + psa_outvec out_vec[] = { + {.base = hash, .len = hash_size} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_hash_compute, + TFM_CRYPTO_HASH_COMPUTE); + + *hash_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_hash_compare(psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *hash, + size_t hash_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_HASH_COMPARE_SID, + .alg = alg, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + {.base = hash, .len = hash_length}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_hash_compare, + TFM_CRYPTO_HASH_COMPARE); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_sign_setup(psa_mac_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_SIGN_SETUP_SID, + .key_id = key, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_sign_setup, + TFM_CRYPTO_MAC_SIGN_SETUP); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_verify_setup(psa_mac_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_VERIFY_SETUP_SID, + .key_id = key, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_verify_setup, + TFM_CRYPTO_MAC_VERIFY_SETUP); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_update(psa_mac_operation_t *operation, + const uint8_t *input, + size_t input_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_UPDATE_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_update, + TFM_CRYPTO_MAC_UPDATE); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_sign_finish(psa_mac_operation_t *operation, + uint8_t *mac, + size_t mac_size, + size_t *mac_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_SIGN_FINISH_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + {.base = mac, .len = mac_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_sign_finish, + TFM_CRYPTO_MAC_SIGN_FINISH); + + *mac_length = out_vec[1].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_verify_finish(psa_mac_operation_t *operation, + const uint8_t *mac, + size_t mac_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_VERIFY_FINISH_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = mac, .len = mac_length}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_verify_finish, + TFM_CRYPTO_MAC_VERIFY_FINISH); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_mac_abort(psa_mac_operation_t *operation) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_MAC_ABORT_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_mac_abort, + TFM_CRYPTO_MAC_ABORT); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_aead_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *nonce, + size_t nonce_length, + const uint8_t *additional_data, + size_t additional_data_length, + const uint8_t *plaintext, + size_t plaintext_length, + uint8_t *ciphertext, + size_t ciphertext_size, + size_t *ciphertext_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_AEAD_ENCRYPT_SID, + .key_id = key, + .alg = alg, + .aead_in = {.nonce = {0}, .nonce_length = nonce_length} + }; + + /* Sanitize the optional input */ + if ((additional_data == NULL) && (additional_data_length != 0)) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + size_t idx = 0; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = plaintext, .len = plaintext_length}, + {.base = additional_data, .len = additional_data_length}, + }; + psa_outvec out_vec[] = { + {.base = ciphertext, .len = ciphertext_size}, + }; + + if (nonce_length > TFM_CRYPTO_MAX_NONCE_LENGTH) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + if (nonce != NULL) { + for (idx = 0; idx < nonce_length; idx++) { + iov.aead_in.nonce[idx] = nonce[idx]; + } + } + + PSA_CONNECT(TFM_CRYPTO); + + size_t in_len = ARRAY_SIZE(in_vec); + if (additional_data == NULL) { + in_len--; + } + status = psa_call(ipc_handle, PSA_IPC_CALL, in_vec, in_len, + out_vec, ARRAY_SIZE(out_vec)); + + *ciphertext_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_aead_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *nonce, + size_t nonce_length, + const uint8_t *additional_data, + size_t additional_data_length, + const uint8_t *ciphertext, + size_t ciphertext_length, + uint8_t *plaintext, + size_t plaintext_size, + size_t *plaintext_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_AEAD_DECRYPT_SID, + .key_id = key, + .alg = alg, + .aead_in = {.nonce = {0}, .nonce_length = nonce_length} + }; + + /* Sanitize the optional input */ + if ((additional_data == NULL) && (additional_data_length != 0)) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + size_t idx = 0; + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = ciphertext, .len = ciphertext_length}, + {.base = additional_data, .len = additional_data_length}, + }; + psa_outvec out_vec[] = { + {.base = plaintext, .len = plaintext_size}, + }; + + if (nonce_length > TFM_CRYPTO_MAX_NONCE_LENGTH) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + if (nonce != NULL) { + for (idx = 0; idx < nonce_length; idx++) { + iov.aead_in.nonce[idx] = nonce[idx]; + } + } + + PSA_CONNECT(TFM_CRYPTO); + + size_t in_len = ARRAY_SIZE(in_vec); + if (additional_data == NULL) { + in_len--; + } + status = psa_call(ipc_handle, PSA_IPC_CALL, in_vec, in_len, + out_vec, ARRAY_SIZE(out_vec)); + + *plaintext_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_asymmetric_sign(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + uint8_t *signature, + size_t signature_size, + size_t *signature_length) +{ + return psa_sign_hash(key, alg, hash, hash_length, signature, signature_size, signature_length); +} + +psa_status_t psa_sign_hash(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + uint8_t *signature, + size_t signature_size, + size_t *signature_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_SIGN_HASH_SID, + .key_id = key, + .alg = alg, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = hash, .len = hash_length}, + }; + psa_outvec out_vec[] = { + {.base = signature, .len = signature_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_sign_hash, + TFM_CRYPTO_SIGN_HASH); + + *signature_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_asymmetric_verify(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + const uint8_t *signature, + size_t signature_length) +{ + return psa_verify_hash(key, alg, hash, hash_length, signature, signature_length); +} + +psa_status_t psa_verify_hash(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *hash, + size_t hash_length, + const uint8_t *signature, + size_t signature_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_VERIFY_HASH_SID, + .key_id = key, + .alg = alg + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = hash, .len = hash_length}, + {.base = signature, .len = signature_length} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_verify_hash, + TFM_CRYPTO_VERIFY_HASH); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_asymmetric_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *salt, + size_t salt_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_ASYMMETRIC_ENCRYPT_SID, + .key_id = key, + .alg = alg + }; + + /* Sanitize the optional input */ + if ((salt == NULL) && (salt_length != 0)) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + {.base = salt, .len = salt_length} + }; + + psa_outvec out_vec[] = { + {.base = output, .len = output_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + size_t in_len = ARRAY_SIZE(in_vec); + if (salt == NULL) { + in_len--; + } + status = psa_call(ipc_handle, PSA_IPC_CALL, in_vec, in_len, + out_vec, ARRAY_SIZE(out_vec)); + + *output_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_asymmetric_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *salt, + size_t salt_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_ASYMMETRIC_DECRYPT_SID, + .key_id = key, + .alg = alg + }; + + /* Sanitize the optional input */ + if ((salt == NULL) && (salt_length != 0)) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = input, .len = input_length}, + {.base = salt, .len = salt_length} + }; + + psa_outvec out_vec[] = { + {.base = output, .len = output_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + size_t in_len = ARRAY_SIZE(in_vec); + if (salt == NULL) { + in_len--; + } + status = psa_call(ipc_handle, PSA_IPC_CALL, in_vec, in_len, + out_vec, ARRAY_SIZE(out_vec)); + + *output_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_get_capacity( + const psa_key_derivation_operation_t *operation, + size_t *capacity) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_GET_CAPACITY_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + psa_outvec out_vec[] = { + {.base = capacity, .len = sizeof(size_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_key_derivation_get_capacity, + TFM_CRYPTO_KEY_DERIVATION_GET_CAPACITY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_output_bytes( + psa_key_derivation_operation_t *operation, + uint8_t *output, + size_t output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_OUTPUT_BYTES_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + psa_outvec out_vec[] = { + {.base = output, .len = output_length}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_key_derivation_output_bytes, + TFM_CRYPTO_KEY_DERIVATION_OUTPUT_BYTES); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_input_key( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + psa_key_id_t key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_INPUT_KEY_SID, + .key_id = key, + .step = step, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_key_derivation_input_key, + TFM_CRYPTO_KEY_DERIVATION_INPUT_KEY); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_abort( + psa_key_derivation_operation_t *operation) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_ABORT_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_key_derivation_abort, + TFM_CRYPTO_KEY_DERIVATION_ABORT); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_key_agreement( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + psa_key_id_t private_key, + const uint8_t *peer_key, + size_t peer_key_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_KEY_AGREEMENT_SID, + .key_id = private_key, + .step = step, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = peer_key, .len = peer_key_length}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_key_derivation_key_agreement, + TFM_CRYPTO_KEY_DERIVATION_KEY_AGREEMENT); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_generate_random(uint8_t *output, + size_t output_size) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_GENERATE_RANDOM_SID, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + psa_outvec out_vec[] = { + {.base = output, .len = output_size}, + }; + + if (output_size == 0) { + return PSA_SUCCESS; + } + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_generate_random, + TFM_CRYPTO_GENERATE_RANDOM); + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_generate_key(const psa_key_attributes_t *attributes, + psa_key_id_t *key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_GENERATE_KEY_SID, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + }; + + psa_outvec out_vec[] = { + {.base = key, .len = sizeof(psa_key_id_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_generate_key, + TFM_CRYPTO_GENERATE_KEY); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_set_key_domain_parameters(psa_key_attributes_t *attributes, + psa_key_type_t type, + const uint8_t *data, + size_t data_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_get_key_domain_parameters( + const psa_key_attributes_t *attributes, + uint8_t *data, + size_t data_size, + size_t *data_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_update_ad(psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_finish(psa_aead_operation_t *operation, + uint8_t *ciphertext, + size_t ciphertext_size, + size_t *ciphertext_length, + uint8_t *tag, + size_t tag_size, + size_t *tag_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_verify(psa_aead_operation_t *operation, + uint8_t *plaintext, + size_t plaintext_size, + size_t *plaintext_length, + const uint8_t *tag, + size_t tag_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_abort(psa_aead_operation_t *operation) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_mac_compute(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *mac, + size_t mac_size, + size_t *mac_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_mac_verify(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + const uint8_t *mac, + const size_t mac_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_cipher_encrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_cipher_decrypt(psa_key_id_t key, + psa_algorithm_t alg, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_raw_key_agreement(psa_algorithm_t alg, + psa_key_id_t private_key, + const uint8_t *peer_key, + size_t peer_key_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_RAW_KEY_AGREEMENT_SID, + .alg = alg, + .key_id = private_key + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = peer_key, .len = peer_key_length}, + }; + + psa_outvec out_vec[] = { + {.base = output, .len = output_size}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_raw_key_agreement, + TFM_CRYPTO_RAW_KEY_AGREEMENT); + + *output_length = out_vec[0].len; + + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_setup(psa_key_derivation_operation_t *operation, + psa_algorithm_t alg) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_SETUP_SID, + .alg = alg, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + psa_outvec out_vec[] = { + {.base = &(operation->handle), .len = sizeof(uint32_t)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_key_derivation_setup, + TFM_CRYPTO_KEY_DERIVATION_SETUP); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_set_capacity( + psa_key_derivation_operation_t *operation, + size_t capacity) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_SET_CAPACITY_SID, + .capacity = capacity, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_key_derivation_set_capacity, + TFM_CRYPTO_KEY_DERIVATION_SET_CAPACITY); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_input_bytes( + psa_key_derivation_operation_t *operation, + psa_key_derivation_step_t step, + const uint8_t *data, + size_t data_length) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_INPUT_BYTES_SID, + .step = step, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = data, .len = data_length}, + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH_NO_OUTVEC(tfm_crypto_key_derivation_input_bytes, + TFM_CRYPTO_KEY_DERIVATION_INPUT_BYTES); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_key_derivation_output_key( + const psa_key_attributes_t *attributes, + psa_key_derivation_operation_t *operation, + psa_key_id_t *key) +{ + psa_status_t status; + struct tfm_crypto_pack_iovec iov = { + .sfn_id = TFM_CRYPTO_KEY_DERIVATION_OUTPUT_KEY_SID, + .op_handle = operation->handle, + }; + + psa_invec in_vec[] = { + {.base = &iov, .len = sizeof(struct tfm_crypto_pack_iovec)}, + {.base = attributes, .len = sizeof(psa_key_attributes_t)}, + }; + + psa_outvec out_vec[] = { + {.base = key, .len = sizeof(psa_key_id_t)} + }; + + PSA_CONNECT(TFM_CRYPTO); + + status = API_DISPATCH(tfm_crypto_key_derivation_output_key, + TFM_CRYPTO_KEY_DERIVATION_OUTPUT_KEY); + PSA_CLOSE(); + + return status; +} + +psa_status_t psa_aead_encrypt_setup(psa_aead_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_decrypt_setup(psa_aead_operation_t *operation, + psa_key_id_t key, + psa_algorithm_t alg) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_generate_nonce(psa_aead_operation_t *operation, + uint8_t *nonce, + size_t nonce_size, + size_t *nonce_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_set_nonce(psa_aead_operation_t *operation, + const uint8_t *nonce, + size_t nonce_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_set_lengths(psa_aead_operation_t *operation, + size_t ad_length, + size_t plaintext_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} + +psa_status_t psa_aead_update(psa_aead_operation_t *operation, + const uint8_t *input, + size_t input_length, + uint8_t *output, + size_t output_size, + size_t *output_length) +{ + psa_status_t status; + + status = PSA_ERROR_NOT_SUPPORTED; + + return status; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_initial_attestation_ipc_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_initial_attestation_ipc_api.c new file mode 100644 index 0000000..b4a8f37 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_initial_attestation_ipc_api.c @@ -0,0 +1,105 @@ +/* + * Copyright (c) 2018-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include "psa/initial_attestation.h" +#include "tfm_ns_interface.h" +#include "psa/client.h" +#include "psa/crypto_types.h" +#include "psa_manifest/sid.h" + +#define IOVEC_LEN(x) (sizeof(x)/sizeof(x[0])) + +psa_status_t +psa_initial_attest_get_token(const uint8_t *auth_challenge, + size_t challenge_size, + uint8_t *token_buf, + size_t token_buf_size, + size_t *token_size) +{ + psa_handle_t handle = PSA_NULL_HANDLE; + psa_status_t status; + + psa_invec in_vec[] = { + {auth_challenge, challenge_size} + }; + psa_outvec out_vec[] = { + {token_buf, token_buf_size} + }; + + handle = psa_connect(TFM_ATTEST_GET_TOKEN_SID, + TFM_ATTEST_GET_TOKEN_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_HANDLE_TO_ERROR(handle); + } + + status = psa_call(handle, PSA_IPC_CALL, + in_vec, IOVEC_LEN(in_vec), + out_vec, IOVEC_LEN(out_vec)); + psa_close(handle); + + if (status == PSA_SUCCESS) { + *token_size = out_vec[0].len; + } + + return status; +} + +psa_status_t +psa_initial_attest_get_token_size(size_t challenge_size, + size_t *token_size) +{ + psa_handle_t handle = PSA_NULL_HANDLE; + psa_status_t status; + psa_invec in_vec[] = { + {&challenge_size, sizeof(challenge_size)} + }; + psa_outvec out_vec[] = { + {token_size, sizeof(size_t)} + }; + + handle = psa_connect(TFM_ATTEST_GET_TOKEN_SIZE_SID, + TFM_ATTEST_GET_TOKEN_SIZE_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_HANDLE_TO_ERROR(handle); + } + + status = psa_call(handle, PSA_IPC_CALL, + in_vec, IOVEC_LEN(in_vec), + out_vec, IOVEC_LEN(out_vec)); + psa_close(handle); + + return status; +} + +psa_status_t +tfm_initial_attest_get_public_key(uint8_t *public_key, + size_t public_key_buf_size, + size_t *public_key_len, + psa_ecc_family_t *elliptic_curve_type) +{ + psa_handle_t handle = PSA_NULL_HANDLE; + psa_status_t status; + + psa_outvec out_vec[] = { + {.base = public_key, .len = public_key_buf_size}, + {.base = elliptic_curve_type, .len = sizeof(*elliptic_curve_type)}, + {.base = public_key_len, .len = sizeof(*public_key_len)} + }; + + handle = psa_connect(TFM_ATTEST_GET_PUBLIC_KEY_SID, + TFM_ATTEST_GET_PUBLIC_KEY_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_HANDLE_TO_ERROR(handle); + } + + status = psa_call(handle, PSA_IPC_CALL, + NULL, 0, + out_vec, IOVEC_LEN(out_vec)); + psa_close(handle); + + return status; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_its_ipc_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_its_ipc_api.c new file mode 100644 index 0000000..8ad4a3b --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_its_ipc_api.c @@ -0,0 +1,125 @@ +/* + * Copyright (c) 2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include "psa/internal_trusted_storage.h" +#include "tfm_api.h" + +#include "psa/client.h" +#include "psa_manifest/sid.h" + +#define IOVEC_LEN(x) (sizeof(x)/sizeof(x[0])) + +psa_status_t psa_its_set(psa_storage_uid_t uid, + size_t data_length, + const void *p_data, + psa_storage_create_flags_t create_flags) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) }, + { .base = p_data, .len = data_length }, + { .base = &create_flags, .len = sizeof(create_flags) } + }; + + handle = psa_connect(TFM_ITS_SET_SID, TFM_ITS_SET_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), NULL, 0); + + psa_close(handle); + + return status; +} + +psa_status_t psa_its_get(psa_storage_uid_t uid, + size_t data_offset, + size_t data_size, + void *p_data, + size_t *p_data_length) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) }, + { .base = &data_offset, .len = sizeof(data_offset) } + }; + + psa_outvec out_vec[] = { + { .base = p_data, .len = data_size } + }; + + if (p_data_length == NULL) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + handle = psa_connect(TFM_ITS_GET_SID, TFM_ITS_GET_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), out_vec, + IOVEC_LEN(out_vec)); + + psa_close(handle); + + *p_data_length = out_vec[0].len; + + return status; +} + +psa_status_t psa_its_get_info(psa_storage_uid_t uid, + struct psa_storage_info_t *p_info) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) } + }; + + psa_outvec out_vec[] = { + { .base = p_info, .len = sizeof(*p_info) } + }; + + handle = psa_connect(TFM_ITS_GET_INFO_SID, TFM_ITS_GET_INFO_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), out_vec, + IOVEC_LEN(out_vec)); + + psa_close(handle); + + return status; +} + +psa_status_t psa_its_remove(psa_storage_uid_t uid) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) } + }; + + handle = psa_connect(TFM_ITS_REMOVE_SID, TFM_ITS_REMOVE_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), NULL, 0); + + psa_close(handle); + + return status; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_ns_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_ns_api.c new file mode 100644 index 0000000..ce9233c --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_ns_api.c @@ -0,0 +1,20 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include "tfm_api.h" +#include "tfm_multi_core_api.h" + +__attribute__((weak)) +enum tfm_status_e tfm_ns_interface_init(void) +{ + return TFM_SUCCESS; +} + +int32_t tfm_ns_wait_for_s_cpu_ready(void) +{ + return tfm_platform_ns_wait_for_s_cpu_ready(); +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_psa_ns_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_psa_ns_api.c new file mode 100644 index 0000000..91d3935 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_multi_core_psa_ns_api.c @@ -0,0 +1,127 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include +#include + +#include "psa/client.h" +#include "psa/error.h" +#include "tfm_api.h" +#include "tfm_ns_mailbox.h" + +/* + * TODO + * Currently, force all the non-secure client to share the same ID. + * + * It requires a more clear mechanism to synchronize the non-secure client + * ID with SPE in dual core scenario. + * In current design, the value is transferred to SPE via mailbox message. + * A dedicated routine to receive the non-secure client information in + * TF-M core/SPM in dual core scenario should be added besides current + * implementation for single Armv8-M. + * The non-secure client identification is shared with SPE in + * single Armv8-M scenario via CMSIS TrustZone context management API, + * which may not work in dual core scenario. + */ +#define NON_SECURE_CLIENT_ID (1) + +/* + * TODO + * Require a formal definition of errors related to mailbox in PSA client call. + */ +#define PSA_INTER_CORE_COMM_ERR (INT32_MIN + 0xFF) + +/**** API functions ****/ + +uint32_t psa_framework_version(void) +{ + struct psa_client_params_t params; + uint32_t version; + int32_t ret; + + ret = tfm_ns_mailbox_client_call(MAILBOX_PSA_FRAMEWORK_VERSION, + ¶ms, NON_SECURE_CLIENT_ID, + (int32_t *)&version); + if (ret != MAILBOX_SUCCESS) { + version = PSA_VERSION_NONE; + } + + return version; +} + +uint32_t psa_version(uint32_t sid) +{ + struct psa_client_params_t params; + uint32_t version; + int32_t ret; + + params.psa_version_params.sid = sid; + + ret = tfm_ns_mailbox_client_call(MAILBOX_PSA_VERSION, ¶ms, + NON_SECURE_CLIENT_ID, + (int32_t *)&version); + if (ret != MAILBOX_SUCCESS) { + version = PSA_VERSION_NONE; + } + + return version; +} + +psa_handle_t psa_connect(uint32_t sid, uint32_t version) +{ + struct psa_client_params_t params; + psa_handle_t psa_handle; + int32_t ret; + + params.psa_connect_params.sid = sid; + params.psa_connect_params.version = version; + + ret = tfm_ns_mailbox_client_call(MAILBOX_PSA_CONNECT, ¶ms, + NON_SECURE_CLIENT_ID, + (int32_t *)&psa_handle); + if (ret != MAILBOX_SUCCESS) { + psa_handle = PSA_NULL_HANDLE; + } + + return psa_handle; +} + +psa_status_t psa_call(psa_handle_t handle, int32_t type, + const psa_invec *in_vec, size_t in_len, + psa_outvec *out_vec, size_t out_len) +{ + struct psa_client_params_t params; + int32_t ret; + psa_status_t status; + + params.psa_call_params.handle = handle; + params.psa_call_params.type = type; + params.psa_call_params.in_vec = in_vec; + params.psa_call_params.in_len = in_len; + params.psa_call_params.out_vec = out_vec; + params.psa_call_params.out_len = out_len; + + ret = tfm_ns_mailbox_client_call(MAILBOX_PSA_CALL, ¶ms, + NON_SECURE_CLIENT_ID, + (int32_t *)&status); + if (ret != MAILBOX_SUCCESS) { + status = PSA_INTER_CORE_COMM_ERR; + } + + return status; +} + +void psa_close(psa_handle_t handle) +{ + struct psa_client_params_t params; + int32_t reply; + + params.psa_close_params.handle = handle; + + (void)tfm_ns_mailbox_client_call(MAILBOX_PSA_CLOSE, ¶ms, + NON_SECURE_CLIENT_ID, &reply); +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox.c new file mode 100644 index 0000000..922e5fe --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox.c @@ -0,0 +1,343 @@ +/* + * Copyright (c) 2019-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include + +#include "tfm_ns_mailbox.h" + +/* The pointer to NSPE mailbox queue */ +static struct ns_mailbox_queue_t *mailbox_queue_ptr = NULL; + +static int32_t mailbox_wait_reply(uint8_t idx); + +static inline void set_queue_slot_empty(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + mailbox_queue_ptr->empty_slots |= (1UL << idx); + } +} + +static inline void set_queue_slot_woken(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + mailbox_queue_ptr->queue[idx].reply.is_woken = true; + } +} + +static inline bool is_queue_slot_woken(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + return mailbox_queue_ptr->queue[idx].reply.is_woken; + } + + return false; +} + +static inline void clear_queue_slot_woken(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + mailbox_queue_ptr->queue[idx].reply.is_woken = false; + } +} + +static inline void clear_queue_slot_replied(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + mailbox_queue_ptr->replied_slots &= ~(1UL << idx); + } +} + +static inline bool is_queue_slot_replied(uint8_t idx) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + return mailbox_queue_ptr->replied_slots & (1UL << idx); + } + + return false; +} + +static uint8_t acquire_empty_slot(struct ns_mailbox_queue_t *queue) +{ + uint8_t idx; + mailbox_queue_status_t status; + + ns_mailbox_spin_lock(); + status = queue->empty_slots; + ns_mailbox_spin_unlock(); + + if (!status) { + /* No empty slot */ + return NUM_MAILBOX_QUEUE_SLOT; + } + + for (idx = 0; idx < NUM_MAILBOX_QUEUE_SLOT; idx++) { + if (status & (1 << idx)) { + break; + } + } + + ns_mailbox_spin_lock(); + clear_queue_slot_empty(queue, idx); + ns_mailbox_spin_unlock(); + + return idx; +} + +static void set_msg_owner(uint8_t idx, const void *owner) +{ + if (idx < NUM_MAILBOX_QUEUE_SLOT) { + mailbox_queue_ptr->queue[idx].reply.owner = owner; + } +} + +static int32_t mailbox_tx_client_req(uint32_t call_type, + const struct psa_client_params_t *params, + int32_t client_id, + uint8_t *slot_idx) +{ + uint8_t idx; + struct mailbox_msg_t *msg_ptr; + const void *task_handle; + + idx = acquire_empty_slot(mailbox_queue_ptr); + if (idx >= NUM_MAILBOX_QUEUE_SLOT) { + return MAILBOX_QUEUE_FULL; + } + +#ifdef TFM_MULTI_CORE_TEST + tfm_ns_mailbox_tx_stats_update(); +#endif + + /* Fill the mailbox message */ + msg_ptr = &mailbox_queue_ptr->queue[idx].msg; + + msg_ptr->call_type = call_type; + memcpy(&msg_ptr->params, params, sizeof(msg_ptr->params)); + msg_ptr->client_id = client_id; + + /* + * Fetch the current task handle. The task will be woken up according the + * handle value set in the owner field. + */ + task_handle = tfm_ns_mailbox_os_get_task_handle(); + set_msg_owner(idx, task_handle); + + tfm_ns_mailbox_hal_enter_critical(); + set_queue_slot_pend(mailbox_queue_ptr, idx); + tfm_ns_mailbox_hal_exit_critical(); + + tfm_ns_mailbox_hal_notify_peer(); + + *slot_idx = idx; + + return MAILBOX_SUCCESS; +} + +static int32_t mailbox_rx_client_reply(uint8_t idx, int32_t *reply) +{ + *reply = mailbox_queue_ptr->queue[idx].reply.return_val; + + /* Clear up the owner field */ + set_msg_owner(idx, NULL); + + ns_mailbox_spin_lock(); + clear_queue_slot_woken(idx); + /* + * Make sure that the empty flag is set after all the other status flags are + * re-initialized. + */ + set_queue_slot_empty(idx); + ns_mailbox_spin_unlock(); + + return MAILBOX_SUCCESS; +} + +int32_t tfm_ns_mailbox_client_call(uint32_t call_type, + const struct psa_client_params_t *params, + int32_t client_id, + int32_t *reply) +{ + uint8_t slot_idx = NUM_MAILBOX_QUEUE_SLOT; + int32_t reply_buf = 0x0; + int32_t ret; + + if (!mailbox_queue_ptr) { + return MAILBOX_INIT_ERROR; + } + + if (!params || !reply) { + return MAILBOX_INVAL_PARAMS; + } + + if (tfm_ns_mailbox_os_lock_acquire() != MAILBOX_SUCCESS) { + return MAILBOX_QUEUE_FULL; + } + + /* It requires SVCall if NS mailbox is put in privileged mode. */ + ret = mailbox_tx_client_req(call_type, params, client_id, &slot_idx); + if (ret != MAILBOX_SUCCESS) { + goto exit; + } + + mailbox_wait_reply(slot_idx); + + /* It requires SVCall if NS mailbox is put in privileged mode. */ + ret = mailbox_rx_client_reply(slot_idx, &reply_buf); + if (ret == MAILBOX_SUCCESS) { + *reply = reply_buf; + } + +exit: + if (tfm_ns_mailbox_os_lock_release() != MAILBOX_SUCCESS) { + return MAILBOX_GENERIC_ERROR; + } + + return ret; +} + +#ifdef TFM_MULTI_CORE_NS_OS +int32_t tfm_ns_mailbox_wake_reply_owner_isr(void) +{ + uint8_t idx; + mailbox_queue_status_t replied_status; + + if (!mailbox_queue_ptr) { + return MAILBOX_INIT_ERROR; + } + + tfm_ns_mailbox_hal_enter_critical_isr(); + replied_status = mailbox_queue_ptr->replied_slots; + clear_queue_slot_all_replied(mailbox_queue_ptr, replied_status); + tfm_ns_mailbox_hal_exit_critical_isr(); + + if (!replied_status) { + return MAILBOX_NO_PEND_EVENT; + } + + for (idx = 0; idx < NUM_MAILBOX_QUEUE_SLOT; idx++) { + /* + * The reply has already received from SPE mailbox but + * the wake-up signal is not sent yet. + */ + if (!(replied_status & (0x1UL << idx))) { + continue; + } + + /* Set woken-up flag */ + tfm_ns_mailbox_hal_enter_critical_isr(); + set_queue_slot_woken(idx); + tfm_ns_mailbox_hal_exit_critical_isr(); + + tfm_ns_mailbox_os_wake_task_isr( + mailbox_queue_ptr->queue[idx].reply.owner); + + replied_status &= ~(0x1UL << idx); + if (!replied_status) { + break; + } + } + + return MAILBOX_SUCCESS; +} + +static inline bool mailbox_wait_reply_signal(uint8_t idx) +{ + bool is_set = false; + + ns_mailbox_spin_lock(); + + if (is_queue_slot_woken(idx)) { + clear_queue_slot_woken(idx); + is_set = true; + } + + ns_mailbox_spin_unlock(); + + return is_set; +} +#else /* TFM_MULTI_CORE_NS_OS */ +static inline bool mailbox_wait_reply_signal(uint8_t idx) +{ + bool is_set = false; + + tfm_ns_mailbox_hal_enter_critical(); + + if (is_queue_slot_replied(idx)) { + clear_queue_slot_replied(idx); + is_set = true; + } + + tfm_ns_mailbox_hal_exit_critical(); + + return is_set; +} +#endif /* TFM_MULTI_CORE_NS_OS */ + +static int32_t mailbox_wait_reply(uint8_t idx) +{ + bool is_replied; + + while (1) { + tfm_ns_mailbox_os_wait_reply(); + + /* + * Woken up from sleep + * Check the completed flag to make sure that the current thread is + * woken up by reply event, rather than other events. + */ + /* + * It requires SVCall to access NS mailbox flags if NS mailbox is put + * in privileged mode. + * An alternative is to let NS thread allocate its own is_woken flag. + * But a spinlock-like mechanism is still required. + */ + is_replied = mailbox_wait_reply_signal(idx); + if (is_replied) { + break; + } + } + + return MAILBOX_SUCCESS; +} + +int32_t tfm_ns_mailbox_init(struct ns_mailbox_queue_t *queue) +{ + int32_t ret; + + if (!queue) { + return MAILBOX_INVAL_PARAMS; + } + + /* + * Further verification of mailbox queue address may be required according + * to non-secure memory assignment. + */ + + memset(queue, 0, sizeof(*queue)); + + /* Initialize empty bitmask */ + queue->empty_slots = + (mailbox_queue_status_t)((1UL << (NUM_MAILBOX_QUEUE_SLOT - 1)) - 1); + queue->empty_slots += + (mailbox_queue_status_t)(1UL << (NUM_MAILBOX_QUEUE_SLOT - 1)); + + mailbox_queue_ptr = queue; + + /* Platform specific initialization. */ + ret = tfm_ns_mailbox_hal_init(queue); + if (ret != MAILBOX_SUCCESS) { + return ret; + } + + ret = tfm_ns_mailbox_os_lock_init(); + +#ifdef TFM_MULTI_CORE_TEST + tfm_ns_mailbox_tx_stats_init(queue); +#endif + + return ret; +} diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox_rtos_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox_rtos_api.c new file mode 100644 index 0000000..629e108 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ns_mailbox_rtos_api.c @@ -0,0 +1,116 @@ +/* + * Copyright (c) 2020-2021, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +/* + * This file is a reference implementation of Non-secure mailbox RTOS API. + * This reference implementation is based on TF-M ROTS wrapper API. + * It can be replaced by RTOS specific implementation. + */ + +#ifdef TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD +#include "os_wrapper/msg_queue.h" +#else +#include "os_wrapper/semaphore.h" +#endif +#include "os_wrapper/thread.h" + +#include "tfm_ns_mailbox.h" + +/* + * Thread flag to manage wait/wake mechanism in mailbox.、 + * Thread flag can be RTOS specific. + * The following example definition also covers the rule of CMSIS-RTOS2, which + * requires the MSB of thread flags must be 0b0. + */ +#define MAILBOX_THREAD_FLAG 0x5FCA0000 + +#ifndef TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD +#define MAX_SEMAPHORE_COUNT NUM_MAILBOX_QUEUE_SLOT + +static void *ns_lock_handle = NULL; +#endif + +const void *tfm_ns_mailbox_os_get_task_handle(void) +{ + return os_wrapper_thread_get_handle(); +} + +void tfm_ns_mailbox_os_wait_reply(void) +{ + os_wrapper_thread_wait_flag(MAILBOX_THREAD_FLAG, OS_WRAPPER_WAIT_FOREVER); +} + +void tfm_ns_mailbox_os_wake_task_isr(const void *task_handle) +{ + os_wrapper_thread_set_flag_isr((void *)task_handle, MAILBOX_THREAD_FLAG); +} + +#ifdef TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD +void *tfm_ns_mailbox_os_mq_create(size_t msg_size, uint8_t msg_count) +{ + return os_wrapper_msg_queue_create(msg_size, msg_count); +} + +int32_t tfm_ns_mailbox_os_mq_send(void *mq_handle, const void *msg_ptr) +{ + int32_t ret; + + if (!mq_handle || !msg_ptr) { + return MAILBOX_INVAL_PARAMS; + } + + while (1) { + ret = os_wrapper_msg_queue_send(mq_handle, msg_ptr); + if (ret == OS_WRAPPER_SUCCESS) { + return MAILBOX_SUCCESS; + } + } + + return MAILBOX_GENERIC_ERROR; +} + +int32_t tfm_ns_mailbox_os_mq_receive(void *mq_handle, void *msg_ptr) +{ + int32_t ret; + + if (!mq_handle || !msg_ptr) { + return MAILBOX_INVAL_PARAMS; + } + + while (1) { + ret = os_wrapper_msg_queue_receive(mq_handle, msg_ptr); + if (ret == OS_WRAPPER_SUCCESS) { + return MAILBOX_SUCCESS; + } + } + + return MAILBOX_GENERIC_ERROR; +} +#else /* TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD */ +int32_t tfm_ns_mailbox_os_lock_init(void) +{ + ns_lock_handle = os_wrapper_semaphore_create(MAX_SEMAPHORE_COUNT, + MAX_SEMAPHORE_COUNT, + NULL); + if (!ns_lock_handle) { + return MAILBOX_GENERIC_ERROR; + } + + return MAILBOX_SUCCESS; +} + +int32_t tfm_ns_mailbox_os_lock_acquire(void) +{ + return os_wrapper_semaphore_acquire(ns_lock_handle, + OS_WRAPPER_WAIT_FOREVER); +} + +int32_t tfm_ns_mailbox_os_lock_release(void) +{ + return os_wrapper_semaphore_release(ns_lock_handle); +} +#endif /* TFM_MULTI_CORE_NS_OS_MAILBOX_THREAD */ diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_platform_ipc_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_platform_ipc_api.c new file mode 100644 index 0000000..0c1edf4 --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_platform_ipc_api.c @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2019, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include +#include "tfm_platform_api.h" +#include "psa_manifest/sid.h" + +enum tfm_platform_err_t tfm_platform_system_reset(void) +{ + psa_status_t status = PSA_ERROR_CONNECTION_REFUSED; + psa_handle_t handle = PSA_NULL_HANDLE; + + handle = psa_connect(TFM_SP_PLATFORM_SYSTEM_RESET_SID, + TFM_SP_PLATFORM_SYSTEM_RESET_VERSION); + if (handle <= 0) { + return TFM_PLATFORM_ERR_SYSTEM_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, + NULL, 0, NULL, 0); + psa_close(handle); + + if (status < PSA_SUCCESS) { + return TFM_PLATFORM_ERR_SYSTEM_ERROR; + } else { + return (enum tfm_platform_err_t) status; + } + +} + +enum tfm_platform_err_t +tfm_platform_ioctl(tfm_platform_ioctl_req_t request, + psa_invec *input, psa_outvec *output) +{ + tfm_platform_ioctl_req_t req = request; + struct psa_invec in_vec[2] = { {0} }; + size_t inlen, outlen; + psa_status_t status = PSA_ERROR_CONNECTION_REFUSED; + psa_handle_t handle = PSA_NULL_HANDLE; + + in_vec[0].base = &req; + in_vec[0].len = sizeof(req); + if (input != NULL) { + in_vec[1].base = input->base; + in_vec[1].len = input->len; + inlen = 2; + } else { + inlen = 1; + } + + if (output != NULL) { + outlen = 1; + } else { + outlen = 0; + } + + handle = psa_connect(TFM_SP_PLATFORM_IOCTL_SID, + TFM_SP_PLATFORM_IOCTL_VERSION); + if (handle <= 0) { + return TFM_PLATFORM_ERR_SYSTEM_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, + in_vec, inlen, + output, outlen); + psa_close(handle); + + if (status < PSA_SUCCESS) { + return TFM_PLATFORM_ERR_SYSTEM_ERROR; + } else { + return (enum tfm_platform_err_t) status; + } +} + diff --git a/COMPONENT_TFM_NS_INTERFACE/src/tfm_ps_ipc_api.c b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ps_ipc_api.c new file mode 100644 index 0000000..4f937db --- /dev/null +++ b/COMPONENT_TFM_NS_INTERFACE/src/tfm_ps_ipc_api.c @@ -0,0 +1,175 @@ +/* + * Copyright (c) 2017-2020, Arm Limited. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + * + */ + +#include "psa/protected_storage.h" + +#include "tfm_ns_interface.h" +#include "psa_manifest/sid.h" + +#define IOVEC_LEN(x) (uint32_t)(sizeof(x)/sizeof(x[0])) + +psa_status_t psa_ps_set(psa_storage_uid_t uid, + size_t data_length, + const void *p_data, + psa_storage_create_flags_t create_flags) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) }, + { .base = p_data, .len = data_length }, + { .base = &create_flags, .len = sizeof(create_flags) } + }; + + handle = psa_connect(TFM_PS_SET_SID, TFM_PS_SET_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), + NULL, 0); + + psa_close(handle); + + return status; +} + +psa_status_t psa_ps_get(psa_storage_uid_t uid, + size_t data_offset, + size_t data_size, + void *p_data, + size_t *p_data_length) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) }, + { .base = &data_offset, .len = sizeof(data_offset) } + }; + + psa_outvec out_vec[] = { + { .base = p_data, .len = data_size } + }; + + if (p_data_length == NULL) { + return PSA_ERROR_INVALID_ARGUMENT; + } + + handle = psa_connect(TFM_PS_GET_SID, TFM_PS_GET_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), out_vec, + IOVEC_LEN(out_vec)); + + psa_close(handle); + + *p_data_length = out_vec[0].len; + + return status; +} + +psa_status_t psa_ps_get_info(psa_storage_uid_t uid, + struct psa_storage_info_t *p_info) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) } + }; + + psa_outvec out_vec[] = { + { .base = p_info, .len = sizeof(*p_info) } + }; + + handle = psa_connect(TFM_PS_GET_INFO_SID, TFM_PS_GET_INFO_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), out_vec, + IOVEC_LEN(out_vec)); + + psa_close(handle); + + return status; +} + +psa_status_t psa_ps_remove(psa_storage_uid_t uid) +{ + psa_status_t status; + psa_handle_t handle; + + psa_invec in_vec[] = { + { .base = &uid, .len = sizeof(uid) } + }; + + + handle = psa_connect(TFM_PS_REMOVE_SID, TFM_PS_REMOVE_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return PSA_ERROR_GENERIC_ERROR; + } + + status = psa_call(handle, PSA_IPC_CALL, in_vec, IOVEC_LEN(in_vec), + NULL, 0); + + psa_close(handle); + + return status; +} + +psa_status_t psa_ps_create(psa_storage_uid_t uid, size_t size, + psa_storage_create_flags_t create_flags) +{ + (void)uid; + (void)size; + (void)create_flags; + + return PSA_ERROR_NOT_SUPPORTED; +} + +psa_status_t psa_ps_set_extended(psa_storage_uid_t uid, size_t data_offset, + size_t data_length, const void *p_data) +{ + (void)uid; + (void)data_offset; + (void)data_length; + (void)p_data; + + return PSA_ERROR_NOT_SUPPORTED; +} + +uint32_t psa_ps_get_support(void) +{ + /* Initialise support_flags to a sensible default, to avoid returning an + * uninitialised value in case the secure function fails. + */ + uint32_t support_flags = 0; + psa_handle_t handle; + + psa_outvec out_vec[] = { + { .base = &support_flags, .len = sizeof(support_flags) } + }; + + /* The PSA API does not return an error, so any error from TF-M is + * ignored. + */ + handle = psa_connect(TFM_PS_GET_SUPPORT_SID, TFM_PS_GET_SUPPORT_VERSION); + if (!PSA_HANDLE_IS_VALID(handle)) { + return support_flags; + } + + (void)psa_call(handle, PSA_IPC_CALL, NULL, 0, out_vec, IOVEC_LEN(out_vec)); + + psa_close(handle); + + return support_flags; +} diff --git a/COMPONENT_TFM_S_FW/tfm_s.bin b/COMPONENT_TFM_S_FW/tfm_s.bin new file mode 100644 index 0000000000000000000000000000000000000000..83b7195fa9c2c54b55a8f9fe5605fa0e38206666 GIT binary patch literal 211616 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 z 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

}Poz4%wq>Qd_A_UZjGZKj=Y; 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 QTGC#>_J{WTbcFwZ00;663IG5A literal 0 HcmV?d00001 diff --git a/COMPONENT_TFM_S_FW/tfm_s.hex b/COMPONENT_TFM_S_FW/tfm_s.hex new file mode 100644 index 0000000..bd819a6 --- /dev/null +++ b/COMPONENT_TFM_S_FW/tfm_s.hex @@ -0,0 +1,13234 @@ +:020000041000EA +:1004000000940008830400100D000000E9AF001004 +:1004100000000000000000000000000000000000DC +:10042000000000000000000000000000D9AF001034 +:1004300000000000000000009DAF0010010500104A +:100440000105001091860010010500100105001043 +:100450000105001001050010010500107185001054 +:100460000105001001050010010500100105001034 +:100470000105001001050010010500100105001024 +:100480007047FFF7FDFF72B6164C174DAC4209DA04 +:1004900021686268A368043B02DBC858D050FAE7C1 +:1004A0000C34F3E7114B124CA34208DA19685A686E +:1004B0000020043A01DB8850FBE70833F4E70D48DD +:1004C0000D490860BFF34F8F08F002F9EFF3148075 +:1004D0000221084380F31488084880F3098809F052 +:1004E00079FFFEE7200500105C0500105C05001098 +:1004F00074050010008F010808ED00E0009C000862 +:10050000FEE7FEE700B504207146084202D0EFF393 +:10051000098001E0EFF30880043026F0E7FDFEE7F4 +:1005200000040010008F0108800000002036031036 +:10053000808F0108C0030000E0350310009C000814 +:1005400040000000E0350310001800080000000023 +:0C055000E039031000F80208C0040000AD +:10055C004093010828660000409C0008E0F1000070 +:08056C0000180008202800001F +:0805740000000000000000007F +:10057C00000000000000000000000000000000006F +:10058C00000000000000000000000000000000005F +:1005A00010B5034B0A000100186800F04DF810BDAB +:1005B00068910108014B18687047C04668910108AE +:1005C000084B10B50400002B02D0002100E000BF52 +:1005D000054B1868836A002B00D0984720002EF046 +:1005E0002DFDC04600000000600B0010EC300068DC +:1005F00070470000044B1B681B6A002B00D1034BA3 +:10060000EC3318687047C04668910108CC91010826 +:1006100010B5034B0100186800F024F810BDC04667 +:100620006891010882B0002900D101A9101E06D0EE +:10063000002B06D013780B601078431E984102B04F +:10064000704702204042FAE74A4370B51100140097 +:1006500000F052F8051E03D02200002100F036FD04 +:10066000280070BD70B50500002910D00C1F23684C +:10067000002B00DAE418280000F070FA1D4A136815 +:10068000002B05D163601460280000F068FA70BD8B +:10069000A34209D9216860188342F3D118685B68C6 +:1006A00041182160EEE713005A68002A01D0A242E7 +:1006B000F9D919685818A0420BD1206809185818A0 +:1006C00019608242E0D110685268411819605A607E +:1006D000DAE7A04202D90C232B60D5E72168601825 +:1006E000824203D1106852684118216062605C60E8 +:1006F000CAE7C0461CF30108032370B5CD1C9D4317 +:10070000083506000C2D1ED20C25A9421DD830003C +:1007100000F024FA254A14682100002919D1244C3C +:100720002368002B03D1300000F044F8206029003A +:10073000300000F03FF8431C2BD10C233000336015 +:1007400000F00DFA03E0002DDFDA0C233360002007 +:1007500070BD0B685B1B19D40B2B03D90B60CC1835 +:10076000256003E04B688C420DD11360300000F02F +:10077000F6F9200007220B30231D9043C31AE7D05F +:100780005A42E250E4E763600C00EFE70C0049686E +:10079000C3E70323C41C9C43A042E1D0211A3000CC +:1007A00000F008F8431CDBD1C7E7C0461CF3010882 +:1007B00020F30108002370B5064C050008002360F3 +:1007C0002EF02EFC431C03D12368002B00D02B609D +:1007D00070BDC04664F90108C9B20378002B04D08B +:1007E0008B4200D170470130F7E74B4259414942F3 +:1007F0000840F7E702780B78002A03D00130013176 +:100800009A42F7D0D01A70470023C25C0133002A05 +:10081000FBD1581E7047002330B59A420AD0013AE6 +:10082000C45CCD5CAC4204D1934202D00133002CB5 +:10083000F6D1631B180030BD30B50500002A00D189 +:1008400030BD0C78013A6B1C2C700131002C05D1A5 +:100850009A189A42F4D01C700133FAE71D00EDE7B4 +:1008600010B50378002B0FD10B785A4253415B42ED +:10087000184010BD0023CA5C002AFAD0C45C944220 +:1008800001D10133F7E701300378002BF2D11800D2 +:10089000EFE70000F0B51F000E008DB00B90029145 +:1008A000039212983478FFF7A1FE082200194378CA +:1008B000751C134053D12D2C53D17478B51C0133C2 +:1008C0000193002F00D18AE0102F0AD1302C08D1DB +:1008D00020222B789343582B00D07AE010276C7895 +:1008E0000235019B002B41D1013B04933E4B059304 +:1008F0003A00FB1704980599089300F059FA002371 +:1009000009900E00002000210A922200303A092AA4 +:1009100031D81400A7423DDD5A1C1DD0B14236D853 +:1009200002D1099B984232D8099B834206D18E425C +:1009300004D101230A9A5B42A2420DDB0B000200A4 +:100940000899380000F054FAE31706940793069BC1 +:10095000079CC018614101232C780135D5E72E0092 +:100960009FE72B2CACD1B51C7478A9E70023049326 +:1009700080231B06BBE72200413A192A01D8373CE5 +:10098000C8E72200613A192A04D8573CC2E701237C +:100990005B42E1E75A1C09D10B9A23331360039B96 +:1009A00004980599002B0ED10DB0F0BD019A002AD4 +:1009B00004D006000F0000217042B941039A002ABA +:1009C000F2D0002B01D06B1E0293039B029A1A6097 +:1009D000EAE73024002F00D083E7082781E7302C96 +:1009E00000D175E70A277CE7FFFFFF7F37B51300CB +:1009F000064A05001068046A002C00D1044C0A0065 +:100A000000942900FFF746FF03B030BD689101084C +:100A1000CC910108F0B51F000E0085B00390019144 +:100A200002920A983478FFF7E1FD08220019437812 +:100A3000751C134038D12D2C38D17478B51C013376 +:100A40000093002F65D0102F09D1302C07D1202220 +:100A50002B789343582B57D110276C7802350120FF +:100A60003900404200F018F90600012039004042E8 +:100A700000F098F9002301228C4618005242210010 +:100A80003039092917D80C00A74222DD002B1EDBC4 +:100A90001300864205D301D1A44502DB012378432C +:100AA00020182C780135EAE72E00BAE72B2CC7D1A5 +:100AB000B51C7478C4E721004139192901D8373CA5 +:100AC000E2E721006139192903D8573CDCE713001C +:100AD000E7E7002B09DA22230120039A4042136042 +:100AE000029B002B0AD105B0F0BD009A002A00D06D +:100AF0004042029A002AF6D0002B01D06B1E0193CF +:100B0000029B019A1A60EEE73024002FA7D1082734 +:100B1000A5E7302C9BD00A27A1E7000037B51300CA +:100B2000064A05001068046A002C00D1044C0A0033 +:100B300000942900FFF76EFF3EBDC0466891010892 +:100B4000CC9101080B1E04D0FF2A04D98A2303602C +:100B50008B3B180070470A700123FAE77047704713 +:100B60006C9101084300504F534958002E0000205B +:100B7000202020202020202028282828282020204D +:100B800020202020202020202020202020202088FD +:100B90001010101010101010101010101010100461 +:100BA00004040404040404040410101010101010B1 +:100BB00041414141414101010101010101010101A5 +:100BC00001010101010101010101101010101010BB +:100BD0004242424242420202020202020202020275 +:100BE0000202020202020202020210101010200091 +:100BF00000000000000000000000000000000000F5 +:100C000000000000000000000000000000000000E4 +:100C100000000000000000000000000000000000D4 +:100C200000000000000000000000000000000000C4 +:100C300000000000000000000000000000000000B4 +:100C400000000000000000000000000000000000A4 +:100C50000000000000000000000000000000000094 +:100C60000000000000000000000000000000000084 +:100C700002B4714649084900095C49008E4402BC2F +:100C80007047C04603B47146490840004900095AFC +:100C900049008E4403BC7047002243088B4274D342 +:100CA00003098B425FD3030A8B4244D3030B8B426D +:100CB00028D3030C8B420DD3FF22090212BA030C76 +:100CC0008B4202D31212090265D0030B8B4219D357 +:100CD00000E0090AC30B8B4201D3CB03C01A524177 +:100CE000830B8B4201D38B03C01A5241430B8B42BF +:100CF00001D34B03C01A5241030B8B4201D30B03A8 +:100D0000C01A5241C30A8B4201D3CB02C01A5241CE +:100D1000830A8B4201D38B02C01A5241430A8B4291 +:100D200001D34B02C01A5241030A8B4201D30B027A +:100D3000C01A5241CDD2C3098B4201D3CB01C01A94 +:100D4000524183098B4201D38B01C01A524143099E +:100D50008B4201D34B01C01A524103098B4201D38C +:100D60000B01C01A5241C3088B4201D3CB00C01AF9 +:100D7000524183088B4201D38B00C01A5241430871 +:100D80008B4201D34B00C01A5241411A00D2014696 +:100D9000524110467047FFE701B5002000F006F809 +:100DA00002BDC0460029F7D076E770477047C046BD +:100DB000002B11D1002A0FD1002900D1002802D028 +:100DC0000021C943081C07B4024802A14018029040 +:100DD00003BDC046D9FFFFFF03B4684601B50298C2 +:100DE00000F030F8019B9E4602B00CBC7047C04634 +:100DF000F0B5CE46474615042D0C2E0080B50704ED +:100E0000140C3F0C9946030C7E435D4367436343D8 +:100E10007F19340CE4199C46A54203D980235B0258 +:100E20009846C4444B4643435143250C360465441D +:100E3000360C2404A4195B19591820000CBC9046E8 +:100E40009946F0BDF0B54F464646D646C0B50400BB +:100E500082B00D00914698468B422FD82CD0414647 +:100E6000484600F0B1F829000600200000F0ACF878 +:100E7000331A9C46203B9A4600D576E04B465246B4 +:100E800093401F004B46624693401E00AF4228D855 +:100E900025D05346A41BBD41002B00DA7BE0002285 +:100EA00000230092019301235246934001930123B2 +:100EB00062469340009318E08242D0D9002200237A +:100EC000009201930A9B002B01D01C605D6000988A +:100ED000019902B01CBC90469946A246F0BDA342BF +:100EE000D7D900220023009201936346002BE9D05A +:100EF000FB079846414672080A437B0866460EE0A7 +:100F0000AB4201D1A2420CD8A41A9D410120241960 +:100F10006D410021013E24184D41002E06D0AB4208 +:100F2000EED9013E24196D41002EF8D100980199A7 +:100F3000534600196941002B23DB2B005246D34056 +:100F40002A006446E2401C0053461500002B2DDBAE +:100F500026005746BE40330026006746BE4032009A +:100F6000801A994100900191ACE7624620239B1AB8 +:100F70004A46DA406146130042468A4017001F4342 +:100F800080E7624620239B1A2A0066469A40230087 +:100F9000F3401343D4E76246202300219B1A00222A +:100FA000009101920122DA40019280E720236246FB +:100FB00026009B1ADE402F00B0466646B7404646E4 +:100FC0003B003343C8E7C04610B5002903D100F009 +:100FD00007F8203002E0081C00F002F810BDC046FF +:100FE0001C2101231B04984201D3000C10391B0A59 +:100FF000984201D3000A08391B09984201D300091D +:10100000043902A2105C40187047C0460403020273 +:10101000010101010000000000000000F0B5050022 +:101020000C00002A12D006000E43F3070FD501274B +:1010300005E00E001E430C001D00374208D0611C65 +:101040002478013A6B1C2C70002AF2D1F0BD030009 +:10105000012A34D9B4072FD502275B1A5D188C1CDE +:101060000988023A2980AE1C2100012A2BD92500CB +:1010700035432F42F2D1032A10D92100171FBF0890 +:10108000231DBF00FF18331B5D180C1D09682E1DA2 +:1010900029602100A742F7D103231A40531E002ADA +:1010A000D4D022783270002BD0D062787270012BAD +:1010B000CCD0A378B370C9E70C001E00DBE7012297 +:1010C0000C001E00EAE73300FAE7C046F0B55746C9 +:1010D0004E46DE4645468A46E0B50400CEB2002ABA +:1010E0000BD083070FD0032502E01C001D420BD05C +:1010F000013A631C2670002AF7D13CBC9046994601 +:10110000A246AB46F0BD0300032A30D95146FF2565 +:101110000D40A9460D06494629438B465146090410 +:101120008A46FF21A846554609040D4029005D4620 +:101130000D434146141FA408A700A446090C1C1D1A +:101140003F190D4300E004341D6021002300A74235 +:10115000F9D16346541F9B00E41A9307CDD00E705B +:10116000002CCAD04E70012CC7D08E70C5E7541E1B +:101170001900F4E70300002030B5013A08D31D78C8 +:101180000C78A54205D0002803D1281B013AF6D2DD +:1011900030BD01330131F0E7F0B5C646040000B5BB +:1011A000884681421FD210188E1805003300002A8D +:1011B00015D037000743F90718D501239C4607E0EF +:1011C0001F0060462F43384210D0434610199E1826 +:1011D000731E451E1878013A2870002AF0D12000AD +:1011E00004BC9046F0BDFFF719FFF8E7012A39D992 +:1011F000B90735D50227981AAD1A8318023BA918EA +:101200001E880239023A0E80012A30D91E000E4390 +:101210003742F2D1032A27D9151FAD08181FAD0098 +:10122000451BCE1A181FF318191F03680B60030023 +:101230008542F7D103231A40551E002ACFD0431E02 +:101240001A784B1E1A70002DC9D0831E1A788B1E77 +:101250001A70012DC3D00338037803390B70BEE731 +:101260002900D7E701222900551E1800E5E70D00E7 +:10127000F9E7C04604DF704730B597B00C00039023 +:10128000282200210CA8FFF721FF02230B930BABB0 +:1012900007932C23089303AB099304230121802097 +:1012A00005940A93069300F0EDFC041E0FDD012364 +:1012B000019305AB009307AA0223002100F0E4FC90 +:1012C0000500200000F0ECFC280017B030BD84259C +:1012D0006D42F9E730B591B005002822002106A83B +:1012E000FFF7F4FE052305AC059301212733802089 +:1012F000A5600394049300F0C5FC041E0EDD0023DA +:1013000003AA019300930021013300F0BDFC050006 +:10131000200000F0C5FC280011B030BD84256D42CE +:10132000F9E7C04670B592B007AC06000D002C225C +:1013300000212000FFF7CAFE2C2301210493802006 +:10134000143BA66003940595069300F09BFC041ED5 +:101350000FDD0123019305AB009303AA01230021B4 +:1013600000F092FC0500200000F09AFC280012B06A +:1013700070BD84256D42F9E7F0B5C64600B592B060 +:1013800007000E0015000021282208A89846FFF744 +:101390009DFE072307AC0793012125338020A7601A +:1013A000039404930596069500F06CFC041E14DD6E +:1013B0000123019305AB009303AA0123002100F050 +:1013C00063FC4346069A05001A60200000F068FCA2 +:1013D000280012B004BC9046F0BD84256D42F7E7AA +:1013E00070B592B005000E002822002108A8FFF772 +:1013F0006DFE0C2307932B6807AC23612C2301217E +:1014000004938020283BE66003940595069300F042 +:1014100039FC041E0FDD0123019305AB009303AAE1 +:101420000123002100F030FC0500200000F038FC12 +:10143000280012B070BD84256D42F9E7F0B595B073 +:1014400004000F001600002128220AA8FFF73EFE24 +:101450000D230993236809AD2B612C2301210693E9 +:101460008020283B0394059507970896049300F085 +:1014700009FC041E0FDD0123019303AB009305AAB1 +:101480000223002100F000FC0500200000F008FC11 +:10149000280015B0F0BD84256D42F9E7F0B5C646C9 +:1014A00000B594B004000F001600002128220AA8FD +:1014B0009846FFF70BFE0E230993236809AD2B61B5 +:1014C0002C23012104938020283B05940395069347 +:1014D0000797089600F0D6FB041E14DD0223019343 +:1014E00005AB009303AA0123002100F0CDFB434686 +:1014F000089A05001A60200000F0D2FB280014B002 +:1015000004BC9046F0BD84256D42F7E7F0B597B076 +:1015100004000F001600002124220CA81D00FFF774 +:10152000D5FD23230B931C9B0D940E971595002B33 +:101530005BD00BAB05932C2306931E9B07931F9B3D +:1015400008931C9B09931D9B0A93209B0393219B4B +:101550000493102D4CD8002E2AD0002D28D0B3078C +:1015600049D1082D47D93268AB081192726812929E +:10157000022B05D0B2681392042B01D1F3681493A7 +:1015800003232A009A431300954211D0B15C0BAAA1 +:10159000D21811765A1C95420AD90BA98918B25C47 +:1015A00002330A769D4203D90BAAD218F35C137654 +:1015B0000121802000F066FB051E00DC91E01C9BF1 +:1015C00001225C1EA341019203AA02330092002172 +:1015D00005AA00F059FB049A229B04001A60280017 +:1015E00000F05EFB200017B0F0BD1D9B002BA0D0CB +:1015F00087246442F6E76A46442133785218137010 +:10160000012DD5D06A467378013152181370022D1E +:10161000CED06A46B378013152181370032DC7D06B +:101620006A46F378013152181370042DC0D06A460F +:101630003379013152181370052DB9D06A46737988 +:10164000013152181370062DB2D06A46B3790131B8 +:1016500052181370072DABD06A46F3790131521836 +:101660001370082DA4D968462023327A1F394018F8 +:10167000C254092D9CD96846727A01334018C2546D +:101680000A2D00D194E76846B27A01334018C2545B +:101690000B2D00D18CE76846F27A01334018C25412 +:1016A0000C2D00D184E76846327B01334018C254C8 +:1016B0000D2D00D17CE76846727B01334018C2547F +:1016C0000E2D00D174E76846B27B01334018C25436 +:1016D000102D00D06CE76846F27B01334118CA54E4 +:1016E00066E7842464427DE7F0B597B004000F00FC +:1016F0001600002124220CA81D00FFF7E7FC24237C +:101700000B931C9B0D940E971595002B5BD00BAB88 +:1017100005932C2306931E9B07931F9B08931C9BEA +:1017200009931D9B0A93209B0393219B0493102DE7 +:101730004CD8002E2AD0002D28D0B30749D1082D2F +:1017400047D93268AB08119272681292022B05D009 +:10175000B2681392042B01D1F368149303232A0077 +:101760009A431300954211D0B15C0BAAD21811769E +:101770005A1C95420AD90BA98918B25C02330A7621 +:101780009D4203D90BAAD218F35C13760121802065 +:1017900000F078FA051E00DC91E01C9B01225C1E23 +:1017A000A341019203AA02330092002105AA00F08E +:1017B0006BFA049A229B04001A60280000F070FA69 +:1017C000200017B0F0BD1D9B002BA0D087246442E1 +:1017D000F6E76A464421337852181370012DD5D0AC +:1017E0006A467378013152181370022DCED06A46C2 +:1017F000B378013152181370032DC7D06A46F378BD +:10180000013152181370042DC0D06A46337901316A +:1018100052181370052DB9D06A46737901315218E8 +:101820001370062DB2D06A46B37901315218137085 +:10183000072DABD06A46F379013152181370082D89 +:10184000A4D968462023327A1F394018C254092D82 +:101850009CD96846727A01334018C2540A2D00D1CF +:1018600094E76846B27A01334018C2540B2D00D178 +:101870008CE76846F27A01334018C2540C2D00D12F +:1018800084E76846327B01334018C2540D2D00D1E5 +:101890007CE76846727B01334018C2540E2D00D19C +:1018A00074E76846B27B01334018C254102D00D053 +:1018B0006CE76846F27B01334118CA5466E784241A +:1018C00064427DE7F0B5C64600B594B080460F008F +:1018D0001600002128220AA81D00FFF7F7FB2F237E +:1018E0000993434609ACA3602C2306931A9B01215C +:1018F00003931B9B8020E76005940796089504934B +:1019000000F0C0F9041E14DD0123019303AB009322 +:1019100005AA0223002100F0B7F9049A1C9B0500D8 +:101920001A60200000F0BCF9280014B004BC9046F6 +:10193000F0BD84256D42F7E730B593B0040028224E +:10194000002108A8FFF7C2FB3B230793236807ADDC +:101950002B612C23012104938020283B05940395BF +:10196000069300F08FF9041E0FDD0123019305ABF0 +:10197000009303AA0123002100F086F9050020004E +:1019800000F08EF9280013B030BD84256D42F9E7D0 +:1019900070B592B005000E002822002108A8FFF7BC +:1019A00095FB332307932B6807AC23612C2301217C +:1019B00004938020283BE66003940595069300F08D +:1019C00061F9041E0FDD0123019305AB009303AA07 +:1019D0000123002100F058F90500200000F060F913 +:1019E000280012B070BD84256D42F9E7F0B5C646F7 +:1019F0000700222000B592B088461600002126225A +:101A000068441D00FFF762FB36230793434607AC8B +:101A1000A3803B68012123612C238020039404933D +:101A20000596069500F02EF9041E10DD002303AA8A +:101A3000019300930021023300F026F905002000F5 +:101A400000F02EF9280012B004BC9046F0BD8425A9 +:101A50006D42F7E7F0B595B006000F0015000021C4 +:101A600028220AA8FFF732FB3A2309933B6809AC06 +:101A700023612C230693143B08930121143B8020FF +:101A8000059407960395049300F0FCF8041E0FDDFF +:101A90000123019303AB009305AA0223002100F068 +:101AA000F3F80500200000F0FBF8280015B0F0BDA9 +:101AB00084256D42F9E7C04630B58BB002900391A2 +:101AC00002A90491069308210EAB08930423059103 +:101AD000702007390792099300F0D4F8041E0EDD38 +:101AE000002304AA019300930021033300F0CCF8F3 +:101AF0000500200000F0D4F828000BB030BD84258C +:101B00006D42F9E770B58CB0039204AA08920822DE +:101B1000099203AA0A920422119D0B92109A049032 +:101B2000059106920793002D1AD00121712000F033 +:101B3000A9F8041E11DD0123019306AB009308AA46 +:101B40000223002100F0A0F80600200000F0A8F811 +:101B5000079B2B6030000CB070BD84267642F9E7FD +:101B600087267642F6E7C04630B589B002AB0493CB +:101B700008230290039105930121043372200692F9 +:101B8000079300F07FF8041E0FDD0123019306ABDD +:101B9000009304AA0123002100F076F8050020003C +:101BA00000F07EF8280009B030BD84256D42F9E7C9 +:101BB00030B587B002AB0493082302900391012152 +:101BC0007320059300F05EF8041E0EDD002304AAC6 +:101BD000019300930021013300F056F80500200026 +:101BE00000F05EF8280007B030BD84256D42F9E7AB +:101BF00030B587B003AB0493042303900121422046 +:101C0000059300F03FF8051E0FDD002304AA0193A1 +:101C100000930749013300F037F80400280000F072 +:101C20003FF8002C01DB200000E0012007B030BDB0 +:101C3000F303000030B589B003AB04930423039091 +:101C40000791422001210593069200F01BF8051E22 +:101C500010DD0123019306AB009304AA0123074979 +:101C600000F012F80400280000F01AF8002C01DB44 +:101C7000200000E0012009B030BDC046F2030000A2 +:101C80000DDF70470CDF704700B585B00293079BEE +:101C90000191039301A9069BFFF7F2FF05B000BD78 +:101CA0000EDF704707DF70470FDF704711DF7047A7 +:101CB00013DF704714DF704717DF70470FB4F0B5BC +:101CC0005746DE464E464546E0B595B01EAE08CEB8 +:101CD00000249A46002357469B4607960B933B7871 +:101CE000002B12D07A1C9046252B20D00BAD621C05 +:101CF0002C190B9223711F2A24D8012347469C4696 +:101D00003B78E3441400002BECD1002C04D02100DC +:101D10000CA806F0E9FD8344584615B03CBC90463B +:101D20009946A246AB46F0BC08BC04B018477B7885 +:101D3000253BDBB2532B01D900F09EFC854A9B006A +:101D4000D3589F46002320210CA80B9306F0CCFD0E +:101D50000B9AD2E70023804A0BAD984691462A00A1 +:101D60004546B04616003033621C34193260237188 +:101D70001F2A0BD84B4601355B5D002B12D0140097 +:101D8000621C3419326023711F2AF3D900232021E9 +:101D90000CA8336006F0A8FD4B4601355B5D326848 +:101DA000002BECD133004646A8461D00331D01939D +:101DB00008AB924600210C22180034689946FFF7C0 +:101DC00085F90F231A00494664482240825CC344C7 +:101DD0000A7003925246984621090132002901D126 +:101DE00000F0D7FD4E461940415C7170260A01D1C2 +:101DF00000F010FE1E404B46865D9E70230B01D105 +:101E000000F031FE1900434619404B46415CD97041 +:101E1000230C01D100F04BFE1E0043461E404B46F2 +:101E2000865D1E71230D01D100F04AFE1900434664 +:101E300019404B46415C5971230E01D100F076FEEA +:101E400046461E404B46865D240F9E7101D100F030 +:101E500090FE015DD97106230293023398465346E2 +:101E6000EB182A6019711F2A01D900F06BFD541C70 +:101E7000AA182C6016711F2C01D900F0A6FC029B39 +:101E8000002B01D100F05CFC4346DE1E4B469A5D00 +:101E9000631C2C192B6022711F2B01D900F014FD3B +:101EA000002E01D100F078FC4246161F4A46925D92 +:101EB0005C1CEB182C601A711F2C01D900F02FFD4F +:101EC000002E01D100F092FC43465E1F4B469A5D06 +:101ED000631C2C192B6022711F2B01D900F071FD9E +:101EE000002E01D100F00AFD4246961F4A46925D3F +:101EF0005C1CEB182C601A711F2C06D900232021C2 +:101F00000CA82B6006F0F0FC2C68002E01D100F02C +:101F100017FD46464B46073E9A5D631C2C192B6005 +:101F200022711F2B01D900F077FC002E01D100F0A7 +:101F30005AFD039A5C1CEB182C601A7108261F2CA2 +:101F400000D80FE2002320210CA82B6006F0CCFC67 +:101F50002C6807E2002C0010702D0010502D00108E +:101F6000331D029308AB180036680C2200219946F5 +:101F7000FFF7ACF8631C9A46002E00DAA6E30023B4 +:101F8000B046012603930BAD0A214046FEF70AFF37 +:101F90004A463031CBB213700A2140460593FEF712 +:101FA0007BFE002801D100F0E9FC0A21FEF7FAFED1 +:101FB0004B463031CEB25E7064214046FEF76CFE77 +:101FC000002801D100F017FD0A21FEF7EBFE3031A9 +:101FD000CBB24A46FA219370890040460193FEF73E +:101FE0005BFE002801D100F02DFD0A21FEF7DAFE8C +:101FF0004B463031CEB2DE70E4494046FEF74CFE2F +:10200000002801D100F049FD0A21FEF7CBFE4A4627 +:102010003031CBB21371DE4940460193FEF73CFEEE +:10202000002801D100F055FD0A21FEF7BBFE4B460A +:102030003031CEB25E71D7494046FEF72DFE002802 +:1020400001D100F05BFD0A21FEF7ACFE4A463031BB +:10205000CBB29371D04940460193FEF71DFE002894 +:1020600001D100F075FD0A21FEF79CFE4B46303190 +:10207000CEB2DE71C9494046FEF70EFE002801D1FE +:1020800000F091FD0A21FEF78DFE4A463031CBB2B9 +:102090001372C34940460193FEF7FEFD002801D1AB +:1020A00000F0A0FD4B463030C6B25E7208230493A8 +:1020B0000233984653462C192B6026711F2B01D9E9 +:1020C00000F052FC5346019A5C1CEB182C601A710C +:1020D0001F2C00D971E3049B002B01D100F0CCFC34 +:1020E0004346DE1E4B469A5D631C2C192B60227101 +:1020F0001F2B00D9F1E3002E01D100F0C9FC4246AC +:10210000161F4A46925D5C1CEB182C601A711F2C3E +:1021100001D900F0FBFB002E01D100F0E3FC4346A7 +:102120005E1F4B469A5D631C2C192B6022711F2B7E +:1021300001D900F04FFC002E01D100F0FDFC424619 +:10214000961F4A46925D5C1CEB182C601A711F2C7E +:1021500006D9002320210CA82B6006F0C5FB2C68B3 +:10216000002E01D100F0EDFC4346DE1F4B469A5D88 +:10217000631C2C192B6022711F2B00D955E3002EF4 +:1021800001D100F016FD46464A46083E925D5C1CB1 +:10219000EB182C601A711F2C00D966E3002E01D1B8 +:1021A00000F029FD46464B46093E9A5D631C2C19FA +:1021B0002B6022711F2B00D95FE3002E00D16CE34E +:1021C000059A5C1CEB182C601A711F2C01D900F0C9 +:1021D0009BFC039E0A36B3440237029E7FE5331D03 +:1021E00032780BAD9846631C2C190B9322711F2B70 +:1021F00000D97DE2012294461C00E34446460237A2 +:102200006DE5331D019308AB00210C2218003568E1 +:102210009946FEF75BFF63490F231A002A408A5C48 +:10222000984692464A46504610702809621C00287B +:1022300000D19FE24E461840085C70702E0A00D113 +:10224000ADE21E404B468E5D9E702B0B00D12BE302 +:102250001800434618404B46085CD8702B0C00D140 +:102260004FE31E0043461E404B468E5D1E712B0DF4 +:1022700000D1BDE21800434618404B46085C587137 +:102280002B0E00D1B2E346461E404B468E5D2D0F0D +:102290009E7100D1CEE3485DD871062302930233CC +:1022A00098460BAD2C190B9220711F2A00D959E2C8 +:1022B000541CAA182C6016711F2C00D928E2029B0E +:1022C000002B00D13CE24346DE1E4B469A5D631C68 +:1022D0002C192B6022711F2B00D921E2002E00D176 +:1022E0005AE24246161F4A46925D5C1CEB182C606F +:1022F0001A711F2C00D91BE2002E00D176E2434652 +:102300005E1F4B469A5D631C2C192B6022711F2B9C +:1023100000D939E2002E00D1F0E24246961F4A462B +:10232000925D5C1CEB182C601A711F2C00D93CE2EA +:10233000002E00D104E346464B46073E9A5D631CDF +:102340002C192B6022711F2B00D9B5E2002E00D171 +:1023500049E352465C1CEB182C601A7108261F2CAE +:1023600000D9EFE5B3440237019EB8E425220BAD56 +:10237000631C2C190B9322711F2B00D9C0E1012281 +:1023800094461C00E3440237A9E4C046102700002D +:10239000A086010040420F008096980000E1F505FC +:1023A00000CA9A3B602D0010331D019308AB002139 +:1023B0000C22180035689946FEF788FEE1492BE7A4 +:1023C000331D029308AB994635680C221800002192 +:1023D000FEF77CFE0A212800FEF7E4FC4A46303175 +:1023E000CBB213700A2128000493FEF755FC631C3E +:1023F0009A46002800D103E20A21FEF7D3FC4B469F +:102400003031CEB25E7064212800FEF745FC002812 +:1024100000D1F8E20A21FEF7C5FC3031CBB2984674 +:10242000FA214B46424689009A702800FEF734FC98 +:10243000002800D10FE30A21FEF7B4FC4B463031EF +:10244000CEB2DE70C0492800FEF726FC002800D17D +:1024500019E30A21FEF7A6FC3031CBB298464B4671 +:102460004246BA491A712800FEF716FC002800D12E +:102470003CE30A21FEF796FC4B463031CEB25E714A +:10248000B3492800FEF708FC002800D149E30A21DF +:10249000FEF788FC3031CBB298464B464246AD49F8 +:1024A0009A712800FEF7F8FB002800D159E30A21B1 +:1024B000FEF778FC4B463031CEB2DE71A6492800DB +:1024C000FEF7EAFB002800D178E30A21FEF76AFC58 +:1024D0003031CBB298464B464246A0491A7228008A +:1024E000FEF7DAFB002800D171E34B463030C6B26C +:1024F0005E72082303930233019353460BAD2C19EC +:102500000B9326711F2B00D925E2534642465C1CD3 +:10251000EB182C601A711F2C00D95FE1039B002B74 +:1025200000D1ADE2019BDE1E4B469A5D631C2C1967 +:102530002B6022711F2B00D9D8E1002E00D1B2E20E +:10254000019A5C1C161F4A46925DEB182C601A71AA +:102550001F2C00D9ECE1002E00D1AEE2019B5E1FE2 +:102560004B469A5D631C2C192B6022711F2B00D9DE +:102570001FE2002E00D1D0E2019A5C1C961F4A4651 +:10258000925DEB182C601A711F2C06D900232021B4 +:102590000CA82B6006F0A8F92C68002E00D1D4E21C +:1025A000019BDE1F4B469A5D631C2C192B60227128 +:1025B0001F2B00D941E1002E00D104E34A46019EC1 +:1025C0005C1C083E925DEB182C601A711F2C00D920 +:1025D00043E1002E00D102E34B46019E093E9A5D85 +:1025E000631C2C192B6022711F2B00D94DE1002E8A +:1025F00000D156E1049A5C1CEB182C601A710A2673 +:102600001F2C00D8E7E5002320210CA82B6006F042 +:102610006BF92C68DFE5331D994633681A789846C4 +:10262000002A25D000239A463B000BAD474698462A +:10263000631C2C1900262B6022711F2B0AD801362F +:10264000BA5D002A11D01C00631C2C192B6022716A +:102650001F2BF4D9534620210CA801362B6006F01D +:1026600043F9BA5D2B68002AEDD147461C00B344FC +:102670004E460237FFF733FB394B5B229946002366 +:102680000BAD9A46631C2C1900272B6022711F2B5F +:102690000BD84A460137D25D002A12D01C00631CB9 +:1026A0002C192B6022711F2BF3D9534620210CA823 +:1026B0002B6006F019F94A460137D25D2B68002AD3 +:1026C000ECD1BB441C004746FFF709FB0B932D23BD +:1026D0000BAD2C19237153461F2B00D9A1E1734276 +:1026E000984601239C4654460226E24403934BE459 +:1026F000002320210CA80B9306F0F6F80B9B79E53C +:10270000002320210CA80B9306F0EEF80B9B36E675 +:10271000002320210CA82B6006F0E6F82C68CEE5FB +:10272000002320210CA82B6006F0DEF82B68D5E5ED +:10273000002320210CA82B6006F0D6F82C68DBE5DE +:1027400002260FE6502D001010270000A086010081 +:1027500040420F008096980000E1F50500CA9A3BC0 +:10276000742D0010002320210CA80B9306F0BCF858 +:102770000B9A9DE553460BAD2C190B9223711F2A22 +:1027800063D814000126EDE5002320210CA82B605E +:1027900006F0AAF82B68BDE51C000326E2E500233D +:1027A00002930233564698467BE5002320210CA86D +:1027B0002B6006F099F82C68BAE5002320210CA8BC +:1027C0002B6006F091F82C6885E4002320210CA8EA +:1027D0002B6006F089F82C68FFF751FB00232021BD +:1027E0000CA82B6006F080F82C6897E60426B9E563 +:1027F000030030001E00032302930233984650E585 +:102800000BAD0B93049B2C19237153461F2B00D93E +:10281000C0E154460126DEE4002320210CA82B60F1 +:1028200006F062F82B68FFF780FB002320210CA83C +:102830002B6006F059F82B68A1E4002320210CA896 +:102840002B6006F051F82B68B5E60B9020210CA800 +:1028500006F04AF801260B9C84E5002320210CA8F1 +:102860002B6006F041F82C68B3E6002320210CA869 +:102870002B6006F039F82C6890E4002320210CA886 +:102880002B6006F031F82B6897E4002320210CA878 +:102890002B6006F029F82B68A9E6039E1C00093678 +:1028A00099E41C00092696E4030030001E00012371 +:1028B000029302339846F4E4002320210CA82B60F5 +:1028C00006F012F82B6841E5002320210CA82B60AC +:1028D00006F00AF82B68FFF7E3FA002320210CA882 +:1028E0002B6006F001F82B68FFF705FC0023202180 +:1028F0000CA82B6005F0F8FF2B681EE61C000526CF +:1029000030E50223029302339846CAE400232021D3 +:102910000CA82B6005F0E8FF2C68FFF7FCFB0023F8 +:1029200020210CA82B6005F0DFFF2C68FFF7C8FA08 +:10293000002320210CA82B6005F0D6FF2C680AE6A6 +:1029400006260FE5002320210CA82B6005F0CCFF04 +:102950002A68FFF78CFA002320210CA80B9305F0BE +:10296000C3FF0B9B9A46D0E5002320210CA82B60C7 +:1029700005F0BAFF2B689A46FFF7A4FB53462B607D +:10298000059B2C19237153461F2B00D9FAE054469E +:1029900021E453460398EB182A6018711F2A00D8C7 +:1029A000EFE629600CA8202105F09EFF01262C6887 +:1029B000D8E4002320210CA82B6005F095FF2B689C +:1029C000D7E5002320210CA82B6005F08DFF2B6894 +:1029D000FFF786FA002320210CA82B6005F084FF66 +:1029E0002B68FFF7A8FB1C000726BBE40423029317 +:1029F0000233984655E4059B019300230493023368 +:102A00009846FFF757FB049B984600230393023335 +:102A1000019372E5002302930233039E9846FFF769 +:102A20001EFA002320210CA80B9305F05DFF0B9BE1 +:102A30009A4654E6030030001E0005230293023339 +:102A400098462EE43300019E019301230493023340 +:102A50009846FFF72FFB3300464698460123039321 +:102A60000233019349E50B0031001E00012302935C +:102A700002339846FFF7F3F9039E0236FFF7ABFBEC +:102A80000226FFF7A8FB022303930233019334E5E8 +:102A9000039E1C000336FFF79EFB022304930233C0 +:102AA0009846FFF707FB1C000326FFF794FB022361 +:102AB000029302339846FFF7D2F90426FFF78BFB07 +:102AC0000B0031001E000323029302339846FFF7E8 +:102AD000C6F93300019E0193032304930233984601 +:102AE000FFF7E8FA039E0436FFF775FB330046460E +:102AF00098460323039302330193FEE404230493D3 +:102B000002339846FFF7D6FA002320210CA82B6049 +:102B100005F0EAFE2C68FFF75CFB1C000526FFF7BA +:102B20005AFB0423039302330193E6E40423029344 +:102B300002339846FFF793F9039E1C000536FFF712 +:102B40004AFB039E0636FFF746FB0626FFF743FBCC +:102B50003300019E01930523049302339846FFF747 +:102B6000A9FA33004646984605230393023301939E +:102B7000C3E40B0031001E00052302930233984684 +:102B8000FFF76DF9286020210CA805F0ADFE2C6838 +:102B9000FFF721FB0B9020210CA805F0A5FE0126D4 +:102BA0000B9CFFF718FB0623049302339846FFF7AC +:102BB00081FA039E1C000736FFF70DFB06230393E3 +:102BC0000233019399E41C000726FFF704FB33004E +:102BD0004646984607230393023301938DE4082663 +:102BE000FFF7F9FA3300019E0193072304930233A0 +:102BF0009846FFF75FFA039E0836FFF7ECFAC046E7 +:102C00006C2300107826001078260010782600101B +:102C100078260010782600107826001078260010FC +:102C200078260010782600107826001078260010EC +:102C300078260010782600107826001078260010DC +:102C400078260010782600107826001078260010CC +:102C500078260010782600107826001078260010BC +:102C600078260010782600107826001078260010AC +:102C7000782600107826001078260010782600109C +:102C8000782600107826001078260010782600108C +:102C9000782600107826001078260010782600107C +:102CA000782600107826001078260010782600106C +:102CB000782600107826001078260010782600105C +:102CC00078260010782600107826001002220010C6 +:102CD000782600107826001078260010782600103C +:102CE000782600107826001078260010782600102C +:102CF0007826001078260010DE210010601F0010DA +:102D0000782600107826001078260010782600100B +:102D1000601F00107826001078260010782600101A +:102D2000782600107826001078260010541D001018 +:102D3000782600107826001016260010782600103D +:102D4000C02300107826001078260010A823001059 +:102D50003031323334353637383961626364656611 +:102D600030313233343536373839414243444546C1 +:102D7000307800005B556E737570706F72746564A7 +:102D8000205461675D0000000000000000000000AA +:102D90000000000000000000000000000000000033 +:102DA000024A034BD358036000207047401C0108BF +:102DB000041C0000F0B5DE4657464E464546E0B5D9 +:102DC000ABB000F023F9002806D02BB03CBC9046F5 +:102DD0009946A246AB46F0BD80218848090209F019 +:102DE0006BFB19F065FC002872D10DF0F1F9002899 +:102DF000EBD12C22002113A8FEF768F901235B42D6 +:102E00009B467F4C03AE0BAD80210120090640425A +:102E1000FEF748FF1023184258D01EA91800FEF7ED +:102E200043FF002853D11E998B1C54DB002953DB30 +:102E300051D12C2313AA1F98FEF738FF2C2857D006 +:102E40005B4601334DD0202200213000FEF73EF9D1 +:102E5000202200212800FEF739F904231A0001E09E +:102E60000A1E3ED01EA88446511E8B0063441B6977 +:102E7000002BF5D013AB33602C23736023AB994642 +:102E8000E0235B01904601279A46474545D24B46D1 +:102E900003221B685046D91C91435246A258801AFF +:102EA00081422FD8A018891852460190A1500200E3 +:102EB00039001F98FEF7FAFE49460198FB0004C945 +:102EC000F050F31889465A600137DEE7FEE7FEE767 +:102ED0009320404279E7FEE701001F98FEF7EAFEE3 +:102EE00092E784277F4239001F98FEF7E3FE8BE7C5 +:102EF000139B9B46402BA6D9012384275B429B460C +:102F00007F42F0E700273F4B39002000E750FEF7F3 +:102F1000DDF85346E7508D3FE5E7042001E0101E41 +:102F200039D01EA98C46421E930063441B6A002BB5 +:102F3000F5D0E0210023490162589C4601900CE045 +:102F4000A018D219DF00E8514846EF197860012037 +:102F500084460198013383423BD01EA881469F00DE +:102F60004F44386AC71C814603208743E020400154 +:102F7000801A8742E4D96346002B00D062500027B4 +:102F8000204B39002000E750FEF7A0F8E0235B015A +:102F9000E7508D3FA7E79946209B41460193019A50 +:102FA000184B3000E2505B46174A9B00D7584B46FF +:102FB0002A00B847002380461F004F450CD0FA0076 +:102FC000AB1839005B68AA581F98FEF771FE0137ED +:102FD000F3E762509946DFE70023474698464246AA +:102FE000084B4146E250043B9946E2582000FEF768 +:102FF0006DF84B464246E25075E7C046409C0008DB +:10300000401C0108041C0000BC7300108A2210B58B +:10301000520100210248FEF759F8002010BDC046B9 +:10302000483801080023F0B583B0060001A80D0060 +:1030300014000193FFF7B4FE00282CD12B68002B5D +:103040005AD1002C5BD02F4B20601968002924D066 +:103050008A2292009A58002A32D08A22D2009A58A4 +:10306000002A31D0CF22D2009A58002A30D08A22AA +:1030700012019A58002A2FD0234A9A58002A2FD09A +:10308000CF2212019A58002A2ED0204A9A58002A9C +:103090002ED08520404203B0F0BD012294460A01A3 +:1030A0005218920052180121D200019F995099188C +:1030B0004F608E6061460C329B1829602360EAE7FE +:1030C000022201219446EAE7032202219446E6E720 +:1030D000042203219446E2E7052204219446DEE718 +:1030E000062205219446DAE7072206219446D6E710 +:1030F000083207219446D2E789204042CBE7872057 +:103100004042C8E748380108C80A0000180F00000C +:10311000F0B5C646002300B582B00568804601A818 +:103120000193FFF73DFE071E28D1013D072D2AD848 +:103130002C0160198000154E4019C0003358012B36 +:1031400021D133185A6801998A421CD19B680C30EE +:10315000013B30180022032B02D80D4A9B009A58DD +:103160000021FDF7B3FF002342466419A40065194E +:10317000ED0073517519AB606B601360380002B0DD +:1031800004BC9046F0BD87277F42F7E74838010826 +:10319000C0740010002370B582B0050001A80E00B5 +:1031A00014000193FFF7FCFD002816D1013E072E05 +:1031B00015D83101891989000A4A8919C9008B5823 +:1031C000012B0CD153189E68AE4208D15B68019D5B +:1031D000AB4204D10C318918216002B070BD892046 +:1031E0004042FAE748380108F0B5CE464746140099 +:1031F000002280B583B0019201292BD1013B012B24 +:1032000028D843682C2B25D16368042B22D103686E +:1032100027681E69A36801AA9846E36831003E60EA +:1032200001209946FFF7B6FF051E05D0280003B020 +:103230000CBC90469946F0BD23003E600C334A46D4 +:10324000414601980BF02CFF051EEFD03800FFF728 +:103250005FFFEBE781256D42E8E7C046F0B500244B +:1032600083B001390194012921D8012B1FD1436872 +:103270002C2B1CD15368042B19D1036815681969CC +:103280008668C76801AA29600120FFF783FF041E32 +:1032900002D0200003B0F0BD3A00310001980BF0DD +:1032A000D5FE041EF5D02800FFF732FFF1E7812498 +:1032B0006442EEE7F0B5002485B00094012931D1D5 +:1032C000012B2FD15368042B2CD143682C2B29D1EF +:1032D0000368166819699D68019128000021DF685C +:1032E00000F0E6FB041E02D0200005B0F0BD6A46E7 +:1032F00001A90120FFF796FE041EF5D1019B02A94A +:103300003360280000F004FC041EEDD13B0002995C +:10331000039A00980BF08CFE041EE5D03000FFF7F6 +:10332000F7FEE1E781246442DEE7C046F0B5002401 +:1033300085B00094012931D1012B2FD15368042B82 +:103340002CD143682C2B29D10368166819699D6814 +:10335000019128000021DF6800F0AAFB041E02D0C2 +:10336000200005B0F0BD6A4601A90120FFF75AFE12 +:10337000041EF5D1019B02A93360280000F0C8FBB0 +:10338000041EEDD13B000299039A00980BF057FE02 +:10339000041EE5D03000FFF7BBFEE1E78124644264 +:1033A000DEE7C046F0B5D6464F464646140000223A +:1033B000C0B5013984B00392012931D8013B012BFA +:1033C0002ED843682C2B2BD16368042B28D103689B +:1033D00026681969C36887689846A36801209946DA +:1033E000E3683160E26003AA9A46FFF7D3FE051E48 +:1033F00006D0280004B01CBC90469946A246F0BDF9 +:1034000053460C34009301944B46424639000398CE +:103410000BF07EFE051EECD03000FFF779FEE8E7EA +:1034200081256D42E5E7C046F0B5C646140000228E +:1034300000B582B0019201292DD1013B012B2AD880 +:1034400043682C2B27D16368042B24D1036826689A +:103450001969E368A76801203160E26001AA984613 +:10346000FFF798FE051E04D0280002B004BC904669 +:10347000F0BD230042460C33390001980BF0FEFEEC +:1034800005003000002D03D1FFF742FE0500EBE7F9 +:10349000FFF73EFEE8E781256D42E5E730B5002401 +:1034A00083B00194012922D1012B20D143682C2B18 +:1034B0001DD15368042B1AD103681568196901AA34 +:1034C00029600120FFF766FE002802D0200003B02B +:1034D00030BD01980BF0BAFC04002800002C03D189 +:1034E000FFF716FE0400F1E7FFF712FEEEE7812476 +:1034F0006442EBE7862040427047C0468620404247 +:103500007047C04670B5002482B00094012923D1D1 +:10351000012B21D15368042B1ED143682C2B1BD1C6 +:10352000016815680B69CE6801936A462B6001A992 +:103530000320FFF777FD041E02D0200002B070BD0B +:10354000019B31002B6000980AF030FC041EF4D07F +:103550002800FFF7DDFDF0E781246442EDE7C04677 +:10356000F0B5002483B001390194012921D8012B41 +:103570001FD143682C2B1CD15368042B19D103682D +:10358000156819698668C76801AA29600320FFF7D2 +:1035900001FE041E02D0200003B0F0BD3A0031004D +:1035A00001980AF045FC041EF5D02800FFF7B0FD95 +:1035B000F1E781246442EEE7F0B5C646140000222C +:1035C00000B582B0019201292DD1013B012B2AD8EF +:1035D00043682C2B27D16368042B24D10368266809 +:1035E0001969E368A76803203160E26001AA984680 +:1035F000FFF7D0FD051E04D0280002B004BC9046A1 +:10360000F0BD230042460C33390001980AF01AFC41 +:1036100005003000002D03D1FFF77AFD0500EBE730 +:10362000FFF776FDE8E781256D42E5E7F0B5002478 +:1036300083B001390194012926D8012B24D1436894 +:103640002C2B21D15368042B1ED1036815681969EE +:103650008668C76801AA29600320FFF79BFD041E46 +:1036600002D0200003B0F0BD3A00310001980AF00A +:10367000EFFC04002800002C03D1FFF749FD0400F3 +:10368000EFE7FFF745FDECE781246442E9E7C04638 +:1036900030B5002483B00194012922D1012B20D11F +:1036A00043682C2B1DD15368042B1AD1036815686D +:1036B000196901AA29600320FFF76CFD002802D0D8 +:1036C000200003B030BD01980AF022FB040028005E +:1036D000002C03D1FFF71CFD0400F1E7FFF718FDF4 +:1036E000EEE781246442EBE730B5002483B0009418 +:1036F0000194012924D1012B22D143682C2B1FD105 +:103700005368042B1CD10368156819696A460320A5 +:10371000FFF740FD041E02D0200003B030BD01AA17 +:1037200029000320FFF77EFC041EF5D101990098C3 +:103730000AF040FE041EEFD02800FFF7E9FCEBE79B +:1037400081246442E8E7C04630B5013983B00129DD +:1037500015D8012B13D843682C2B10D1036854685B +:10376000DD6881681368C068009400240432146026 +:103770000192020028000AF08AFC03B030BD8120CB +:103780004042FAE710B5013982B0022910D8002B67 +:103790000ED143682C2B0BD104680369C268816881 +:1037A000E4684069009020000AF0D9FD02B010BD25 +:1037B00081204042FAE7C046F0B5C646002400B575 +:1037C00084B00094012936D1012B34D15368042BE5 +:1037D00031D143682C2B2ED1056800212B69AE68AE +:1037E0000193EB6830001768984600F061F9041EF9 +:1037F00004D0200004B004BC9046F0BD2B696A469A +:103800003B6001A90220FFF70DFC041EF1D1019BD2 +:1038100002A93B60300000F07BF9041EE9D1434669 +:103820000299039A00980AF017FF041EE1D03800AD +:10383000FFF76EFCDDE781246442DAE7F0B5C646A7 +:10384000002400B584B00094012936D1012B34D175 +:103850005368042B31D143682C2B2ED105680021ED +:103860002B69AE680193EB6830001768984600F04A +:103870001FF9041E04D0200004B004BC9046F0BD23 +:103880002B696A463B6001A90220FFF7CBFB041EAF +:10389000F1D1019B02A93B60300000F039F9041E10 +:1038A000E9D143460299039A00980AF0DCFE041E0F +:1038B000E1D03800FFF72CFCDDE781246442DAE731 +:1038C000F0B5002483B001390194012921D8012BDE +:1038D0001FD143682C2B1CD15368042B19D10368CA +:1038E000156819698668C76801AA29600220FFF770 +:1038F00051FC041E02D0200003B0F0BD3A0031009C +:1039000001980AF0B7FE041EF5D02800FFF700FC6E +:10391000F1E781246442EEE7F0B5C64614000022C8 +:1039200000B582B0019201292DD1013B012B2AD88B +:1039300043682C2B27D16368042B24D103682668A5 +:103940001969E368A76802203160E26001AA98461D +:10395000FFF720FC051E04D0280002B004BC9046EE +:10396000F0BD230042460C33390001980AF0B2FE44 +:1039700005003000002D03D1FFF7CAFB0500EBE77F +:10398000FFF7C6FBE8E781256D42E5E7F0B50024C7 +:1039900083B001390194012926D8012B24D1436831 +:1039A0002C2B21D15368042B1ED10368156819698B +:1039B0008668C76801AA29600220FFF7EBFB041E96 +:1039C00002D0200003B0F0BD3A00310001980AF0A7 +:1039D000B0FE04002800002C03D1FFF799FB04007F +:1039E000EFE7FFF795FBECE781246442E9E7C04687 +:1039F00030B5002483B00194012922D1012B20D1BC +:103A000043682C2B1DD15368042B1AD10368156809 +:103A1000196901AA29600220FFF7BCFB002802D027 +:103A2000200003B030BD01980AF0EEFC040028002D +:103A3000002C03D1FFF76CFB0400F1E7FFF768FBF4 +:103A4000EEE781246442EBE7862040427047C0469F +:103A5000862040427047C046F0B506008BB00F008C +:103A60001500002820D0002A1ED06C4628220021F4 +:103A70002000FDF72BFB2B0007CC07C307CC07C3A7 +:103A800007CC07C3002022681A60B38A2B803368F2 +:103A90006B60F3682B61B3686B6133696B8073682B +:103AA000AB60EF600BB0F0BD81204042FAE7C0464A +:103AB000002330B583B0040001A80D000193FFF787 +:103AC0006FF9002817D1104B002203E001320C33AC +:103AD000202A12D019790029F8D01968A142F5D10D +:103AE00053000A499B189B005B5801998B4207D1F0 +:103AF000002D00D02A6003B030BD88204042FAE794 +:103B000085204042F7E7C0468C49010888490108F2 +:103B1000002330B583B0050001A80C000193FFF726 +:103B20003FF9002804D1002C04D0019B256063607C +:103B300003B030BD81204042FAE7C046074A002367 +:103B400003E001330C32202B05D011780029F8D185 +:103B50000360002070478D204042FBE79049010838 +:103B600030B583B0040001A80D00FFF719F9002853 +:103B700009D16300054A1B1901999B009950D3187C +:103B800001225D601A7203B030BDC0468849010849 +:103B9000862040427047C046862040427047C0465B +:103BA000F0B5CE46474680B502399BB0012963D8AF +:103BB000012B61D143682C2B5ED1C368182B5BD1DC +:103BC0005368042B58D11368856806694769282211 +:103BD000002106A89846FDF779FA002300240393F4 +:103BE000274B03E001340C33202C42D01A78002AF2 +:103BF000F8D103A8FFF7D4F8002804D01BB00CBC00 +:103C000090469946F0BD039B9946002D34D028225A +:103C1000002110A8FDF75AFA282210A906A8FDF7DE +:103C2000FDF9AB8A02AA13822B6831000793EB6877 +:103C300006A80A93AB680B932B6953826B683A0012 +:103C4000019308934B46099304AB09F0B5FF434633 +:103C5000049A1A600028D1D163000A4A1C19039BF8 +:103C6000A400A35043461B68141963600123237208 +:103C7000C4E78D204042C1E781204042BEE7C046F4 +:103C8000904901088849010870B584B0022944D1DF +:103C9000012B42D143682C2B3FD1C368042B3CD16C +:103CA0005368042B39D1836816681D6800241C4BA7 +:103CB00003E001340C33202C26D01A78002AF8D1E6 +:103CC00001A8FFF76DF800281CD1019B154A03934A +:103CD000C0231B06EB180295934218D902AA2800AC +:103CE00003990CF0FAFB029B336000280AD16300B1 +:103CF0000D4A1C19019BA400A3503368141963607A +:103D00000123237204B070BD8D204042FAE73200D7 +:103D10002800039900F05EFBF4E781204042F1E7C0 +:103D200090490108FFFFFF3F8849010870B582B044 +:103D3000012933D1002B31D142682C2A2ED10268BF +:103D4000684694680093FFF72BF8002821D1154BA3 +:103D5000002203E001320C33202A1CD019790029FB +:103D6000F8D019688C42F5D1852055000E4EAD185B +:103D7000AD00A959009B404299420AD1200000940D +:103D800001910CF0BFFB002803D1A85175196860A0 +:103D9000287202B070BD88204042FAE7812040427C +:103DA000F7E7C0468C4901088849010870B582B020 +:103DB000012933D1002B31D142682C2A2ED102683F +:103DC000684694680093FEF7EBFF002821D1154B5D +:103DD000002203E001320C33202A1CD0197900297B +:103DE000F8D019688C42F5D1852055000E4EAD18DB +:103DF000AD00A959009B404299420AD1200000948D +:103E0000019109F0C4FD002803D1A851751968601B +:103E1000287202B070BD88204042FAE781204042FB +:103E2000F7E7C0468C4901088849010870B590B091 +:103E300001295AD1012B58D143682C2B55D15368F5 +:103E4000182B52D1036816680021282206A89C6806 +:103E5000FDF73CF9002304A80493FEF7A1FF051E1B +:103E60001DD1234B002203E001320C33202A19D04C +:103E700019790029F8D019688C42F5D185255300AD +:103E80009A181C4B9200D358049A6D42934206D163 +:103E9000002303A80393FEF783FF051E05D0280027 +:103EA00010B070BD88256D42F9E7039906AA20007D +:103EB0000494059109F0C0FD051EF0D1002E14D028 +:103EC000182200213000FDF701F902AB1B8AB382F2 +:103ED000079B33600A9BF3600B9B0193B36002ABBB +:103EE0005B8A3361089B7360D9E781256D42D6E711 +:103EF0008C4901088849010870B598B0012948D15A +:103F0000012B46D143682C2B43D15368182B40D149 +:103F100014680021282204A8FDF7D8F803A8FEF7AA +:103F20003FFF051E02D0280018B070BD039E002C74 +:103F30002FD0282200210EA8FDF7C8F80EA92822AC +:103F400004A8FDF76BF8A38A02AA1381236804A8CA +:103F50000593E3680893A368099323695381636811 +:103F60000796069309F03CFD182200212000FDF77A +:103F7000ADF802AB1B89A382059B2360089BE3601D +:103F8000099B0193A36002AB5B892361069B63607D +:103F9000C9E781256D42C6E7F0B5150085B0012956 +:103FA00034D1012B32D843682C2B2FD1036802A8BF +:103FB0009C680023166857680293FEF7F1FE0028FC +:103FC0001FD1144B002203E001320C33202A1AD0F7 +:103FD00019790029F8D019688C42F5D18520530051 +:103FE0009A180D4B9200D158029B4042994208D139 +:103FF000043500953B00320020000294039109F043 +:104000009FFD05B0F0BD88204042FAE78120404284 +:10401000F7E7C0468C49010888490108F0B515004A +:1040200085B0012940D1012B3ED843682C2B3BD1D0 +:10403000036802A89C680023166857680293FEF77D +:10404000AFFE002825D11A4A002103E001310C32CD +:10405000202920D010790028F8D013689C42F5D18F +:1040600085204B005918134B8900CB58029A4042C7 +:1040700093420ED120000393029400F087F92B1D88 +:1040800000280BD1009332003B000298039909F0FD +:1040900075FD05B0F0BD88204042FAE73A003100D6 +:1040A000200000F025FAF4E781204042F1E7C04605 +:1040B0008C4901088849010870B582B0012933D1C3 +:1040C000002B31D142682C2A2ED1026868469468B0 +:1040D0000093FEF765FE002821D1154B002203E076 +:1040E00001320C33202A1CD019790029F8D0196824 +:1040F0008C42F5D1852055000E4EAD18AD00A95962 +:10410000009B404299420AD12000009401910CF09A +:1041100012FA002803D1A85175196860287202B0FC +:1041200070BD88204042FAE781204042F7E7C04650 +:104130008C49010888490108F0B5CE46474680B54C +:104140009DB0022900D08DE0012B00D08AE04368A9 +:104150002C2B00D086E05368042B00D082E0C3688B +:10416000182B00D07EE0036887689E6813680021E2 +:10417000282208A89846FCF7A9FF002300240393EF +:104180003B4B03E001340C33202C68D01A78002A12 +:10419000F8D103A8FEF704FE051E05D028001DB0C7 +:1041A0000CBC90469946F0BD039B9946002F59D010 +:1041B0002822002112A8FCF789FF282212A908A8AA +:1041C000FCF72CFFBB8A02AA13833B6806A809935D +:1041D000FB680C93BB680D933B6953837B68069522 +:1041E00001930A934B460B93FEF7DAFD051ED5D1DA +:1041F000204B002203E001320C33202A35D01979FC +:104200000029F8D019688E42F5D1852553009A18F7 +:10421000194F9200D359069A6D429342BED10023A2 +:1042200004A80493FEF7BCFD051EB7D1049904ABA6 +:1042300008AA30000696079109F0EDFC4346049A5F +:10424000051E1A60AAD16300039A1B199B00DA515C +:1042500042461268FB185A6001221A729EE78D25A9 +:104260006D429BE781256D4298E788256D4295E771 +:10427000904901088C49010888490108F0B59BB0B4 +:10428000022957D1012B55D143682C2B52D1C36839 +:10429000182B4FD15368042B4CD1166885682822FF +:1042A000002106A8FCF712FF002300240393234BF0 +:1042B00003E001340C33202C39D01A78002AF8D1CD +:1042C00003A8FEF76DFD002801D01BB0F0BD039FD1 +:1042D000002D2FD02822002110A8FCF7F7FE28225D +:1042E00010A906A8FCF79AFEAB8A02AA13822B68D3 +:1042F00004A90793EB6806A80A93AB680B932B6994 +:1043000053826B680997019308930BF011FF049B8C +:1043100033600028D9D16300094A1C19039BA4000B +:10432000A35033681419636001232372CDE78D20F5 +:104330004042CAE781204042C7E7C0469049010891 +:104340008849010810B504008CB02822002102A879 +:10435000FCF7BCFE69462000FFF7DAFB03000120F2 +:10436000002B01D00CB010BD02AA0098019909F0F1 +:1043700063FB002805D0200018F0A4FE18F026FEEC +:10438000F0E702A809F02CFBF5E7C04610B50400E1 +:104390008CB02822002102A8FCF798FE6946200074 +:1043A000FFF7B6FB03000120002B01D00CB010BDBD +:1043B00002AA0098019909F03FFB002805D02000CF +:1043C00018F080FE18F01EFFF0E702A809F008FBC5 +:1043D000F5E7C04630B5A9B004000490059115007A +:1043E000002128220DA8FCF771FE442320000C9325 +:1043F00018F0ECFD00284DD008A8FFF79FFB00281F +:1044000001D029B030BD0AAA09A9200018F004FF84 +:104410000028F6D102A8844616210CAB00930BAA03 +:1044200017AB6144200018F0B9FF0028E9D1099BBF +:1044300011930A9B129302ABD98A159B0393002B0D +:1044400025D0002300220DA809F0D5FA0B9B134AB2 +:10445000934200D9124B02AAD38500230E930F93E7 +:10446000059B17A9039310930C9A04AB0DA809F0B0 +:10447000A3FB049929600028C3D10898FFF770FBBB +:104480000028BED12868210018F0AEFDB9E702ABC4 +:104490009985DBE78C204042B3E7C046F8FF000077 +:1044A000FFFF000070B51E000C00150084B018F06E +:1044B00009FE0A9B2A000293099B21000193089B95 +:1044C0000093330019F04EF804B070BD70B51E00B3 +:1044D0000C00150082B018F0F5FD079B2A0001932F +:1044E000069B21000093330019F0FCF802B070BD68 +:1044F00070B515001E000C0018F0E4FD33002A0012 +:10450000210019F0ADF970BDF0B5DE4657464E46B4 +:104510004546E0B501398FB01400022941D8012B7E +:104520003FD843682C2B3CD105684769EB68AE68DF +:104530000993AB6A00210A9383689846C368994639 +:1045400013689A4653689B46036930000B93002317 +:104550005360FFF7ADFA002806D00FB03CBC904680 +:104560009946A246AB46F0BD0CA93000FFF7D0FA41 +:104570000028F2D15A460692524605924A460492C3 +:1045800042462B0003920B9A043401920A9A183384 +:10459000009207940297099A0C980D990AF0C4FEAC +:1045A000DBE781204042D8E7F0B5DE4657464E466D +:1045B0004546E0B501398FB01400022941D8012BDE +:1045C0003FD843682C2B3CD105684769EB68AE683F +:1045D0000993AB6A00210A9383689846C368994699 +:1045E00013689A4653689B46036930000B93002377 +:1045F0005360FFF75DFA002806D00FB03CBC904630 +:104600009946A246AB46F0BD0CA93000FFF780FAF0 +:104610000028F2D15A460692524605924A46049222 +:1046200042462B0003920B9A043401920A9A1833E3 +:10463000009207940297099A0C980D990AF0F4FEDB +:10464000DBE781204042D8E7862040427047C046E1 +:10465000862040427047C046862040427047C04690 +:10466000862040427047C046862040427047C04680 +:10467000862040427047C046862040427047C04670 +:10468000862040427047C046862040427047C04660 +:10469000862040427047C046F0B5D6464F46464653 +:1046A000C0B5013986B01400012941D8012B3FD88B +:1046B00043682C2B3CD1036887689D68DE68C3681B +:1046C0000021984613682800994653689A46FFF7D8 +:1046D000EFF9002805D006B01CBC90469946A246CA +:1046E000F0BD2800FFF72EFE002814D104A92800F1 +:1046F000FFF70EFA0028EED1534602934B46019382 +:1047000043460434009303943B0032000498059917 +:104710000AF044F8DFE7534601934B460434009314 +:10472000029443463A0031002800FFF7BBFED2E76F +:1047300081204042CFE7C046F0B5CE46474680B51F +:10474000013987B002293AD8002B38D143682C2B85 +:1047500035D1036886689C68DD680369C768984638 +:104760004369002120009946FFF7A2F9002804D0F0 +:1047700007B00CBC90469946F0BD2000FFF7E2FD63 +:10478000002811D104A92000FFF7C2F90028EFD1B9 +:104790004B4602934346009701932A003300049846 +:1047A00005990AF03BF9E3E74B4601934346320093 +:1047B000009329003B002000FFF788FED8E7812006 +:1047C0004042D5E7F0B5DE4657464E464546E0B591 +:1047D000013995B01400022950D8012B4ED84368F6 +:1047E0002C2B4BD1036856689D68DF6883680021D5 +:1047F0000693C36898460369994643690AA89A468E +:10480000136828229B46FCF761FC00212800FFF773 +:104810004FF9002806D015B03CBC90469946A246F8 +:10482000AB46F0BD08A92800FFF772F90028F2D1C5 +:104830000AAA0898099909F0FFF80028EBD102AB01 +:104840005B8C0AA8079302AB1D8C09F0C9F8114BC9 +:104850001D40114B9D4214D05B4603935346029377 +:104860004B46019343460434009305940496069BFB +:104870003A00089809990AF0CFF9CCE78120404224 +:10488000C9E7079B0733DB089E42E5D28A204042F6 +:10489000C1E7C046FFCFFFFF01400000F0B5DE4694 +:1048A00057464E464546E0B501398BB01400022903 +:1048B00037D8012B35D843682C2B32D10368866852 +:1048C0009D68DB68C76807930369002198464369C0 +:1048D0002800994613689A4653689B46FFF7E8F804 +:1048E000002806D00BB03CBC90469946A246AB4689 +:1048F000F0BD08A92800FFF70BF90028F2D15B46AC +:104900000493534603934B46029343460434019366 +:10491000059400973300079A089809990AF010FA4D +:10492000E0E781204042DDE770B5002482B00094CA +:10493000012927D1012B25D15368042B22D14368AB +:104940002C2B1FD10368166819696A46019104204F +:1049500001A9DD68FEF766FB041E0AD1019B0098E1 +:1049600033600A4B9D4207D029000BF0F5F9041E75 +:1049700004D1200002B070BD0560FAE73000FEF7F8 +:10498000C7FBF6E781246442F3E7C046000F00B09E +:1049900030B583B001291AD1012B18D143682C2BD3 +:1049A00015D15368042B12D10024036815681969C6 +:1049B00001AA04200194FEF7EDFB002802D02C6030 +:1049C00003B030BD290001980AF038FFF8E78120D4 +:1049D0004042F5E710B582B0012914D1002B12D165 +:1049E00042682C2A0FD1026804201169546901AA77 +:1049F0000193FEF7CFFB002803D1210001980AF0B4 +:104A000027FF02B010BD81204042FAE7F0B5C6464C +:104A100000B5013982B001293ED8002B3CD1426853 +:104A20002C2A39D10268C7689688116982680420E7 +:104A300090466A460093FEF7ADFB041E0BD1009D25 +:104A40001A4B2A689A420BD03B004246310028009C +:104A50000BF0A8F90400200002B004BC9046F0BDA1 +:104A6000134B9E421BD101A8FEF79AF9041EF2D106 +:104A70003E1D3100012007F04FFDA861002811D034 +:104A8000042201A9FCF7CAFAAB693A00181D414695 +:104A9000FCF7C4FAEE61DEE781246442DBE7872499 +:104AA0006442D8E78D246442D5E7C046000F00B0C9 +:104AB0000102000030B583B0012916D1012B14D8B2 +:104AC00043682C2B11D130CA036801AA196900234D +:104AD00004200193FEF75EFB002804D12A00210088 +:104AE00001980AF0C3FE03B030BD81204042FAE7CE +:104AF00070B584B0012925D1002B23D142682C2A1E +:104B000020D10268002194689688200015690193DD +:104B1000FEF7CEFF002801D004B070BD01AA290025 +:104B20000430FEF737FB0028F6D102A92000FEF77B +:104B3000EFFF0028F0D1029A039B310001980BF09F +:104B400038F9E9E781204042E6E7C046F0B593B086 +:104B5000022940D1012B3ED143682C2B3BD1C368A5 +:104B6000182B38D15368042B35D1036885681C692C +:104B7000002316680021282208A80393FCF7A6FA50 +:104B800003AA21000420FEF705FB002801D013B082 +:104B9000F0BD05A8FEF7D2FF0028F8D104A8FEF763 +:104BA000FFF80028F3D108AA04992800FEF754FF63 +:104BB0000028ECD103991B4B0A689A420ED006AA32 +:104BC00008A80BF071F8069931600028DFD105982C +:104BD000FEF7C6FFDBE781204042D8E76B465C8CDE +:104BE0000734E408402C14D80D00CF69DD35FF35BB +:104BF00088690023019400950022390017F0F4FF22 +:104C000000280AD106AB2200290008A808F0D4FF2A +:104C1000D9E7069B8D383360B9E79320069B404265 +:104C20003360B4E7000F00B070B582B001293BD10A +:104C3000012B39D143682C2B36D15368042B33D147 +:104C4000036816681C69002301AA019321003460DF +:104C50000420FEF79FFA002500280DD13460019C46 +:104C6000134B22689A420AD020000AF05DFC051E10 +:104C700015D03000FEF74CFA280002B070BDA069D4 +:104C8000002806D0E2690021FCF720FAA06907F0AD +:104C90004BFC8722002192002000FCF717FA30001D +:104CA000FEF736FA0500E7E781256D42E4E7C046E6 +:104CB000000F00B0F0B5C64600B5013986B0012935 +:104CC0002DD8002B2BD142682C2A28D10268C1682C +:104CD00094688768884603930021200015699688A8 +:104CE000FEF7E6FE002803D006B004BC9046F0BDF7 +:104CF00003AA29000430FEF74DFA0028F4D104A9D4 +:104D00002000FEF705FF0028EED1434600970193EF +:104D1000049A059B310003980BF07EF8E4E78120AC +:104D20004042E1E710B5012908D1012B06D84368BC +:104D30002C2B03D103CA0BF0C3F810BD81204042D5 +:104D4000FBE7C046F0B5D6464F464646C0B50139EA +:104D500086B0140001292FD8012B2DD843682C2BA5 +:104D60002AD1036812689D689046DE686268C3684D +:104D700087680021280091469A46FEF799FE002890 +:104D800005D006B01CBC90469946A246F0BD04A9C9 +:104D90002800FEF7BDFE0028F3D14B4602934346A0 +:104DA000019353460434009303943B000499059AFD +:104DB00030000BF0AFF8E4E781204042E1E7C04665 +:104DC00030B51B4C0569A54414A90291802104AAA1 +:104DD000C9000400036A009201950391402D23D875 +:104DE00014498B421BD9144BA168606819602B00D1 +:104DF0000021FCF75BFF854213D1012302AA0121A8 +:104E0000684600F0D3FA051E05D1039B6068029A3C +:104E10000021FCF74DFF2800084B9D4430BD039353 +:104E2000E1E784256D42F6E787256D42F3E7C0464A +:104E3000ACFBFFFFFF0300000076010854040000F4 +:104E4000F0B5CE46474680B5A9B000F09BFA0028E1 +:104E500020D1594B17AC98464123994603AE04AF75 +:104E60008021012009064042FCF71CFFC30621D423 +:104E7000830611D443060ED50BA94020FCF714FF7E +:104E80000B98831C28DB002829DA00210C98FCF7FA +:104E900011FFE5E7FEE7FEE721002020FCF704FF15 +:104EA00021688B1C1ADB00295ADA00216068FCF7A4 +:104EB00001FFD5E721001020FCF7F6FE23689A1CBD +:104EC0000BDB002BF1DB08D12000FFF779FF01009D +:104ED0006068FCF7EFFEC3E7FEE7FEE7FEE70028A9 +:104EE000FAD14B4606930123089303330A93149B8C +:104EF0000594079609970193012B2ED1159B0193D9 +:104F0000042B2AD10D9B010001934346019A1A609C +:104F1000032305AA00F0A8FA139A049B0500019246 +:104F20009A4217D30C98002D0FD122000021FCF7D4 +:104F3000BFFE089B320001210C98FCF7B9FE0A9BCA +:104F40003A0002210C98FCF7B3FE29000C98FCF7FC +:104F5000B1FE85E78A256D42F7E787256D42F4E7C4 +:104F60000029BBD12269236A059606920B970C9300 +:104F70006068042A1DD1042B1BD14246A568156028 +:104F80003200FCF793FE2369984212D101230BAA49 +:104F9000190005A800F038FA051E05D101000C9B88 +:104FA0000B9A6068FCF784FE29006068FCF782FEBB +:104FB00056E787256D42F7E700760108F0B5DE4633 +:104FC00057464E464546E0B5CDB006000D00924628 +:104FD00000F084FA041E09D000F0AAFA20004DB0B7 +:104FE0003CBC90469946A246AB46F0BD07230095CF +:104FF0005B420022002112A800F006FB002804D02A +:1050000002240128E8D00524E6E73200CA4912A8A4 +:1050100000F07AFB08AB1800082200210293FCF78D +:1050200055F8C64B0AAE9946C54B00249B463F2314 +:105030003500984630004B461B885B4500D01AE18E +:105040004B465F884F44002C00D120E12100042210 +:10505000FBF7E4FF28006B880433E418A74206D866 +:1050600009E16B880433E418A74200D803E1042265 +:105070002100FBF7D3FF41462B8828009A111142EB +:10508000EFD16A881942D6D1029B2E005A601A00CD +:1050900004340894AB4912A800F036FB300000F04D +:1050A00075FA041E98D1A84912A8320000F02CFB12 +:1050B0002023310006A8069317F03EFD002800D0FB +:1050C000E7E0029B069AA1495A6012A81A000896C6 +:1050D00000F01AFB300000F03BFB041E00D07BE721 +:1050E0000A9B0A9ADB179A4912A800F0FFFA944B20 +:1050F0003F279B460AAB98464B461B885B4500D032 +:10510000C9E04B465D884D44002C00D1C7E030001B +:10511000464621000422FBF781FF73880433E4181C +:10512000A54206D8B7E073880433E418A54200D836 +:10513000B1E0042221003000FBF770FF33889A11A0 +:105140001742F0D172883B40022BD5D1211D022A93 +:1051500000D10FE1042A00D1EAE0012A00D052E791 +:1051600023790A930A9B9AB27A4B9A4200D94AE76A +:105170000023794912A800F0B9FA12A800F0B4FA95 +:1051800000278046BB464B466D4A1B88934200D0A1 +:105190007FE04B465B88714A4B440393934215D999 +:1051A000140030000AAD04222100FBF737FF3F2234 +:1051B0002B8828009B111340BB4200D19DE06B88D7 +:1051C0000433E418039BA342EDD82E000137072FC8 +:1051D000D9D15B46002B64D101220023604912A87B +:1051E00000F084FA029817F039FC0A90002806D0E3 +:1051F000089B32005B4912A8736000F097FA02988E +:1052000017F04EFC0A90002806D0089B3200564941 +:1052100012A8736000F08AFA122308220021029873 +:105220000593FBF753FF3F2300259B4630004B4679 +:10523000434A1B88934254D14B465E884E44002D0E +:105240004DD029000422FBF7E9FE0AA84388043365 +:10525000ED1804270AACAE4243D93A002900FBF707 +:10526000DDFE5946238820009A110A421FD0638828 +:105270000433ED18EFE706000100202017F032FCA0 +:10528000002806D12023029A0896536002E71C1DCD +:10529000E4E60324A0E617F0DDFB020064E71C1D32 +:1052A0003EE700220421404629F066FB9AE7628827 +:1052B0000B40012BBBD1029B043508955A602B494A +:1052C00012A8029A00F032FA514612A800F0E0F952 +:1052D000002800D094E600F02BF904007EE61F4D74 +:1052E000B7E70600010005A817F050FC0028D0D150 +:1052F000029B059A08965A60E1E701239C46E34425 +:105300005B462E006D88634509D101234046184A4B +:105310005B4229F0DFF90421404629F005FB221DFC +:105320002B00092140460692079529F031FA4DE7F6 +:105330003000FBF773FE15E700DBFEFF084B0108AA +:105340001620000004DBFEFFFFDAFEFF05DBFEFF98 +:1053500007DBFEFFFF60000006DBFEFF0C4B0108D1 +:1053600001DBFEFFFEDAFEFF08DBFEFF03DBFEFFD4 +:1053700002DBFEFF0298FBF751FE08AB02931B888D +:105380000A93EFE6802210B592000649012000F052 +:10539000E7F9052803D8044B8000C05810BD8420CD +:1053A0004042FBE7084B0108D074001010B5140010 +:1053B0000368126886B000930292436862680193A2 +:1053C0000392302B07D0402B05D0202B03D0872011 +:1053D000404206B010BD002AF9D004AA02A96846CE +:1053E000FFF7ECFD002804D1049B2360059B63605C +:1053F000EFE7052803D8034B8000C058E9E7842075 +:105400004042E6E7D0740010002110B5036886B072 +:105410001B6814680091029152681149019303912D +:10542000032A05D9302B07D0402B05D0202B03D0E1 +:105430008720404206B010BD04AA02A96846FFF7C3 +:10544000BDFD002802D1059B2360F3E7052803D8A2 +:10545000044B8000C058EDE784204042EAE7C04694 +:10546000FFFFFF7FD074001070B5140084B00029D6 +:1054700001D1032B03D08720404204B070BDD36814 +:10548000012BF8D15369042BF5D16B46166855688A +:1054900003A9DA1D02A800F063F8002805D1039AD9 +:1054A000954208D28A204042E7E7052810D80A4BE7 +:1054B0008000C058E1E702993000FBF7AFFD6B4672 +:1054C000A268DB79002013702369039A1A60D4E77D +:1054D00084204042D1E7C046D074001030B5104C53 +:1054E00083B02368002B17D16B462000D91D17F01D +:1054F000D3FB002810D10B4B00251A68002A0CD1D1 +:10550000206841320849FBF737FF002804D16B4679 +:10551000DA79064B1A7000E00525280003B030BD8B +:10552000104D0108584D0108144D01080C4D01089B +:10553000044B1A68002A03D0002200201A6070472A +:105540000520FCE7104D0108044B1B68002B02D01E +:105550000360002070470520FCE7C046104D01089D +:10556000074B10B51B68002B07D0064C04600020C9 +:105570000B60054B1B78137010BD0520FCE7C0467F +:10558000584D0108144D01080C4D010870B5194D16 +:1055900082B02B680400002B06D0002C27D00020FE +:1055A000154A0CC402B070BD0193144B1E68002E46 +:1055B0001BD0134901A8FBF713FF002815D13200B7 +:1055C000104901A8FBF73AFF00280ED10A4E2B0024 +:1055D000711C202201A8FBF761FF002805D10123DF +:1055E00033702B6801332B60D7E70320DAE70520FF +:1055F000D8E7C046804D01085C4D0108584D0108B0 +:1056000009000002144D0108F0B504001E00070057 +:1056100098230D00E150A0370433C25083B04822D4 +:105620000021ED0F3800FBF751FDBD633E6201A87C +:10563000FFF78AFF0E2500281BD1DC230222E05051 +:105640000433E050183BE2542300019AD0335860F1 +:105650001A60089B200006CB29F026F821003800AC +:1056600029F0B0FA0025002806D10521200029F0F4 +:105670005BF9280003B0F0BD032807D01938454274 +:10568000454101236D429D430335EEE70425ECE7D8 +:1056900070B5040082B00D000022052129F06CF9DC +:1056A00020002100A03029F005FB00280AD00328A3 +:1056B00014D01938434258410123404298430330E3 +:1056C00002B070BD6E462000310029F0FDF90128BE +:1056D00008D0002804D10CCE0CC5F1E70420EFE778 +:1056E0000220EDE70120EBE77047C046D0B5160079 +:1056F0001F000400CB170A0028F0ECFF32003B002B +:10570000200028F0E7FFD0BD70B50500166854688A +:1057100082B0CB170A0028F0DDFF230032000221FF +:10572000280029F035F802B070BDC04670B50500FC +:105730001668546882B0CB170A0028F0CBFF23000C +:1057400032000321280029F023F802B070BDC046C2 +:10575000024B1B68036000207047C04600760108BA +:1057600010B5FBF787FD431E984110BDF0B5C64646 +:1057700000B58CB000F00AF9002800D0E9E010274D +:10578000754C08AD06AE8021012009064042FCF7A9 +:1057900089FA07421ED1830655D4430600D583E01B +:1057A00003064DD521008020FCF77EFA0028EAD1BF +:1057B00023689A1C44DB002B00DBA6E00021606814 +:1057C000FCF778FA8021012009064042FCF76AFACA +:1057D0000742E0D021001020FCF766FA0028D2D161 +:1057E00023689A1C2CDB002BE8DB29D12369606835 +:1057F000082B00D0A1E0A369042B00D09DE06369D1 +:105800002A00984600210823FCF750FA082800D007 +:105810008FE00423320002216068FCF747FA042875 +:1058200000D086E0069B019343460093A068089A47 +:10583000099B00F037F901006068FCF73BFAA2E72A +:10584000FCF73AFA9FE721002020FCF72DFA002808 +:1058500099D123689A1CF3DB002BAFDBF0D12369CD +:105860006068082B69D16369042B66D1236A2A001A +:10587000984600210823FCF719FA082859D1042377 +:1058800005AA01216068FCF711FA042851D14346AA +:105890000193059B02960093A068089A099B00F06B +:1058A0007BF901006068C8E721004020FCF7FCF9A3 +:1058B000002800D067E723689A1CC1DB002B00DAC0 +:1058C0007CE7BDD123696068082B39D1236A0C2B92 +:1058D00036D1043B32000021FCF7E8F9082833D127 +:1058E000069A079B0095A06800F0C2F98046002840 +:1058F00004D060684146FCF7DDF944E70C232A0038 +:1059000000216068FCF7D4F9F3E7002B98D12369F4 +:105910006068082B11D12A000021FCF7C7F908287C +:1059200007D1089A099BA06800F0D8F901006068C7 +:1059300083E78121606849427FE7812149427CE712 +:1059400081235B429846D5E781235B426068984695 +:10595000D0E7FCF7B1F912E7844D010810B50B0050 +:105960000349020048680121FCF7A0F910BDC046B8 +:10597000844D010810B50B0003490200486800215E +:10598000FCF796F910BDC046844D0108F0B53F4BB9 +:1059900087B09E6AB0470369012B68D1B0473C4C81 +:1059A00083682381B047037D6846237504F0EAFAD3 +:1059B00000285CD1009B019863606B46197A2389AB +:1059C000594389B26181FBF767F9A08104F0F2FACB +:1059D000208204F0F7FA01306082B0470369012B9E +:1059E00045D1B0472B4D83682B81B047037D03A879 +:1059F0002B7504F0EFFA002839D1039B04986B60F3 +:105A00006B46197D2B89594389B26981FBF744F9AB +:105A1000A88104F0F7FA2830288204F0FBFA1E4F20 +:105A20001E4E033068823A002100300000F068FA10 +:105A3000002801D007B0F0BD300000F09BFA00282C +:105A400018D1174C3A002900200000F059FA00281C +:105A5000F0D1200000F08EFA0028EBD0200000F0FA +:105A6000A7FA0028E6D1200000F084FAE2E78120BE +:105A70004042DFE7300000F09BFA0028DAD1300026 +:105A800000F078FA0028D5D1DBE7C046941F031058 +:105A9000009C0008189C0008E8740010B455010828 +:105AA000CC550108F0B54546DE4657464E46110036 +:105AB000E0B589B00500129C19435AD0072113980C +:105AC000884353D107932E4B06929946042205A989 +:105AD00018000595FBF7A2FA4B460822181D06A9E7 +:105AE000FBF79CFA80235B009D423CD0254B9A46F5 +:105AF000254D49462A00504600F05EFA002828D17C +:105B0000AB68DB0738D4C026139BB6021E431F4B7D +:105B10000027984680231B019B4604E01C4B7F19FD +:105B20001E40641B18D025005C4501D980252D013D +:105B300029004046FFF712FF434601970293009564 +:105B4000230032004946504600F05EFA0028E5D0B6 +:105B500002E003008C33D6D009B03CBC9046994695 +:105B6000A246AB46F0BD0B4B9A46C1E786204042A9 +:105B7000F2E787204042EFE785204042ECE7C0464D +:105B8000E4550108B4550108F0550108B44D010869 +:105B9000FFFFFCFFCC550108F0B54E46DE465746E8 +:105BA00045461100E0B587B00400109E194352D05D +:105BB00005932A4B03909846049203A904221800E7 +:105BC000FBF72CFA43460822181D04A9FBF726FA16 +:105BD00080235B009C423BD0214B9A46214C41469E +:105BE0002200504600F0E8F9071E27D12468B4428D +:105BF00031D3119BA41B9C4228D8129B1C601A4BCA +:105C0000994680231B019B4606E029004846FFF782 +:105C1000B1FE7619641B11D025005C4501D98025A1 +:105C20002D014B462A00009341463300504600F0B8 +:105C300075FB071EE9D00023129A1360380007B0E5 +:105C40003CBC90469946A246AB46F0BD1C00D4E74A +:105C5000064B9A46C2E787277F42EFE7E4550108E3 +:105C6000B4550108F0550108B44D0108CC550108A0 +:105C7000110070B584B00600089D194322D0134C62 +:105C80000190029201A9042220000393FBF7C6F9B8 +:105C9000201D082202A9FBF7C1F980235B009E4268 +:105CA0000ED00B480B4E2100320000F085F9002881 +:105CB00004D133682B606B60B368AB6004B070BD17 +:105CC0000548EFE787204042F8E7C046E455010861 +:105CD000B4550108F0550108CC550108110070B504 +:105CE000194384B00500002928D0164C0190029277 +:105CF00001A9042220000393FBF790F9201D08223C +:105D000002A9FBF78BF980235B009D4211D00E4E58 +:105D10000E4D21002A00300000F04EF9002806D177 +:105D2000AB68DB0707D42100300000F06DFA04B047 +:105D300070BD074EECE785204042F8E787204042DF +:105D4000F5E7C046E4550108B4550108F0550108CF +:105D5000CC550108036810B59B6800209847431E86 +:105D6000984191234042984310BDC04610B50C00A5 +:105D70001100428954434268944602686344E31820 +:105D800018005469029AA047431E9841912340424B +:105D9000984310BD10B50C0011004289544342686D +:105DA000944602686344E31818009469029AA04775 +:105DB000431E984191234042984310BD00207047F4 +:105DC00070B5040040890E00002813D0002504E0BF +:105DD00023896089ED18A8420CD9636870439C46FA +:105DE000236860444019DB6998470028F0D092206E +:105DF000404200E0002070BDF0B557464E46454693 +:105E0000DE46E0B503688DB004AA05000E005F8988 +:105E100000F040FD002806D00DB03CBC90469946ED +:105E2000A246AB46F0BD09A801F00EF9002860D1EA +:105E3000049B20229846059B00219946079B04A8B5 +:105E40009A46FBF743F904AA3100280000F09AFFB4 +:105E50000028E1D12B685B8A002B2ED00022002481 +:105E600093460BE004AA2100280000F08BFF0028D5 +:105E7000D2D12B685B8A0134A34220D9A642FAD042 +:105E800004AA2100280000F005FD0028C4D1049BCD +:105E900003934345E6D109A801F0D6F80028E1D1E3 +:105EA000059B4B45DED99F4221D852469B1A05934C +:105EB000079B9C460393E344D4E700239B465B4641 +:105EC00001934B465246009341463B00280000F0A8 +:105ED00059FA0028A0D14346002B04D0280000F036 +:105EE000C7FF002808D1280000F0A0FC94E71F009D +:105EF000DBE78C2040428FE7842040428CE7C0469D +:105F0000F8B505000C001700002813D0002911D0A7 +:105F1000002A0FD0628AA3894989208A5201012B65 +:105F20000CD9032B06D0022B22D10B00143B9B1A59 +:105F3000984218D9872676423000F8BD87267642E7 +:105F40008142F7D3023B5800C3189B000832D31894 +:105F50008B42EFD8002EEFD1280018220021FBF74A +:105F6000B5F890C5E8E78142E4D30C230026EDE7BD +:105F70000026E5E730B583B0050000F0BFFB041E46 +:105F800002D0200003B030BD802101AA49042800BE +:105F900000F038FB002804D003008C33F1D004005B +:105FA000EFE701992800FFF727FF0400E9E7C04663 +:105FB00010B500F0A9FD10BD70B58CB0160003AA95 +:105FC00004000D0000F0A0FA002819D1200004AA56 +:105FD000039900F05FFC041E02D020000CB070BDDD +:105FE0000C2209A92800FBF7C5F8002808D1079B57 +:105FF0007360069B0193336002AB1B8BB360ECE7CD +:106000008C246442E9E7C046F0B54746CE4680B5E9 +:1060100098467B4B93B00593069304000F0016003F +:10602000130E00D0E6E005AA00F06EFA002800D1B9 +:10603000A1E003008C3304D013B00CBC9046994609 +:10604000F0BDF30300D4D8E006996D4B994200D01F +:10605000A3E023681B8A434500D2CBE06949059B36 +:106060008C4663441A00531E9A4107AB994603932A +:106070000AAD06AB0193D2B20295009643463900B1 +:10608000200000F095FC0028D6D11A9B002B2CD0C4 +:106090001B9BAA68934200D9A9E01A9A1900E868E4 +:1060A00000F0C6FF002800D0A1E01C9B2A0001934D +:1060B0001A9B4946009320001B9B00F0D9F9002849 +:1060C00000D094E01B9A1A9B9446AA6863449342BA +:1060D00000D9AB600A992000079E00F00FFA0A9AD7 +:1060E00007903100200000F049FE4A460A9920003E +:1060F00000F008FF00287AD12A000699200000F05D +:1061000041FE002873D1069B059D9D4250D82A0070 +:106110000021200000F090FE002868D1059A384B3D +:10612000691C9A4202D0069B9A4245D123682000FE +:106130005A8A00F081FE002859D10A9B002B02D117 +:106140001A9B002B04D1200000F092FE00284ED1B3 +:10615000200000F06BFB002800D06DE70599284B6C +:10616000994200D168E7069B994200D164E720007C +:10617000FFF742FE60E70AAD2A000599200000F013 +:1061800089FB002839D10599B30313D5EB68434542 +:1061900021D1A8602E61069157E707AB1A000A9932 +:1061A0002000994600F0C8FB002820D10AAD6CE71A +:1061B0001D00ACE7069148E79A4200D21A00200081 +:1061C00000F03AFE002812D1069B0599994200D2B0 +:1061D00019000131AAE780232A695B0413432000D8 +:1061E0002A002B6100F0CEFD002800D12CE784208E +:1061F000404221E7872040421EE78C2040421BE7B7 +:10620000FFFF00000100FFFFF0B54546DE465746A0 +:106210004E46E0B58FB005AA050000F075F90028DC +:1062200000D075E0059E2B6806AA310028005F8922 +:1062300000F030FB002806D00FB03CBC90469946D9 +:10624000A246AB46F0BD0BA800F0FEFE00285FD1D1 +:10625000069B20229846079B00219946099B06A889 +:106260009A46FAF733FF06AA3100280000F08AFDAB +:106270000028E1D12B685B8A002B2FD0002200245C +:1062800093460BE006AA2100280000F07BFD0028C1 +:10629000D2D12B685B8A01349C4221D2A642FAD02B +:1062A00006AA2100280000F0F5FA0028C4D1069BB8 +:1062B00003939845E6D10BA800F0C6FE0028E1D173 +:1062C000079B9945DED29F4200D91F0052469B1A78 +:1062D0000793099B9C460393E344D3E700239B4623 +:1062E0005B4601934B465246009341463B002800D3 +:1062F00000F048F800289FD14346002B04D0280026 +:1063000000F0B6FD002806D1280000F08FFA93E7D0 +:106310008C20404290E7842040428DE7F0B58FB05A +:10632000170005AA04000D001E0000F0EDF800287B +:1063300025D106AA0599200000F0ACFA00281BD14F +:106340000C220BA92800FAF715FF002817D1089B8B +:106350003A0031001800039300F06AFE002801D0D3 +:106360000FB0F0BD149B3200009306A93B00200043 +:1063700000F062F80028F3D084204042F0E78C203F +:106380004042EDE7F0B5C64600B588B0170005AA53 +:1063900005000E00984600F0CFFA041E04D020003D +:1063A00008B004BC9046F0BD079B31009C46280015 +:1063B00067440393079700F0A1F80F9B0700002B99 +:1063C00023D1069A0E9B05999A4212D332002800D7 +:1063D00000F0D4FC05AA31002800059700F092FDDA +:1063E000041E23D1002EDAD009CDDB6898470400C3 +:1063F000D5E7981A01900B0000923900280000F0B0 +:10640000DBFC00280FD10599E0E7059B0100039311 +:106410000F9B0E9A0193434628000093039B00F0C4 +:10642000CBFC0028CDD084246442B8E73200390088 +:10643000280000F0A3FCB2E7F0B587B00E0015000D +:10644000096803AA04001F0000F076FA00280BD1A7 +:1064500003994B1C08D005CC736800975468EB185F +:106460000C9AA04707B0F0BD84204042FAE7C0462E +:10647000F0B54746CE46160080B50F0083B01168D0 +:106480001D00040000F03AF873687A689C46654481 +:10649000AB1A01930092804601003B68200000F097 +:1064A0008BFC00280BD10A9A636800929B680B9AB8 +:1064B000994641462B002068C847002804D003B005 +:1064C0000CBC90469946F0BDF16873688C466344F5 +:1064D0001A002168B86849893B68091A891A01912C +:1064E00000924146200000F067FC0028E7D13368A5 +:1064F000002BE4D009CCDB689847E0E7002901D005 +:10650000806870474069FCE7F0B54E464546DE4678 +:106510005746E0B5040000688DB0438A894690462E +:10652000002B00D168E00025202642E02368049A71 +:106530009B89022B5BD0023B9A424CD209A800F007 +:1065400083FD002829D12068079A038A9A4242D8FD +:10655000069B03939A423ED3049B05990393002B19 +:1065600016D1438A9B4683899A46022B41D0022347 +:106570005B429C46E24453465B009C46D4446346DF +:106580009B009C465B465B0108336344994222D3DF +:10659000408900F04DFD00281DD10C22494609A874 +:1065A000FAF7E8FD00282AD020680135438AAB427B +:1065B00022D98189022918D002394B005918890043 +:1065C00062686B010096083357685B1804AA21695A +:1065D000B847071EAAD084277F4238000DB03CBCC4 +:1065E00090469946A246AB46F0BD0C21E8E7012350 +:1065F000A2E70C239C46C5E78C277F42EDE7434684 +:106600001D60EAE7F0B54E464546DE465746E0B522 +:10661000040000688DB0438A89469046002B66D0FE +:106620000025202640E02368049A9B89022B59D03C +:10663000023B9A424AD209A800F006FD002829D15F +:106640002068079A038A9A4240D8069B03939A428D +:106650003CD3049B05990393002B16D1438A9B4698 +:1066600083899A46022B3FD002235B429C46E24438 +:1066700053465B009C46D44463469B009C465B4665 +:106680005B01083363448B4220D8408900F0D0FC82 +:1066900000281BD14A46089B039313422AD1206845 +:1066A0000135438AAB4222D98189022918D00239A7 +:1066B0004B005918890062686B01009608335768CF +:1066C0005B1804AA2169B847071EACD084277F4213 +:1066D00038000DB03CBC90469946A246AB46F0BD92 +:1066E0000C21E8E70123A4E70C239C46C7E78C278D +:1066F0007F42EDE743461D60EAE7C04670B5436858 +:1067000086B004001B6800689847002801D006B0D6 +:1067100070BD0825636800955E6802AA0023002109 +:106720002068B047002817D0636820685E68082397 +:1067300004AA009301210023B047002809D16B4629 +:106740001B7D012B05D16B4620685A7D037D9A4243 +:106750003CD184204042DAE7636820685E686B467B +:106760001B7B012BE3D16B465A7B037D9A42DED023 +:106770000095002304AA0121B047002829D0012355 +:106780000021206808220092220063616368216171 +:106790005D6808320023A8470028DAD1237B012B4B +:1067A000D7D12068627B037D9A42D2D06368616949 +:1067B0001B6998470028AAD123689A89022AA6D97A +:1067C0006268A168126918009047A0E700230121C0 +:1067D000D8E76B46197D012904D0226810000123F7 +:1067E0000021CFE76B4620685D7D037D02009D425E +:1067F000F4D05E4273416A46DBB2527BAB4208D0B2 +:106800009A420BD0AA42894100234942AA425B41E5 +:10681000B8E75E1CB242F3D00023B3E71300591E61 +:106820008B4101339D42DAD1ECE7C04630B5427B63 +:106830000400531CDBB24373006883B0017D9942AE +:1068400001D102326273082200922200636808328A +:106850009D6861690023A847002805D16368206806 +:10686000DB689847002801D003B030BD6369216917 +:106870002361636861611B69206898470028F3D130 +:1068800023689A89022AEFD96268A1681269180000 +:106890009047E9E770B5040000681500828982B06E +:1068A000022A3FD0023A53009A18920049010B0085 +:1068B000202108339B1862680091566821692A00DC +:1068C000B047061E2BD123682A689B89022B2BD048 +:1068D000023B9A422CD22800143000F0B5FB00286D +:1068E0001DD12068EA68038A9A4221D8AB689A428F +:1068F0001ED32B686968002B0CD18489438A022C33 +:1069000014D0023C65002C19A4005B0108331B194C +:106910008B420DD8408900F08BFB002808D1300055 +:1069200002B070BD0C22C1E70123D2E70C24ECE7D2 +:1069300098267642F3E7C0464B005B180C2170B5F1 +:10694000150082B042689B000091040056680169FE +:1069500008332A000068B047002812D1236829684C +:106960009A8991421ED25889AA68696800F060FB32 +:10697000002817D12A680023012A04D96A689A429C +:1069800010D102B070BD22689189538A02290CD0BF +:1069900002394A00521892005B0108339B186A685A +:1069A0009A42EED098204042EBE70C22F4E7C04632 +:1069B000F0B557464E46DE46454699460C23E0B5AF +:1069C0008DB0050003919346199C006808270026A6 +:1069D0009A4619E02868226883899A4200D36EE0BB +:1069E000A2684089616800F023FB021E286866D116 +:1069F00021680023012953D9616899425FD1A368B6 +:106A00000C37994561D901368389022B34D0023B7A +:106A10009E4234D252466B6800925B6822009846D0 +:106A200029693B00C0470028D4D084235B429846A4 +:106A30002868438A002B2CD000245E4604AA21003B +:106A40002800FFF727FF002823D109A800F0FCFA4F +:106A5000002819D0002E16D0179B1C604346002B2F +:106A60001AD1284B9C4217D040460DB03CBC9046F2 +:106A70009946A246AB46F0BD01239E42CAD38E235F +:106A80005B429846D5E701362B6801345B8A9C420D +:106A9000D4D31C4B179A13608E235B429846E3E7CE +:106AA0008189438A02290ED002398C46490061440B +:106AB00089005B0108335B18616899429FD0842389 +:106AC0005B429846B5E70C21F3E79046189A039984 +:106AD00016604289D31A189A536013004A46180068 +:106AE000DA6014300C22FAF799FA0023189A286811 +:106AF00093601300169A1A614A46A3689B1AA36012 +:106B000097E7C046FFFF0000F0B5CE464746082590 +:106B100080B543688FB0009504005E6803AA002327 +:106B200000210068B047002800D0DDE063682068DD +:106B30005E686B461B7C012B00D1D9E0082306AFB1 +:106B400000933A0000230121B047002800D0EAE07A +:106B50003B79012B00D0E6E0236878791B7D8342E6 +:106B600000D1E0E000260122226166616368310005 +:106B70001B6920689847051E00D0AFE0012319006B +:106B80009846636871401B6920689847051E00D0CD +:106B9000A4E02068037D5A42534163738389428A8B +:106BA000022B00D1B8E00221A1604146217361614E +:106BB000991E4B00591825618900520113000833B2 +:106BC0005B18049342890121D31A059300230C22F8 +:106BD0000393636800929D6803AA0823A847051ED3 +:106BE00000D07BE004902068438905938389022BC1 +:106BF0002ED00326032B10D0636831001B69984701 +:106C0000054320688389022B04D0B11EDA1E0136A9 +:106C10009142F1D3002D00D087E00C2214260025EC +:106C2000904613E0033B9D4212D24246EB1C039375 +:106C3000636800929B6803AA994661693300C8475C +:106C400001350C36002864D120688389022BE9D1F4 +:106C5000202200213800FAF739FA2022206808257E +:106C6000438A00269046002B15D119E0023A5300C2 +:106C70009B189B004146626800919268EB18914610 +:106C800061693A00C847002843D120680136438A29 +:106C90002035B34204D98289022AE7D10C23E9E7DF +:106CA000627B531CDBB26373017D994201D10232D6 +:106CB0006273082200922200636808329D6861694D +:106CC0000023A847002824D163682068DB68984720 +:106CD000051E03D1636922692361626128000FB038 +:106CE0000CBC90469946F0BD636820685E6825E755 +:106CF0006B465A7C037D9A4200D11FE706AF009590 +:106D000000233A000121B047002811D001260022BB +:106D10002AE784256D42E1E743462561A36023739A +:106D200063610C2149E7002620E792256D42D5E7F3 +:106D30003A79012AEAD1236878791B7D834219D0F8 +:106D400069464D7C59424B41DBB2834208D0AB428D +:106D50000CD085429241002652428542764103E79B +:106D6000591C00268D4200D0FEE6F0E70133984220 +:106D7000CCD1EEE716000022F6E6C046002A00D08D +:106D80008160704730B50500006883B08489022CAB +:106D90000FD0023C63001C19A40049010B0008330A +:106DA00069691B196C6820250095A468A04703B089 +:106DB00030BD0C24F1E7C046F0B5574645464E4677 +:106DC000DE46E0B51B4C0600A5448F9D039190461E +:106DD0009A468E9F002D2BD080239B009B460EE071 +:106DE000736800949B6804AA9946039943463068E7 +:106DF000C847002813D1A0443F192D1B18D02C00E0 +:106E00005D4501D98024A400736800945B6804AADE +:106E1000994651463B003068C8470028E0D085239A +:106E20009B009D443CBC90469946A246AB46F0BDB3 +:106E30000020F4E7ECFDFFFF10B5036882B09C89E9 +:106E4000022C13D0023C63001B199B004901520124 +:106E5000083108320C001100E218091B0191009260 +:106E600003694169FFF7A8FF02B010BD0C23EDE7ED +:106E70000C2230B5436889B0009204005D68016956 +:106E8000082305AA0068A847002824D1236805998B +:106E90009A89914231D2079A0292069A03925889AE +:106EA000029A039900F0C4F8002826D1059B00221D +:106EB0000293012B11D9069B029393421DD12368A3 +:106EC00007995B8920009B1A5B1A01930092236942 +:106ED0006169FFF771FF09B030BD236899895A8A4B +:106EE00002290DD002394B005B189B005201083279 +:106EF000D218069B02939342E1D098204042EAE7E1 +:106F00000C23F3E7F0B5CE464746040080B543684E +:106F10000D0089B09E6800686169002D24D10C23A2 +:106F200011600093043BB047002800D06CE0676913 +:106F300026696B1C5D00ED18AD002A00236808323D +:106F40009989022963D002394B005B189B005D1BB5 +:106F500001950092330039002000FFF72DFF09B0A2 +:106F60000CBC90469946F0BD0C276B005B199B004A +:106F7000984600970833B946B047002844D14A469E +:106F8000636800925B682669994605AA0823310068 +:106F900020686769C847002836D1236805999A890F +:106FA000914231D2079A0292069A03925889029A24 +:106FB000039900F03DF8002826D1059B0293029A20 +:106FC0000023012A25D9069A02929A421CD10C224A +:106FD000636800929B680597994605AA0823616932 +:106FE0002068C84700280FD1012DA2D943460C3B89 +:106FF0000193142314220093390033002000FFF77B +:10700000DBFE002895D0AAE784204042A7E70C23A6 +:107010009DE72268538A9289022A07D0023A5100DA +:107020008A1892005B0108339B18CCE70C22F9E721 +:10703000814205D8401A9042804186239843704788 +:1070400087204042FBE7C0460378002B24D14378D9 +:10705000002B21D18378002B1ED1C378002B1BD1AC +:107060000379002B18D14379002B15D18379002B9C +:1070700012D1C379002B0FD1037A002B0CD1437AA4 +:10708000002B09D1837A002B06D1C07A43425841A4 +:107090008B234042984300E000207047F0B5D6466D +:1070A0004F464646C0B5B4B015F00CFE002800D0DF +:1070B00078E1BE4B1026984624AC08AD14AF802171 +:1070C000012009064042FAF7EDFD064219D1830678 +:1070D0002FD443062AD521004020FAF7E5FD236886 +:1070E000002B39D034DC023320DB00216068FAF752 +:1070F000E1FD8021012009064042FAF7D3FD064256 +:10710000E5D021001020FAF7CFFD2368002B05D031 +:10711000E9DDA74A94466344012B07D804F0CAFA74 +:1071200001210028E2D100F0EFF9DEE7FAF7C4FD13 +:10713000C5E729002020FAF7B7FD2B68002B40D0C7 +:107140003ADC0233F2DB00216868FAF7B3FDB6E7F8 +:10715000974A9A18012AE9D800222A70E269002A7F +:1071600000D0C8E0A269002A00D0CDE06269002A00 +:1071700000D0CFE021694A1E91418946E26A002A87 +:1071800000D0B5E0A26A002A00D0BAE0626A002A04 +:1071900000D0C5E0216A4A1E91418A46854A60684E +:1071A000934274D0844A0121934202D12369042B73 +:1071B00053D0FAF77FFD82E77D4A94466344012B62 +:1071C000B4D80822002104A8F9F780FF0822002182 +:1071D00006A8F9F77BFF402200213800F9F776FF77 +:1071E000402200212000F9F771FF00230393EB698F +:1071F000002B00D082E0AB69002B00D087E06B69E8 +:10720000002B00D089E02A69531E9A419146EB6A0F +:107210006868002B39D1AB6A002B36D16B6A002B22 +:1072200033D14B462A6A013B0121002A7BD1012B35 +:10723000BFD8002303AA9A4600210423FAF736FD9B +:1072400004287CD14B46022B7DD16B696868402BAA +:1072500000D893E081214942ABE74B46012BA8D1EE +:107260005346002BA5D104333A000021FAF71EFD46 +:107270002369984208D11498022805D84146820013 +:10728000A3688A5893422AD06068012191E7236954 +:107290003A000021FAF70AFD2369042BF4D14B468A +:1072A000012BF1D15346012BEED114980228EBD8D3 +:1072B00041468200A3688A589342E5D1002BE3D06F +:1072C0002A00216A15F07AFD0028DDD100216068CE +:1072D000236A2A00FAF7ECFC6068002169E7002BBA +:1072E000D2D015F0E1FD0100481E8141606860E7E1 +:1072F0000422924652E7042291463FE7042399462E +:1073000085E70322924649E70322914636E70323A5 +:1073100099467CE70222914630E70223994676E7B8 +:10732000022292463AE7012B00D942E7012303AA41 +:107330009A4600210423FAF7B9FC042882D081215F +:107340006868494235E753460021002B23D02B6A59 +:10735000402BF4D806AA03980793069400F0E2F8AD +:107360008146079B00210093069B68680193019A60 +:10737000009BFAF79DFC494668681AE73A0001212C +:10738000FAF794FC6B699842D9D15346049705905B +:1073900004A9002BDBD10022039800F0C3F8010000 +:1073A000686806E7FAF788FC83E6C046FC740010BC +:1073B0000EFCFFFFF2030000F30300002D3E00105F +:1073C000F93E0010893C00102D3D0010A13B00103B +:1073D000AD3D0010993F00101D400010B940001055 +:1073E000394100104937001085370010053500106D +:1073F00061350010B93500102D360010913600109F +:10740000E9360010493A0010513A0010B93700101F +:107410003D380010C1380010193900108D390010A6 +:10742000F1390010F5340010FD340010B5320010B1 +:107430002D330010E93100105D320010A53300102B +:10744000293400109D34001009450010A945001092 +:107450004946001051460010694600107146001060 +:1074600079460010894600108146001061460010E0 +:1074700091460010594600109946001039470010F7 +:10748000C54700109D48001029490010914900107F +:10749000D54900100D4A0010F14A0010B54C0010FB +:1074A000B54A00104D4B0010294C0010454D0010FE +:1074B000254D00107D420010913B0010993B0010BB +:1074C0004C00000084010000FC0000001C020000D1 +:1074D0000000000070FFFFFF76FFFFFF7CFFFFFF53 +:1074E00079FFFFFF7CFFFFFF555D00106D5D001011 +:1074F000955D0010BD5D0010C15D00100001000031 +:107500000001000000010000BFF34F8F034B044A4D +:10751000DA60BFF34F8FC046FDE7C04600ED00E0E4 +:107520000400FA050320704700000000000000007E +:10753000000000000000000000000000000000004B +:10754000F0B5C64600B58CB000F032F9002800D086 +:107550000AE11027864C08AD06AE802101200906FD +:107560004042FAF79FFB074221D1830658D44306D5 +:1075700000D586E0030600D5B2E080235B00184208 +:107580004BD018002100FAF78FFB23689A1C44DBCC +:10759000002B00DBC2E000216068FAF78BFB802142 +:1075A000012009064042FAF77DFB0742DDD02100A9 +:1075B0001020FAF779FB23689A1C2EDB002BEADBFC +:1075C0002BD1A368606898462369082B00D0BBE0E4 +:1075D000A369042B00D0B7E004332A000021FAF796 +:1075E00065FB2369984200D0AAE0A369320002211A +:1075F0006068FAF75BFBA369984200D0A0E0069BA5 +:107600004046019363690093089A099B00F0DEF8F5 +:1076100001006068FAF74EFB9FE7FAF74DFB9CE725 +:1076200021002020FAF740FB23689A1CF5DB002B91 +:10763000B1DBF2D123696068082B00D084E0636974 +:10764000042B00D080E004332A000021FAF72EFB3F +:107650002369984274D1636905AA01216068FAF729 +:1076600025FB636998426BD10296236A0193059BBF +:107670000093A068089A099B00F0D8F801006068A0 +:10768000C8E721004020FAF70FFB23689A1CC4DBEF +:10769000002B00DA7FE7C0D123696068082B56D140 +:1076A000236A0C2B53D1043B32000021FAF7FEFA77 +:1076B000236998424FD1069A079B0095A06800F075 +:1076C000E1F88046002804D060684146FAF7F2FAF3 +:1076D00043E7236A2A0000216068FAF7E9FAF3E732 +:1076E00021008020FAF7E0FA23689A1C95DB002B32 +:1076F00000DA50E791D123696068082B24D12A0071 +:107700000021FAF7D3FA2369984219D1089A099B04 +:10771000A06800F0DBF8010060687BE7002B00D078 +:107720007BE7236A042B1BD100F0F6F800210890B8 +:10773000042360682A00FAF7BBFA0021606869E751 +:1077400081216068494265E78121494262E78123DE +:107750005B429846B9E781235B4260689846B4E78C +:1077600081216068494255E7FAF7A6FAF1E6C0467A +:1077700000180008074B10B502000C0058680B00F9 +:107780000121FAF793FA201A441EA04180234042B7 +:10779000984310BD0018000810B50B000349020003 +:1077A00048680021FAF784FA10BDC04600180008A6 +:1077B00010B500F0B3F8002800D110BD00F0E8F9D2 +:1077C0000028FAD100F0AAF8F7E7C04630B51D004E +:1077D000130083B014002B431FD00723079A9A434A +:1077E0001ED10123104A5B4212196B41002B09D0B4 +:1077F000069B020000932000079B290000F0CEF8B2 +:1078000003B030BDFF2AF3D8079B22000193069BEB +:1078100000932B0016F0D8F8F2E787204042EFE7FC +:1078200086204042ECE7C04600FFFFFF30B51D0058 +:10783000130085B014002B431FD00123104A5B4274 +:1078400012196B41002B0BD00A9B02000193099B7C +:10785000200000932900089B00F06EF805B030BDB1 +:10786000FF2AF1D80A9B22000293099B0193089BEF +:1078700000932B0016F0ACF8F0E787204042EDE7CC +:1078800000FFFFFF30B51D00130083B014002B4331 +:1078900017D001230C4A5B4212196B41002B07D011 +:1078A0000200069B2000290000F00CF903B030BD57 +:1078B000FF2AF5D8069B220000932B0016F0B8F89B +:1078C000F4E787204042F1E700FFFFFF70B51D009D +:1078D000130014002B4316D001230E4A5B421219E9 +:1078E0006B41002B08D002002900200000F012F9A3 +:1078F000030095330AD070BDFF2AF4D822002B0074 +:1079000016F0B6F8F7E787204042F4E784204042BB +:10791000F1E7C04600FFFFFF0020704710B5044CA0 +:10792000200000F011FA034B283C5C6010BDC046FB +:107930006018000830180008F8B5154D1E002B001F +:1079400000F064FB041E01D02000F8BD114F286830 +:10795000390000F0F5FC041E04D1FD69B54208D2DF +:10796000872464428022002112013800F9F7AEFB1F +:10797000EAE7069BAD1B9D4207D80748290030184F +:10798000FFF70AFF079B1D60ECE71D00F5E7C04607 +:10799000301800083818000860180008F0B557467D +:1079A0004E46DE4645469A46FB23E0B583B09146F7 +:1079B0000C9A06000F00DB009A4269D83E4B4A46FB +:1079C000984600F023FB041E11D003003B4D8C337E +:1079D0004CD08022002112012800F9F777FB20000B +:1079E00003B03CBC90469946A246AB46F0BD434628 +:1079F000324D1868290000F0A3FC041EE9D16B6A1F +:107A0000DB0742D453466B620C9B2B6243461B68D8 +:107A1000019301239B462A4B0C9918009A46FFF7C5 +:107A2000A9FE041ED5D128235B429C46E24453465E +:107A30000C9A41465846DA6100F04EFA041EC8D14D +:107A400043465146186800F0BBFC041EC1D14346B2 +:107A50004A463000390000F075FA041E25D1019B1A +:107A6000002B18D100F02AFB0400B2E7802200218D +:107A700012012800F9F72AFB0C9B2B6253466B621C +:107A800002239B4600230193C5E785246442A0E7B7 +:107A900087246442A3E700F011FB041E99D10198EA +:107AA0000021FAF785F8040093E74346002118689F +:107AB000FAF77EF88DE7C04630180008381800083D +:107AC00060180008F8B5114D1F002B0000F09EFA59 +:107AD000041E01D02000F8BD0D4E2868310000F0D2 +:107AE0002FFC041E06D08022002112013000F9F77D +:107AF000EDFAEFE78022F36912017B60736A0021DF +:107B0000BB603000F9F7E2FAE4E7C046301800083D +:107B100038180008F8B54746CE461B4D80B52B00F7 +:107B200006000F00904600F071FA041E04D02000F9 +:107B30000CBC90469946F8BD144B2868190099462C +:107B400000F0FEFB041E05D14B465B6ADB0708D53F +:107B5000852464428022002112014846F9F7B6FAD2 +:107B6000E5E742463000390000F074FA041EF1D116 +:107B70002D6800F0A3FA041EECD128000021FAF7CA +:107B800017F80400E6E7C046301800083818000867 +:107B900010B500F0C5F810BDF0B583001A4C5E5862 +:107BA000A544CA686B460C003100184F1C31DA51ED +:107BB00005003A006846F9F731FAF5226946D20025 +:107BC000300000F099FB002805D1022364192372CC +:107BD0000F4B9D44F0BD2369002B03D16419013381 +:107BE0002372F5E76A46D351F5226946D200300088 +:107BF00000F082FB431E984101234042984303302A +:107C000064192072E4E7C04654F8FFFFA40700009F +:107C1000AC070000F0B5CE464746002380B53B4C8C +:107C20000020A544039300F021FC041E06D0200090 +:107C3000374B9D440CBC90469946F0BD03A90020EB +:107C400000F008FC041EF2D100F046FA041EEED14A +:107C5000304D039C280000F09BFA290004AE2E4A08 +:107C60001C313000B450F9F7D9F9F5223100D200B7 +:107C7000280000F01DFB041E41D100F071FA041E23 +:107C8000D5D1F827254BFF009946EB5C3A00581CEC +:107C900000949846C1172B00F9F70EFF041EC6D1B9 +:107CA0004A46EB5D3100AB54434604900120EB554E +:107CB000039D00F0CFFB002824D1049B9D4209D9ED +:107CC000012000F0D3FB041EB1D1049B01330493C7 +:107CD0009D42F5D83100022000F0BCFB002811D1F4 +:107CE000049B9D4209D9022000F0C0FB041E9ED1D6 +:107CF000049B013304939D42F5D8002497E700F0DC +:107D00002FFA94E78424644291E7C04644F8FFFFC9 +:107D1000BC07000038200008A4070000C1070000CD +:107D2000F92210B5074C0021D2002000F9F7CEF956 +:107D3000F8230122DB00E25201232377FFF76AFFD9 +:107D400010BDC046382000080023F0B589B003AC50 +:107D500023726372E3602361F8235D4E02AF6060BB +:107D6000DB00019700960022012000210396F9F71D +:107D7000C9FE002801D00123237201976368002205 +:107D80000093F8230220DB000021F9F7BBFE002856 +:107D900001D00123637200F09FF9051E02D0280074 +:107DA00009B0F0BD06A9002000F054FB051E02D06A +:107DB00000F0D6F9F3E73900012000F04BFB051E77 +:107DC000F6D107A9022000F045FB051EF0D123697A +:107DD000029A934200D02061237A012B03D0210024 +:107DE0000020FFF7D9FE637A012B03D02100012088 +:107DF000FFF7D2FE00F0B4F9051ED0D1039B1B7F24 +:107E0000012B01D00123237261680B7F012B01D06C +:107E10000123637202232289FF339A4254D0237ACA +:107E2000012B4ED0637A012B01D0022B3DD0F823D9 +:107E3000802202200021DB005200F252F9F7B8FE46 +:107E4000051E02D003008C33A9D100233900012084 +:107E5000E468029300F0FEFA002835D1029B9C42B0 +:107E60000AD9012000F002FB051E00D097E7029B13 +:107E7000013302939C42F4D83900022000F0EAFA60 +:107E8000002821D1029B9C420AD9022000F0EEFA80 +:107E9000051E00D083E7029B013302939C42F4D875 +:107EA000300000F06BF9002579E7F8220123D200B9 +:107EB000B3523000F9F7B2F8064BF05C0130C1174D +:107EC000BCE7F822D200F3E784256D4267E7C0469D +:107ED00038200008C107000070B50D0000282CD024 +:107EE00000240021164B1A685E6832430CD14A1CEC +:107EF00001383D2A0ED0203300280DD00C005E68DA +:107F000011001A683243F2D001313D2901D02033EB +:107F1000E9E7210000280DD1CC1C20000021F9F751 +:107F200047FE002802D100202C6070BD03008C3376 +:107F3000FBD1F8E78E204042F7E787204042F4E784 +:107F400068200008F0B54646D6464F46C0B58AB010 +:107F500005000F0016000021202202A89846F9F71C +:107F6000B5F8284B002003E0013020333D283ED0F7 +:107F70001A68AA42F8D15A68BA42F5D19A6896426C +:107F8000F2D10130204C43019946A246CA44202236 +:107F9000514602A8F9F742F8202200215046F9F78D +:107FA00095F843461B68DA1E5201A21815639D1E00 +:107FB00043466D016519966357635968102228007E +:107FC000F9F72CF8FFF726FE061E09D0079A069B44 +:107FD000019213430FD1202200212800F9F776F8EF +:107FE00030000AB01CBC90469946A246F0BD202342 +:107FF000054C9946D5E720002022484402A9F9F70C +:108000000DF8E8E7682000083820000870B50F4C2C +:10801000002503E0013520343D2D14D0266886422A +:10802000F8D166688E42F5D1A668B242F2D1EA1C58 +:10803000691C074D49011A60491958681022F8F760 +:10804000EDFF002070BD8C204042FBE76820000857 +:108050003820000830B5174B89B0002403E0013404 +:1080600020333D2C23D01D688542F8D15D688D42B8 +:10807000F5D19D68AA42F2D10F4B01346401E41896 +:10808000202221006846F8F7C9FF202200212000A5 +:10809000F9F71CF8FFF7BEFD051E02D1280009B054 +:1080A00030BD202269462000F8F7B8FFF6E78C259E +:1080B0006D42F3E7682000083820000810B5044A34 +:1080C000044BD05C0130C117F9F772FD10BDC046FA +:1080D00038200008C107000030B589B002AC00218B +:1080E00018222000F8F7F2FF00230193C0239B0021 +:1080F0000593164B1649049390239B01A38280237A +:1081000001A80693F9F744FC002801D009B030BD5E +:108110000C23104A104901A8F9F768FC00280FD178 +:108120000E4D01A92A002000F9F794FC002807D180 +:1081300001A8F9F701FC0028E8D02868F9F7CAF887 +:1081400001A8F9F7F9FB84204042DFE7000250055F +:10815000000F00B0D8840010010200000C280008B5 +:10816000054B10B51868F9F7B5F8002800D110BD17 +:1081700084204042FBE7C0460C280008010010B5EF +:1081800010310C220148F8F749FF10BD0028000803 +:1081900030B5174C85B008222100050002A8F8F779 +:1081A0003DFF21000422083101A8F8F737FF0298AB +:1081B00003990122002312184B41029203931A43A0 +:1081C00002D1019B0133019302A908222000F8F794 +:1081D00025FF200001A904220830F8F71FFF28001E +:1081E0000C2221001030F8F719FF05B030BDC04651 +:1081F00000280008F0B51500020089B0109F0600A5 +:108200001148119C006805970F9F029304970E9FD9 +:10821000019500911032069403970C230B49F9F74E +:1082200075F9051E0CD10F9B21689C461039216001 +:10823000102261443000F8F7F1FE280009B0F0BDCB +:1082400084256D42F9E7C0460C280008000250055D +:10825000F0B5C6460400904600B588B00E9D0F00EC +:108260005819102221001E00F8F7D8FE0E4B2200EC +:108270001868119B10350693109B103205930F9BC5 +:108280000395049343460296019300970C230749F4 +:10829000F9F72AFA002803D108B004BC9046F0BDD3 +:1082A00095204042F8E7C0460C280008000250051F +:1082B000030030B514008BB002000D4809AD006812 +:1082C0000695049310250023009103930293103226 +:1082D000059501940C330749F9F718F9002804D1E2 +:1082E000099B102B01D10BB030BD84204042FAE72E +:1082F0000C2800080002500530B503008BB01500B3 +:1083000002000D4809AC006806940024059404940A +:108310001034029300911032039401950C23074905 +:10832000F9F7E2F9002804D1099B002B01D10BB029 +:1083300030BD95204042FAE70C28000800025005A5 +:10834000F0B589B005AB01930B0010330093802387 +:108350000D001B01002200210400F9F7D3FB0028C7 +:1083600001D009B0F0BD059E0694FFF7B5FE0028C8 +:10837000F7D134002F00104E0C3C1C37220039007E +:108380003000F8F74BFE07AB03930C4B01970293B9 +:1083900000943300042206A92800FFF759FF0028A3 +:1083A00005D1079B9C4202D1FFF7DAFED9E7FFF720 +:1083B000D7FE84204042D4E710280008E4070000DC +:1083C000F0B5CE46474680B587B006000C00CD69B3 +:1083D0000490FFF781FE002804D007B00CBC904643 +:1083E0009946F0BD1C232F0098462000FFF7D0FED1 +:1083F00005AB0393154B0C370293154BA0449946DC +:10840000019300974346042204A92000FFF7F2FEDF +:10841000002815D1059B9F4212D13A00494640469B +:10842000F8F7FCFDFFF79CFE0028D6D123002A00B8 +:1084300000901033183230000021F9F73DFBCCE7F3 +:10844000FFF78EFE84204042C7E7C046F4070000D5 +:108450001028000810B50A000421F9F7EBFB431EB1 +:10846000984183234042984310BDC04610B5F9F7A8 +:10847000BFFB431E984183234042984310BDC04632 +:1084800030B5102491B08021012009064042F9F74F +:1084900009FC0442F7D004A91020F9F705FC0028D4 +:1084A000F1D1049D0598002D03D1089B0193042B65 +:1084B00005D081256D422900F9F7FCFBE3E703AA0B +:1084C0000021F9F7F3FB089B0193984202D005982D +:1084D000813DF0E70598EEE773746F726167655F41 +:1084E0006B65790000000000000000000000000043 +:1084F000000000000000000000000000000000007C +:088500004489FF7F0100000027 +:1085080010B5064C2378002B07D1054B002B02D061 +:10851800044800E000BF0123237010BD4093010808 +:1085280000000000DC350310044B10B5002B03D00D +:108538000349044800E000BF10BDC0460000000029 +:1085480044930108DC3503100230800803D0013061 +:108558000238FCD1C046C0467047EFF3108072B6AF +:10856800704780F31088704786220D4B00B51B6852 +:1085780052011B6A83B09918C968C90103D58021C3 +:10858800490499509B5801A800F030F8054B019A0E +:108598009A4203D18022044B52055A6003B000BDB1 +:1085A8003CF30108C650CFA500ED00E070B5011EF0 +:1085B80013D0BA240A4D2A68135B106ADB00181816 +:1085C80016F05AF9002806D12A68135B126ADB00F4 +:1085D8009B18586070BD0348FCE70348FAE7C0469B +:1085E8003CF30108030000800100008070B5011E03 +:1085F80013D0BA240A4D2A68135B106ADB001818D6 +:1086080016F03AF9002806D12A68135B126ADB00D3 +:108618009B18586070BD0348FCE70348FAE7C0465A +:108628003CF301080300008001000080094B10B5ED +:108638001968BA230200CC5A086A8021E3001B1982 +:108648001818490016F00AF9431E9841024B404297 +:10865800184010BD3CF3010802000080094B80223D +:108668001B6810B5186A86235B011C00C1185200EC +:10867800CB681B0C1342FBD080235B0403510359C6 +:1086880010BDC0463CF3010810B5002016F0CCF927 +:1086980010BDC04610B5084815F0BCFA00220021EC +:1086A800032016F00FFA054816F0F8F8044816F0FB +:1086B800FDF81AF03DF810BDDC2003105C930108AA +:1086C80078F002107047C04610B52C4815F0A2FA91 +:1086D800B021E02030242A4BC9005A5880005200AB +:1086E80052085A501A58A2431A50802252045A501B +:1086F800244A25499950A021043289019950FF2123 +:10870800224A9950FFF7DEFF00201EF049F9041EA7 +:1087180025D01F4B18601CF0BFFF411C2000F8F744 +:10872800B7FA1C4B040018601CF096FE411C200090 +:10873800F8F7AEFA184B441E186018492000F8F7ED +:10874800A7FAFA21164B0130187089002000F8F7B3 +:108758009FFA144B01301860134BC0031860134B79 +:108768001A68BA23D15A126ACB005B1A9B180022E6 +:10877800DA605A6019F0DCFF10BDC046DC20031037 +:108788000000264084050000010002008C0500005E +:10879800848F0108888F0108808F010840420F00EC +:1087A800948F0108908F01088C8F01083CF3010811 +:1087B80010B500201EF0F4F8041E25D0134B1860E5 +:1087C8001CF06AFF411C2000F8F762FA104B040005 +:1087D80018601CF041FE411C2000F8F759FA0D4BB7 +:1087E800441E18600C492000F8F752FAFA210B4B86 +:1087F8000130187089002000F8F74AFA084B013058 +:108808001860084BC003186010BDC046848F01086B +:10881800888F0108808F010840420F00948F01085B +:10882800908F01088C8F010890230320024A5B0176 +:10883800D35818407047C04600002040F8B590272C +:10884800164C7F010600FFF788FEE3590500DB435D +:108858009B0713D080239020104A9B00D6504001DC +:1088680013580F4919400F4B0B43102113505368ED +:108878001942FCD02800FFF774FEF8BDFFF76DFE23 +:10888800E359074A1A40084B13431022E35163681F +:108898001A42FCD0FFF765FEDCE7C0460000204026 +:1088A800FCFF00000300FA050100FA0510B590244A +:1088B800FFF753FE074A6401135907491940074B4C +:1088C8000B431021135153681942FCD0FFF749FE9E +:1088D80010BDC04600002040FCFF00000000FA0563 +:1088E80070B5094E82B07369019398470300002060 +:1088F800002B07D10124F56AA8470442FCD1336A4A +:108908000193984702B070BDB0F0021010B5084C42 +:108918000020A3689847236902209847E121A46AA8 +:1089280049020120A04701211520A04710BDC046DB +:10893800B0F00210044B82B01B681A0C1804120421 +:10894800000C104302B07047ACF0021001207047D1 +:10895800054B1A790023002A01D0012801D91800F3 +:108968007047043BFBE7C046988F0108042040424B +:108978007047C046014B98687047C046988F0108F9 +:10898800014BD8687047C046988F0108002382B011 +:108998000193019802B07047042040427047C046D6 +:1089A800002382B00193019802B0704770B50A4C59 +:1089B8000D0023790026002B09D0002809D00029B2 +:1089C80007D00A00010020681CF07AFAE560300040 +:1089D80070BD05267642FAE7988F010810B5064C57 +:1089E8002379002B06D0206800211CF03BFC20686E +:1089F8001CF006FC002010BD988F010870B5114CC2 +:108A08000D0022790023002A16D0002816D000294C +:108A180014D00A00010020681CF098FA822101266F +:108A28002068890042584358D205DB0B3340D20DE9 +:108A38009B18002BF6D1A560180070BD05235B427A +:108A4800FAE7C046988F010870B5244B244C1A6881 +:108A5800256890B02061954205D000230026237137 +:108A6800300010B070BD1B7900262371002BF7D0A1 +:108A780040221C496846F8F7CDFA002269462800CA +:108A88001CF0BAFAC1228021236892009C5849023E +:108A98000C439C509C58144D2C409C509A58812251 +:108AA80092009C58214399509958294099509A58B6 +:108AB800002809D00D4B98420CD0D1D30C4B9842CA +:108AC800CED802267642CBE78022196812060A43DE +:108AD8001A60C5E705267642C2E7C04634F30108A6 +:108AE800988F0108E8F00210FFFFFEFF0160AA005E +:108AF8000360AA0070B52F4D04002B790020002BCD +:108B080025D0FF232340012B1FD1002128681CF00A +:108B1800A9FBE0212300A022C9000B40D200934208 +:108B280006D015D8002B03D08022520093420CD1D6 +:108B3800C02380229B012340520193420FD0802200 +:108B4800920193420BD0002B09D00420404270BD03 +:108B5800C022D2009342EBD08B42E9D0F5E7C02384 +:108B68001B021C408023DB019C4205D080231B0292 +:108B78009C4201D0002CE8D1C12280212B689200B0 +:108B8800985849020843985098580B4C20409850E0 +:108B98009A58812292009858014399509958002078 +:108BA800214099509A588022196812060A431A607F +:108BB800CDE7C046988F0108FFFFFEFF10B5294C8E +:108BC80082B0200000F014F9274815F023F800F0CF +:108BD8005BF9012100201CF0F7FB6C220121002029 +:108BE8001CF04CFB012100201CF0AEFB2379002B6C +:108BF80024D1012200210F201CF074FB0122002146 +:108C080010201CF06FFB2379002B1DD1FFF742FDCC +:108C180001A9684601F016FA8021009B134AC90091 +:108C280059181160019953608C466344013B936065 +:108C3800FFF7FAFD032812D002B010BD012200216F +:108C480005201CF04FFBD4E7094A0021094815F01C +:108C5800B3FC094A0121074815F0AEFCD6E7FFF737 +:108C680025FEE9E734F30108DC20031028F30108A6 +:108C780028F10210800231405CF102100020704798 +:108C88000020704710B506210E201BF0C9FD0028F2 +:108C98000AD107210F201BF0C3FD002804D10121B0 +:108CA8001BF0BEFD002800D0004810BD5C3A000053 +:108CB80070B50C4C00262500203DE06900F0B4FC9E +:108CC800002800D0084E043CAC42F6D100F0EAFD82 +:108CD800002805D1BFF34F8FBFF36F8F300070BDF1 +:108CE800014EF7E7B88F01085C3A000070B5044CF4 +:108CF8002500203501CC00F0B1FAAC42FAD170BDA4 +:108D0800B88F010870B500240026084DA300E85864 +:108D180000F02AFA002800D0054E0134032CF5D1C2 +:108D2800BFF34F8FBFF36F8F300070BDAC8F01085A +:108D38005C3A000070B5040082B0002816D0104DCF +:108D48002B68002B03D00020236002B070BD802068 +:108D5800002201A9400024F099FBA02306001B066D +:108D6800984205D001F090F92B68ECE70548ECE74C +:108D78002900019824F0F0F8B042F3D12B68E2E71B +:108D8800DC940108C5A30000002370B5174C82B01D +:108D9800216805000093002910D0280024F026F847 +:108DA800002806D0694624F03FF9A0231B06984204 +:108DB80001D001F069F9009802B070BD802000224E +:108DC80001A9400024F062FBA02306001B0698427C +:108DD80003D001F059F92168DFE72100019824F058 +:108DE800BBF8B042F5D12168D7E7C046DC9401084A +:108DF80070B5224E82B034680500002C12D02100D4 +:108E08001F4823F0F3FF002807D001A924F00CF92C +:108E1800A02306001B06984213D000232B602B7159 +:108E280002B070BD8020002201A9400024F02EFB72 +:108E3800A02304001B06984214D001F025F93468D9 +:108E4800DDE7019B21002B600E4823F0CFFF0028AF +:108E580005D06B46D91C24F0D3F8B0420AD00023C1 +:108E68002B71DDE73100019824F076F8A042E4D1B7 +:108E78003468C4E76B46DB782B71D1E7DC940108D2 +:108E880090F10210ACF1021010B500F05DF800F09E +:108E980007F800F049F800F013F800F019F810BDD1 +:108EA80010B5002100201CF08FFA002200210020BC +:108EB8001CF0E4F9002100201CF046FA10BDC04661 +:108EC80010B5002200212F201CF00CFA10BDC0465E +:108ED80010B50E4C0E4A0021200015F06DFB200045 +:108EE8000C4C0D4A012115F067FB0C4A04212000A7 +:108EF80015F062FB0A4A0621200015F05DFB094ABD +:108F08000721200015F058FB10BDC0460000314075 +:108F180060F202100003314094F202102CF20210A9 +:108F2800F8F10210C4F102103322034B03495A50DE +:108F380003495A507047C0460000304008200000DE +:108F480010200000FEE7C04610B5962182B0002030 +:108F58001EF0E0F81EF0A4F8002808D11EF08CF8E6 +:108F68001CF02EFD1CF00EFD01201CF045FD01201B +:108F78001EF0CAFB1EF07AF91EF0C6FE1EF0B2FE05 +:108F8800002100201CF03EFC00201CF091FB012079 +:108F98001CF06AFB00201CF045FA6B4B1A683F2353 +:108FA800D45C002C05D02000013C1DF049FA002CAF +:108FB800F9D1002101201CF0D7FE00201CF018FC7C +:108FC800002800D1A7E000241DF0EAF800210020C5 +:108FD8001CF0CAFE002100201CF0DEFB002300224A +:108FE80000215A48009415F0D9FB584800940023F2 +:108FF8000022012115F0D2FB55481CF02FFC002857 +:1090080002D00520FFF79EFF01201CF00FFB002077 +:109018001CF04EFB00201CF027FB00201CF002FA7D +:10902800002101201CF0A0FE002100201CF09CFE65 +:10903800002102201CF098FE46481DF0D5F80028B3 +:1090480000D074E044481DF033F9002802D0042011 +:10905800FFF778FF002100201CF09EFB0021002074 +:109068001CF0D0FB3D4901201DF01AFA002866D1FA +:109078003B4901201DF076FA002802D00320FFF7B3 +:1090880061FF384902201DF00BFA002853D13449FA +:1090980002201DF067FA002802D00320FFF752FFD4 +:1090A800002102201CF078FB012102201CF0AAFB01 +:1090B80002201CF017FB002103201CF06DFB00218F +:1090C80003201CF09FFB03201CF00CFB0021042054 +:1090D8001CF062FB002104201CF094FB04201CF00F +:1090E80001FB1CF091FA00201CF03EFA00201CF055 +:1090F80055FA1CF06BFA01201CF01EFA1CF042FC19 +:1091080001201CF079FC642100201EF003F8FFF711 +:109118004FFB02B010BD1CF067FE1223FF339842CC +:1091280000D050E7012100201CF036FB4BE704205B +:10913800FFF708FF86E70320FFF704FFA7E70320F0 +:10914800FFF700FF94E7C0463CF3010800003140F8 +:1091580040420F00C8F20210400D0300DCF202107A +:1091680010270000E4F2021070B5057882B0040000 +:10917800002D34D0012D06D029003648F8F79AFD85 +:10918800354802B070BD7F263100838A0095994327 +:109198000022002340681BF0EBFD0028F1D1207E5F +:1091A800A18AE37DA27D0090314060681BF0E0FD5C +:1091B8000028E6D131002389009599430122012333 +:1091C80060681BF057FD0028DBD1E37AA27A218979 +:1091D8006068247B314000941BF04CFDD1E72423C8 +:1091E800016AC25C40681BF057FC0028C9D17F2582 +:1091F80001262900A38A009699430022002360686B +:109208001BF076FC0028BCD1207EA18AE37DA27DDC +:109218000090294060681BF06BFC0028B1D16068A1 +:109228001BF00EFD0028ACD1290023890096994334 +:109238000122012360681BF0B1FB0028A1D1E37A69 +:10924800A27A21896068247B294000941BF0A6FB40 +:1092580097E7C04664F302100100C200F0B5CE469D +:10926800474680B5426887B005000368511C40D066 +:10927800B8498B4200D1D4E029DDB7498B4200D1EF +:10928800D1E000DCA7E0B5498B4200D179E000DCF1 +:10929800BFE0B3498B4200D1C7E0B2498B4226D127 +:1092A800B1490123287A01308340687A002800D028 +:1092B8006BE0AE480090AE48F8F7FCFC6B7A002BE8 +:1092C80000D06BE007B00CBC90469946F0BDA949A8 +:1092D8008B4200D1A3E049DDA7498B4200D1B0E021 +:1092E800A6498B4200D1AAE0A5498B424BD0A5499B +:1092F800D7E701890029BBD1964A934200D187E17B +:1093080075DD954A934200D121E100DCA8E0934A3B +:10931800934200D10DE100DC05E1914A934200D16E +:109328000FE1904A934272D18F499748F8F7C2FCEF +:109338002C68964B65689C4200D1E3E0944B9C42B4 +:1093480000D1E3E08B4B9C4200D1AEE08022520575 +:109358009446039B8F4863440393F8F7ABFC002DB6 +:1093680000DA8AE08C48F8F7A5FCABE787498B421E +:1093780063D087498B425ED088498B42B7D18849F0 +:109388008FE788498DE788498BE7884800907848B7 +:10939800F8F790FC6B7A002B00D193E701212B7A28 +:1093A800834801339940C908F8F784FC814B0024AD +:1093B8009946814B01279846804E6B7A4246234155 +:1093C8001F4200D04A46210030000134F8F772FCF1 +:1093D800082CF2D176E77A498B422AD079498B4218 +:1093E80025D079498B4200D081E7784959E7614A0D +:1093F800934200D1A3E026DD5F4A934200D19CE06E +:109408005E4A934200D196E05D4A934233D05D496B +:109418008BE76F498B4200D069E76E4941E76E4997 +:109428003FE76E493DE76E493BE76E4939E76E49CC +:1094380037E76E4935E76E4933E76E4931E76E49DC +:109448002FE76E492DE7514A934200D1E4E0504A94 +:10945800934200D1DEE0514A9342D8D1504964E7A3 +:10946800574A934271D0574A93426CD0564A934216 +:10947800CDD1564959E74C4957E721680124ED00F9 +:10948800FF27ED0E0135AC400F40090A09025C4880 +:10949800F8F710FC21005B48F8F70CFC002F14D1FA +:1094A80032495948F8F706FC0CE703A800F08EFD8E +:1094B800802040058446039B049A63441900029265 +:1094C80003935248F8F7F6FB49E738494E48F8F74E +:1094D800F1FBE1083648F8F7EDFB364B00249946D6 +:1094E800354B01259846354E2B00A34042461F4276 +:1094F80000D04A46210030000134F8F7DBFB082C85 +:10950800F2D1DFE603A800F039FDD1E702A903A8EC +:1095180000F084FD802252059446039B029A63441E +:1095280019000393CDE72A4A934200D06FE72949EF +:10953800FBE61C49F9E63049F7E63049F5E62649E5 +:10954800F3E62849F1E62849EFE62849EDE62449FB +:10955800EBE6C046C0212340C022234040232340DD +:1095680080232340C0232340DCF40210F8F40210C7 +:10957800D0F50210C0202340402123408021234001 +:1095880000212340E4F4021004F502104020234097 +:109598008020234028F50210B4F502100020234053 +:1095A80064F40210CCF4021084F40210FCF40210EB +:1095B80010F60210A8F502108CF5021094F50210AE +:1095C800402223408022234000222340A4F402109A +:1095D80000232340C4F402107CF402109CF402100F +:1095E800BCF40210D4F40210B4F40210ACF402106B +:1095F80074F402106CF4021094F402108CF402104B +:1096080068F5021078F50210F4F502104CF5021016 +:1096180002498AE6024988E6024986E69CF4021075 +:1096280074F402106CF40210F0B5DE4657464E464C +:109638004546E0B5436889B00400011D01330BD0ED +:1096480020681BF04DF900281BD009B03CBC90469F +:109658009946A246AB46F0BD0389002BF0D10C22F7 +:1096680002A8F7F7D7FC23688A4A934200D1FFE0A3 +:10967800894A934200D1FFE0884A934211D0884832 +:10968800E3E72100206810311BF0F4F80028DCD152 +:1096980020681BF075F90028D7D120681BF062F903 +:1096A800D3E705A800F092FC802252059446069B59 +:1096B80099460193059B63441F0005934B465E1E24 +:1096C80033421AD149463800F7F768FB002914D10C +:1096D8004B46FF2B00D8ABE002970122012000E0A7 +:1096E8001A000100531C99404945F9D36B461A7377 +:1096F80000236A4602A95373A2E775083543AB08ED +:109708001D432B091D432B0A1D432B0C1D4380238E +:1097180001355B009D4200D21D0080231B05994541 +:1097280000D895E08023DB059A46AA45A7D30723EE +:10973800B8469B46C844EE0831003800F7F72EFBC0 +:10974800002919D14E451CD07300994519D09B1991 +:10975800994516D0B200914513D09219914510D071 +:109768005B0099450DD0F3009B1B994509D02B0050 +:109778005A469343994504D06D005545DBD948486E +:1097880063E729003800F7F783FA6843431943452C +:10979800F2D30123029001229C4600E01A006146A0 +:1097A800531C9940A942F9D36B461A730122B84257 +:1097B80003D300224346984252413318BB4201D397 +:1097C800984501D802231A437300C118B94201D33E +:1097D800884501D804210A43F318C1188F4201D8DB +:1097E800884501D808210A43F318C1188F4201D8C7 +:1097F800884501D810210A43F318C118B94201D38A +:10980800884501D820210A43F318C1188F4201D88E +:10981800884501D840210A43F6183618BE4201D3BC +:10982800B04501D880231A436B4602A95A7307E74B +:1098380075083543AE0835432E0935432B0A1D43B9 +:109848002B0C1D43802301355B009D4200D21D0077 +:109858004B46DA00530813439A0813431A09134373 +:109868001A0A13431A0C13435A089B1A9A465CE7C0 +:1098780005A800F083FB17E701A905A800F0CEFBB7 +:10988800802252059446059B63441F000593019B63 +:10989800994613E74020234080202340C0202340DE +:1098A8000300C20010B584B001AC0A2200212000D8 +:1098B800F7F708FC01230322A371E2716381B14A1F +:1098C800B14BB2499A585B58002A02DB002B00DBE7 +:1098D800D9E0AF4AAB4BAC49D358AE4A8A58002BB3 +:1098E80002DB002A00DBDBE0A94AAB4BA649D358D0 +:1098F800AA4A8A58002B02DB002A00DBDDE0A44AD2 +:10990800A74BA149D358A74A8A58002B02DB002A43 +:1099180000DBDFE09E4AA44B9B49D358A34A8A58F0 +:10992800002B02DB002A00DBE1E0994AA04B9649B4 +:10993800D358A04A8A58002B02DB002A00DBE3E058 +:10994800934A9D4B9049D3589C4A8A58002B02DB76 +:10995800002A00DBE5E08E4A994B8B49D358994A97 +:109968008A58002B02DB002A00DBE7E0884A964B86 +:109978008549D358954A8A58002B02DB002A00DB18 +:10998800E9E0834A924B8049D358924A8A58002B7F +:109998000CDB002A0ADB21008F481AF06BFF002835 +:1099A8006FD18D481AF0DEFF00286AD1784A8B4BB8 +:1099B8007549D3588A4A8A58002B0CDB002A0ADBDF +:1099C800210088481AF056FF00285AD185481AF015 +:1099D800C9FF002855D16E4A834B6B49D358834A37 +:1099E8008A58002B0CDB002A0ADB210080481AF079 +:1099F80041FF002845D17E481AF0B4FF002840D125 +:109A0800634A7C4B6049D3587B4A8A58002B0CDB4D +:109A1800002A0ADB210079481AF02CFF002830D1EF +:109A280076481AF09FFF00282BD1594A744B5649A3 +:109A3800D358744A8A58002B0CDB002A0ADB210011 +:109A480071481AF017FF00281BD16F481AF08AFFD7 +:109A5800002816D14E4A6D4B4B49D3586C4A8A5848 +:109A6800002B02DB002A00DBEAE0494A694B464941 +:109A7800D358694A8A58002B02DB002A00DBF6E03B +:109A8800002004B010BD210064481AF0F3FE00283D +:109A9800F7D162481AF066FF002800D119E7F0E70D +:109AA80021005F481AF0E6FE0028EAD15C481AF067 +:109AB80059FF002800D117E7E3E7210059481AF0B9 +:109AC800D9FE0028DDD157481AF04CFF002800D1F4 +:109AD80015E7D6E7210054481AF0CCFE0028D0D16B +:109AE80051481AF03FFF002800D113E7C9E72100C9 +:109AF8004E481AF0BFFE0028C3D14C481AF032FF76 +:109B0800002800D111E7BCE7210049481AF0B2FE4D +:109B18000028B6D146481AF025FF002800D10FE7E3 +:109B2800AFE7210043481AF0A5FE0028A9D1414813 +:109B38001AF018FF002800D10DE7A2E721003E48DF +:109B48001AF098FE00289CD13B481AF00BFF002819 +:109B580000D10BE795E7210038481AF08BFE002862 +:109B680000D08EE735481AF0FDFE002800D088E7BF +:109B7800074A174B0449D358164A8A58002B00DB6A +:109B880007E713E70420000000002340242000001A +:109B9800400023406420000044200000A42000006E +:109BA80084200000E4200000C420000024210000DC +:109BB800042100006421000044210000A4210000C9 +:109BC80084210000E4210000C421000024220000B8 +:109BD80004220000642200004022234044220000A6 +:109BE800A42200008022234084220000E4220000F6 +:109BF800C0222340C4220000242300000023234065 +:109C08000423000064230000402323404423000071 +:109C1800A423000084230000E42300000020234044 +:109C28004020234080202340C0202340002123409F +:109C38004021234080212340C0212340002223408B +:109C4800210012481AF016FE002800D019E70F4824 +:109C58001AF088FE002800D013E70D4A0D4B0E4974 +:109C6800D3580E4A8A58002B00DB06E708E7210084 +:109C78000B481AF0FFFD002800D002E708481AF048 +:109C880071FE002800D1FBE6FBE6C0468023234096 +:109C9800400023408423000000002340E423000008 +:109CA800C023234048424841014940420840704788 +:109CB800C5A30000014B18687047C04628F3010887 +:109CC800014B1B685868704728F3010830B587B006 +:109CD8000400FFF70BF8C023264A5B00D358DB07C4 +:109CE80037D405A8FFF726F800230F2200936A440B +:109CF80004AB0121059823F08DFAA0231B06984296 +:109D080015D021001C48F7F7D5FF822101251B48F3 +:109D1800890042584358D205DB0B2B40D20D9B18C3 +:109D2800002BF6D12000FEF789FD07B030BD6B4649 +:109D3800DB7B002BE5D023F013FD0499884210D378 +:109D48000F48F7F7B7FF04A823F048FC23F0E8FC16 +:109D5800D7E723F0F7FC23F0DDFC0A48F7F7AAFF62 +:109D6800BFE723F0FDFC010004900748F7F7A2FFC6 +:109D78000499E5E7000026406CF7021000006540F2 +:109D88003CF70210FCF6021018F70210862180201A +:109D9800F0B5C6461E4FBA243A684901136A400412 +:109DA800591800B5886080218625125B8046D0004E +:109DB8008018C018490082B0164A14F04FFD3B685D +:109DC8006D01195B1E6AC900463486235B01F218CF +:109DD800D3681B0C2342FBD043468819735101A951 +:109DE800735914F049FDBA223B68995A1E6AC90092 +:109DF8000028EAD18B195860019A074B9A42E4D19E +:109E08000648F7F757FF02B004BC9046F0BDC046BD +:109E18003CF3010811E0AD7DEE1F52828CF7021071 +:109E28000322FF2330B585B22A40D200C0249340D4 +:109E38002140DB43914000280CDB0D4AC0249446A6 +:109E4800800880006044A40002591340194301515E +:109E5800002030BD0F2207482A408446083A92085D +:109E680092006244D06903401943D161F0E7C046CB +:109E780000E100E000ED00E070B5094B1400094A6C +:109E880005000E0000F004F9002803D10123237017 +:109E9800637070BD22003100280000F009F9F8E76E +:109EA800FFFF0F0800800E0870B5140005000E00B3 +:109EB80000F038F900201AF0D1FC0138434258412B +:109EC800084A2070084B3100280000F0E1F800280B +:109ED80006D1012320716370E3706071A071A070D6 +:109EE80070BDC04600800E08FFFF0F0810B500F0D7 +:109EF80081F910BD10B5FEF7C3FE10BD002807DBC1 +:109F08001F23C02218401E3B8340024952008B5039 +:109F18007047C04600E100E0002805DB1F23184019 +:109F28001E3B8340014A13607047C04600E100E0D1 +:109F380000280ADB1F2318401E3B83408022034968 +:109F48008B50BFF34F8FBFF36F8F704700E100E076 +:109F58000020704710B5FEF791FE10BD0020704735 +:109F6800002070470020704710B5FEF727FE18F054 +:109F7800DFFB62B6FEF7CAFC002010BD10B5041E58 +:109F88000BD00748FEF700FF20600648FEF7FCFEEE +:109F9800042360600020237210BD0348FCE7C0461C +:109FA80060F6021070F60210DAC2000010B502481E +:109FB800FEF7EAFE10BDC04680F6021010B5024852 +:109FC800FEF7E2FE10BDC04698F6021010B5041E5A +:109FD8000BD00748FEF7D8FE20600648FEF7D4FEEF +:109FE800042360600020237210BD0348FCE7C046CC +:109FF800ACF60210BCF60210DAC2000010B5024836 +:10A00800FEF7C2FE10BDC046C8F6021010B50248E1 +:10A01800FEF7BAFE10BDC046E0F6021070B50400A7 +:10A028000D00002809D0002907D00448FEF7ACFE2F +:10A0380020600348FEF7A8FE286070BD30F60210C5 +:10A0480048F6021030B5040087B00D00002816D07D +:10A05800002914D005A8FEF76DFE04AB0093094A49 +:10A0680003AB1021059823F03FF8A0231B06984264 +:10A0780001D000F009F8039B2360049B2B6007B014 +:10A0880030BDC046F4F6021010B513F0B5FD10BD92 +:10A0980010B5CC43844208D3904206D30139401806 +:10A0A80083429B411F20184000E01F2010BDC0467E +:10A0B80001231370CB4310B598421CD8134B984218 +:10A0C8001CD8134B9C681B68984203D34B1EC318BB +:10A0D8009C4218D20F4B98420DD901390B4B4118AD +:10A0E800994205D90C4B984205D90C4B994202D894 +:10A0F8000123537001E00023137010BD4B1E084C60 +:10A10800C318A342DDD800235370F6E7FFFF020807 +:10A1180028F30108FF170008FF030010FFFB0310D6 +:10A12800FF7F0E080023137001335370CB4310B523 +:10A1380098421ED8254B98421ED2254B254C013BF0 +:10A14800A04203D34C1E0419A3421BD2224B234C1A +:10A15800013BA0420AD34C1E0419A34206D3012393 +:10A16800D370137153719371937004E01C4B984230 +:10A1780010D80023537010BD1A4C4B1E013CC31855 +:10A188009C42DAD3002301211371D170517193716C +:10A198009370F0E70139144B411899420DD9134BCC +:10A1A8009842E6D9124B9942E3D80123D370002391 +:10A1B8001371537193719370DDE701230021D370FC +:10A1C8001371517191719370D5E7C046A0050010C5 +:10A1D8000085001040750010204000080018000895 +:10A1E800FF170008A02D0010FFFF0208FF03001052 +:10A1F800FFFB0310002330B5CC43137001335370B9 +:10A20800A0420BD8104CA0420BD8104B9C681B687E +:10A21800984203D30139401884420DD20023537069 +:10A2280030BD4C1E0A4D0419AC42EED8D3701371E0 +:10A23800537193719370F3E7002301211371D17067 +:10A24800517193719370EBE7FFFF020828F301083F +:10A25800FF7F0E08F0B557464E46DE464546E0B548 +:10A26800040087B00F001600002864D0CB43984242 +:10A2780061D8EFF30583002B00D171E03507ED0FAE +:10A28800AD00B3065FD40123994600239A460623FE +:10A298003340062B5FD0B3076AD508230193002308 +:10A2A8009B46002303AE33709846320001333900D1 +:10A2B80020007370FFF7E0FD3378002B3BD07378F4 +:10A2C8004B4538D180235B020493434604AE337177 +:10A2D8007371B3714B46320039002000002B49D00E +:10A2E800FFF7E2FD3378002B62D07378F178347988 +:10A2F8007279B779002B1ED05346002B3DD05B46B0 +:10A30800002B09D0002902D11F20002A14D00020D8 +:10A31800002C11D1002F0FD1019B002B0BD0002056 +:10A32800002909D153425A411F205242104003E0EC +:10A33800019B002BF6D11F2007B03CBC90469946E4 +:10A34800A246AB46F0BD0023994612339A4606232F +:10A358003340062B9FD10023019301339B46A0E78E +:10A36800EFF31483DB0700D488E7FFF78DFE85E75A +:10A378001548E1E7FFF7BAFDB7E75B46002D0ED1B8 +:10A38800002B18D01F200029D6D00020002CD3D1B4 +:10A3980001984342584143421F201840CCE7002B04 +:10A3A800C6D01F20002AC7D00020002FF0D0C3E756 +:10A3B800FFF76AFE99E7019B002BBCD04B4259413D +:10A3C8001F2049420840B7E7DAC20000F8B5FFF796 +:10A3D800C5FD002832D1FFF7C3FD00282ED1FFF7B5 +:10A3E800C1FD00282AD112F081FD002826D1FFF7EF +:10A3F800BBFD002822D100F007FE00F009FEFFF7A0 +:10A40800A9FD00281AD1114B114C05001F680FE057 +:10A418000023E65E61683000FFF702FD00280DD1D9 +:10A4280001003000FFF794FD1034002806D10135F3 +:10A43800BD42EDD3FFF75EFD002801D0FFF724FEF3 +:10A4480000F0D0FD00F078FC0020F8BDC4FC02103C +:10A45800BCFC021005490B685A1C07231340044A28 +:10A468000B60801A0133C000C0187047F09F0108C4 +:10A47800E0940108002804D00138034BC008C01834 +:10A4880070470020FCE7C046E094010870B504005E +:10A498000A480D0000F08EFC00280ED09C23C45002 +:10A4A800002343600300A021A268A03385605360A5 +:10A4B8004250A360A4230834C45070BDE09401083E +:10A4C80070B504000D000100074800F08BFC00285F +:10A4D80007D0A068401B431E9841044B40421840D7 +:10A4E80070BD0248FCE7C046E09401080500008002 +:10A4F8000023A422CB60A0338858CB5810B55860ED +:10A508008A580348136000F065FC002010BDC0465F +:10A51800E094010800200A607047C04670B5050045 +:10A52800036E5C3506000020AB4203D116E05B6881 +:10A538009D4210D01A00883A54682468A4688C4256 +:10A54800F5D100280AD11C68586860605B68100063 +:10A558001C609D42EED1F36E8B43F36670BDC0461E +:10A568008007C00F7047C04610B5094C0023220071 +:10A5780003E001331832132B08D01168C9688142EF +:10A58800F7D15800C018C000201810BD0020FCE703 +:10A5980020A3010810B500F049FC103810BDC046D2 +:10A5A8000368986900280ED001280AD15869401A12 +:10A5B80041424841064B07499C4640420840604496 +:10A5C80000E0034870475B698B424041F2E7C046B0 +:10A5D80003000080FDFFFF7F70B50400002A05D04E +:10A5E8000B681B7C002B1AD0002070BD00F01EFCED +:10A5F8000500103D102814D02B68986A00280ED04A +:10A60800DB6A1A689442EFD00433002204E0043372 +:10A61800191F0968A142E7D001328242F7D10248E6 +:10A62800E3E7FFF731FDE7E70500008010B50028F4 +:10A638001ED0441E1548E4080419210000F0D2FB7E +:10A64800002820D0124BE2689A421CD100F0EEFBA1 +:10A65800102810D010380368002B0CD05A682369D2 +:10A668005B681B685B6893420DD120000C3010BDFD +:10A6780000240648E1E70122236952425B681B680F +:10A688005B689342F1D00020F1E7C046E0940108EE +:10A69800434315150C307047F8B5DE4647460400AD +:10A6A80080B58B461700002190229846099E0B9D85 +:10A6B80000F0BEFD314B0D9AA3600023E360304BE0 +:10A6C80023605B4663608023E250089BA361434696 +:10A6D80023610A9B002B18D07368236233682364B4 +:10A6E8000A9B012B11D9F3686362B368A3640A9BC0 +:10A6F800022B0AD07369A362336923650A9B032B73 +:10A7080003D0F369E362B369A3650C9B002B1DD0EA +:10A718001A006B6823632B68236600236366012A8B +:10A7280014D9EA686263AA68E366A2660C9A022AE8 +:10A738000CD06A69A2632A69636722670C9A032AA4 +:10A7480004D0EA69E263AA69E367A2676761002F38 +:10A7580007D07B1E0B4ADB089B18002B01D01B6817 +:10A76800E361089B002B03DB0CBC90469B46F8BDBD +:10A778001900200000F042FEF6E7C046746E7665C8 +:10A7880043431515E094010870B506000C1E07D068 +:10A79800002805D00368002B02D04568002D02D19F +:10A7A800FFF772FC28CE9E6823008821EA6D883363 +:10A7B80053606250EB652B008C225C33E96EA3502A +:10A7C800AB6E3143E9661E420AD1A369002B02DC55 +:10A7D800E368002B03D02000083000F0B9FB70BDFF +:10A7E80028001940543000F0BFFBAB6EB343AB6692 +:10A7F800EBE7C04610B500F019FB0300103B10282A +:10A8080004D01B68002B01D0586810BD01204042BD +:10A81800FBE7C046F8B5002917D000281ED0CC4366 +:10A82800A04219D8022B12D022262A230A24022554 +:10A83800069F002F01D033002C00002A00D12300EE +:10A848001A0012F0B5FB002806D10020F8BD262614 +:10A858002C330E240625EBE70148F7E70148F5E716 +:10A868000400008001000080F0B5DE4645465746EA +:10A878004E46B121E0B5102385B0A82209017548DC +:10A8880000F05CFA744D2B68002B7CD0734B744F2E +:10A898009A46002399460393984604339B4637E02B +:10A8A800136819000223FF33994224D8566A002EF0 +:10A8B8003DD10821636E26000B436366694B206F08 +:10A8C80063650023A3652300116902685C331036B1 +:10A8D8002366E365436800923000002200F0ACFA7A +:10A8E8002368DA685B682262002B40D0300000F0F1 +:10A8F800AFFA002844D101239C467333E0449C46B8 +:10A908006C3BE1449C462B683037E24443453CD9D4 +:10A918006B6859464B441C001F6053462367BB684D +:10A928003A000B42BCD1FFF7AFFB2268B8E73168A9 +:10A938000029BED02300444620009846FFF7B2F90C +:10A94800002809D17168331D00290BD020001E0092 +:10A95800FFF7A8F90028F5D0FFF796FB7168331DBB +:10A968000029F3D14346A0461A681C00A1E7FFF767 +:10A97800A7F960613000039600F06AFA0028BAD09F +:10A98800FFF782FBB7E700230393374B002799466D +:10A998001E0085239B009A46344B354C9846A244AA +:10A9A8000297676834607B1C18D02B689B46002B85 +:10A9B80014D069680B685B689F421BD00A00A446E4 +:10A9C80074323C0000235F4605E0110008687432C9 +:10A9D800406884420DD00133BB42F6D1029FFFF795 +:10A9E80053FB7B00DF190023FF004F447B605B6E45 +:10A9F800FFDE64464B6EA268716013434B66637C4E +:10AA0800002B16D033000833F360B360029B1C346C +:10AA1800013302931836A245C3D1039C200000F0ED +:10AA280075FAE06B05B03CBC90469946A246AB4629 +:10AA3800F0BDE168002202E00132202A06D0D300EE +:10AA4800434418688842F7D15E60DBE7FFF71CFBD8 +:10AA5800D8E7C046E094010804900108A4F7021062 +:10AA6800F0F90210746E766520A301080C900108B5 +:10AA7800DCF7021070B5050000F0CAF9040000F018 +:10AA8800D5F9002C12D0844210D02300103B1B684B +:10AA98009B689B070DD4EFF314830122134383F3C0 +:10AAA800148801002200280000F03EFA00F094FC0F +:10AAB80070BDEFF3148301229343F0E7036B002B7F +:10AAC80003D08023426EC3585A60436B002B03D0D7 +:10AAD8008023C26EC358DA60836B002B03D08023B7 +:10AAE800426FC3585A61C36B002B03D08023C26FD7 +:10AAF800C358DA617047C04670B505000E000028DB +:10AB08002BDD6B1C15D0164B1868002811D05C681B +:10AB180023685B689D4211D022000023743205E04F +:10AB280014002168743249688D4207D0013383428A +:10AB3800F6D1FFF7A9FA0023DB6EFFDEE16EA36E04 +:10AB48003143E1661E4207D020001940543000F01E +:10AB58000BFAA36EB343A36670BDFFF795FAD0E76F +:10AB68000490010800290AD0481E0140481E81416E +:10AB7800044B48429C460449084060447047012001 +:10AB88004042FBE705000080FAFFFF7F026870B5CE +:10AB9800526805000C00002B06D0002A09D1EB6989 +:10ABA8002834A34202D170BD002AFCD1FFF76CFA09 +:10ABB800F9E7FFF769FAEB692834A342F3D0F5E720 +:10ABC800036810B50400002B02D00323036010BDF6 +:10ABD80000F02CF9102802D000232360F7E7FFF7D4 +:10ABE80053FAF9E7F0B5C646060000B50D001400A3 +:10ABF80013072ED50C2323400C2B00D12E00B3694C +:10AC08009A1E1578042D1FD0092D06D100F0FEF9E3 +:10AC1800FFF72AFE04BC9046F0BD444A0027934241 +:10AC28001AD2FFF7B7FC804600281CD0033D3B0032 +:10AC3800220031004046EDB2FFF7A8FF172D72D869 +:10AC48003B4BAD005B599F46300000F0F1F9200006 +:10AC5800E0E7FFF719FACDE7364A9342E1D2736984 +:10AC680001379F43DDE7FFF70FFADFE7300001F018 +:10AC7800D1FA30602000CDE73000FFF7A1FF0020B7 +:10AC8800F7E7300001F0BAF8F3E7300001F088FA8E +:10AC98000020EEE701F03EF8EBE73900300001F064 +:10ACA8003DF8E6E73900300001F03EF8E1E7220020 +:10ACB8003900300001F040F8DBE73000390001F0DE +:10ACC80097F80020D5E7300001F0B6F8D1E730005A +:10ACD80001F0FCF80020CCE7300001F013F9C8E7D8 +:10ACE800300001F063F9C4E7300001F089F9002071 +:10ACF800BFE7300001F0D2F90020BAE7300001F0D8 +:10AD080037FA0020B5E701F039FA0020B1E701F081 +:10AD18006BFA0020ADE700F0FBFFAAE7300001F076 +:10AD280067FA0020A5E784204042A2E7A0050010AA +:10AD3800C8FC0210A02D001009DF7047F0B5464688 +:10AD4800D6464F460500C0B590461C0000282DD0B9 +:10AD5800002B2BD01600083673431A0010329A467F +:10AD68008A4223D1002100F063FA10232F0099466C +:10AD78000837A944484639004B460022EF6048602E +:10AD8800013219605F609B19010018009442F6D1E6 +:10AD9800534642469F1A43460020083F4F44AF603F +:10ADA80018C51CBC90469946A246F0BD0048F8E775 +:10ADB8000100008000280BD0C3680830834207D008 +:10ADC80059681A6851605968083318000A60704752 +:10ADD8000020FCE783680839596008300B6001607F +:10ADE8004860704710B504000CC810340020A14218 +:10ADF8000CD3083253431B19994207D20839081B50 +:10AE08001100F5F7CBFF48424841C0B210BDC0461B +:10AE1800054B1868002803D105E0006C002802D013 +:10AE28004369012BF9D17047ECA40108014B18685C +:10AE38007047C046E8A4010810B57F2404610024C7 +:10AE48004260029A446101608260C36010BDC046DE +:10AE580070B5446982B00500002C08D10268002A48 +:10AE680005D08368002B02D0C168002903D10124D2 +:10AE7800200002B070BD00914168183000F01CFC41 +:10AE8800124B196800290FD028690A6990420BD91A +:10AE98000A0003E01E69B04203D91A00136C002BA4 +:10AEA800F8D12B64156402E0296429001D60012390 +:10AEB8006B61074B1A68002A05D01269286990420D +:10AEC80001D31960D4E71D60D2E7C046F0A4010899 +:10AED800ECA401084161074B012903D0064A106818 +:10AEE800186070471A68002AFAD0126901699142FD +:10AEF800F4D2F5E7ECA40108F0A401088022024B83 +:10AF080052055A607047C04600ED00E0836B83F33A +:10AF180009888022024B52051860024B5A6070471C +:10AF2800E8A4010800ED00E070B505001400183130 +:10AF380008002822290000F023F9210028001831F0 +:10AF4800282200F01DF9014B1C6070BDE8A401081F +:10AF580010B50400FFF76AFF02216060FFF7BAFF2F +:10AF6800FFF7CCFF10BDC04670B5040040680D0067 +:10AF7800002802D04369022B00D070BD0121FFF7E1 +:10AF8800A9FF63689B6B1D6000236360FFF7B6FF32 +:10AF9800F3E7C046EFF3098001B5F0B444464D46E7 +:10AFA80056465F46F0B46846FFF764FDF0BCA0461D +:10AFB800A946B246BB46F0BC03BC8E4680F309885E +:10AFC8007047C04603235B42016243627047C04634 +:10AFD800EFF30880EFF309817246FFF703FE00479D +:10AFE800FEE77047064A0749D3691B021B0AD3616B +:10AFF800136A1940C0231B040B4313627047C046F1 +:10B0080000ED00E0FFFF00FF7047C0467047C046F4 +:10B01800044A054B12889A4202D10122034B1A6056 +:10B028007047C0460008000816200000F4A4010874 +:10B03800F0B54E46DE4657464546E0B5036887B04C +:10B048000400994646688768FFF7A4FA051E65D08C +:10B058002B683D049868FFF783FA2D0C00900223B3 +:10B06800002229003000FFF7D5FB002803D13E4B12 +:10B078001B68012B08D00323236007B03CBC904613 +:10B088009946A246AB46F0BDFFF7B4FB0623FF3353 +:10B0980098425CD01023FF339842ECD14A46103BCB +:10B0A8001340022BE7D1BFB2032FE4D92F4A2F4B0D +:10B0B80092465B889A442E4B338004237380331D59 +:10B0C8009B462C4B9A454ADD4A46D2B2039222004F +:10B0D800B0465C4605AFA94693461E000CE0042224 +:10B0E8003900300000F04CF83B88039A1B0B934260 +:10B0F80017D07619B24531D904223100380000F052 +:10B108003FF83F237D883A88043513403F2BE6D12A +:10B118009211134016D1184B3B80E0E7FEF7B4FFBD +:10B1280096E74346E31A5B194B451BD82A002000D3 +:10B13800310000F025F8434642465B8864195B19E4 +:10B148005380D6E7012BCAD10C4B3B80C7E74A4650 +:10B15800063B1340012B00D08DE7A4E75C46002393 +:10B1680023608AE75C4686E7F4A401080008000823 +:10B1780016200000040800083F1100007F1100009D +:10B18800F0B505000C00002A12D006000E43F307A4 +:10B198000FD5012705E00E001E430C001D003742A5 +:10B1A80008D0611C2478013A6B1C2C70002AF2D15B +:10B1B800F0BD0300012A34D9B4072FD502275B1A42 +:10B1C8005D188C1C0988023A2980AE1C2100012ACE +:10B1D8002BD9250035432F42F2D1032A10D921005B +:10B1E800171FBF08231DBF00FF18331B5D180C1D58 +:10B1F80009682E1D29602100A742F7D103231A40B0 +:10B20800531E002AD4D022783270002BD0D0627816 +:10B218007270012BCCD0A378B370C9E70C001E0064 +:10B22800DBE701220C001E00EAE73300FAE7C0461C +:10B23800F0B557464E46DE4645468A46E0B5040018 +:10B24800CEB2002A0BD083070FD0032502E01C00E2 +:10B258001D420BD0013A631C2670002AF7D13CBC72 +:10B2680090469946A246AB46F0BD0300032A30D962 +:10B278005146FF250D40A9460D06494629438B46F0 +:10B28800514609048A46FF21A846554609040D403F +:10B2980029005D460D434146141FA408A700A44693 +:10B2A800090C1C1D3F190D4300E004341D602100EA +:10B2B8002300A742F9D16346541F9B00E41A930761 +:10B2C800CDD00E70002CCAD04E70012CC7D08E7015 +:10B2D800C5E7541E1900F4E7012040427047C046F4 +:10B2E80010B5FEF7E7FCFEF7F1FCFEF74FFD00F0A6 +:10B2F800BBF930BFFDE7C0467047C0467047C0463F +:10B308000020704710B500F0FBF910BD10B50068BB +:10B3180000F0FAF910BDC04610B50A00C16900680E +:10B3280000F006FA10BDC04670B50D00002684B0C6 +:10B3380044680369C2688168039602958569019526 +:10B3480040690090200000F06FFA04B070BDC0465C +:10B3580010B5406800F07CFC10BDC04630B5002830 +:10B368001CD00268002A19D04168002916D08068CC +:10B37800002813D00A4B0B4C1D68A5420CD10A4C6F +:10B388005D68A54208D1094C9D68A54204D1986022 +:10B3980000201A60596030BD0548FCE70548FAE707 +:10B3A8000C91010801B3001005B3001009B3001097 +:10B3B8000200008001000080034B044A1A60044A1E +:10B3C8005A60044A9A6070470C91010801B3001052 +:10B3D80005B3001009B3001010B5024B1B6898475D +:10B3E80010BDC0460C910108842310B5C058024B0B +:10B3F8005B68984710BDC0460C910108044B10B516 +:10B408009B680400080098478423E05010BDC0469C +:10B418000C910108A823064AD35C032B05D80133F5 +:10B428009800C018C000801870470020FCE7C0468C +:10B43800F8A40108A423F0B5244C83B0E5580028EB +:10B4480038D00368002B38D00127013BDBB29F407E +:10B45800032B28D822683A4223D19A00D618F6003E +:10B4680001910436D218D200A2182432137801A907 +:10B478005800C01800012C3004222818FFF780FE5D +:10B48800A01928220021FFF7D3FE23683B4323603D +:10B4980011F0A6F9AB681F43AF6011F0B1F911F0D4 +:10B4A80057F903B0F0BD0191042201A90020FFF76C +:10B4B80067FEEDE701270023CCE72368DB07F0D41C +:10B4C80001910426012700230022CBE7F8A40108F4 +:10B4D800F0B5DE4657464E464546A423E0B55D4FD7 +:10B4E8008DB0FB589A4611F07BF953465B689B4632 +:10B4F800002B00D1AAE011F083F90C23534498469D +:10B5080084235B420193002300243D1D02930126FE +:10B51800E3B29946A6405B4601341E4250D03B68D0 +:10B528004A46B3433B6020239C46AC4463464146AD +:10B538001A70280020220393FFF722FE4A46A82308 +:10B548006C62FA542B6820229946002104A8F5F76A +:10B55800B9FD4B46052B2BD83F4A9B00D3589F4635 +:10B568006B6801210493AB6804A80B93FFF7D4FE22 +:10B5780001900423A822BB542B685A1E012A05D91E +:10B58800033B012B1CD8019B002B19D0029B0422E2 +:10B5980033430293019B04A90493039B1B7858002F +:10B5A800C018A4230001FB582C301818FFF7E8FD39 +:10B5B800282200212800FFF73BFE3B681E433E601F +:10B5C80030239C462835E044042CA0D111F008F91A +:10B5D80053465A465B68029D9343524653609368AC +:10B5E80000242B43936011F00BF9002D01D011F0CA +:10B5F800AFF820000DB03CBC90469946A246AB4639 +:10B60800F0BD6B68012104A80493FFF77FFE019049 +:10B61800AFE76B68012104A80593FFF799FEA8E737 +:10B628006B6801210593AB6804A80693EB68079340 +:10B638002B6908936B690993AB690A93FFF774FE4A +:10B64800019096E7FFF75EFE019092E711F0D8F8B7 +:10B65800024CCEE7F8A4010828FD0210040000807F +:10B6680010B5FFF735FF10BD10B50C4CAC2200210A +:10B678002000FFF7DDFD0F2309482360FFF76EFE6A +:10B68800002808D1200011F083F8041E01D0FFF72C +:10B6980093FE200010BD034CFBE7C046F8A4010848 +:10B6A80040FD02100600008003DF704710B500203F +:10B6B800FFF7FAFF10BDC046F0B5C646884600B58C +:10B6C800069C0600203C15000021202220001F00B7 +:10B6D800FFF7AEFD434623600123A5619D43802308 +:10B6E8005B046561E361300028220021FFF7A0FDBB +:10B6F8003A0030002100FFF765FC04BC9046F0BD1D +:10B708000220FF307047C04670B505000E00FEF7F6 +:10B718002BFF041E09D0010032002800FEF75CFF51 +:10B72800002802D12368586900E0002070BDC04697 +:10B73800F0B587B006000F001500FEF715FF041ED0 +:10B748003AD001002A003000FEF746FF002845D015 +:10B75800002D63D1FEF798FC39002000FEF720FF8A +:10B7680000284CD0FEF790FC23685B7C002B43D06C +:10B77800FFF740F8070039002000FEF787FE051E96 +:10B788004FD0FEF787FF061E4BD02800FEF762FE5B +:10B79800002302000593049303930293019321006D +:10B7A800013B30000097FEF777FF20003100FEF7DD +:10B7B800EBFF002007B0F0BD002D2FD1FEF764FC91 +:10B7C800002200213000FEF707FF0028C2D139000F +:10B7D8000020FEF7E5FE002808D1C5E73900200063 +:10B7E800FEF7DEFE00280AD0002D17D1FEF74CFC2C +:10B7F80023685B7C002BBBD1FEF746FCB8E72368C7 +:10B808005B7C002B04D1002DF6D081204042D1E78B +:10B81800002DADD0FFF760FD0700ACE78220404265 +:10B82800C8E783204042C5E7F0B557464546DE469F +:10B838004E46E0B59FB01F002AAB1B7807909A468A +:10B848002B9B0D9114009846042F03D8299B042B99 +:10B8580000D814E15346002B00D0F8E0FEF714FCA2 +:10B86800FEF7C8FF0A90079B5A0005D5FF252B4015 +:10B87800013B1F2B00D80EE10798FEF7FBFD0A9944 +:10B888008346FEF71DFE002800D0E9E05B465B68B2 +:10B89800012B00D18CE1022B00D1D8E09C235A4621 +:10B8A800D3580993002B00D123E14346FD000093B0 +:10B8B8005246012329002000FEF7ACFF002800D1E2 +:10B8C8001AE15346002B00D0C1E0FEF7DDFB299BAF +:10B8D8000022DB0019000B934346289800930223AB +:10B8E800FEF798FF002800D12AE1FEF7CDFB0EAB4A +:10B8F80018002022002199460893FFF799FC16AA00 +:10B9080016000C92002120223000FFF791FC2A003B +:10B9180021004846FFF734FC0B9A28993000FFF7BE +:10B928002FFC002F3AD05346002B00D049E1089B4A +:10B9380046469C461C006544009601230022616827 +:10B948002068FEF767FF002801D0FEF79DFB08344A +:10B95800AC42F1D101239946B0464B46089EB94501 +:10B968001CD05246002A53D134004D46A168E368E2 +:10B978003268CB189A4206D273689C466244914258 +:10B9880001D2FEF781FB01350834AF42EED801231E +:10B998009C46E14408364B46B945E2D1299B002B29 +:10B9A80018D05346002B00D034E10C9A0B9B9446D8 +:10B9B800634414001D004646009602230022616875 +:10B9C8002068FEF727FF002801D0FEF75DFB08344A +:10B9D800AC42F1D15846FEF75DFE041E00D104E1E9 +:10B9E800289B099D0593299B079A04930C9B290082 +:10B9F8000393089B200001930A9B029700930D9BD9 +:10BA0800FEF74AFE28002100FEF7BEFE002020E0D7 +:10BA1800B068F168326841188A4203D271685118D7 +:10BA2800884214D301218C46E1444F45B2D9089C81 +:10BA38004946A446C90060586144496841188A4289 +:10BA480000D39FE071685118884200D39AE08120A2 +:10BA580040421FB03CBC90469946A246AB46F0BD5A +:10BA68005346002BF3D1FEF70FFB5B465B68012BB7 +:10BA780000D010E7FEF708FB5B465B680BE7FB1896 +:10BA8800042B00D9E6E65346002B00D1E8E6FFF781 +:10BA980023FC0A90E7E66D4ADB00D11849689858FC +:10BAA80052460E000991FEF797FD002837D05346FD +:10BAB800002B00D0C7E0FEF7E7FA079B3000191209 +:10BAC8002940FEF76DFD002801D0FEF7DDFA0A993E +:10BAD8000998FEF7DBFC834600282CD000235A4641 +:10BAE80058461360FEF7B6FC099B0790002B00D060 +:10BAF800DBE6FEF7C9FAD8E6299B5246DB001900B7 +:10BB08000B934346289800930223FEF783FE0028F0 +:10BB180000D1ECE65346002B00D1E6E697E7079BF9 +:10BB2800099819122940FEF73BFD002864D05346B6 +:10BB3800002BCAD08BE7FEF7A7FA00231B60FFDEB5 +:10BB48000EAB18002022002199460893FFF770FBDE +:10BB580016AA16000C92002120223000FFF768FB7D +:10BB68002A0021004846FFF70BFB0B9A2899300062 +:10BB7800FFF706FB002F00D0D9E6299B002B00D049 +:10BB880013E727E702339F4200D803E70898DB0052 +:10BB98008446C15863445B68CB189A4200D3F9E6DF +:10BBA80073689C466244914200D250E70836F2E638 +:10BBB8005346002B00D04AE7FEF766FA5B465B68FF +:10BBC80069E6089C0025464604E001350834BD4274 +:10BBD80000D1BFE600960123012261682068FEF7C4 +:10BBE80019FE002800D032E7EFE75346002B00D0BB +:10BBF8002DE7FEF749FAF3E60A990998FEF746FC9D +:10BC08008346002800D069E75346002B93D0832051 +:10BC180040421EE743460C9CB8460025299E2B93BC +:10BC28001F0003E001350834B5420AD0009702230B +:10BC3800012261682068FEF7EDFD002800D006E7C4 +:10BC4800F0E74746C6E68220404202E70C9001082A +:10BC5800F0B5CE46474680B5040087B00E000028F0 +:10BC68000FD0430012D4002E19D0FFF735FB070080 +:10BC78002000FEF7FFFB39000500FEF721FC002835 +:10BC880019D007B00CBC90469946F0BDFF2303407D +:10BC9800013B1F2BE7D80029F3D1FEF7F5F9FEF792 +:10BCA800A9FD07002000FEF7E5FB39000500FEF7B7 +:10BCB80007FC002823D19C23EB589846002B24D05E +:10BCC8002800FEF7E7FC814600281BD06B68012B93 +:10BCD80003D1002ED5D1FEF7D7F9002341460593AD +:10BCE800049303930293019348460097023B220072 +:10BCF800FEF7D2FC49464046FEF746FDC1E7FEF78F +:10BD0800C3F9D8E7FEF7C0F9E0E7FEF7BDF9D7E7D2 +:10BD18000020704710B5FFF7F3FC10BD10B50068A0 +:10BD2800FFF7F2FC10BDC04610B50A004168006874 +:10BD3800FFF7FEFC10BDC046F0B54546DE464E4650 +:10BD48005746E0B5036889B004000D009846FEF731 +:10BD580021FC061E48D033689868FEF701FC009065 +:10BD6800060002232A000C216068FEF753FD002814 +:10BD780026D0002D35D1FEF787F961680C2205A879 +:10BD8800FFF7FEF9069B059F9A46079B9B46A3680B +:10BD9800E4689946002F01DAFEF776F95B460396C8 +:10BDA80001930295009453464A4639004046FFF7EE +:10BDB8003BFD09B03CBC90469946A246AB46F0BD57 +:10BDC80061680C2205A8FFF7DBF9069B059F9A46D8 +:10BDD800079B9B46A368E4689946002FDEDA002D8E +:10BDE800DAD081204042E4E7FEF74EF9B3E7C046D7 +:10BDF80010B50068FFF72CFF10BDC04670B560C8CD +:10BE0800FEF7C8FB041E14D0636E2B420ED0E06E02 +:10BE18002840002E00DB70BD0028FCD12000A5665C +:10BE28005430FFF795F8E06E2840F4E7FEF72CF958 +:10BE3800EDE7FEF729F9E7E770B550C882B0002CA6 +:10BE48002BD0631E1C4228D1FEF7A4FB051E2AD066 +:10BE58002B689868FEF784FB0223009000223021AB +:10BE68003000FEF7D7FC002820D1EB6E002B22D043 +:10BE7800234225D021002800FEF750FB002822D0BD +:10BE88000300012201000C3B5A6010312F323000B0 +:10BE9800FFF776F9002002B070BDFEF7F5F8FEF75F +:10BEA80079FB051ED4D1FEF7EFF8D1E7FEF7ECF8E1 +:10BEB800EB6E002BDCD1FEF7E7F8EB6E2342D9D10D +:10BEC800FEF7E2F8D6E78C204042E4E770B5066852 +:10BED80045683000FEF7AAFB041E10D063681B6893 +:10BEE8005B7C002B01D1FEF7CFF8E5613000FEF74F +:10BEF800C1FA2A0001006068FEF70CFB70BDFEF76E +:10BF0800C3F8EBE7F0B54F46D6464646C0B543689A +:10BF180087689846C36882B000689946FEF786FB32 +:10BF2800041E3DD063685B681B689868FEF718FBC1 +:10BF380023698246002B2EDB4346032B28D8434631 +:10BF48009D0065192E6A002E06D1300002B01CBC77 +:10BF580090469946A246F0BD5346002200934946B2 +:10BF680002233800FEF756FC00281CD12E6A4E45E5 +:10BF780014D84346DB00E4183200216C3800FFF780 +:10BF8800FFF8236C9B1923642B6A9B1B2B62DCE74D +:10BF9800FEF77AF8D3E7FEF777F8CDE74E46E8E7FD +:10BFA800FEF772F8BEE7FEF76FF8DFE770B5456891 +:10BFB80086680068FEF73AFB041E1DD02369002B33 +:10BFC80017DB032D12D8AB00E318186A00280AD033 +:10BFD8000200B04208D8ED006419216C801A891853 +:10BFE80021641862100070BD3200F4E7FEF74CF8C7 +:10BFF800E9E7FEF749F8E4E7FEF746F8DEE7C0466A +:10C00800F0B54746CE4680B583684568C76883B0B3 +:10C0180000689846FEF70AFB061E3BD073685B680B +:10C028001B689868FEF79CFA33698146002B2EDB63 +:10C03800032D29D8EC000C353419AD00AB59626ECC +:10C048009B1ABB421DD34B460022009339000123A3 +:10C058004046FEF7DFFB002801D0FEF715F8626EB8 +:10C06800236E944663443A0018004146FFF788F867 +:10C07800636E9C466744676603B00CBC904699465D +:10C08800F0BDFEF701F8DEE7FDF7FEFFD2E7FDF7AA +:10C09800FBFFCDE7FDF7F8FFC0E7C046F0B5A0C845 +:10C0A800C646280000B5FEF7C1FA041E4AD06668E5 +:10C0B800002E4CD02800FEF7DDF9236980469A1C33 +:10C0C8002AD05A1C1CD0002B22DB2000FEF7F6FCDD +:10C0D80033685B7C002B30D03B00813326D00023B3 +:10C0E80042465360A369002B02DCE368002B31D081 +:10C0F800200039000830FEF737FF04BC9046F0BD39 +:10C10800002F0FD03B0082332CD03B008333E6D086 +:10C11800FDF7BAFF0027E2E701003000FEF7E8F973 +:10C128000027DCE72F003B008133D8D1A369002B1F +:10C1380015DA022342465360D7E741463000FEF73E +:10C14800D7F9C9E7FDF7A0FF6668002EB2D1FDF761 +:10C158009BFFAFE739002000FFF746F9CDE7FDF771 +:10C1680093FFBFE701003000FEF7C2F9B7E7C0460A +:10C1780010B500680821FEF7BFFC10BD10B5FEF72A +:10C1880009FA041E09D0E36E1A0702D4FDF77CFFF2 +:10C19800E36E08229343E36610BDFDF775FFF2E7EF +:10C1A80070B50668FEF7F6F9051E19D02B68310040 +:10C1B8005868FEF7D7FC041E0FDBEB6E1E4202D157 +:10C1C800FDF762FFEB6EB34324B2EB662000FDF788 +:10C1D80095FE2000FDF7A0FE70BDFDF755FFECE7CA +:10C1E800FDF752FFE2E7C04610B511F005FD10BD9E +:10C1F80070B50568FEF7CEF9041E08D0236829003B +:10C208005868FEF7AFFC00B2FDF786FE70BDFDF77B +:10C218003BFFF3E770B50568FEF7BCF9041E09D0CB +:10C22800236829005868FEF79DFC00B2FDF780FEE0 +:10C23800012070BDFDF728FFF2E7C0460D4A0168EE +:10C248000123914213D10C4AC16991420FD18268EE +:10C258009A420CD8C268002A02D001698A4206D0E4 +:10C268004269131E03D083699B1A58424341180040 +:10C278007047C04655AA00FF669911EE0F4B70B57E +:10C288009E680124002E0AD03000FFF7D7FF041E55 +:10C2980012D1F368002B0FD13569002D01D1200090 +:10C2A80070BD2800FFF7CAFF002805D1EB68B3422C +:10C2B80002D12E002D69F0E70124F0E7A4A50108BA +:10C2C800F8B53B4E0C003368002B4FD0B368002BF9 +:10C2D8004CD00D004543002848D0002915D0010056 +:10C2E8002800F4F7D5FCA04240D12B1D3ED80323EB +:10C2F80029001D4201D099430431F46803E06268C3 +:10C308008A4235D2A469002CF9D12000F8BDF36027 +:10C318003DE00B002033E3189F60264F203A5A6017 +:10C3280022691F60244FDC601A61DF61002A00D097 +:10C33800D360624658619A61002815D083619A6972 +:10C34800002A00D053612361002301226361A361A5 +:10C358003369A2606160134223D120342A0000218E +:10C368002000F4F7AFFED0E7F360E8E70024CCE75D +:10C37800A768002F19D1A369521A60699C46232A1D +:10C38800C7D80123A36063460028C0D08361A3698E +:10C39800002B00D0586100236361A3613369DB0778 +:10C3A800DBD5FFF76BFF0028D7D00120F4F704F99D +:10C3B800A4A5010855AA00FF669911EE70B50028DA +:10C3C8005DD03A4E3368002B59D0B268002A56D057 +:10C3D800834203D872689B18984202D30120F4F76D +:10C3E800EBF820380400FFF729FF0028F6D1A368EE +:10C3F800012BF3D1E568A060002D14D0AB68002BA9 +:10C408003ED163686A682033D3186B6023692B6157 +:10C41800002B00D0DD60200020220021F4F752FE1E +:10C4280023002C001D002069002835D08368002BCC +:10C4380032D16368426820339B186360626903697C +:10C44800A1692361002A1DD1002921D1426981698E +:10C458006261A161002A1DD09461A269002A00D0FE +:10C468005461002B00D0DC6020220021F4F72AFE62 +:10C4780033699B0703D5FFF701FF0028AED170BDD4 +:10C488000500D0E79161A1690029DFD04A61DDE7A5 +:10C49800F160F8E7F460E0E7002DE9D1F368A36103 +:10C4A800002B00D05C61F460E2E7C046A4A5010857 +:10C4B80070B5124E0D000400002114223000F4F76C +:10C4C80001FE0F490F4800F033F8232D15D9032337 +:10C4D800234003D0043DE41A5D1904342A000021E6 +:10C4E8002000F4F7EFFD084B7560B46034602360FA +:10C4F800064B203D6560E361F46070BDA4A50108AA +:10C50800C5C30010C9C2001055AA00FF669911EEF4 +:10C5180010B5024B1B68984710BDC046189101081A +:10C5280010B5024B1B68984710BDC0461C91010806 +:10C53800024B1860024B00201960704718910108DF +:10C548001C91010810B50A1E03D0024B00211B687C +:10C55800984710BD2091010888235B01984203D0B9 +:10C5680006D80E4B984216D10720084011D17047C3 +:10C5780090235B019842F7D090239B0198420AD1FF +:10C5880040230A009A43802AEED080235B00994218 +:10C59800EAD0872000E086204042E8E7011000004A +:10C5A80070B5446A05000E00002C08D10120FFF781 +:10C5B800AFFF6862002805D02000AE6270BD8B20F6 +:10C5C8004042FBE78D20FBE7F8B51700826A0400BC +:10C5D8000D001E00BA420DD8416A2800F4F71AFD72 +:10C5E800A06A00213A1A2818F4F76CFD0020A36A03 +:10C5F8003360F8BD8A204042FBE70000842270B512 +:10C608000C009200002105000C30F4F75BFDFF21BF +:10C6180022002B4B2B488A432340834202D02A4BCB +:10C628009A4229D10C408021284B89042143CB18F8 +:10C63800022B36D9264BCB18012B37D9254B9942DB +:10C6480036D0254B99421AD0244B994227D0244BF7 +:10C65800994233D0234B99422AD0234B994229D06F +:10C66800224B994224D0224B994223D0214B994204 +:10C6780022D0214B994221D0862040420EE020232F +:10C688001148824206D01D48824203D11C4A8918AB +:10C698000129F1D8FF2200205343AB6070BD30233D +:10C6A800EEE7102308488242EDD1E5E71423F9E7C5 +:10C6B8001C23F7E72023F5E73023F3E74023F1E7CE +:10C6C80000FDFFFF0001000800020008FFFFFFFD5A +:10C6D800FCFFFFFD08000002090000020A0000023A +:10C6E8000B0000020C0000020D0000021000000206 +:10C6F80011000002120000021300000200030008EB +:10C70800F7FFFFFD10B50400406A002802D0A16AB7 +:10C71800FFF718FF606AFFF703FF00206062A0625E +:10C7280010BD000070B51500FE22D20504000240BD +:10C73800A020C004824201D1304A1440FC2280204B +:10C74800D2052240C00482423FD12D4A944232D0C1 +:10C7580021D82C4A944232D004D82B4A94422ED065 +:10C76800002017E0294A944233D0072228488442FF +:10C77800F6D12848814235D02DD82748814239D072 +:10C788000920264CA142EBD1002B00D018702900BB +:10C7980008F01EFC70BD224A944214D005D8214AE4 +:10C7A80094420AD020480422E1E7204A944208D063 +:10C7B8001F480622DBE70522DBE70322D9E702222E +:10C7C800D7E70822D5E70A22D3E71A4A002094427D +:10C7D800E0D10122CDE79020800181420CD0164C97 +:10C7E8000520CFE70320402DCED00130802DCBD1BE +:10C7F8004035C9E70720C7E70220C5E7FFFFC0FFAC +:10C808000010C004004140040040400400444004BB +:10C818000001800401230000022000000420000021 +:10C82800000500050011C0040012C0040001400505 +:10C83800000240050002C00303240000CC235B0073 +:10C84800C3580A4A10B50400934206D0084A9342D6 +:10C8580007D0206803F02AFE10BD083008F059FA06 +:10C86800F7E708300AF0BAF8F3E7C04600015005C8 +:10C87800000250051F4B70B5440A64029C4204D064 +:10C888001D4D820A9202AA4231D14A0A52029A42A4 +:10C8980004D0194E8D0AAD02B54228D10500FF26F5 +:10C8A8004D40B54323D19C4204D0134D840AA402C1 +:10C8B800AC4208D1C5B2002D05D08024A4042C4375 +:10C8C8000E4DAC4211D09A4204D00B4A8B0A9B02FF +:10C8D80093420CD1CAB200218A4206D080239B041D +:10C8E8001343064A934200D10100080070BD00219D +:10C8F800FBE7C0460002000600040006FF00000235 +:10C9080070B50124814220D01D4A4B0A5B02934234 +:10C9180004D01C4C8B0A9B02A34218D1430A5B0229 +:10C92800934204D0174A830A9B0293420FD1FF22F5 +:10C93800040014400BD080239B042343124CA342D1 +:10C9480005D1414091434C424C41200070BDFE232B +:10C9580005009022DB051D40120500249542F4D104 +:10C9680080260A4A360502403243B242EDD10B40D6 +:10C97800AB42EAD1064A11401943091AE3E7C04617 +:10C988000002000600040006FF000002FFFF00F698 +:10C998000000FFF6F7B51700009001911D0003F0A5 +:10C9A80041FD061E24D1E02180223C68C90123886C +:10C9B800D2010B40934201D101239D4323692B40AF +:10C9C8009D420ED1089B002B12D019006069FFF719 +:10C9D80097FF00280CD10899A069FFF791FF00285C +:10C9E80006D1002320003B60852603F05FFD7642D8 +:10C9F8003000FEBD0023F0B54568136085B0040023 +:10CA08000E0087681100280003F05CFD00281DD186 +:10CA1800280003F05CFD002818D1EDB2002D08D1E4 +:10CA2800002F03D11C4B22691A4211D087204042A3 +:10CA38000CE002AB220019000832A0CAA0C1020013 +:10CA48000399029803F038FC0028EBD005B0F0BD3C +:10CA58006288124B9A421CD80122A38B9343E5D1DA +:10CA6800310001A803F09CFC0028EFD132681300C4 +:10CA780062CC62C362CC62C322CC22C35368DBB2ED +:10CA8800002B01D1019B93600121938B8B439383EE +:10CA9800DCE78620CBE7C046FC8CFFFFF8FF0000F0 +:10CAA800436870B5DBB204000D00002B0AD12300E7 +:10CAB8002A00083303CB03C2200003F0F7FC002848 +:10CAC80007D170BD826A416A03F03AFE0028EED0B1 +:10CAD800F7E700232B606B60F3E7000010B5FF2336 +:10CAE8000C0001000C4A9943914212D10340802066 +:10CAF80080041843094BC01803280AD8084B800043 +:10CB0800C0580AF085FA01210200200004F018FA42 +:10CB180010BD0020F5E7C04600030007F8FFFFFD41 +:10CB28004CFD0210F7B5FF2306001D4F9E43430A34 +:10CB38000500009101925B02BB4204D0194A830AA6 +:10CB48009B02934220D1EBB2002B1DD0802292048D +:10CB58001343154A9B18032B16D8144A9B009C585C +:10CB680020000AF055FA019B1870BE420ED1B5425A +:10CB780011D0002C11D020000AF046FA009B9842F0 +:10CB880009D08720404207E00024E9E7084B9E428D +:10CB980001D1002C01D00020FEBD8620F2E7C0465E +:10CBA8000002000600040006F8FFFFFD4CFD02101D +:10CBB80000030006030000B57F3304DAFF23404278 +:10CBC800DB011840404203006C334CD003006C3347 +:10CBD80000DDC2E0914B984200D1EDE163DC904B5F +:10CBE800984224D031DC8F4B984245D015DC8E4BCF +:10CBF800984200D1E0E10ADC8C4B984249D0972357 +:10CC08008B4A5B42904200D1DCE0842310E0894BE0 +:10CC180098426BD0884A9623F3E7884B984238D0DD +:10CC280008DC874B984261D0864B9842EDD1862329 +:10CC38005B42C7E0844B98421ED0844B984255D043 +:10CC4800834B9842E1D19223F2E7824B98424DD030 +:10CC580014DC814B9842EAD007DC804B984245D0DF +:10CC68007F4B9842D1D18A23E2E77E4B984200D18C +:10CC7800A2E17D4B9842C8D18D23D9E77B4B9842DE +:10CC880007D008DC7A4B984200D195E1794B98425D +:10CC9800BBD19323CCE7784B9842EDD0774B9842A1 +:10CCA800E1D0774BC1E7774B9842C0D028DC764B70 +:10CCB80098421BD010DC754B984217D007DC744B98 +:10CCC800984202D0734B98429FD19723B0E7724B9A +:10CCD8009842DED0714A9EE7714B984206D007DC35 +:10CCE800704B9842C8D0704B98428ED187239FE7EB +:10CCF8006E4B9842FAD06E4B9842F7D06D4BA0E736 +:10CD08006D4B984293D012DC6C4B9842EED008DC05 +:10CD18006B4B984203D06B4B984200D075E7852344 +:10CD280086E7694B984200D181E7684B7DE70300AD +:10CD38007A33AED003007A3305DC654B984200D1D4 +:10CD48003AE1644BA3E703007033A2D003006E33CB +:10CD5800BBD0723000D058E769E70300293398D078 +:10CD68000300293300DDD2E003003A3337D0030053 +:10CD78003A3336DC03006033B8D00300603312DC8A +:10CD880003006633B2D00300663306DC03006A335F +:10CD980000D171E76830A9D037E703006433A5D024 +:10CDA8006230A3D031E7030051339FD003005133E1 +:10CDB8000ADC0300563300D1FEE089235B4254307D +:10CDC80000D022E7180000BD0300403307D003005D +:10CDD800403300DA19E73D30012800D915E79423DC +:10CDE80026E703003433FAD00300343374DC03003D +:10CDF800373300D14DE70300373307DC03003933FD +:10CE080000D146E7383000D111E7FEE6030036339B +:10CE180000D10CE7353000D13BE7F6E680BCFFFFD8 +:10CE280080AFFFFF809EFFFF009DFFFF009CFFFF7C +:10CE3800809CFFFF809DFFFF009EFFFF80ADFFFFEE +:10CE4800009FFFFF809FFFFF80AEFFFF00AFFFFF47 +:10CE580000AEFFFF80B3FFFF80B1FFFF80B0FFFF90 +:10CE680000B1FFFF00B2FFFF80B2FFFF80BAFFFFF3 +:10CE780000B4FFFF80B4FFFF80BBFFFF00BCFFFFD3 +:10CE880000BBFFFF80C3FFFF80BFFFFF00BEFFFFA7 +:10CE980000BDFFFF80BDFFFF80BEFFFF00BFFFFF9B +:10CEA80080C1FFFF80C0FFFF00C1FFFF80C2FFFFFE +:10CEB80000C3FFFF00C2FFFF80C6FFFF00C5FFFFE2 +:10CEC80000C4FFFF80C4FFFF80C5FFFF00C6FFFF4F +:10CED80000C7FFFF80C7FFFF0300313300D1D8E64A +:10CEE8000300313307DC0300333300D1D1E632309D +:10CEF80000D19CE689E603002D3300D1C9E6030082 +:10CF08002B3300D1C5E62F3000D07EE6C1E6030002 +:10CF1800133300D1BDE60300133331DC03002233A1 +:10CF280013DC0300243300DB81E60300273300D140 +:10CF3800AFE60300273300DAD8E60300263300D132 +:10CF480075E6253000D1A4E65FE60300183300D16A +:10CF58006DE60300183307DC0300203300D166E6D2 +:10CF6800193000D195E650E60300163300D15EE68D +:10CF78000300163300DA8CE6143000D1B6E644E636 +:10CF880003000C3300D1B1E603000C3316DC0300B8 +:10CF9800103300D170E60300103306DC03001233AF +:10CFA8000AD0113000D174E62FE603000E3300D109 +:10CFB8009CE60E3000DD99E6952339E6831D00D105 +:10CFC80094E6831D09DC03000A3300D18EE68A2328 +:10CFD8005B42083000D1F5E617E6831C00D132E643 +:10CFE8000023984200D1EDE6031D00D00DE67DE652 +:10CFF800F0B585B005001C0002A8D3180F000193F6 +:10D0080016000AF0C1F81F4B03970293E023DB01D7 +:10D018001D409D4210D12200310002A80BF0D2F928 +:10D02800051E0FDA220000213000F4F74BF8280023 +:10D03800FFF7C0FD05B0F0BD02AA310001A80BF052 +:10D048005DF9EDE74300A3420FD8241A3419020012 +:10D0580021003000F3F7DEFF2A0000212000F4F75A +:10D0680031F80A9B00201D60E4E7A042F9D2241A97 +:10D07800020031193000F4F78BF8701922000021F2 +:10D08800EDE7C04618130310F0B51700E0221E00A4 +:10D098008023D20185B00C00DB01104098422CD1CE +:10D0A8000B008833180003930DF0D7F9002811D12D +:10D0B8000A9B002203990196009720000DF0D6F9EB +:10D0C800FFF778FD051E15D0320000213800F3F770 +:10D0D800F9FF0FE0144B22000193144B7C320093AC +:10D0E80023000399283320000DF01EFFFFF762FD8F +:10D0F800051EDDD0280005B0F0BDCB6DDA1DD208C5 +:10D10800B2420DD8390020000DF03EFCFFF752FD69 +:10D11800051ED9D1E36D0A9A0733DB081360E9E7E6 +:10D128008A256D42E6E7C04650A80108F95C01105F +:10D13800F7B503680D005E8819886B46040007334D +:10D1480032002800FFF7EEFA6060002807D0384B5D +:10D15800384A2B40934204D0374A934246D0862619 +:10D1680010E0CC23354A5B00E25010220433E2542D +:10D17800E02280212368D2011B8889011A408A4253 +:10D1880005D0872676422000FFF758FB2CE05B0588 +:10D198005B0F042BF5D127000837380007F092FD04 +:10D1A8006B462268D979526A3300380007F090FD3F +:10D1B800FFF700FD061EE6D1FE23A021DB052B406C +:10D1C800C90400228B4201D1AA02920ECE2040004F +:10D1D800205C9042D5D300228B4201D1AD02AA0E29 +:10D1E8009E230026FF33E2543000FEBDCC23144AB0 +:10D1F8005B00E25010220433E254E02280212368CD +:10D20800D2011B8889011A408A42BAD15B055B0F9B +:10D21800042BB6D127000837380009F04DF96B46C2 +:10D228002268D979526A3300380009F04CF9BFE70F +:10D23800FFFFC0FF00014005000240050001500546 +:10D2480000025005F0B589B0040003A81D000E00C7 +:10D25800170009F099FFE023DB011C409C423BD1F9 +:10D2680000233A000093310003A80AF053FEFFF7A9 +:10D27800A1FC041E2AD103A809F0BCFF012831D162 +:10D28800049803F063FE8023C0005B0198422CD809 +:10D29800049E05A805F0C4FD230022000194009413 +:10D2A80005A9300003F088FDFFF784FC041E05D1B2 +:10D2B80005A805F0F4FE430700D0863C05A805F054 +:10D2C800B5FD002C02D1049B03942B6003A809F040 +:10D2D8005FFF200009B0F0BD3A00310003A80AF052 +:10D2E80043FFC4E787246442F0E78624FBE7000095 +:10D2F800F0B50B888BB005000E00002B07D0028814 +:10D308009A4204D08724644220000BB0F0BD736AAF +:10D31800002B41D02888244B244A03409342F1D162 +:10D328000023AA6A0393696A03ABFFF78BFF041E05 +:10D33800EAD104AF380005F073FD07A805F070FDC9 +:10D3480023002200210000940197039803F034FD84 +:10D358000400039804F080FE0398FFF7E1F8002C1E +:10D368000DD1726A316A07A805F0F7FE041E06D1CE +:10D3780007A9380006F06BF8041E00D00C4C3800E2 +:10D3880005F054FD07A805F051FD002C04D020003D +:10D39800FFF710FC0400B7E700247388A342B3D05A +:10D3A8006A889A42B0D0ADE7FFCFFFFF0140000086 +:10D3B80080BFFFFF17282BD003D812280CD00020DD +:10D3C80014E030281AD04128F9D1092020290DD09D +:10D3D800043038290AD0F2E70320202906D006D8DD +:10D3E8000238182902D001301C29E8D170470420DE +:10D3F8003029FBD001304229F8D0E0E70720302956 +:10D40800F4D001304029F1D002382029D7D1EDE7F6 +:10D41800183900200829E9D8014B585CE6E7C046CE +:10D4280067FD0210F0B585B00393E023DB010340EC +:10D43800019380231600019A05000291DB019A42AC +:10D448000ED182222E4BD2010340934202D1C3B2A5 +:10D45800412B05D07708F30703D487256D4237E0C1 +:10D468003700AC210120FFF753F8041E46D00CF01A +:10D4780074FF8222224BD2012B40934200D0002518 +:10D488003900E8B2FFF796FF011E2BD020000EF0FE +:10D4980003FEFFF78FFB051E2ED18023019ADB01C7 +:10D4A8009A4218D1270088373300029A39002000A1 +:10D4B8000DF044F8FFF77EFB061E15D13900200059 +:10D4C8000DF0A8F8FFF776FB061E0DD1039B1C6034 +:10D4D800280005B0F0BD20783300029A21000DF035 +:10D4E800EFF9EFE78726764220000CF079FF20005D +:10D4F800FFF716F83500EBE70600F5E78D25ADE7F1 +:10D5080000CFFFFFF0B51F00002387B002910C99F0 +:10D51800050016003B60994203D003885B0400D4E1 +:10D5280072E0002E00D171E0E0222B883848D20149 +:10D538001A401418E0200002044238D01C00354874 +:10D5480004400390344884423BD18023DB019A4253 +:10D558002DD000292BD03B0032000299280002F080 +:10D5680093FE03000400863328D16B681B0A2ED172 +:10D57800AA6A28889446039C274A0593696A044046 +:10D5880005AB944226D16246FFF75CFE041E15D116 +:10D5980000973300029A05991F48FFF729FD0400F8 +:10D5A800059804F059FD0598FEF7BAFF06E03B0020 +:10D5B800320002992800FFF707F80400200007B09E +:10D5C800F0BD164803408220C0018342BDD08624A6 +:10D5D8006442F3E76246FFF725FF041EEED182217D +:10D5E8002B880E4AC9011A4008008A4201D1D8B2D4 +:10D5F800104300973300029A0599FFF745FD040090 +:10D6080005980CF0EDFECEE78724E1E78A24DFE7F2 +:10D6180000F0FFFFFFCFFFFF0140000000CFFFFF3A +:10D62800F0B50024D3B002901078039101381700A8 +:10D638001E00049425000C2815D8F3F715FB6B077A +:10D648000A0D0F11585A5D6063656800E0241225C1 +:10D6580009E080246400FAE7C024FBE72E4CF6E7D3 +:10D6680080246400302505A808F074FB8220C001DE +:10D67800284304AB039A0299FFF7D4FE051E26D16E +:10D688000122049905A808F0ADFBFFF793FA051EDF +:10D698001DD10200390005A808F0A4FBFFF78AFA9B +:10D6A800051E14D11D4B320001931D4B599900934F +:10D6B80005A8589B08F0C6FBFFF77CFA051E06D1A3 +:10D6C800599B07341B68E4089C4204D0973D58993D +:10D6D8003000FEF737FF05A808F061FB04980CF04E +:10D6E8007FFE0498FEF71CFF280053B0F0BDC0244D +:10D6F800B7E78024A400B5E7FF244125B3E7C02499 +:10D708001725B0E7E024FBE780246400F8E7E0246D +:10D718006400F2E7C0249AE70902000050A8010853 +:10D72800F95C01107FB51E00164B1500984224D1F4 +:10D738000888FF2302009A43E223DB019A421FD1A3 +:10D7480000238A6A0393496A03ABFFF76BFE041E42 +:10D7580010D10A9B039A0193099B3100009328007A +:10D76800089BFFF75DFF040003980CF039FE03984F +:10D77800FEF7D6FE200004B070BD86246442F9E7A7 +:10D788008724FBE700000209F8B50F001100050027 +:10D798001600FEF705FF041E04D132003900686A3E +:10D7A800F3F738FC2000F8BDF0B5050093B00F0082 +:10D7B800161E0BD0E0230088614ADB0103409B184A +:10D7C800E0221202134204D043041BD4862464428C +:10D7D80015E0F30003935B4B9E42F7D85A4BF200D7 +:10D7E8009A42F3D81100FEF7B7FE041E07D13200A3 +:10D7F80039002800FFF7C8FF039B041E21D0200032 +:10D8080013B0F0BD6B880021082210A80493F3F729 +:10D8180059FC2A0008AB13CA13C313CA13C303CA9B +:10D8280003C304AB3200390008A802F02AFD041E25 +:10D8380009D1320039002800FFF7A6FF041EDED107 +:10D84800049B6B80DBE703008633D8D128883F4BE5 +:10D85800034003938223039ADB019A423BD10023BE +:10D8680032000793390007AB0596FFF7DBFD00266A +:10D878000400B0421CD1079B2A88DB6D334903980A +:10D888009BB21140814203D1D2B2412A00D1013367 +:10D898006B8005990120FEF73BFE061E14D005ABF0 +:10D8A80000932888059B32000799FFF7EDFB0400D9 +:10D8B80007980CF095FD0798FEF732FE002C06D06D +:10D8C8003000FEF72DFE9AE78D246442F0E7059BB1 +:10D8D8006E62AB6293E71E4B1E4A0340934200D030 +:10D8E8008DE7002332000793390007AB0696FFF750 +:10D8F800A9FC00260400B04213D1079803F026FBC8 +:10D90800C000688006990120FEF702FE061E13D0AB +:10D9180006AB00932888069B32000799FFF768FB3F +:10D928000400079804F098FB0798FEF7F9FD002C0F +:10D93800C6D16E62069BCCE78D246442F1E7C046EF +:10D9480000F0FFFFFFFFFF1FF8FF000000CFFFFF01 +:10D95800FFCFFFFF0140000070B50400FEF7D2FEC4 +:10D96800236A0500012B01D097256D422C22002146 +:10D978002000F3F7A7FB280070BD10B5002801D0E0 +:10D98800FFF7EAFF10BD1FB5041E0090019101D1F9 +:10D9980000290ED003AA0098019902F043FD041E45 +:10D9A80007D1039B1A6A012A06D9180002F07EFDE6 +:10D9B800843C200004B010BD5A68D2B2002A04D0BA +:10D9C8009868D96802F0D3FD04000398FFF7C4FFF4 +:10D9D800002CEED10400ECE710B50400006AFEF755 +:10D9E8009FFD282200212000F3F76CFB10BDF7B53E +:10D9F80000260400019117001D00B34209D0190048 +:10DA08000120FEF785FD061E0ED02A003900F3F727 +:10DA180001FB206A002801D0FEF782FD0020019B4F +:10DA2800266265622380FEBD8D204042FBE7000030 +:10DA3800F0B58DB00490100005911500FFF7CCFFEC +:10DA4800002307AA009304980599FEF7A3FF041E74 +:10DA580065D107992B000A00C1CAC1C3C1CAC1C395 +:10DA680041CA41C30122AB8B08881340AB832F4BBB +:10DA7800984202D02E4B98424BD100238A6A0893D1 +:10DA8800496A08ABFFF7DEFB041E3FD1089E09AFC9 +:10DA9800380005F0C5F930000197009423002200F2 +:10DAA800210003F089F90394061E1BD1214938008F +:10DAB80005F06EFD0394061E14D0380005F010FB27 +:10DAC800010004000120FEF723FD0390002829D05F +:10DAD80001002200380005F0AFFB061E02D1039BAF +:10DAE8006C622B62380005F0A1F9002E02D0039871 +:10DAF800FEF716FD3000FFF75DF80400089804F003 +:10DB0800ABFA0898FEF70CFD002C02D02800FFF7AE +:10DB180063FF079802F0CAFC002C00D10400200023 +:10DB28000DB0F0BD10267642DCE7C046014000008B +:10DB3800017000000100010070B51E00002386B0CE +:10DB48000A9C1500236005AA00930133FEF722FF03 +:10DB580000280DD100902300320029000598FFF716 +:10DB6800D1FC0400059802F0A1FC002C00D0200094 +:10DB780006B070BD70B51E00002386B00A9C150063 +:10DB8800236005AA0093FEF705FF00280ED10123A4 +:10DB980032000093290023000598FFF7B3FC040026 +:10DBA800059802F083FC002C00D0200006B070BD60 +:10DBB800F0B51D00002385B00600019117000293FF +:10DBC80003932B606B609A421ED003AA02A9FEF74A +:10DBD80011FF041E12D13A0001990298FFF7E4FDE3 +:10DBE800041E0BD131000298FFF782FB041E05D1F9 +:10DBF80029000298FEF754FF041E02D00298FFF78E +:10DC0800BCFE200005B0F0BD87246442F9E7F0B5FA +:10DC180097B007910CAC00211F00230006900991D2 +:10DC28000A91029261CA61C361CA61C361CA61C3D0 +:10DC380012681A600698396079600B910091022386 +:10DC480009AA0799FEF7A6FE051E4ED10299099862 +:10DC5800FFF74EFB051E48D16369099E029373695D +:10DC68000393039A029B0593934204D01100180072 +:10DC7800FEF700FE0590A569B369280004939D424C +:10DC880002D01900FEF7F6FD059B002B05D1029B7B +:10DC9800002B02D0039B002B32D1002804D1002D89 +:10DCA80002D0049B002B2BD133692269A061134059 +:10DCB8002361059B0BAA63610AA92000FEF79AFE5F +:10DCC800051E12D1099C0A9EA26A616A3000FFF7FC +:10DCD8005BFD051E09D123883900338063880A98C3 +:10DCE8007380FEF7DDFE051E02D00A98FFF745FE99 +:10DCF800099802F0DBFB002D00D0280017B0F0BD1A +:10DD080087256D42F1E7000003680D4A10B504004D +:10DD1800934207D80B4A93420BD2002B0CD0892090 +:10DD280040420BE0084A9342F9D804300EF08AFCCE +:10DD380002E004300EF04FFC0020206010BDC04609 +:10DD480009000002080000020B00000210B50400E0 +:10DD58008021FC30FEF7F6FB2000FFF7D5FF10BD51 +:10DD6800036870B505000E481818032814D82B1D31 +:10DD7800F2F77AFF02020E0E18000EF049FC041E9C +:10DD880002D02800FFF7C0FF2000FEF713FF70BD88 +:10DD980018000EF074FCF2E789204042F7E7C0460D +:10DDA800F8FFFFFD036870B506000D00002B36D1A3 +:10DDB8001C4BC818032824D8341DF2F755FF02104D +:10DDC800151D20000EF002FC012120000EF014FCAD +:10DDD800041E20D135602000FEF7ECFE1AE020007A +:10DDE8000EF0F4FB0021F0E720000EF026FC0121E4 +:10DDF80020000EF038FCEBE720000EF01EFC00219E +:10DE0800F6E7FE20FE23C0051B060840C018434263 +:10DE18005841873870BD3000FFF776FFDBE789206F +:10DE28004042F7E7F8FFFFFD002310B59A4202D001 +:10DE3800FFF796FF0300180010BD0000F7B5802417 +:10DE48001F000368A4041600DBB2334A23439A1860 +:10DE5800050001911024022A2DD9304A04349A1859 +:10DE6800012A28D92E4A0834934224D02D4A043452 +:10DE7800934220D02C4A103493421CD02B4A1034A1 +:10DE8800934218D02A4A243C934214D0294A043495 +:10DE9800934210D0284A043C93420CD0274A0434B9 +:10DEA800934208D0264A1034934204D0254A9B183E +:10DEB8005C425C41A4013E60002E04D03200212166 +:10DEC8000198F3F7FFF8B4421CD82B681E4A98183B +:10DED80003281DD82B1D0199F2F7C6FE0202101067 +:10DEE80018000EF0A3FBFEF765FE061E0CD13C6081 +:10DEF8002800FFF709FF06003000FEBD18000EF0ED +:10DF0800CCFBF0E78A2676422800FFF7FDFEF3E710 +:10DF180089267642F0E7C046FFFFFFFDFCFFFFFDC4 +:10DF280008000002090000020A0000020B000002BB +:10DF38000C0000020D000002100000021100000297 +:10DF480012000002EDFFFFFDF8FFFFFDF0B500260F +:10DF580007681E4B95B0FB180500009101920396C7 +:10DF68000A2B01D81A4AD65C03AB402204A9280020 +:10DF7800FFF764FF041E25D139002800FFF712FFC0 +:10DF8800041E1BD129003200FC312800FFF74CFF8A +:10DF9800041E13D1039A04A92800FFF745FF041EA5 +:10DFA8000CD103AB402204A92800FFF747FF041E49 +:10DFB80004D1019A04A90098F3F72CF8039904A84E +:10DFC800FEF7C0FA200015B0F0BDC046FFFFFFFD08 +:10DFD8005CFD02107FB503790D0004001100DA071B +:10DFE8002CD506221340022B28D042798A4222D807 +:10DFF800036813498B4213D16946083007F0E4FBE4 +:10E00800061E04D1627969462800F3F703F86846CA +:10E018001021FEF797FA3000FEF7CCFD04B070BD72 +:10E0280008490B40E02189048B4207D129000830B8 +:10E03800FFF78CFFF2E78A204042EFE78920FBE7F1 +:10E048000002C0030000C07FF0B593B002AC0D0021 +:10E05800160001AB40222100FFF7F0FE00280AD18C +:10E06800019FB74205D1020003009F4205D1002A53 +:10E0780001D09520404213B0F0BDE95CE65C013365 +:10E0880071400A43F1E7F0B50400C1B00E00170073 +:10E098000021FC2201A81D00F3F714F8479B469ABB +:10E0A80021001A6001A8FFF77DFE041E15D13A0071 +:10E0B800310001A8FFF7B8FE041E0ED1479B469A0F +:10E0C800290001A8FFF7BAFE041E06D101A8FFF730 +:10E0D8001BFE0400200041B0F0BD01A8FFF714FEAC +:10E0E800F8E70000F0B5A5B00392802202939204ED +:10E0F800DBB21343464A07009818102202282DD98C +:10E10800444804321818012828D943480832834261 +:10E1180024D042480432834220D0414810328342FE +:10E128001CD040481032834218D03F48243A8342DA +:10E1380014D03E480432834210D03D48043A83420A +:10E148000CD03C480432834208D03B48103283420A +:10E1580004D03A4A9B185A4253419A01029B2C48D0 +:10E168001B180A2B06D83648C65C802E03D986258C +:10E178006D4237E00026B242F9D8039A04ACB242A5 +:10E1880033D903AB01938023029800932300FFF750 +:10E198007AFF051E22D100233620039A9A422AD1FB +:10E1A800B31AA01836211A00F2F78CFF00236A2050 +:10E1B8000399994224D13800FC30721A40185C2126 +:10E1C800F2F780FF02993800FFF7ECFD051E05D134 +:10E1D800320021003800FFF727FE050080212000CB +:10E1E800FEF7B0F9280025B0F0BD002AD8D02000ED +:10E1F800F2F710FFCFE7E15C4140E1540133CDE78E +:10E208001D00E25CFC3542407A550133D1E7C04637 +:10E21800FFFFFFFDFCFFFFFD0800000209000002F0 +:10E228000A0000020B0000020C0000020D000002B0 +:10E23800100000021100000212000002EDFFFFFDB5 +:10E248005CFD021070B51E00244B0400049D9A4228 +:10E258002ED003339A4213D00223FF3387209A42E9 +:10E268001BD1A378012B36D120000B002A003100E6 +:10E278001430FFF737FF002801D10223A37070BDC7 +:10E288008378002B27D1002D0ED029000120FEF71E +:10E298003FF96060002802D18D204042EFE72A0054 +:10E2A8003100F2F7B7FEA5600123A3700020E6E76E +:10E2B8008378022B0FD1002D0BD029000120FEF707 +:10E2C80027F9E0600028E7D02A003100F2F7A2FE23 +:10E2D80025610323E9E78920DFE7C0460102000042 +:10E2E800F0B5C5B00700009101921E00802B2FD811 +:10E2F800002103AC1A00637002AB981D2170F2F77D +:10E30800E1FE02AB227806339B191A7062789D1CD5 +:10E318005A70280032000199F2F77CFEBB78AD19DB +:10E328002A1B012B11D13800009B21001430FFF764 +:10E33800D9FE051E01D10223BB70822120004900AD +:10E34800FEF700F9280045B0F0BD89256D42F4E7D5 +:10E3580087256D42F6E7F0B50400C1B00E0017003E +:10E368000021FC2201A81D00F2F7ACFE210001A843 +:10E37800FFF718FD041E14D13A00310001A8FFF779 +:10E3880053FD041E0DD1469A290001A8FFF75CFE33 +:10E39800041E06D101A8FFF7B7FC0400200041B015 +:10E3A800F0BD01A8FFF7B0FCF8E700000B6870B5F6 +:10E3B80005000C00002B1BD103680E4A934207D8B6 +:10E3C8000D4A93420CD2002B12D0862040420EE018 +:10E3D8000A4A9342F9D8011D201D0EF03AF903E0CC +:10E3E800011D201D0EF0FEF800202B68236070BD73 +:10E3F8008920EBE709000002080000020B00000278 +:10E408000021036810B504008B420BD00F4A9342D9 +:10E418000AD1083006F0F8FDE022002123792160B6 +:10E4280013402371080010BD094A1340E0229204EA +:10E43800934203D10830FFF789FCEDE7C22252006E +:10E44800F2F740FE89214942ECE7C0460002C003CA +:10E458000000C07FF0B589B00E9D05926A1E9541F7 +:10E468001E00802304916D426A4F01682D039B01B1 +:10E478000400ED183740002900D0C0E0E0220379FD +:10E48800076013400371644B9F422FD1083006F098 +:10E49800B5FD0E9B002B03D0102322791343237163 +:10E4A8002B00009607AA04980599FEF773FA051E33 +:10E4B80011D1B3029B0E0393574B07999F4251D139 +:10E4C8004E880300098832003800FEF72BF9011E38 +:10E4D80024D186256D422000FFF792FF079801F0AE +:10E4E800E5FF0600002D16D02E0014E0E0224B4B6D +:10E4F80092043340934201D18160CAE7FE23DB05D1 +:10E508001E40FD231B06F618C22273425E415200CC +:10E51800873EF2F7D7FD300009B0F0BD250043690A +:10E52800083563712800079F06F09EFF002804D174 +:10E538003200796A280007F0B3F8FEF73BFB039B2B +:10E548000500002B07D0039B032BC2D96379039ADC +:10E55800934232D36271002DBDD101232279134336 +:10E568002371BBE7E0222D4B92043340934249D1FB +:10E57800F3B280262A4AB60433439A18022A35D9B8 +:10E58800284A9A18012A2FD9274A934201D11C22D6 +:10E598000DE0264A934201D1202208E0244A934202 +:10E5A80001D1302203E0234A934208D1402262710C +:10E5B80088220888520190421AD087258AE71E4A85 +:10E5C8009342E4D01D4A9342E6D01D4A9342DED0DE +:10E5D8001C4A9342E0D01C4A9342E2D01B4A934221 +:10E5E800E4D00023637174E71422E0E71022DEE729 +:10E5F80020008A6A0830496AFFF774FD9FE7892678 +:10E60800764288E7039B002B00D162E786256D429E +:10E6180099E7C046FFFFC0FF0002C0030000C07FAB +:10E62800FFFFFFFDFCFFFFFD0800000209000002DC +:10E638000A0000020B0000020C0000020D0000029C +:10E648001000000211000002120000021300000274 +:10E658001FB501240094FFF7FDFE04B010BD1FB5DF +:10E6680000240094FFF7F6FE04B010BD70B5040056 +:10E678000079C30703D489256D42280070BD06239D +:10E688000340022BF7D00823034323710D48236866 +:10E6980083420BD12000083007F02CF8FEF78AFAE5 +:10E6A800051EEAD02000FFF7ABFEE6E70648034068 +:10E6B800E02080048342DED120000830FFF7B4FB5D +:10E6C800EEE7C0460002C0030000C07FF7B51F0098 +:10E6D8000368040001911600002B03D189256D42BF +:10E6E8002800FEBD3A60002A03D021210198F2F7E4 +:10E6F800E9FC2379DB06F1D5320001992000FFF708 +:10E7080069FC05002000002D0CD1FFF779FE051EDD +:10E7180002D163793B60E3E7320021210198F2F7E7 +:10E72800D1FCDDE7FFF76CFEDAE7F0B5036893B0DC +:10E7380006000191002B2AD0102304791C4026D111 +:10E748004779974220D1402202A9FFF743FC2300D2 +:10E75800051E0AD03000FFF753FE0EE0019A02A909 +:10E76800D25CC95C01334A4014439F42F6D8002C5E +:10E778000AD13000FFF744FE0500402102A8FDF74A +:10E78800E1FE280013B0F0BD95256D42E2E789252A +:10E798006D42F6E7F0B595B007931D9F1C9B0A9054 +:10E7A8000B9114003B60002B00D11BE180230092E9 +:10E7B8005B010CAAFEF7EEF8051E08D1E0220C98C2 +:10E7C800D20103881340934205D087256D421C9AD5 +:10E7D80021211B985DE01C9B029701931B9B079AC4 +:10E7E800009321001A9B01F043FD030005008633C6 +:10E7F80047D10C994B681B0AE9D108887B4A90429B +:10E8080000D070E011938A6A11AB496AFEF71AFDCD +:10E81800051EDCD10EAA1A992000119EFEF782F976 +:10E82800051E28D1300002F091FB1C9B834255D372 +:10E83800FF239C436E4B9C4236D1002230001100CE +:10E8480002F07EFB1B9B6B4A0393079B6A4902936A +:10E858001A9B300001930EAB1B780093012303F041 +:10E868004DFA041E03D1300002F070FB386020001E +:10E87800FEF7A0F90500119803F0EEFB1198FDF7DB +:10E888004FFE002DA3D1212138681C9B1A1A1B9B0F +:10E898001818F2F717FC0C9801F008FE002D00D1AB +:10E8A8000500280015B0F0BD544B9C4219D1282210 +:10E8B80004AB9B181A783000012102F041FB1B9B26 +:10E8C8004C4A0393079B4C4902931A9B30000193CF +:10E8D80000230093013303F0DBF8C2E78A256D4279 +:10E8E800C9E78725FBE78226454AF6010240B2427E +:10E8F80000D06CE7434D620A5202AA4200D064E796 +:10E908000D938A6A0DAB496AFEF78CFD051E00D08F +:10E918005DE70D9E0EA8B36DDD1DED0804F080FACD +:10E9280011A804F07DFA6B0009931C9B6A009342BE +:10E9380056D333007C330893E30542D5E4B2002C68 +:10E948003DD080239B041C432F4BE418032C36D85E +:10E958002E4BA400E05808F05BFB264B0290049372 +:10E96800254B11AA03931A9B0EA90193079B30000C +:10E978000093089B07F014FB041E0DD12A001B9975 +:10E988000EA804F059FC041E06D11B9B2A00591935 +:10E9980011A804F051FC04000EA804F047FA11A8CD +:10E9A80004F044FA002C01D1099B3B602000FEF7DB +:10E9B80001F905000D980BF013FD0D985FE7002095 +:10E9C800C9E70C4B11AA03930B4B0EA902931A9B90 +:10E9D80030000193079B0093089B0BF0B3F9CBE73A +:10E9E8000B4CD9E78A256D425BE7C04601700000F1 +:10E9F8000002000650A80108F95C01100003000697 +:10EA080000CFFFFF00060006F8FFFFFD4CFD0210D7 +:10EA180000B1FFFFF0B591B0059380230092150077 +:10EA28009B0108AA06900791FDF7B4FF041E5BD16D +:10EA3800189B059A0193179B290000930898169B29 +:10EA480001F019FC03000400863347D108994B688C +:10EA58001B0A43D10888654A654E0240B2425ED11E +:10EA68000D938A6A0DAB496AFEF7ECFB041E35D19B +:10EA78000AAF3A00169928000D9EFEF753F8041EB7 +:10EA880026D1300002F062FA189B834202D0952406 +:10EA980064421DE0FF239D43564B9D4227D122002F +:10EAA8002100300002F04CFA179B534A0393059B50 +:10EAB80052490293169B300001933B780093230040 +:10EAC80003F0A8FA4E4B9842E1D0FEF773F8040021 +:10EAD8000D9803F0C1FA0D98FDF722FD089801F092 +:10EAE800E5FC002C00D10400200011B0F0BD454B1E +:10EAF8009D4212D13A783000012102F021FA179B89 +:10EB080000940393059B3C4A0293169B3B4901934F +:10EB18003000230003F0FEF9D4E78724B8E7822603 +:10EB2800394AF6010240B242D8D1384A6D0A6D021C +:10EB3800954257D109938A6A09AB496AFEF772FC74 +:10EB4800041ECBD1099E0AA8B36D0DAFDC1D04F0DD +:10EB580067F9380004F064F9189AE40863009A42E7 +:10EB68003DD1220017990AA804F0F7FA051E18D11A +:10EB7800179B22001919380004F0EFFA051E10D16E +:10EB88003400883420000BF068FC002818D10AAB48 +:10EB9800009301972300169A059930000BF082F92B +:10EBA80005000AA804F042F9380004F03FF92800EB +:10EBB800FEF700F8040009980BF012FC09988BE79F +:10EBC8000D4B320001930D4B7C3200933300210032 +:10EBD800283330000CF0A8F9051ED8D0E1E79524B9 +:10EBE8006442E8E78724644278E7C046FFCFFFFF26 +:10EBF800014000000002000650A80108F95C01105D +:10EC080000BFFFFF0003000600CFFFFF000600065D +:10EC1800F0B515001F0000238DB0179A404E136001 +:10EC28002A00FF339A43089009910792B24203D011 +:10EC3800149B002B00D06FE0802300955B000AAA8C +:10EC480008980999FDF7A6FE041E44D10A99E02305 +:10EC5800088880240200DB011A40E401A24202D0A5 +:10EC680087249A4256D12F4B2F4A03408624934239 +:10EC780050D100238A6A0B93496A0BABFEF7E2FA7C +:10EC8800041E1CD10B9802F061F9169B98423CD8DF +:10EC9800264B0B989D4221D1159B01970293129BFD +:10ECA800234A00932349230002F0E2FCFDF782FF88 +:10ECB800041E0B9803D102F049F9179B18600B98B2 +:10ECC80003F0CAF90B98FDF72BFC0A9801F0EEFB4C +:10ECD800002C00D1040020000DB0F0BD079BB3420A +:10ECE80016D101002800FDF7F9FE159B0397049340 +:10ECF800129B0F4A0293149B0E490193139B0B9886 +:10ED08000093230002F0ACFBD0E78A246442D6E7E4 +:10ED18008724FBE76442D8E787246442DBE7C046E0 +:10ED280000030007FFCFFFFF0140000000020007BB +:10ED380050A80108F95C0110F0B515001F00002368 +:10ED48008DB0179A3A4E13602A00FF339A43089001 +:10ED580009910792B24202D0149B002B65D18023FF +:10ED680000959B000AAA08980999FDF713FE041E4E +:10ED780037D10A99E0230888DB0102001A409A4239 +:10ED88004ED12C4B98424ED18A6A0BAB496A0B94F0 +:10ED9800FEF758FA041E1ED10B9802F0D7F8129B02 +:10EDA80098423AD1244B0B989D421DD1169B01974E +:10EDB8000393159B214A0293179B21490093012332 +:10EDC80002F042FEFDF7F6FE04000B9803F044F94A +:10EDD8000B98FDF7A5FB0A9801F068FB002C00D101 +:10EDE800040020000DB0F0BD079BB34215D101000F +:10EDF8002800FDF773FE169B03970593159B0F4A92 +:10EE08000493179B0E490293149B0B980193139B31 +:10EE18000093012302F04CFCD4E787246442D4E732 +:10EE280087246442D7E78624FBE787246442D8E72F +:10EE380000030007017000000002000750A8010845 +:10EE4800F95C011010B5036804000020834215D056 +:10EE5800FE22D20513408022D204934212D1200010 +:10EE6800237908301B070AD401F023FAF022002086 +:10EE78002379206013406071A071237110BD06F0E2 +:10EE8800C3F8F3E789204042F8E70000F0B58BB0FB +:10EE98001D0010AB1B7804005BB206910792039328 +:10EEA800012B3CD1FF332268002A00D0AAE0FE22C1 +:10EEB8008021D2052A40C9048A4200D0A5E00095E5 +:10EEC80009AA06980799FDF765FD061E00D093E08C +:10EED800F22223795149134023716071A071F03AED +:10EEE8008D421FD193432371230008330293039B60 +:10EEF80009992A000298012B16D101F0C8F9071EBA +:10EF080015D125600123227913432371099801F053 +:10EF1800CDFA002E00D1060030000BB0F0BD8023E2 +:10EF28009B00C0E71343DEE701F0B4F9E7E703000D +:10EF3800863362D1099B5B681B0A05935DD10298F1 +:10EF480006F05CF808232279256013432371099B96 +:10EF580028005A881988059B0492FDF7E3FB011ED7 +:10EF68004BD0029806F080FA002850D10999039BEB +:10EF7800049A496A029806F05FF8002847D1284B9E +:10EF88009D4221D0274B9D4234D0FF229021D205AB +:10EF98002A40C90401238A421CD1A3716B02B1D54E +:10EFA8001E4B9D42AED0E0218020099BC9011A88E2 +:10EFB800800111400023814204D15205520F0133D0 +:10EFC8009340DBB263719DE70421029806F00AFAC8 +:10EFD80000281CD1E0218020099BC9011A888001E2 +:10EFE800114000238142D8D15205520F013393407A +:10EFF800DBB2D2E70100E8E707002000FFF722FFB5 +:10F008003E0083E78926764286E78726FBE7FDF7F9 +:10F01800D1FD071E00D175E7EFE7C0460044400464 +:10F0280000404004004140041FB501240094FFF74C +:10F038002DFF04B010BD1FB500240094FFF726FF74 +:10F0480004B010BD062370B5040000790340022BFC +:10F058001ED103070BD42000083001F021F9051E4A +:10F0680012D10423227913432371280070BD6379D8 +:10F07800934207D120001A00083005F0FDFFFDF784 +:10F0880099FDECE787256D422000FFF7DBFEECE7F2 +:10F0980089256D42E9E7000070B51E0006230D00C2 +:10F0A800017904000B40022B28D10B070CD4330044 +:10F0B8002900083001F0F1F8051E1BD1042322793C +:10F0C80013432371280070BD4379934210D81A0066 +:10F0D80029000C4806F00CFE002802D0FDF76AFD56 +:10F0E800EAE76279290032602000FFF7ABFFE3E727 +:10F0F8008A256D422000FFF7A5FEE3E789256D42CA +:10F10800E0E7C04650A80108F0B5066889B00400D9 +:10F118000291150003930F9F002E00D1A5E006234E +:10F1280002791340022B00D19FE013070DD40E9BE8 +:10F13800019700932A00039B083001F0B4F8061EDB +:10F1480027D02000FFF77EFE23E0FF239022DB0577 +:10F158003340D2042800934208D0A3790493E36A89 +:10F168000499E818F1F794FD049B58430E9B9842C4 +:10F1780000D977E02300083305933D4B9E4267D1C1 +:10F18800A3685B690493002307933B609D4203D106 +:10F198000026300009B0F0BDE06A00282BD0049B9F +:10F1A8002E001B1A9D4200D91E00059B143018180A +:10F1B80032000299F1F72EFF029BAD1B9B190293B7 +:10F1C800E36AF618049BE662B34214D1210007AB48 +:10F1D8000093049A039B1C31059805F07BFFFDF70B +:10F1E800E9FC061EADD1079B039AD21803923A6830 +:10F1F800D3183B60E062049BAB420DD9002DC7D009 +:10F20800E06A059B143018182A000299F1F702FFEA +:10F21800E36A5D19E562BBE707AB0093049A039BB9 +:10F228000299059805F056FFFDF7C4FC061E00D0AC +:10F2380087E7049A049B9446ED1A029B039A634459 +:10F248000293079BD21803923A68D3183B60D2E71F +:10F25800039B2A0002990097059805F03BFFFDF7EC +:10F26800A9FC6CE78A2676426BE78926764290E706 +:10F2780000444004F0B51E00036887B00500019102 +:10F288001700002B44D0062201790A40022A3FD0F9 +:10F298000A0716D433003A000199083001F006F83D +:10F2A80004002B791B0703D5102102A8FDF74AF9A2 +:10F2B800002C27D12800FFF7C5FD0400200007B067 +:10F2C800F0BDC26A002A04D0134A1340134A93427D +:10F2D80013D02800320002A9083006F015F8FDF70F +:10F2E80069FC041EDDD13268002ADAD0BA4207D898 +:10F2F80002A90198F1F78EFED3E787246442D0E78C +:10F308008A24FBE7002328003360FFF79BFDD5E73D +:10F3180089246442D2E7C046FFFBFFFF0040400457 +:10F32800F0B51700D022F5B00CAD08900991520045 +:10F33800002128001E00F1F7C5FE0023819A08ACC1 +:10F34800136022000AAB03CA03C3802300976168D5 +:10F358005B002A000A98FDF71DFB041E3FD1390007 +:10F368002800FDF7E5FE041E39D19E27FF37EB5D27 +:10F378007E9A80999A188A4248D87E997F9A264818 +:10F388005218CC214900695881422BD105937F9BA3 +:10F39800069204937D9B7E9A03937C9B01210293A2 +:10F3A8007B9B0EA801937A9B0093330007F0D1FA58 +:10F3B800FDF700FC041E07D0809B002B04D01A0028 +:10F3C80000217F98F1F77EFE0CAD2800FDF736FA94 +:10F3D800002C04D1EB5D7E9A9B18819A1360200063 +:10F3E80075B0F0BD0D48814213D105937F9B0492FF +:10F3F80003937D9B320002937C9B7E9901937B9BB8 +:10F408000EA800937A9B05F0A4FCD1E78A246442F5 +:10F41800DAE786246442E2E700025005000150055D +:10F42800F0B51700D022F3B00AAD0690079152004C +:10F43800002128001E00F1F745FE00237F9A06AC44 +:10F448001360220008AB03CA03C3802300976168D6 +:10F458009B002A000898FDF79DFA041E3DD139004B +:10F468002800FDF765FE041E37D19E27FF37EB5DA8 +:10F478007C9A934247D8D11A7E9A8A4246D3CC20A6 +:10F4880040007B9A2858244C5218A04228D17D98D5 +:10F4980003937A9B059001937B98799B0490029241 +:10F4A80000933200789B0CA807F06EFAFDF782FBF8 +:10F4B800041E07D07E9B002B04D01A0000217D98E3 +:10F4C800F1F700FE0AAD2800FDF7B8F9002C04D1C9 +:10F4D800EB5D7C9AD31A7F9A1360200073B0F0BD5D +:10F4E8000E4CA04214D105937D9B049203937B9B01 +:10F4F800320002937A9B0CA80193799B0093789B26 +:10F5080005F069FCD2E787246442DBE78A24FBE73D +:10F5180086246442E1E7C046000250050001500518 +:10F52800FE2290210368D20570B51A40040009052F +:10F538008A4213D11D4A1340802212051343FF2229 +:10F54800190091431A4A914212D1E068FCF7E8FF8A +:10F5580020001430FEF7FAFB050002E00025AB425C +:10F56800EDD1872120008900FCF7ECFF280070BD51 +:10F57800104A5B0A5B02934214D12069002805D027 +:10F588006169FCF7DFFF2069FCF7CAFFA069002862 +:10F5980005D0E169FCF7D6FFA069FCF7C1FF2000A0 +:10F5A8002030D7E789256D42DBE7C046FFFF00F62C +:10F5B8000001000800020008F0B585B00293FE23A0 +:10F5C8000E0090210568DB0504002B4009058B42DD +:10F5D80004D182490D40802109050D430223FF33E0 +:10F5E8009E4207D004D37E497118032900D88EE0C3 +:10F5F800872694E0902149018A4201D0002AF7D158 +:10F60800FF212A0077488A43824200D0B7E00D40A4 +:10F618008021754A89040D4396427AD0734A9642EE +:10F6280000D190E09E42E3D10327714BE15C039344 +:10F6380039400FD120002B000A001430FEF752FD8C +:10F64800061E00D0BCE0039BE25C0123BA431343CF +:10F65800039AA3540322039BE35C1340012B5DD15F +:10F66800270014370A9A02993800FEF7DDFB061EB8 +:10F6780000D0A5E0210091314022FF313800FEF78B +:10F6880065FC061E00D09BE05A4A1023AA18022ADD +:10F698002DD9594A0433AA18012A28D9574A0833B8 +:10F6A800954224D0564A0433954220D0554A103307 +:10F6B80095421CD0544A1033954218D0534A243BE3 +:10F6C800954214D0524A0433954210D0514A043B13 +:10F6D80095420CD0504A0433954208D04F4A103313 +:10F6E800954204D04E4BED186B425D41AB0184222C +:10F6F8009200A35400224B4BE254039B0332E35C79 +:10F7080093431A0002231343039AA35418E046496B +:10F7180072E70322364FE35D134202D08926764210 +:10F728004EE020002B000A9A02991430FEF7DAFC0A +:10F73800061E45D10323E25D9A43023B1343E3557A +:10F74800300005B0F0BD2A4D635DDA439207E5D07D +:10F758005B07E3D40A9B2361002B0AD01900012020 +:10F76800FCF7D6FEE060002833D00A9A0299F1F738 +:10F7780051FC0423625D002613436355E0E72B48E0 +:10F7880082420CD10D408021200032000A9B89045E +:10F798000093029B29430C30FEF754FD0EE02448E9 +:10F7A800824218D10D408021200089040C30294361 +:10F7B8009E4209D10A9B029AFEF792FD061EBFD00F +:10F7C8002000FFF7ADFEBBE70A9B32000093029BC7 +:10F7D800E2E78D26A3E789267642B1E7FFFF00F628 +:10F7E800FFFDFFFF00010008020200000302000005 +:10F7F80012020000FFFFFFFDFCFFFFFD08000002F2 +:10F80800090000020A0000020B0000020C000002BE +:10F818000D00000210000002110000021200000298 +:10F82800EDFFFFFD110200000110000000020008BA +:10F83800000300080368002B03D0836800200B60D6 +:10F84800704789204042FBE70368002B05D0836896 +:10F858008B4205D381600020704789204042FBE736 +:10F868008720FBE7F0B5C9B00292FE2205919021EE +:10F878000368D20504001A4009058A420DD1B64A28 +:10F888001340802212051343A26802998A4209D2C2 +:10F8980000238F25A3606D42A7E0002BF4D18925B2 +:10F8A8006D427CE00299002902D1002A00D1F5E1DD +:10F8B80002991800521AA260FF22A8499043884270 +:10F8C80000D0B6E080271340BF041F43A44B102686 +:10F8D800FB18022B2DD9A34B0436FB18012B28D972 +:10F8E800A14B08369F4224D0A04B04369F4220D01B +:10F8F8009F4B10369F421CD09E4B10369F4218D00B +:10F908009D4B243E9F4214D09C4B04369F4210D0FE +:10F918009B4B043E9F420CD09A4B04369F4208D022 +:10F92800994B10369F4204D0984BFE1873425E41A3 +:10F93800B6019749625C93079B0F012B00D8ABE196 +:10F94800530700D4A8E1032313436354029B009395 +:10F95800059B0493009B002B20D084239B00E15C33 +:10F96800009B751AEDB29D4201D96B461D782300A4 +:10F97800D133FF332A00591804980393F1F74AFB4F +:10F988008422049B92005B190493009B5B1B0093E9 +:10F99800A35CED18009BA554002B03D1002528007B +:10F9A80049B0F0BD7B4AA35CFF2B00D174E1013361 +:10F9B8008421A354002389006354230021001433B5 +:10F9C800019391313B003200FF310198FEF78AFB29 +:10F9D800051E0AD16F4AA35C012B11D12269E16887 +:10F9E8000198FEF721FA051E12D026682000FFF7BD +:10F9F80097FD2660029A21210598F1F763FBCEE76F +:10FA0800320003990198FEF70FFA051EE6D0ECE7DD +:10FA1800604B0122E1180198FEF7A2F9051EE4D116 +:10FA2800402203990198FEF791FA051E00D191E74B +:10FA3800DBE75948590A4902814200D02FE780275D +:10FA48001340BF041F43464BFB1807931023009332 +:10FA5800079B022B38D914230093424BFB18012B28 +:10FA680032D91C22404B00929F422DD03F4B04328A +:10FA780000929F4228D03E4B103200929F4223D0E2 +:10FA88003C4B103200929F421ED03B4B243A0092CE +:10FA98009F4219D0394B043200929F4214D0384B00 +:10FAA800043A00929F420FD0364B043200929F4294 +:10FAB8000AD0354B103200929F4205D0334BFB18C9 +:10FAC8005A4253419B010093029B0393059B049365 +:10FAD800039B002B00D161E7267B002E00D0C0E0FD +:10FAE800079B022B2CD91F4BFB18012B2AD91E4B25 +:10FAF8009F422BD01D4B9F422AD01D4B9F4229D09D +:10FB08001C4B9F4220D01C4B9F421FD01B4B9F4237 +:10FB18001ED01B4B9F4219D01A4B9F4218D01A4B2C +:10FB28009F4217D01D4B9F4200D14036FC22002136 +:10FB380009A8F1F7C7FA637BFF2B31D19725AAE60D +:10FB48001026F3E71426F1E74026EFE71C26EDE739 +:10FB58002026EBE73026E9E7FFFF00F60001000862 +:10FB6800FFFFFFFDFCFFFFFD080000020900000287 +:10FB78000A0000020B0000020C0000020D00000247 +:10FB8800100000021100000212000002EDFFFFFD4C +:10FB98001202000011020000000200081300000217 +:10FBA8000133637323002033267309A918000193D6 +:10FBB800FEF7FCFB051E44D1637B012B4CD1E269A7 +:10FBC800A1690198FEF730F9051E3AD162692169E9 +:10FBD8000198FEF729F9051E33D123009D33FF3321 +:10FBE8003200190001980693FEF7B0F9051E28D1D6 +:10FBF800019909A8FEF7DAFB051E22D13200069901 +:10FC08000198FEF711F9051E1BD1E269A169019857 +:10FC1800FEF70AF9051E14D1626921690198FEF7F9 +:10FC280003F9051E0DD12100DD313200FF310198A5 +:10FC3800FEF78CF9051E04D1019909A8FEF7B6FB59 +:10FC4800050009A8FEF760F8002D00D0CDE60028D1 +:10FC580000D13DE70500C8E621009D313200FF31A3 +:10FC6800B6E7039B35009E4201D96B461D7B009B7E +:10FC78002A00991B2600DD36C9B2FF367118049890 +:10FC8800F1F7C8F9049B5B190493039B5B1B03936F +:10FC9800237B5D1B25731BE78925FCE58F25FFE585 +:10FCA8000023F0B585B00293039313605360438833 +:10FCB800050001911700002B43D001260B79334230 +:10FCC80042D003AA02A9FCF795FE041E2ED1E0211A +:10FCD800029BC90100931B886A880B401B49D51DEC +:10FCE8005B18E0210902ED080B4225D1530723D107 +:10FCF80030002900FCF70CFC061E20D001002A0069 +:10FD08000198FFF7AFFD041E05D12A0031000098C5 +:10FD1800FDF74AFD04003000FCF702FC002C05D179 +:10FD280039000298FCF7BCFE041E02D00298FDF7C9 +:10FD380024FE200005B0F0BD87246442F6E78D2438 +:10FD4800FBE787246442F4E78524FBE700F0FFFF24 +:10FD5800036870B504000D00002B18D1FE23DB05E5 +:10FD68000B4080229021120509058B420BD10A49CC +:10FD78002940114391420DD02000FCF73FFC002898 +:10FD880000D1256070BD934204D12900F4E7892091 +:10FD98004042F7E78720FBE7FFFF00F607B500932F +:10FDA80013000022FFF708FC0EBD70B5040086B0F2 +:10FDB80003930E0019002368100000938023029219 +:10FDC800DB0105AAFCF7E6FD051E05D02000FFF7BC +:10FDD800A7FB280006B070BD0223FF339E4204D162 +:10FDE8002279013BFF3B13432371059B2000996A4D +:10FDF8001A8800915B6A3100FFF7DEFB0400059862 +:10FE080000F054FB0500002CE3D02500E1E70000DA +:10FE1800F0B5FE259BB00492902205930368ED058A +:10FE280004000E001D401205954240D10093802326 +:10FE380007AADB0104980599FCF7ACFD00282AD134 +:10FE4800236808901B4809AF184008AB0293422367 +:10FE5800284301930097219B209A0799FDF762FC9C +:10FE6800051E09D19022089B5201009331003B00E6 +:10FE78002000FFF7A1FB050008993800FCF762FB9A +:10FE8800002D0AD02000FFF74BFB079800F00EFB6F +:10FE9800002D00D028001BB0F0BD0223FF339E4286 +:10FEA800F3D12279013BFF3B13432371EDE7872010 +:10FEB8004042F0E70000FFF6F8B5D123104A9B0056 +:10FEC800D35C07000E00DB0716D580250C00ED007B +:10FED800B919091B0B48AC4203D8220005F008FFEA +:10FEE80004E02A0005F004FF002802D0FCF762FEB7 +:10FEF800F8BD054BE418EBE789204042F8E7C04617 +:10FF0800B8A5010850A8010800FCFFFFF0B51F00C4 +:10FF1800002389B00793FE2305929022DB05050094 +:10FF28000491119E03401205934224D1802300902E +:10FF3800DB01080007AA0599FCF72CFD041E0CD16B +:10FF4800109B029601930F9B3A00009307990E9B12 +:10FF58002800FDF7E7FB041E05D010990F98FFF75E +:10FF6800ABFF109B3360079800F0A0FA002C00D07C +:10FF7800200009B0F0BD87246442EEE7F0B5060022 +:10FF8800AFB00D001F000088002A02D1002B00D05E +:10FF9800BBE0E0235E49DB0103405B18E021090276 +:10FFA8000B4218D05B4B984261D180235B019D4284 +:10FFB8000FD807242C400CD1002F22D0042F08D8AA +:10FFC800D7191378240201321C439742F9D1002C27 +:10FFD80018DA86249AE02900FCF7BEFA041E0DD12F +:10FFE800E91DC9083000FCF7DBFA041E06D1B16A26 +:08FFF800706AFFF761FF041EAF +:020000041001E9 +:1000000000D1758020002FB0F0BD454C002203A820 +:10001000110000F08BFF00942B00424A424903A8D4 +:1000200002F056F8002803D0FCF7C8FD0400E9E709 +:100030006D080135EB0809255D433B35290030008B +:10004000FCF7B2FA041E03D003A802F009F8D9E7BE +:10005000330028330093726A2B0003A92F48FCF762 +:10006000CBFF040003A801F0FBFF002CCAD0300036 +:10007000FCF74CFBC6E7FF2302009A43E223DB01B7 +:100080009A42AAD18222294BD2010340934200D046 +:1000900000200735ED08C0B22900FDF78FF90400F4 +:1000A0000AF01AF9002F00D097E7002C00D194E74E +:1000B000002800D191E703A80AF053F92000194B5A +:1000C000194A03A90AF062FF041E04D003A80AF02B +:1000D0008BF92000A8E729003000FCF765FA041E20 +:1000E00003D003A80AF080F98CE72A00716A03A8FC +:1000F0000AF04EFCFCF762FD040003A80AF074F954 +:10010000002C00D17EE72A003900706AF0F7DEFF8C +:10011000ADE78724644275E700F0FFFF017000003F +:100120000100010050A80108F95C011000CFFFFF99 +:10013000002373B50B60009301934B604388050067 +:100140000E00002B24D001AA6946FCF757FC041EC0 +:1001500019D10099280000F095F8030004008633B7 +:1001600009D16B681B0A0ED169886B6A2A6A0098EC +:10017000FFF708FF04000098002C04D13100FCF7C1 +:1001800093FC041E02D00098FDF7FBFB200076BD17 +:1001900087246442FAE7000010B500F0F1F8D1239B +:1001A000084C9B00E25C06231A4205D0064805F085 +:1001B000E9FC064863689847D22120008900FCF7D3 +:1001C000C5F910BDB8A5010850A80108C0A50108CF +:1001D000F0B5224B85B00393D123214C9B00E35C07 +:1001E0000026DB0733D42368B34201D11D4B2360C3 +:1001F0006368002B01D11C4B63601C4F23683800DF +:100200009847D1251A4EAD00300005F0ADFC06230D +:10021000625D18499A43043B1343635503233A0034 +:100220000093300003AB05F0C4FCFCF7C7FC061ECE +:1002300010D10623625D9A43023B1343635500F0DD +:1002400093F8061E06D10123625D13436355300007 +:1002500005B0F0BDFFF7A0FFF9E7C04650534100DD +:10026000B8A5010859620110A1620110C0A50108DA +:1002700050A80108C36201108620404270478620C2 +:100280004042704786204042704786204042704777 +:100290008620404270478620404270478620404278 +:1002A0007047862040427047862040427047862033 +:1002B0004042704786204042704786204042704747 +:1002C00013B50849441E030000208C4209D982421C +:1002D00005D0C02212069B18034A934201D98820F8 +:1002E000404216BDFEFFFF3FFFFFFF3FF7B51C4B2F +:1002F0001600C218040000900D0001911F2A0ED8AC +:100300002C2353431A0017490832521810688442AC +:1003100002D15268AA4217D08C2040421CE0012230 +:100320000199FFF7CDFF002816D1B023DB009C46D2 +:100330000C4943189A68DF68944201D1AF4204D057 +:100340002C306045F5D1E7E75B181A6A511C04D0E0 +:10035000002001321A623360FEBD9720DDE7C046FF +:100360002000008000A90108B02201230349D20027 +:10037000885C03438B5400207047C04600A90108E5 +:10038000F8B5B02700240126FF00064D601906626B +:100390002C34FDF7E5FABC42F7D12B5DB3432B5566 +:1003A000F8BDC04600A90108F8B50F00B0211C4CEB +:1003B000C900625C0600D3072CD500221500A318E3 +:1003C0001888002815D0002D07D15868C0B2002821 +:1003D00003D0186A002800D11D002C328A42EED1C9 +:1003E0008D20002D17D0012328002B62FDF7B8FACD +:1003F0002B001A6A511C01D197200CE00020013219 +:100400001A621A1B074C92105443074AA41834600E +:100410003B60F8BD8920002340423B603360F8E731 +:1004200000A90108A38B2EBAE0FFFF7F0023F0B5DF +:100430001360B02316001E4A87B0DB006D46D35C04 +:1004400001220090696013422ED03200FFF74EFF68 +:10045000030004008C3324D1310003A8FFF7A4FF6C +:10046000041E1ED1012337687B603B00083306CD94 +:1004700006C30490059005AA04A9380000F0B9F954 +:10048000041E05D1059A04993800FDF781F904008E +:100490000599049800F0A4F9002C02D03068FDF70B +:1004A0005FFA200007B0F0BD89246442F9E7C04636 +:1004B00000A90108002805D0026A002A03D0013AE9 +:1004C00002620020704797204042FBE7000A01D0FB +:1004D000872040427047002070477FB56D4614006A +:1004E00003AA00906960FFF7A1FF002804D0002351 +:1004F0002360636004B070BD0CCD0CC40398FFF79B +:10050000D9FFF7E71FB500900191002801D100291C +:100510000CD003AA00980199FFF7E8FE002805D146 +:100520000398036A012B03D8FDF71AFA05B000BD42 +:10053000FFF7C0FFFAE71FB503AA00900191FFF78C +:10054000D5FE002809D103984368DBB2002B06D002 +:10055000036A012B03D8FDF703FA04B010BDFFF7BF +:10056000A9FFFAE77FB503AAF1F7FEFA8C30431E24 +:10057000984107B000BD30B587B003AA05000C0054 +:10058000F1F7F2FA8C3010D028002100F1F710FBBF +:10059000002803D09220404207B030BD03AA2800B3 +:1005A0002100F1F7E1FA8C30F4D10020F4E70000EB +:1005B000F8B517000D0006000822224918001C009B +:1005C000F0F72CFD0023200023726372A372E37204 +:1005D0007B6831001A0A237362731A0C1B0EA27314 +:1005E000E3733B88243023741B0A63747B88A374F1 +:1005F0001B0AE3743B691A0A237562751A0C1B0EF9 +:10060000A275E3757B691A0A237662761A0C1B0EB3 +:10061000A276E376BB691A0A237762771A0C1B0E5F +:10062000E377631CA277DD772A0AA31CDA772A0C0A +:10063000E31CDA772A0E231DDA772A00F0F7EEFCA6 +:10064000F8BDC04670FD0210F7B5089D0400019189 +:1006500017001E00232902D89220404260E00822A1 +:100660003749F0F787FD0028F6D1627A237A120223 +:100670001A43A37A1B041A43E37A1B061343EBD1F4 +:10068000631CD97FA31CDB7FE21C1B020B43D17FC1 +:10069000221D09040B43D17F09061943019B3160D8 +:1006A000243B9942D8D8274B9942D5D8002938D134 +:1006B0003960627B237B12021A43A37B00201B0458 +:1006C0001A43E37B1B0613436B60627C237C12029C +:1006D00013432B80E27CA37C120213436B80627D68 +:1006E000237D12021A43A37D1B041A43E37D1B06DC +:1006F00013432B61627E237E12021A43A37E1B04E6 +:100700001A43E37E1B0613436B61627F237F120251 +:100710001A43A37F1B041A43E37F1B061343AB61F9 +:10072000FEBD0120FBF7F8FE3860002805D021004F +:1007300032682431F0F772FCBBE78D208DE7C046AC +:1007400070FD0210FF1F0000F0B5244B8BB00400B9 +:100750000F0016009A423BD81300243319000120E1 +:100760000393FBF7D9FE051E35D0310003002200AC +:100770003800FFF71DFFA768E66838003100FFF773 +:10078000F1FE01281FD00023039A009338002B00AC +:100790003100F1F791F9002818D107AA380031008B +:1007A000F1F7E2F9041E04D1089B039A9A4204D09F +:1007B000923C38003100F1F7FBF92800FBF7B4FE5A +:1007C00020000BB0F0BD8B246442F6E79224FBE7D7 +:1007D0008E246442F4E78D24FBE7C046FF1F00002F +:1007E00010B5041E01D0FBF7B1FE2000FBF79CFE04 +:1007F00010BDF0B583688BB00293C3680491059275 +:10080000070007AA029819000393F1F7ADF9041E37 +:1008100020D1089E01203100FBF77EFE051E27D067 +:1008200007AA029803990694F1F79EF9041E0ED1C7 +:1008300006AB019302003300009502980399F1F78B +:1008400061F9069B04009E4207D09224644228006E +:10085000FBF76AFE20000BB0F0BD0028F7D100972F +:10086000059B049A31002800FFF7EEFE0400EEE736 +:100870008D246442EEE7F0B597B002920600402264 +:100880000D0006A800210393F0F720FC04220021AC +:1008900005A8F0F71BFC1C9B186806F0B9FB01903B +:1008A000002D07D12C0006A84021FBF74FFE2000A9 +:1008B00017B0F0BD019B00959D4200D900931C9894 +:1008C00006F07EFA041EEED1039A02991C9806F0F7 +:1008D00097FA041EE7D1042205A91C9806F090FAA5 +:1008E000041EE0D106AF39001C9806F0A3FA041EDE +:1008F000D9D1009B9C4206D105AAD3783619013381 +:10090000D3702D1BCCE7335DE25D5340335501348A +:10091000EFE70000F0B51E00002385B005000F00D2 +:10092000019202930393984261D006F0CDF9041E20 +:1009300003D13B4D280005B0F0BD280002AA03A951 +:1009400006F0D6FB051EF4D1200006F061FB029AEA +:10095000009083181A0008327F2AEAD80100023278 +:100960000A318A42E5D3B242E3D834000A3CE41AA1 +:100970000A2CDED90A9B0A9A9F1C1D700123033C96 +:100980005370FF2122003800F0F7A0FB029B009873 +:10099000DBB21A0008323C198218A2701A1D3021ED +:1009A00022710622E71D6170E1706271A3712570EA +:1009B000029A03993800F0F731FB029B0199FF1866 +:1009C00005233B70013BFC18BB70009B20001A0004 +:1009D000FB707D70F0F722FB0A9B009A9B19A4180C +:1009E000A342A7D031000A98FBF7B0FDA1E78E42E1 +:1009F0009FD3761A0A2E9CD90A9B0A9A18709C1CBF +:100A00000123033E5370FF2132002000A619F0F7A6 +:100A10005DFB3570701C3A000199F0F7FFFA89E729 +:100A200080BFFFFFF8B505000835476804002800BF +:100A30000E0002F059FB874201D02848F8BD802300 +:100A40006268DB009A42F8D80021280002F0A4FD79 +:100A50000028F2DD0021280002F0CFFA0028ECD0B7 +:100A6000002E1FD120000021143002F095FD002837 +:100A7000E3DD002E14D020000021443002F08CFD74 +:100A80000028DADD20000021503002F085FD00282A +:100A9000D3DD200000215C3002F07EFD0028CCDD9B +:100AA0000020CBE725002C350021280002F074FD42 +:100AB0000028C2DD0021280002F09FFA0028BCD0E7 +:100AC0000C350021280002F067FD0028B5DD00216B +:100AD000280002F092FA0028C4D1AEE780BFFFFFE1 +:100AE000F8B504000D0017001E00002912D1002FD8 +:100AF00019D1002E1FD1069B002B24D1079B002B60 +:100B000029D10026B5420CD02000083002F0ECFAC2 +:100B1000606006E0083002F0C9F90028E7D0124B07 +:100B2000C6183000F8BD200039002C3002F0BEF9A4 +:100B30000028DED0F3E720003100383002F0B6F9AB +:100B40000028D8D0EBE720000699203002F0AEF95B +:100B50000028D3D0E3E720000799143002F0A6F96B +:100B60000028CED0DBE7C04680BFFFFF70B5040091 +:100B70001D0000290AD006000836300002F0F1FA04 +:100B8000002818D1300002F0AFFA6060002D0AD1C1 +:100B9000059B002B12D1079B002B18D1099B002B22 +:100BA0001ED1002070BD2000049A29002C3002F0D4 +:100BB000D8FA0028ECD00F4BC018F3E72000069AB3 +:100BC0000599383002F0CDFA0028F4D1E3E720008F +:100BD000089A0799203002F0C4FA0028EBD1DDE72B +:100BE00020000A9A1430099902F0BBFA0028D8D0E4 +:100BF000E1E7C04680BFFFFF0300F0B5083393B0C4 +:100C0000049000211800079302F0C6FC049B002109 +:100C10002C3305001800059302F0BEFC049B002154 +:100C2000383306001800069302F0B6FC049B0390CC +:100C3000203300211800089302F0AEFC049B0990B9 +:100C40001433002118000B9302F0A6FC049B0A90B9 +:100C50004433002118000C9302F09EFC049B0F907B +:100C60005033002118000D9302F096FC049B109065 +:100C70005C33002118000E9302F08EFC1190002EC0 +:100C800000D17DE0039B002B00D17EE0099B002B6F +:100C900000D17AE00A9A531E9A41002D00D169E0F2 +:100CA000039C344300D075E0099B2700002B02D041 +:100CB0000A9F7B1E9F41099B23431C1E1FD10A993B +:100CC0000123002900D10023210039431143099158 +:100CD0000B434DD0002D19D1002E17D0039B002BB4 +:100CE00014D0069A0599079802F07FFD002808D0D5 +:100CF000324BC01813B0F0BD3200D1E7039F00247F +:100D0000E1E7079802F0F0F9049B5860002F26D025 +:100D1000069B089A00930B99059B079801F0C2FA6D +:100D20000028E5D1099B002B14D00F9B002B05D088 +:100D3000109B002B02D0119B002B0BD10E9B089A0D +:100D400001930D9B0699009305980C9B01F052FDB1 +:100D50000028CDD109990498FFF764FECAE7002C5A +:100D6000E0D0089B0B9A0699059801F081FBD7E724 +:100D70001248BFE7371EC2D0039B1F1EBFD00FE033 +:100D8000002DB9D12A002F00B9E72A1EF2D0002287 +:100D9000039C3443371E00D18DE7039B002BADD05D +:100DA0000024099BA34202D10A9C631E9C412F1E72 +:100DB00000D188E700273B0086E7C04680BFFFFFE1 +:100DC000F7B51E000300083304000F0018000021CF +:100DD0001500019302F0E0FB002803D1002D2FD075 +:100DE0002A483AE0200000212C3002F0D5FB0028F0 +:100DF000F4D020000021383002F0CEFB0028EDD0E6 +:100E000020000021203002F0C7FB0028E6D020009F +:100E10000021143002F0C0FB0028DFD0002F16D1D3 +:100E2000002D1BD1002E21D1089B002B26D1099B20 +:100E3000181E12D021000998143102F037F80CE086 +:100E4000002ECDD1089B002BCAD1002FEFD00199E5 +:100E5000380002F02BF80028E2D0FEBD2100280067 +:100E60002C3102F023F80028DCD0F6E72100300016 +:100E7000383102F01BF80028D6D0EEE721000898A0 +:100E8000203102F013F80028D1D0E6E780BFFFFF41 +:100E9000F8B504000F000830002116001D0002F014 +:100EA0007BFB002801D12048F8BD200000212C3018 +:100EB00002F072FB0028F6D020000021383002F04A +:100EC0006BFB0028EFD020000021203002F064FBF3 +:100ED0000028E8D020000021143002F05DFB00283B +:100EE000E1D0002F05D1002E0DD1002D13D100200F +:100EF000DAE721003800443101F0D8FF0028F2D0B1 +:100F0000094BC018D0E721003000503101F0CEFF6E +:100F10000028F5D1E9E7210028005C3101F0C6FF87 +:100F20000028EDD1E3E7C04680BFFFFF70B50400A5 +:100F30000E0015000021AC22F0F7C8F82300A834F9 +:100F4000A4331E60256070BD0300A830A43319606F +:100F5000026070474068704770B500210400FFF7D9 +:100F600061FD051E18D126000836300002F09BF8FE +:100F70007F2811D914342900200002F03EF80028FF +:100F80000AD0200002F08FF8012805D93100200096 +:100F900002F061FA002800DB014D280070BDC04658 +:100FA00000BEFFFFF0B585B00400FFF7D5FF0028B5 +:100FB00002D0164805B0F0BD01212000FFF732FD38 +:100FC0000028F6D12500260027002300029001907A +:100FD000200014332C3538362037009332003B0084 +:100FE0002900083001F02CFB0028E2D12200230068 +:100FF0005C3250340192443300943A0031002800AE +:1010000001F092FA0028D5D0D3E7C04600BEFFFF1A +:1010100070B504000D00FFF79FFF002814D12800D1 +:10102000FFF7C0FF00280FD1290020000831083049 +:1010300002F011FA002807D12900200014311430E1 +:1010400002F009FA002800D0004870BD00BEFFFF82 +:10105000F0B50C0087B0002105001600FFF7E2FC98 +:10106000002830D103A801F0DFFE21006A6803A840 +:1010700002F077F8041E19D12C000834210003A8CF +:1010800002F0E9F900281BDA2A006F6803A9683525 +:10109000230014320095080002F0C6FE041E05D19C +:1010A0003A00310003A802F0CBF8040003A801F0D5 +:1010B000C1FE002C01D0054BE418200007B0F0BDA4 +:1010C00004246442F2E7024CF7E7C04680BDFFFF0C +:1010D00080BFFFFFF0B5ABB0029101210500039284 +:1010E0001C00FFF79FFC002800D0B3E109A801F025 +:1010F0009BFE0CA801F098FE0FA801F095FE12A827 +:1011000001F092FE029B002B05D01BA801F08CFE83 +:101110001EA801F089FE15A801F086FE18A801F0AE +:1011200083FE21A801F080FE24A801F07DFE2100AD +:101130006A6809A802F015F8041E00D05DE12F00CE +:101140000837390009A802F086F9002800DB7CE1A5 +:1011500009A921A801F0AAFE041E00D04DE12B0030 +:10116000443304930C330593029B002B00D1BDE064 +:1011700027A801F059FE2B00A0331B68002B1ED0BE +:101180002E008C3632003100300002F02EFB041E9F +:101190004DD13A003100300002F0D6FD041E46D198 +:1011A0000C3632003100300002F01FFB041E3ED12D +:1011B0003A003100300002F0C7FD040037E00C2394 +:1011C0000693069B013B0693002B00D104E12B0004 +:1011D000983307936B68029A591E0798039B03F094 +:1011E000A3F8041E23D16B68029A591E27A8039BFB +:1011F00003F09AF8041E1AD12E008C3627AA0799FC +:10120000300002F0F2FA041E11D13A003100300031 +:1012100002F09AFD041E0AD13A003100300003F0BA +:101220007BF9041E00D1BCE003000E33C9D027A80F +:1012300001F000FE002C00D0DFE02A0009A98C326A +:10124000080002F0D2FA041E00D0D6E009A93A0044 +:10125000080002F079FD041E00D0CEE02900012232 +:101260002C310CA802F0AFFA041E00D0C5E0290012 +:10127000012238310FA802F0A6FA041E00D0BCE00B +:10128000039B029A1C2112A803F04EF8041E00D002 +:10129000B3E012AA0CA91BA802F0A7FA041E00D002 +:1012A000ABE01BA9049A080002F033FA041E00D038 +:1012B000A3E0039B029A1C2112A803F035F8041E38 +:1012C00000D09AE012AA0FA91EA802F08EFA041EFE +:1012D00000D092E01EA9059A080002F01AFA041E36 +:1012E00000D08AE01EAB05931BAB04932B002C337C +:1012F000039348330093049A039B09A915A802F0AD +:1013000093FD041E00D078E02E002B003836803389 +:101310000093059A330009A918A802F085FD041E60 +:101320006BD118AA15A909A802F017FA041E64D1F6 +:101330002A0009A95C3215A802F057FA041E5CD1F4 +:10134000039A15A909A802F0FFFC041E55D132002A +:1013500009A915A802F049FA041E4ED115AA18A928 +:1013600009A802F0D6F9041E47D1029B002B35D103 +:101370002B002A006833009314323B0009A924A8EB +:1013800002F052FD041E38D121A924A802F063F80E +:1013900000285DD16A68309909A801F051FF040066 +:1013A0002BE027AA3100300002F01FFA041E00D003 +:1013B0003DE73A003100300002F0C6FC041E00D0C8 +:1013C00035E72B002A006833009314323B003100CC +:1013D000300002F029FDF0E61F4C28E72A0009A999 +:1013E0009832080002F001FA041E06D109A93A0059 +:1013F000080002F0A9FC041EBAD00CA801F01AFDE6 +:101400000FA801F017FD12A801F014FD029B002B9C +:1014100005D01BA801F00EFD1EA801F00BFD09A8C8 +:1014200001F008FD15A801F005FD18A801F002FD66 +:1014300024A801F0FFFC21A801F0FCFC002C01D045 +:10144000064BE41820002BB0F0BD04246442D4E71E +:10145000034CD2E7034CF5E780BBFFFF00BDFFFF65 +:1014600080BCFFFF80BFFFFFF0B58DB002900591FB +:1014700006920793012B08D10300A4331B68012BAC +:1014800003D0454C20000DB0F0BD059B002BF8D0DB +:10149000029BA8331868C0B205F016FC061EF0D0F7 +:1014A000029B5B68039305F0B3FD43000493149B18 +:1014B000420002339B18149A07009342E1D3039A27 +:1014C0009342DED800211698EFF700FE169B169A7D +:1014D0000133049300230499137006983A00059B86 +:1014E0009847002802D02D4BC418CBE7049B139AD1 +:1014F000DD192B001299300005F0B6FC041EC1D195 +:10150000039B149A981A02387B00C019C01A012351 +:1015100028180370002A03D001301599EFF77EFDDB +:1015200009A805F0DDFB0022310009A805F00AFC3E +:10153000041E18D1039D169B7E1C013D9E19ED1BB8 +:1015400009AB0093049A3B0029003000FFF793F9A0 +:10155000041E08D109AB009332002B003900049817 +:10156000FFF789F9040009A805F0C0FB002C00D0A2 +:1015700088E7079B002B06D1169A02981100FFF707 +:1015800067FD04007EE7169B069A00930599029872 +:10159000FFF7A0FDF5E7C04680BFFFFF80BBFFFF60 +:1015A000F0B587B006000F00049203930E9D012B47 +:1015B00007D10300A4331B68002B02D02C4807B0CE +:1015C000F0BD0C9B70680C33F8D80C9B0B33834236 +:1015D000F4D80C9BC01A00232B70039B0338002BFC +:1015E0002FD1002FEAD00233AC1C6B702318059367 +:1015F000059B9C4212D1002323700C9B002B04D02E +:10160000601C1A000D99EFF709FD039B002B22D1F6 +:101610002A0029003000FFF71BFDD0E76423029366 +:10162000012221000498B8472378002B1BD1029B8C +:10163000013B0293002B01D00028F1D00D4BC018C4 +:10164000BDE70123FF226B70AB1C1C189C42D2D05B +:101650001A700133FAE700952B00049A3900300024 +:10166000FFF738FDABE70028E8D10134C0E7C046FA +:1016700080BFFFFF80BBFFFFF0B50700A4373F68C6 +:1016800087B00C9C0D9D0E9E002F03D0012F08D01B +:10169000084804E0029601950094FFF781FF07B027 +:1016A000F0BD029400240496039501940094FFF782 +:1016B000DBFEF4E700BFFFFFF0B5694C1D00A54459 +:1016C000069104000792012B09D10300A4331B6883 +:1016D000012B04D0634C2000634B9D44F0BD636834 +:1016E0001A000493FC23103A9B009A42F2D823007C +:1016F000A8331868C0B205F0E7FA061EEAD005F074 +:1017000087FC049A471C7B00039005939342E1D821 +:101710001CAA002D1ED1FFAB983319682000FFF7DB +:1017200097FC041E0CD109A805F0DAFA220031005A +:1017300009A805F007FB041E16D009A805F0D6FA83 +:1017400080211CA8C900FAF701FF40210CA8FAF774 +:10175000FDFEC0E7FFAB009298331B68079A06991D +:101760002000FFF7B7FCDCE759201CABDD19049B18 +:1017700006AC5F1E039B0019FF1A09AB00932A00F9 +:101780003B000399FFF777F8041ED6D1592209AB25 +:1017900006A900935218039B39002800FFF76BF845 +:1017A000041ECAD109A805F0A1FAFFAAFFA90CAD31 +:1017B00090328C312B0012680968300005F054FB20 +:1017C000041EBDD1582206AB9B181E78592306AAC9 +:1017D0009B18039A99180200039B76B29A4229D368 +:1017E0000020C918059A049B0D009B1A5B189C46A3 +:1017F00002000127AC4524D101208B5C58400643F0 +:1018000076B2002E27D101328918049B1CAA8A1AAD +:101810009A1AFFABA0331B689A421ED8FFAB9433D1 +:101820001B681A60002A8BD0FFAB9C331868EFF757 +:10183000F5FB85E7535D885C013243401E43F6B2F9 +:10184000CAE72B780135184343420343DBB2DB0977 +:101850007B40D218CEE7054C72E7054C70E7C046D6 +:101860008CFBFFFF80BFFFFF7404000000BFFFFF81 +:1018700000BCFFFFF0B5734C1D004368A544039303 +:10188000012D05D10300A4331B68002B00D0D7E045 +:10189000FC24039BA400103BA34200D9D0E008AF76 +:1018A000002D28D1FFAB40333A001968FFF7D0FB79 +:1018B000041E00D0AFE03B7801257C7802276C4005 +:1018C000234300242100082006AA1218D25D013704 +:1018D0005042C00F684004436042D2432043C60FC9 +:1018E0006E40B446C017D2B282431343039A614498 +:1018F000BA42E8D123E0FFAB009740331B68FFF703 +:10190000E9FB041E00D086E03B78012DD4D10220F3 +:1019100021007A7842401343C25D0130564232437F +:10192000D2B2D2096A401443E4B262422243D2B234 +:10193000D2096A40D2B28918039A8242ECD1FFA838 +:10194000039A483000680B3A824200D9020008002E +:101950000838C00F034301206442E40F4440039859 +:101960002343C71E7F1A390058421843C0175140FD +:1019700001407940571AFF0F3B4388247D4282265D +:101980005F423B43DB17DB43E4012C40F60166403A +:10199000304044409C460B2064420826634606AF14 +:1019A000BF193F5C1F4006AB9B191F54039B0130BE +:1019B0008342F2D113004B401D40039B4D40991AC6 +:1019C00008AB5918002A18D0531B069353180793D5 +:1019D000531E6E4205930800F3170493431C9C4664 +:1019E000079B634520D1059B049FCB1818780136CF +:1019F00007401F70069BB342EDD1FFAB48331B6815 +:101A0000002B04D0FFAB44331868EFF707FBFFABA4 +:101A10003C331B681D60802108A8C900FAF796FDB9 +:101A20002000094B9D44F0BD03784778FFB203972F +:101A30007B40049F3B40039F7B4003706046CDE7A3 +:101A4000024CEDE7DCFBFFFF2404000080BFFFFF3A +:101A5000F0B50400A434246887B00D9D0E9E0F9F3E +:101A6000002C03D0012C0AD00A4806E00C9C0397F6 +:101A7000029601950094FFF7FDFE07B0F0BD0C9CA7 +:101A80000597029400240496039501940094FFF7AF +:101A900013FEF2E700BFFFFFF0B5A1B00A9326AB3B +:101AA000039018780A9B05910992012B08D1039B9A +:101AB000A4331B68012B03D05D4C200021B0F0BD86 +:101AC000059B002BF8D0039B5B680293002806D08F +:101AD00005F0FAF80028EFD005F09AFA2790039B5A +:101AE000A8331868C0B205F0EFF8071EE4D005F07F +:101AF0008FFA029A049043009A42DDD30233060023 +:101B0000934201D9961E361A029A00212998EFF7BE +:101B1000DDFA320010A90998059B9847041E02D0EF +:101B2000444BC418C9E7039B0DAD08331800069356 +:101B300001F0B9FA049A029B10A99B1A0793299AFB +:101B4000023B9B1BD3185A1C089201220B901A705F +:101B500008983200EFF762FA280005F0C1F8220079 +:101B60003900280005F0EEF8041E48D1280005F0E1 +:101B700027F9041E43D1089B08229F193900280029 +:101B800005F03EF9041E3AD1279A2899280005F05D +:101B900037F9041E33D1320010A9280005F030F9BE +:101BA000041E2CD13900280005F044F9041E26D16A +:101BB00007230B9807990138184043425841299B45 +:101BC0000139091A009518183A00049BFEF753FED4 +:101BD000041E14D1069801F066FAFF22029B4021F0 +:101BE000DB000133181A0241299B10A81B7813400F +:101BF000299A1370BC23049ABB54FAF7A7FC0DA8CA +:101C000005F074F8002C00D057E70A9B002B06D192 +:101C1000299A03981100FFF71BFA04004DE7299B4E +:101C2000099A009305990398FFF754FAF5E7C0461F +:101C300080BFFFFF80BBFFFFF0B585B01E000AAB81 +:101C40000500029103921878012E04D12B00A433D1 +:101C50001B68002B50D10D9B0C9A00936B680B995D +:101C6000FEF758FE041E07D1002E08D10D9A280059 +:101C70001100FFF7EDF90400200005B0F0BD696820 +:101C80000120FAF749FC061E08D069680120FAF71E +:101C900043FC071E05D13000FAF746FC10246442CD +:101CA000EAE700960D9B039A02992800FFF712FAC3 +:101CB000041E11D13A0031002800FFF7C9F9041EB3 +:101CC0000AD1010003006A689A420CD1002911D19F +:101CD00031000D98EFF7A2F93000FAF725FC380033 +:101CE000FAF722FCC8E70D9DF85CED5C0133684013 +:101CF0000143E9E7014CEFE7014CBDE700BDFFFF01 +:101D000080BFFFFFF0B50500A43585B02D680AAC93 +:101D100024780C9E0D9F002D03D0012D0AD0094878 +:101D200006E00B9D0397029601950094FFF784FF50 +:101D300005B0F0BD0B9D0397029601950094FFF747 +:101D4000ABFEF5E700BFFFFFF0B56F4C0500A54403 +:101D5000FFA88C3000780390FFA89830007804909A +:101D6000012B09D12800A4300068012804D0674C59 +:101D70002000674B9D44F0BD6E68FC203400103C91 +:101D800080008442F3D81CA8002B00D0ADE0FFAB4C +:101D9000A033020019682800FFF75AF9041EE7D1A2 +:101DA000771E1CABDB5DBC2B00D0AAE0039B002B95 +:101DB00009D0180004F088FF0028D8D005F028F9D1 +:101DC000FFAB90331860049804F07EFF041ECED061 +:101DD00005F01EF908220021039007A8EFF776F915 +:101DE0002800083001F05FF9431E049304981CAAF0 +:101DF000F3001178C31A08331941B8D1612504AB37 +:101E0000ED1803005B0701D037001500039B023378 +:101E1000BB42ACD809AE300004F062FF21000022C2 +:101E2000300004F08FFF041E5BD1039B0096D94362 +:101E3000C9196B1805936A18039B2800FEF71BFD50 +:101E4000041E4ED1FF22049B6021F800C01A0241FB +:101E500004AB5B181B78134004AA52181370059B3F +:101E60005A1E2B780135691E8A4201D9002BF8D001 +:101E7000012B42D1059B5E1BFFAB9C331B680133DA +:101E800004D0FFAB9C331B689E4236D109A804F0F6 +:101E900097FF041E25D1082207A909A804F0B0FF66 +:101EA000041E1ED1FFAB90331A68FFAB9433196840 +:101EB00009A804F0A5FF041E13D13200290009A8C7 +:101EC00004F09EFF041E0CD10CA909A804F0B2FF77 +:101ED000041E06D1039A0CA90598EFF74BF9041ECE +:101EE0000DD109A804F002FF42E7FFAB0090A03338 +:101EF0001B682800FFF7EEF850E7064CF1E7064CA8 +:101F0000EFE7044C34E7C0468CFBFFFF80BFFFFFC8 +:101F10007404000000BFFFFF80BCFFFF70B5050028 +:101F200086B0A8350AAC24782E682500002E00D093 +:101F3000F5B20D9E0395059601260C9D76420295FD +:101F40000B9D049601950094FFF7FEFE06B070BD50 +:101F5000F0B587B003930CAB1C78039B02900491FF +:101F600005924768012B04D10300A4331B68002BA2 +:101F700045D139000120FAF7CFFA061E41D03900C9 +:101F80000120FAF7C9FA051E3ED000903B00200060 +:101F90000E9A0D99FEF7BEFC041E0FD1039B002B79 +:101FA0001FD132000F990298FFF752F8041E05D195 +:101FB000020003009F421CD1002A28D130003900C2 +:101FC000FAF7C4FA3000FAF7AFFA002D06D028006D +:101FD0003900FAF7BBFA2800FAF7A6FA200007B092 +:101FE000F0BD00960F9B059A04990298FFF772F8CE +:101FF000DCE7F15CE85C013341400A43DAE7054C79 +:10200000ECE710246442E9E710246442D6E7024C6E +:10201000D4E7C04680BFFFFF80BCFFFFF0B50500DE +:10202000A43585B02D680AAC24780C9E0D9F002D38 +:1020300003D0012D0AD0094806E00B9D03970296B4 +:1020400001950094FFF784FF05B0F0BD0B9D039749 +:10205000029601950094FFF761FFF5E700BFFFFFCF +:1020600010B5041E32D08C3000F0E4FE2000983011 +:1020700000F0E0FE2000683000F0DCFE20002030A0 +:1020800000F0D8FE2000383000F0D4FE20002C30C4 +:1020900000F0D0FE2000143000F0CCFE200008300C +:1020A00000F0C8FE2000803000F0C4FE2000743034 +:1020B00000F0C0FE20005C3000F0BCFE200050307C +:1020C00000F0B8FE2000443000F0B4FE10BD000067 +:1020D000F0B595B00600069107921D007F2B00D841 +:1020E000DAE01A9B022B00DCD6E0EB0700D5D3E048 +:1020F0008023DB00AB429B415B425B000BA8059356 +:1021000000F092FE0EA800F08FFE11A800F08CFEE9 +:10211000330014331A991800029300F054FF041E80 +:1021200000D0A6E06B0804930890C72D01D9633B4B +:10213000089301356B0809933700079B2C370093F0 +:10214000059A069B0499380002F058FB041E00D043 +:102150008FE03500079B38350093059A069B04995C +:10216000280002F04BFB041E00D082E02A00390058 +:102170000BA801F0F2FA041E00D07AE00BA800F0E0 +:1021800092FF089B9842D7D90B9B002B03DA2900BA +:10219000380000F0C1FE01223900380001F013FBC5 +:1021A000041E66D101222900280001F00CFB041E48 +:1021B0005FD12A0039000BA801F017FB041E58D18B +:1021C0000BAA02990EA802F035F8041E51D1012184 +:1021D0000EA801F0E1F90028AED12A0039000EA8BE +:1021E00002F028F8041E44D101000EAB0BAA11A87E +:1021F00001F006FC041E3CD13300203311AA0299E1 +:102200001800039302F088F9041E32D1039800F0FD +:102210004AFF099B98428FD901223900380001F00A +:10222000C0FA041E25D101222900280001F0B9FAC4 +:10223000041E1ED1330008332A003900180002930F +:1022400001F0D3FA041E14D1029800F04DFF3300C0 +:102250005C3301930C3B70600093039A0C3B2900A4 +:10226000380000F0C7FA041E03D13000FEF79AFED2 +:1022700004000BA800F0DEFD0EA800F0DBFD11A8A5 +:1022800000F0D8FD002C04D03000FFF7E9FE034B2E +:10229000E418200015B0F0BD014CFAE780BEFFFF46 +:1022A00080BFFFFFF0B59BB005000F0014006F4921 +:1022B00036220CA81E00EEF7B1FE002E04D1042435 +:1022C000644220001BB0F0BD209B002BF7D0B36808 +:1022D000002BF4D1209B99680029F0D1280001F04F +:1022E0005BF90028EBDD0121200001F055F9002801 +:1022F000E5DD2900200001F0AEF80028DFDA012139 +:10230000380001F049F90028D9DD2900380001F032 +:10231000A2F80028D3DA09A800F086FD06A800F08C +:1023200083FD21003A0006A801F05FFA041E0FD1D8 +:1023300006A90122080001F046FA041E08D106A8E9 +:1023400000F091FE83B20393002B08D10424644271 +:1023500009A800F06FFD06A800F06CFDB1E781B29E +:1023600006A800F0FBFF041EF2D10722AB680700AD +:102370001B681340013B5A425341DBB29AB20492AC +:102380000CAAD3180593059B09A8D95D00F01BFE84 +:102390002A0009A9300001F04DFF041ED8D1012107 +:1023A000300001F0F9F8002806D0049B0137DB1952 +:1023B0009BB2352BE7D9C9E7209B09A9009306AA50 +:1023C0002B00080001F030FD041EC1D1012302934F +:1023D000012109A801F0E0F800283FD009A9012255 +:1023E000080001F0DEF9041EB2D12A0009A930006C +:1023F00001F020FF041EABD10121300001F0CCF828 +:1024000001280DD12900300001F025F8431C07D127 +:10241000210033002A00209801F0F2FA040097E727 +:1024200009A90122080001F0CEF9041E90D109AAE1 +:102430001100100001F0D9F9041E89D109A92A0060 +:10244000080001F081FC041E00D081E7029B0133EB +:102450009BB20293029A039B9342B9D2012109A82D +:1024600001F09AF80028A0D070E7C04678FD02106D +:10247000F0B589B006000D0001921C1E04D104269F +:102480007642300009B0F0BD0021180001F084F858 +:10249000071EF4D10121300001F07EF80028EEDDA6 +:1024A0000121280001F078F80028E8DD39000198C2 +:1024B00001F072F80028E2D002A800F0B5FC05A8EF +:1024C00000F0B2FC3100012202A801F07CF9061EE6 +:1024D00022D10122290005A801F075F9061E1BD1A1 +:1024E00005AA02A9200001F0A5FE061E14D102A92A +:1024F00005AA080001F079F9061E0DD102AA010013 +:102500002300100001F07CFA061E05D102AA0199F1 +:10251000200002F001F8060002A800F08BFC05A8DC +:1025200000F088FCADE70000F0B587B00400684615 +:102530001F000D00160000F077FC03A800F074FCEB +:10254000002F07D10C9B002B2DD10D9B002B48D1C8 +:10255000002402E0002C09D1374C684600F06AFCE8 +:1025600003A800F067FC200007B0F0BD01222100A5 +:10257000684601F028F9002853D13200390003A839 +:1025800001F0EBF800284CD103A96A46080001F0DD +:10259000DBFB002845D1010003A800F0FDFF002867 +:1025A000D0D0264CD9E7002DD6D00122290068468C +:1025B00001F009F9002834D132000C9903A801F088 +:1025C000CCF800282DD103A96A46080001F0BCFB15 +:1025D000002826D1010003A800F0DEFF0028E0D18A +:1025E000B3E7002CB8D0002DB6D02A000D9968466C +:1025F00001F0FBF8002814D101226946684601F079 +:10260000E2F800280DD122006946684601F09CFBE3 +:10261000002806D10100684600F0BEFF0028C0D1A6 +:1026200096E7064B9842BCD0034B984200D193E703 +:10263000024BC41891E7C04680BFFFFF00BEFFFFFA +:10264000F0B589B0050002A801930E00170000F054 +:10265000EBFB05A800F0E8FB0F9B002B00D191E0FD +:10266000002E08D0109B0F9A3221300002F093F810 +:10267000002800D0BAE0002F00D188E0109B0F9A0C +:102680003221380002F087F8002800D0AEE0002E9A +:1026900000D17CE0002D1AD03A00310002A801F0F0 +:1026A000A4F8041E76D10121280000F075FF00284F +:1026B00000DC9BE0290002A800F0CDFE002800D03D +:1026C00094E0019B002B00D073E0002E61D0002F1E +:1026D0005FD0019B002B5CD00E9B002B59D00121B9 +:1026E000300000F059FF002800DC7FE001213800B5 +:1026F00000F052FF002800DC78E00E9A019902A851 +:1027000001F073F8041E45D102A90122080001F06E +:102710005AF8041E3ED10122310005A801F053F8F9 +:10272000041E37D102A905AA080001F00DFB041E02 +:1027300030D1010002A800F02FFF002856D10E9AD8 +:10274000019902A801F051F8041E23D102A9012227 +:10275000080001F038F8041E1CD10122390005A838 +:1027600001F031F8041E15D102A905AA080001F0F4 +:10277000EBFA041E0ED1010002A800F00DFF041EAA +:1027800008D033E0002E02D0002F00D082E7002DC9 +:1027900097D1002402A800F04DFB05A800F04AFBE9 +:1027A000002C03D0124B9C4200D0E418200009B04A +:1027B000F0BD0E9B002B00D187E70121019800F0AE +:1027C000EBFE002812DD01210E9800F0E5FE002846 +:1027D0000CDD2900019800F03EFE002806DA2900F1 +:1027E0000E9800F038FE002800DA6EE7004CD1E7C2 +:1027F00000BEFFFFF0B587B0019003A81F000D00D9 +:10280000160000F011FB002F0CD10C9B002B1DD1EA +:102810000D9B1C1E14D0019A29000D9801F07CFE1E +:1028200004000DE00122019903A800F0CCFF041E72 +:1028300006D103AA3100380001F086FA041EE4D064 +:1028400003A800F0F7FA200007B0F0BD012229002C +:1028500003A800F0B8FF041EF2D103AA31000C98BF +:1028600001F072FA041ED3D0EAE71300303B10B532 +:10287000DCB2092C00D9FF2303601300413B052B78 +:1028800001D80A3303601300613B052B01D8573A86 +:102890000260036800208B4201D30620404210BD35 +:1028A000E0B5060000200500B54200D1E0BD0B6890 +:1028B0008342BF411B1A0B60A80010587F42844618 +:1028C000834280414042C0196746DB1B08C1013585 +:1028D000EAE7F0B50E001500002487B003900491DC +:1028E000059201930290029B2F680F2B00D9B9E04B +:1028F000039B039A1D092B01D31A0293049BAD017C +:102900005E19059B5D19029B072B00D895E00023FB +:102910003068019A1900EEF76BFA2018A042A44122 +:102920003818B842BF4100236442611828607F42D2 +:1029300070687F18019A1900EEF75AFA3818B842F1 +:10294000BF417F4279186F680023C019B842BF4168 +:1029500068607F42B0687F18019A1900EEF748FA64 +:10296000AC683818B842BF410019A042A441002306 +:102970007F427918A8606442F0686418019A1900CF +:10298000EEF736FAEF682018A042A441C019B84209 +:10299000BF41002364426118E8607F4230697F18BC +:1029A000019A1900EEF724FA2C693818B842BF4191 +:1029B0000019A042A44100237F4279182861644293 +:1029C00070696418019A1900EEF712FA6F692018FD +:1029D000A042A441C019B842BF410023644261181B +:1029E00068617F42B0697F18019A1900EEF700FA1A +:1029F000AC693818B842BF410019A042A441002375 +:102A00007F427918A86164426418F069019A19003C +:102A1000EEF7EEF937002018A0429B41EC69203711 +:102A20000019A042A4413E005B425918E861029B94 +:102A30006442083B6418029320352F00029B0393E5 +:102A40003B680493039B002B00D030E10122029BE2 +:102A50009B00ED182B68E31808C5A34200D23DE1A6 +:102A600007B0F0BD00233068019A1900EEF7C0F9F5 +:102A70002018A042A441C019B842BF4100236442BB +:102A8000611828607F4270687F18019A1900EEF77C +:102A9000AFF96C683818B842BF412018A042A44171 +:102AA00000237F42791868606442B0686418019A14 +:102AB0001900EEF79DF9AF682018A042A44138181C +:102AC000B842BF41002364426118A8607F42F068A9 +:102AD0007F18019A1900EEF78BF9EC683818B842A4 +:102AE000BF412018A042A44100237F427918E8602A +:102AF000644230696418019A1900EEF779F92F6978 +:102B00002018A042A4413818B842BF4100236442B3 +:102B1000611828617F4270697F18019A1900EEF7E9 +:102B200067F96C693818B842BF412018A042A44127 +:102B300000237F42791868616442B0696418019A81 +:102B40001900EEF755F9AF692018A042A4413818D2 +:102B5000B842BF41002364426118A8617F42F06916 +:102B60007F18019A1900EEF743F9EC693818B8425A +:102B7000BF412018A042A44100237F42791864423B +:102B80006418E8611900019A306AEEF731F92F6A8A +:102B90002018A042A4413818B842BF410023644223 +:102BA000611828627F42706A7F18019A1900EEF757 +:102BB0001FF96C6A3818B842BF412018A042A441DE +:102BC00000237F42791868626442B06A6418019AEF +:102BD0001900EEF70DF9AF6A2018A042A441381889 +:102BE000B842BF41002364426118A8627F42F06A84 +:102BF0007F18019A1900EEF7FBF8EC6A3818B84212 +:102C0000BF412018A042A44100237F427918E86206 +:102C10006442306B6418019A1900EEF7E9F82F6BE3 +:102C20002018A042A4413818B842BF410023644292 +:102C3000611828637F42706B7F18019A1900EEF7C4 +:102C4000D7F86C6B3818B842BF412018A042A44195 +:102C500000237F42791868636442B06B6418019A5C +:102C60001900EEF7C5F8AF6B2018A042A441381840 +:102C7000B842BF41002364426118A8637F427F18B5 +:102C8000F06B019A1900EEF7B3F8EC6B3818B84204 +:102C9000BF412018A042A441E863029B7F427918FB +:102CA000103B644202934036403564181BE6002313 +:102CB00001CE1900019AEEF79BF8049B2018A04260 +:102CC000A441C018039B01C7013B0393049B6442CA +:102CD00098428041641840420419B1E61400B9E6F4 +:102CE000002905D0074BC91889004118884200D92E +:102CF00070470A68036812BA1BBA04C004394B60F3 +:102D0000F4E7C046FFFFFF3FF7B54C680E00150023 +:102D100000210190A700043F002C09D13368002B4B +:102D200002DA002900D0691A019B00201960FEBD5B +:102D3000B3680904DB59013C180C084329000093CF +:102D4000EEF730F86B461888090408432900EEF7BF +:102D500029F8E0E7F0B50F0089B00E9C079363688F +:102D60000690039200219A00A068EEF7AFF9A368DD +:102D70000493039B5E687B680193B34200D901967C +:102D8000741CA30005930023049C0093069B186801 +:102D9000009B9E421ED1059C049B043C1D192F19CB +:102DA00022002900EEF73AF93B68290001333B6025 +:102DB000039B30009A68FFF773FD012100223B68F6 +:102DC000181A069B38601E68C0B2091A944223D1B3 +:102DD00009B0F0BD009BB9689B001B580D680293B9 +:102DE0005D4323682200ED18079B01985D43029B19 +:102DF000FFF76FFD039922002B0089683000FFF771 +:102E000068FD0022029B2360059BE3185A60009B2B +:102E1000043401330093B9E7B358AF584B434743E9 +:102E2000DB19B3500432D1E7012303600023436070 +:102E30008360704710B5041E0ED08068002806D04D +:102E400063689900F9F782FBA068F9F76DFB01232D +:102E5000236000236360A36010BD0000124B70B5B7 +:102E600004000D00994202D91020404270BD6368F1 +:102E700000208B42FAD204212800F9F74DFB061EF0 +:102E8000F2D0A16800290BD063689A00EEF7C6F86B +:102E90006368A0689900F9F759FBA068F9F744FB4B +:102EA0006560A6600020E1E71027000070B505000E +:102EB0000E0000208D4217D04C68844204D12800B7 +:102EC000FFF7B8FF00200FE0621EA400002A0CD11B +:102ED000541C33686A682B60A2420FD2210028007C +:102EE000FFF7BCFF002811D070BDB3681B19043B6D +:102EF0001B68043C002BEBD1013AE7E7AB68121BDF +:102F0000A000920018180021EEF7E0F8A200B168C6 +:102F1000A868EEF783F8D5E730B50C00050085B05A +:102F200001000C2201A8EEF779F821000C222800FC +:102F3000EEF774F80C2201A92000EEF76FF805B047 +:102F400030BDF7B504000D001600884201D1002005 +:102F5000FEBD4968FFF782FF0028F9D161682800AB +:102F6000FFF77CFF0028F3D1276801233900724264 +:102F70003243D2B2D2092E689B1A5943564376186F +:102F80002660296857435943C9192960616801912E +:102F900001998142DBD0A6688100761800963668D8 +:102FA0000130B446AE6871180E6856433700664665 +:102FB0005E43BE19009F3E6067460E6857435E43FE +:102FC000F6190E60E4E770B50C0001210500FFF76B +:102FD00045FF061E0FD16B6801009A00A868EEF746 +:102FE00075F8E117AB6862184A401A600123E117CF +:102FF0009943C9182960300070BD436802005B0125 +:1030000000208B4208D94B0992689B001F30014079 +:1030100098580123C84018407047F8B506000F00C3 +:1030200014004D09012A1BD843685B018B420DD95E +:103030001F231F40B368AD005D190123BB40BC4096 +:1030400000202A689A4314432C60F8BD0020824275 +:10305000FBD0691C3000FFF701FF0028E8D0F4E73F +:1030600004204042F1E7F7B50022110043680193C4 +:10307000019B8B4202D100231800FEBD85688B00A6 +:1030800016005F59130020369D1AAC463D00644679 +:10309000E5402C0001252C42EED15B19B342F3D15F +:1030A00049191A00E4E7002342689A4212D0806866 +:1030B000531E9200002B0FD19A001158802200203D +:1030C00012060A4203D1013052082028F9D15B01CF +:1030D00020331B1A18007047811804390968043A14 +:1030E0000029E9D1013BE5E710B5FFF7DCFF073028 +:1030F000C00810BDF7B5032717407B1E9F419308FA +:10310000FF18436804000E001500BB421BD10021CC +:103110002000FFF758FF002822D118220300944610 +:10312000AB421DD01A0003218A43A168DF008A1830 +:10313000F15C0133019161460F400199B940176874 +:1031400039431160ECE7FFF775FE0123236000238C +:1031500039006360A3602000FFF780FE0028D6D00E +:10316000FEBDF7B503241440631E9C419308E41888 +:103170004368050001911700A34207D100212800F0 +:10318000FFF721FF061E0FD03000FEBDFFF752FEF5 +:1031900001232B60002321006B60AB602800FFF748 +:1031A0005DFE061EEAD0EFE7019B002BECD0AB687A +:1031B000A000C01B019918183A00EDF72FFF21005D +:1031C000A868FFF78DFDDFE7F7B5436801919B0025 +:1031D000934222D314000326FF279C420FD11600EE +:1031E00000240327A6421AD10024934205D2019954 +:1031F000D21AC8182100EDF769FF2000FEBD250096 +:103200003540E90025008C468168B5434D5961463B +:10321000CD403D4211D10134DFE71E00E0E721003F +:1032200039402500C9008C468168BD434D5961462F +:10323000CD4001990D550134D4E708246442DCE700 +:10324000F8B505006B6808009C0003261300944243 +:103250001AD2121B8E180021EDF738FF3000220021 +:10326000002303279A4212D10020F8BD19003140F3 +:10327000C9008C461900AF68B14379586746F940D8 +:10328000FF27394212D10133A342EFD1E8E71C00F6 +:10329000D11A1E0001398C46A968BC430C593E4026 +:1032A000F600F440614601334454DBE70820404215 +:1032B000DBE70000F7B50B001F26050033400F00C9 +:1032C00000934C09FFF7EFFE6B68C7195B01BB4227 +:1032D00006D3002C10D1009B002B24D100200AE043 +:1032E0003E4031004E1EB1417F09C9192800FFF749 +:1032F000B5FD0028EDD0FEBD6B68174AA0009A18F6 +:10330000121B9200A34207D800229B00043B191D08 +:10331000E1D0A968CA50F9E7A968013B8E5889181D +:103320000E50043AEEE7202100266B68A2009C466E +:10333000009BCB1A0193A445D0D9AB6800999B1888 +:103340001F6801343800884030433E001860019BFC +:103350000432DE40EFE7C046FFFFFF3F4368F7B5AA +:103360004C09A34205D31F221140A34205D10029D5 +:1033700034D00021FFF727FEFEBD002C1FD100290D +:1033800008D00022202594466A1A9C000192043C31 +:10339000002B16D10020EFE786681519AD00AF5954 +:1033A0009500AF5101321D1B9542F5D80024AA00AB +:1033B000AB42E4D986680135B4500432F8E7002204 +:1033C000F1E78268654612191768013B3E00CE405E +:1033D0002E431660019A9740BC46D8E7002BD9D0FF +:1033E0000A00E0E7436830B505009800002B11D1D2 +:1033F0004A689000002A16D11C0000201443844221 +:1034000007D00130934204D822D39A00002B13D165 +:10341000180030BDAA681218043A12680438002A4D +:10342000E6D1013BE2E78C682418043C24680438A8 +:10343000002CE1D1013ADDE7A868043A8458886895 +:103440008058844202D803D3013BDFE70120E0E744 +:1034500001204042DDE7436870B59C00002B0DD190 +:103460004C68A500002C12D1250000221D43954276 +:1034700002D09C4214D20268100070BD82681219FA +:10348000043A1268043C002AEAD1013BE6E78A6864 +:103490005219043A1268043D002AE5D1013CE1E7E3 +:1034A0000D686A429C42E7D80268002A01DD002DBF +:1034B00014DB002D01DD002A12DB9C00002B01D162 +:1034C0001A00D9E78568043C2E598D682D59AE4203 +:1034D000D2D801D25242CFE7013BEFE70122CBE73E +:1034E0000122F7E7F0B543684C6889B0A34250D198 +:1034F000036801245D102B00234002930B680394A2 +:1035000023416B40029D23401D4015604568AC4639 +:10351000AD000195029D641B0794019C043C01943D +:103520006446002C02D1604609B0F0BD8C68019D54 +:10353000019E64598568AF5926007E40F543059584 +:10354000059EE51B35403E00A64335431E00ED0FAA +:103550002E430695059D04963E1B3540BC432C43E7 +:10356000079EE40F26403500039F049EBF1B2E00DC +:103570003E40039F069DFB1A029F3D402B401E4389 +:1035800013681E43049B1660234301246442A44431 +:10359000C3E704204042C7E71FB5CA178B18534042 +:1035A00000930123C9179943C91802936B460191EF +:1035B00001A90393FFF74FFF05B000BDF7B5050064 +:1035C0000C001700904202D088422ED13C0001230B +:1035D00067682B60BA00002F2ED139002800FFF752 +:1035E0003DFC0190002825D1A368AA689C461100E3 +:1035F00004000600B300B74227D1D218002C19D01E +:103600006B68771CB34208D839002800FFF726FC06 +:10361000002829D1AB68B2009A1813683E00E3185D +:10362000A342A44108C26442E8E7FFF73FFC0190CF +:103630000028CBD00198FEBDA3689B18043B1B68F3 +:10364000043A002BC9D1013FC5E76046C0580B685A +:103650000136E318A342A4411B1808C183429B41D1 +:1036600064425B421C19C5E70190E3E70123F0B512 +:1036700085B00193002305000C001700029303930B +:10368000904206D1010001A8FFF710FC061E2AD1C6 +:1036900001AFA54221D101237C68BA682B60A30049 +:1036A000002C26D1A9682000FFF7FAF80026B042C6 +:1036B00019D001206968A2004042A14224D9AB6818 +:1036C0009B181E680432002E1BD0AB68A4001C1986 +:1036D00023680026013B236005E021002800FFF756 +:1036E000E5FB061ED7D001A8FFF7A4FB300005B00C +:1036F000F0BDD11804390968043B0029D2D1013C3E +:10370000CEE718600134D8E7A142DED10A2676421E +:10371000E9E7F8B50D68136804006B430E00170065 +:10372000002B17DA11003000FFF75CFE002808DBE1 +:103730003A0031002000FFF799FF002809D12560E9 +:1037400007E0320039002000FFF790FF6D420028AB +:10375000F5D0F8BDFFF732FFEFE7F8B50D68136855 +:1037600004006B430E001700002B17DD1100300022 +:10377000FFF738FE002808DB3A0031002000FFF791 +:1037800075FF002809D1256007E0320039002000CC +:10379000FFF76CFF6D420028F5D0F8BDFFF70EFF74 +:1037A000EFE71FB5D4171319634000930123D21715 +:1037B0009A43D21802936B46019201AA0393FFF732 +:1037C000A8FF04B010BD1FB5D417131963400093B0 +:1037D0000123D2179A43D21802936B46019201AA91 +:1037E0000393FFF7BAFF04B010BDF0B50023160035 +:1037F00001228BB005000F000492059306930792F7 +:1038000008930993884206D1010004A8FFF74EFBF4 +:10381000041E30D104AFB54206D1290007A8FFF736 +:1038200045FB041E27D107AE7B6802939A00029BDA +:10383000002B29D1736801939A00019B002B2ED194 +:10384000029B019A28009918FFF708FB041E12D169 +:1038500001002800FFF7B7FB041E0CD1019B9B0061 +:103860000393039B043B0393019B002B22D13A68F3 +:10387000336853432B6007A8FFF7DCFA04A8FFF76F +:10388000D9FA20000BB0F0BDBB689B18043B1B6845 +:10389000043A002BCED1029B013B0293C7E7B368E9 +:1038A0009B18043B1B68043A002BC9D1019B013BC8 +:1038B0000193C2E7AB68039A03999A18B368029818 +:1038C0005B58B968FFF705F8019B013B0193C8E716 +:1038D0001FB50123019302936B46009201AA039343 +:1038E000FFF783FF05B000BD0B00F0B5023B87B0CA +:1038F0000500019100920E2B04D90424644220009B +:1039000007B0F0BD012300240098039304940594AC +:10391000ECF77AFF019B0600102B3DD1374B984204 +:10392000EBD81F21830019404A1E91415B09C91839 +:103930002800FFF793FA041E06D101002800FFF7C4 +:1039400042FB0400071E23D003A8FFF773FAD6E753 +:10395000012E06D1009B1B782D2B02D12E3B2B6014 +:10396000F2E7009B013E9A5D102102A8FEF77DFF61 +:10397000002841D11C21AA68FB089B00D318BA007B +:103980000A400299013791400A0019680A431A60F7 +:10399000002EDDD10024D7E721002800FFF713FB1C +:1039A0000400071ED0D1B742F4D0002F07D1009BEE +:1039B0001B782D2B03D12E3B2B600137F3E7009BA7 +:1039C0000199DA5D02A8FEF750FF041EBCD1019AEE +:1039D000290003A8FFF77CFF041EB5D12B68029ACB +:1039E00003A92800012B04D1FFF7DBFE041EE4D05D +:1039F000AAE7FFF7E8FEF9E70400A5E7FFFFFF3FAE +:103A0000F0B5A1B0049002911800002116000693B1 +:103A1000FFF7C2FD002800D18FE103230024012518 +:103A20001B9306991DAB30000E950F9410941195C1 +:103A30001294139414951594169417951894199438 +:103A40001A951C93FFF7CEFCA04227DA049BA342F1 +:103A500006D1029B002B1AD10024200021B0F0BD1A +:103A600021000498FFF7AFFA041EF2D00EA8FFF76A +:103A7000E1F911A8FFF7DEF914A8FFF7DBF917A8A1 +:103A8000FFF7D8F90C211DA8F8F760FDE5E7310034 +:103A90000298FFF70BFA041EE8D1DDE731000EA80B +:103AA000FFF704FA041EE1D1069911A8FFF7FEF909 +:103AB000041EDBD1736814A8991C11950E95FFF7AD +:103AC000CDF9041ED2D1010014A8FFF77CFA041E20 +:103AD000CCD1022117A8FFF7C1F9041EC6D111A845 +:103AE000FFF7E1FA1F231840984270D01B1A190003 +:103AF0000EA80593FFF7DEFB041EB7D1059911A8A8 +:103B0000FFF7D8FB041EB1D10F9B129D0093013B20 +:103B100001936B1E0893019B6A1E9F1A7B0119007B +:103B200011A80393FFF7C6FBBF00041E9ED111A985 +:103B30000EA8FFF790FC00284BDA039911A8FFF7B5 +:103B40000DFC041E92D17E4A089B94469B0009936B +:103B50007C4BEB189B000B93009B63449B000093F2 +:103B6000AB005B420D93EB065B1B0C93019B089A29 +:103B700093423BD8049B002B0BD014A91800FFF7ED +:103B800095F9002821D1069B32681B685343049A9B +:103B90001360029B002B00D168E705990EA8FFF780 +:103BA000DDFB002811D133680EA902980E93FFF7B0 +:103BB0007DF9011E00D0BEE00298FFF7EDFC002861 +:103BC00000D053E70123029A136004004EE70594E6 +:103BD0009AE7169B0EA9DB191A68080001321A60D1 +:103BE00011AAFFF7BAFD041EA1D03FE70098109B71 +:103BF0008446009A07939F18139B099A39689A582C +:103C00000D9B6344039303000798043BC3180A9376 +:103C10000398169B1D18914202D301235B420BE0CF +:103C20000A9B186801235B42002A05D00023EDF7A8 +:103C3000BFF803000029F0D1019A2B600023012A6C +:103C400005D0009A079B94466344083B1B681D936C +:103C50000A9B1B681E933B681F932B6801332B60E4 +:103C6000169B039A00219B181A6817A8013A1A603C +:103C7000FFF7A9F90028A8D1089B139A002B01D0BF +:103C80000B9BD058199B09991860525817A95A6074 +:103C9000169B039A08009A580793FFF719FE00280D +:103CA00093D11AA917A8FFF7D6FB0028D8DC169BDA +:103CB000039A11A99A5817A80793FFF709FE00283D +:103CC00083D1019B0C9A17A89D186D012900FFF75D +:103CD000F1FA002800D078E70EA9080017AAFFF72C +:103CE0003CFD011E27D10EA8FFF756FC00281BDA69 +:103CF00011A917A8FFF7DAF8002800D065E7290016 +:103D000017A8FFF7D7FA002800D05EE70EA917AA78 +:103D10000800FFF7FEFC002800D056E7169B039A28 +:103D20009B181A68013A1A60019B013B0193009BA2 +:103D3000043B00931AE70C0098E60C2464428CE6DE +:103D4000FFFFFF3FFEFFFF3F70B504000D001000B6 +:103D500000211600FFF720FC002825DB2A00330095 +:103D600021000020FFF74CFE051E08D0280070BD82 +:103D7000320021002000FFF7CCFC002812D10021E6 +:103D80002000FFF709FC0028F2DB31002000FFF7DC +:103D900062FB0028EADB320021002000FFF7DDFC97 +:103DA0000028F2D00500E1E70A256D42DEE710B5F4 +:103DB000002A0FD011DB0023012A05D0022A06D1E8 +:103DC0008B68013A1B6813400360002010BDFEF7AA +:103DD0009BFFFBE70C204042F8E70A20FBE70000CE +:103DE000836873B51B6806000E4DDB0713D40E20E5 +:103DF000404214E021003000FFF7CEFB00280FDD29 +:103E00002200310001A8FFF7D2FF002807D1019B53 +:103E10000435002BEBD02C68002CEBDC002076BDA9 +:103E20000120FCE7B0FD0210F0B5C84C0E00A5441F +:103E300005900021180008921F00FFF7ADFB002835 +:103E400000DCF3E1BB681C68E30700D4EEE100216D +:103E50000898FFF7A1FB002800DAE7E10898802521 +:103E6000FFF721F9AD01A84200D9DFE13800FFF7E3 +:103E70001AF9A84200D9D9E1082303210222A51C7E +:103E80006D001D402D192B0063430139D31A5D438A +:103E90000029F8D1C022012492001AA80F91109194 +:103EA00012911391159116910E9411941494EDF7AB +:103EB0000DF90898FFF7F7F80622A54B03929842F0 +:103EC0000CD805230393EF2808D8013B03934F2810 +:103ED00004D80394172801D9013B03937B68059804 +:103EE000013319000493FEF7B9FF041E00D0AEE0C1 +:103EF00004991DA8FEF7B2FF041E00D0A7E0049BA2 +:103F000011A85900FEF7AAFF041E00D09FE03368F5 +:103F10000A93013309D1310014A8FEF7C7FF041E2C +:103F200000D094E0012314AE1493E09B002B04D046 +:103F30009B680493002B00D0ABE001210EA8FFF793 +:103F400042F8041E00D082E07B680EA89901FFF7BA +:103F5000B1F9041E7BD10EA93A000800FFF7F4FE68 +:103F6000041E74D1E09B002B04D00C2218000EA973 +:103F7000EDF754F839003000FFF76DFA002800DA49 +:103F80008BE03A0031001DA8FFF7DEFE041E5ED173 +:103F90006B42049311AB00933A00049B0EA91FA837 +:103FA000FEF7D8FE0EA90598FEF780FF041E4ED13D +:103FB00001260DAB1993059B3A000833079311AB0B +:103FC000009317A9049B07980D9617961896FEF76D +:103FD000C1FE039BB34265D1002216001500089B69 +:103FE00009925B680693099B002B00D0B9E0069B01 +:103FF000002B00D0B0E0039A013393400993069B55 +:10400000B34200D0F2E001250DAB199311AB009340 +:104010003A00049B17A907980D9517951895FEF778 +:1040200099FE0A9B013312D1089B5B680493002B15 +:104030000DD0089B9B681B682B4208D0059B0A9AF1 +:1040400039001A6018001A00FFF763FB040001260C +:104050003500039B0C27013B9D40039B9E40AE42D5 +:1040600000D9DBE01DA8FEF7E5FE11A8FEF7E2FE91 +:1040700014A8FEF7DFFEE09B002B02D09B68002B0C +:1040800002D10EA8FEF7D6FE2000DB239B009D4444 +:10409000F0BD0C22E0990EA86AE731001DA8FEF7DA +:1040A00005FF73E70C253200039B013B9D409A40BE +:1040B0001AAB06955D197B682800591C0992FEF71A +:1040C000CDFE0028C2D11DA92800FEF7EFFE002872 +:1040D000BCD1280011AB00933A00049B29000830A2 +:1040E000FEF738FE039B01369E42F2D10123039A6C +:1040F000099E9340DAAA94460993069B01366344CD +:104100001D00144BED18099BB34200D864E72B0047 +:10411000083B06937B680698591CFEF79FFE002813 +:1041200000D093E7290006981439FEF7BFFE002857 +:1041300000D08BE711AB00932800049B3A001DA927 +:10414000FEF708FE01360C35DDE7C04694FCFFFFA4 +:104150009F02000014FDFFFF069B013B06932023F6 +:104160000993099B013B0993089B9B680B93069B52 +:104170000B999B005B580999CB4001210B40110022 +:1041800019430CD0002B0CD1012A0AD111AB00939A +:104190000599049B3A000798FEF7DCFD01210A000F +:1041A00021E7039A0136921B93401D43039B022192 +:1041B000B342F4D1002611AB00933A00049B059959 +:1041C0000798FEF7C7FD039B0136B342F3D80C21D5 +:1041D000694300251AAB591811AB00933A00049BB0 +:1041E0000798FEF7B7FD2E000121D8E711AB009329 +:1041F0003A00049B05990798FEF7ACFD099B6D00FA +:104200001D4207D011AB00933A00049B1DA90798EB +:10421000FEF7A0FD069B01330693F0E638006843E5 +:104220001AABC018FEF706FE013518E704246442F5 +:104230002AE7C04670B500231500012286B00600AB +:104240006846009201930293039204930593FEF74C +:104250002DFE041E55D1290003A8FEF727FE041EDB +:104260004FD16846FEF7FFFE050003A8FEF7FBFEF0 +:10427000854200D9050029006846FFF76FF8041E43 +:104280003FD1290003A8FFF769F8041E39D10123A3 +:104290000393009300216846FFF77EF900280BD1B5 +:1042A000290003A8FFF706F8041E2AD103A930004D +:1042B000FEF7FCFD040024E06846FEF7D4FE010092 +:1042C0006846FFF74BF8041E1BD103A8FEF7CBFE90 +:1042D000010003A8FFF742F8041E12D103A96846A3 +:1042E000FFF7B9F8002815DB03AA69466846FFF70F +:1042F000BDF9041E05D101216846FFF72FF8041E01 +:10430000C8D06846FEF796FD03A8FEF793FD20008F +:1043100006B070BD03A96A460800FFF7A7F9041E9E +:10432000EFD1012103A8E8E7F7B503240C4001937E +:10433000631E9C418B08E418436805000F0000923F +:10434000A34207D100212800FEF73DFE061E0FD034 +:104350003000FEBDFEF76EFD01232B60002321001F +:104360006B60AB602800FEF779FD061EEAD0EFE730 +:10437000AB68A100C91B59183A000198009B9847E7 +:10438000061EE5D12100A868FEF7AAFCE0E70000C0 +:10439000F0B599B00692079301220023059105001C +:1043A000010009A809920A930B930C920D930E93A6 +:1043B0000F921093119312921393149315921693D4 +:1043C0001793FFF700FA041E10D109A8FEF74BFE61 +:1043D00009A903900CA8FEF769FD041E06D10399F4 +:1043E0000CA8FEF7BBFF0400071E2ED009A8FEF79D +:1043F00021FD0CA8FEF71EFD0FA8FEF71BFD12A85D +:10440000FEF718FD15A8FEF715FD200019B0F0BD48 +:1044100009A912A8FFF71FF800281ADA012112A82B +:10442000FFF7BAF8002814DD15AB12A900930CAA07 +:104430002B000800FFF7F8FC002867D109A912A893 +:10444000FFF709F800282ED10137059B9F42CDD0F8 +:1044500020266B68069A990012A8079BFFF764FF55 +:10446000002853D112A8FEF71EFE049009A8FEF7FB +:104470001AFE049B834210D9139B254A14999A185B +:1044800092008A1823495B185B01DB43181801234B +:104490005B428340116899431160013E002EB7D101 +:1044A0000E246442A2E7012112A8FFF775F8012645 +:1044B0000028C9D009A912A8FEF7CDFF039B9E4290 +:1044C00015D2002813D012AA11000FA8FFF78DF9FA +:1044D00000281BD12A000FA912A8FFF735FC0028DD +:1044E00014D1012112A8FFF757F800280CD109A90F +:1044F00012A8FEF7B0FF0028D2D1012112A8FFF7C1 +:104500004BF80028A0D1CBE70136D3E704006DE7D4 +:10451000FFFFFF3FFFFFFF07F0B59FB001900F00C7 +:10452000100001211600FFF737F8002800DC2FE10A +:10453000002301253200390003A80695079308934C +:1045400009950A930B930C950D930E930F95109369 +:104550001193039504930593129513931493159552 +:1045600016931793189519931A931B951C931D93E3 +:10457000FFF760FE041E4FD1290003A8FFF70CF8D7 +:10458000002800D001E13200390006A8FFF7DCFB6B +:10459000041E41D106A909A8FEF788FC041E3BD1E0 +:1045A000310012A8FEF782FC041E35D1310015A897 +:1045B000FEF77CFC041E2FD129000CA8FEF703FD9A +:1045C000041E29D101000FA8FEF7FDFC041E23D113 +:1045D000010018A8FEF7F7FC041E1DD129001BA836 +:1045E000FEF7F1FC041E17D10B9B1B682B425FD119 +:1045F000290009A8FEF7B2FE041E0DD10E9B1B6810 +:104600002B4227D1119B1B682B4223D129000CA8D8 +:10461000FEF7A4FE041E2CD006A8FEF70BFC09A88A +:10462000FEF708FC0CA8FEF705FC0FA8FEF702FC3D +:1046300003A8FEF7FFFB12A8FEF7FCFB15A8FEF788 +:10464000F9FB18A8FEF7F6FB1BA8FEF7F3FB20000A +:104650001FB0F0BD0CA912AA0800FFF75AF8041EFB +:10466000DAD10FA906AA0800FFF777F8041ECDD00B +:10467000D2E729000FA8FEF771FEB3E7290015A8BD +:10468000FEF76CFE041EC7D11A9B1B682B4249D152 +:104690001D9B1B682B4245D1290018A8FEF75EFE22 +:1046A000041EB9D129001BA8FEF758FE041EB3D181 +:1046B000179B1B682B42E1D015A909A8FEF7CBFE7A +:1046C00000283FDB09A915AA0800FFF746F8041ED9 +:1046D000A2D10CA918AA0800FFF73FF8041E00D0C9 +:1046E0009AE71BAA0FA90800FFF737F8041E00D0AD +:1046F00092E7002109A8FEF74FFF002800D073E7DA +:10470000002118A8FEF748FF00282EDB310018A86A +:10471000FEF7A1FE002830DA18A90198FEF7C6FBC3 +:10472000040079E718A912AA0800FEF7F2FF041E98 +:1047300000D071E71BA906AA0800FFF70EF8041EB7 +:10474000AAD069E715A909AA0800FFF706F8041E10 +:1047500000D061E718A90CAA0800FEF7FEFF041EAE +:1047600000D059E70FAA1BA9BDE718A9320008001D +:10477000FEF7CFFF041EC3D04EE718A93200080091 +:10478000FEF7EBFF041EC1D046E70E24644243E768 +:10479000042464425BE7F0B501271E00436887B03C +:1047A000049383680C0003A800211500039701936C +:1047B0000593FEF7F1FE00281CD0390003A8FEF790 +:1047C000EBFE002816D0022103A8FEF7E5FE002824 +:1047D00006D003A8FFF704FB002804D0B84200D19C +:1047E000002007B0F0BD33002A00210003A8FFF726 +:1047F000CFFDF6E70E204042F3E70000F0B58BB0A6 +:104800000093734B0292CA1E07000E009A4200D911 +:10481000DBE0012307930023089309931F330B4028 +:104820005A1E934102254A099B18029A2A4200D037 +:1048300085E0684A914213D8674A013591420FD802 +:10484000664A013591420BD85E22FF32043591420F +:1048500006D80435F92903D80635952900D8093535 +:104860009A005B0103920193043A9B1B0492059307 +:10487000109B009A03993800FFF756FD041E00D0E4 +:104880008CE0BA680499564B52589A42F0D9019B71 +:104890009E4200D27BE001220120B9680B681A43D6 +:1048A0000A60029A024200D17EE0032213430B60A9 +:1048B00006A83900FEF728FA041E6FD1069B002BCC +:1048C00000D07DE0082239003800FEF76AFF041EA0 +:1048D00064D1390007A8FEF7E9FA041E5ED1012170 +:1048E00007A8FEF73BFD041E58D13800FFF778FA01 +:1048F000041E14D107A8FFF773FA041E0FD1109BF2 +:10490000009A29003800FFF743FD041E07D1109BD1 +:10491000009A290007A8FFF73BFD041E3ED02300A4 +:104920000E333BD10C2239003800FEF73AFF041E4B +:1049300034D107A906220800FEF733FFD3E7294A3E +:10494000042591428CD8284A0135914200D987E745 +:10495000264A0135914200D982E71F4A013591422A +:1049600000D97DE7224A0135914200D978E7F42247 +:10497000FF320535914200D972E70F35F92900D988 +:104980006EE70C35952900D96AE70B3568E705997C +:104990003800FEF7E3FC041E00D17CE707A8FEF711 +:1049A00049FA20000BB0F0BD109B009A2900380096 +:1049B000FFF7F1FE030004000E3300D158E7EDE7E6 +:1049C0000422012B00D084E77DE704246442E8E759 +:1049D000FD1F0000130500005103000089020000C4 +:1049E00033F304B5A90500007D040000E7030000CF +:1049F000ED020000F0B599B00893249B0390069156 +:104A00000492209D022B04D10D246442200019B091 +:104A1000F0BD249B102BF7D8DB07F5D41E9B073B7A +:104A2000062BF1D8A84B9D42EED80F221E9B1120D9 +:104A3000D9B2521AD3B209932B005A1E93419A014C +:104A40000E235B1ADBB20593249B0899023B5B089B +:104A5000DB001343059A13430CAA137008AB1E9A8C +:104A6000C018ECF7DBFA1F2308AA9B181E2208A91E +:104A700052180599049E521A1E70013B360A934241 +:104A8000FAD1002EC0D110AC310010222000ECF77A +:104A90001DFB21000CAF735CF25D53407354013673 +:104AA000102EF8D10BAB009332000B00039800F0EE +:104AB00015FB041EAAD1002D3CD13120059B14AC5E +:104AC000237008AB1E9A0899C018ECF7A7FA1E9B32 +:104AD000099A581C20180021ECF7F8FA0123102637 +:104AE000E373049B002B77D13F223E2108ABC9180A +:104AF000D218059BC91A049B1370013A9142FBD14D +:104B00000BAB0CAD009310222B0014A9039800F0FE +:104B1000E5FA041E00D079E7030010A95A5CE85CAE +:104B200042405A540133102BF8D1249A2398ECF7C1 +:104B300075FA6BE7010032003800ECF7C7FA2B0A70 +:104B40003B707D702F000E2D00D90E2712200026FD +:104B500008AB1F993A00C018ECF760FA10A90CA82E +:104B6000735C325C534073540136102EF8D10BAB9A +:104B7000009332000B00039800F0B0FA041E00D03E +:104B800044E71F9BED1BDB190793002D95D02F00E9 +:104B9000102D00D937000CAC320000212000ECF7BA +:104BA00095FA07993A002000ECF738FA002310A98B +:104BB0005A5C185D42405A540133102BF8D10BABAC +:104BC000009332000B00039800F088FA041E00D016 +:104BD0001CE7ED1B079BD6E7049D102D00D935007F +:104BE000069B002B2BD00BAB0CAF009332003B008D +:104BF00014A9039800F072FA041E00D006E7AC4234 +:104C00003BD3069B012B41D03F223E21229B5B19C7 +:104C10002293219B5B192193049B5B1B049308AB9C +:104C2000C918D218059BC91A13780133DBB2137067 +:104C3000002B00D055E7013A9142F5D151E70CAC79 +:104C4000320006992000ECF741FA21992A00200051 +:104C5000ECF7E4F9069B10A95A5C185D42405A54DF +:104C60000133102BF8D10BAB009332000B000398EB +:104C700000F034FA041EB6D0C8E6219B3A5D1B5DF5 +:104C80005340229A13550134E4B2B8E70CAC320019 +:104C900000212000ECF71AFA22992A002000ECF7F4 +:104CA000BDF9002310A95A5C185D42405A540133E3 +:104CB000102BF8D10BAB009332000B00039800F0DF +:104CC0000DFA041EA0D0A1E6FFFE000010B544229C +:104CD0000021ECF7FBF910BDF8B504001600080040 +:104CE000012219001D0000F077F9071E12D0436958 +:104CF000102B0FD1200000F08BF93900200000F0BC +:104D0000B7FB002805D101232A003100200000F064 +:104D100097F9F8BD0D204042FBE710B5041E05D001 +:104D200000F076F944212000F7F710FC10BD10B513 +:104D300088B00F9C009306940E9C130005940D9C64 +:104D40000A0004940C9C002103940B9C02940A9C7E +:104D50000194FFF74FFE08B010BD10B586B00D9C52 +:104D6000002C0ED005940C9C04940B9C03940A9C7C +:104D70000294099C0194089C0094FFF7D8FF06B0A8 +:104D800010BD0D204042FAE770B50C008CB01399AD +:104D9000159D0491129908AE039111990093029107 +:104DA0001099130001910695059622000121FFF745 +:104DB00021FE031E08D00CB070BD149AF15CD25CC9 +:104DC00001334A401043DBB2AB42F6D30028F2D0A5 +:104DD00013982100F7F7BAFB0F204042EBE710B51C +:104DE00086B00D9C002C0ED005940C9C04940B9C5A +:104DF00003940A9C0294099C0194089C0094FFF778 +:104E0000C3FF06B010BD0D204042FAE7002310B5E5 +:104E1000891A8B4200D310BDC4180133A154DBB2F0 +:104E2000F7E70000F0B5002821D0002A1FD0431872 +:104E3000013B1D784E1BA9429B4116606A426A41A4 +:104E40005B42134300228A4205D1581E83415842D7 +:104E5000084B1840F0BD845C6C40A44600246746B3 +:104E6000B24264417C432343DBB20132EBE70248A8 +:104E7000F0E7C046009EFFFF009FFFFF802330B594 +:104E800000248354891A7F3B8B4200D330BDC51860 +:104E90000133AC54DBB2F7E770B5012300268D1A5D +:104EA000AB4203D340180138057070BDC418A41874 +:104EB000013C01332670DBB2F2E70000F0B50028B8 +:104EC0001ED0002A1CD04C1E035DCD1A9942894188 +:104ED00015605A4253414942194300231E009C4227 +:104EE00005D8481E8141484206490840F0BD3200BD +:104EF000AB427241C75C01337A431143C9B2EEE75A +:104F00000148F3E7009EFFFF009FFFFF00238A4256 +:104F100000D3704783540132F9E70000002804D021 +:104F2000002A02D00020116070470148FCE7C0460B +:104F3000009FFFFFF0B500281DD0002A1BD00024E1 +:104F400080231460002905D1581E834158420B4B21 +:104F50001840F0BD0139455C17686E1EB5410E0062 +:104F600025436C4066433E431660465C7443634091 +:104F7000DBB22C00E6E70248EBE7C046009EFFFFED +:104F8000009FFFFF70B5002814D0002A12D0002324 +:104F90001360002901D1080070BD4D1E445D661EDE +:104FA000B4411C4363404B4311680B431360290019 +:104FB0002300EEE70048EFE7009FFFFF054B1A686C +:104FC000002A05D0083319000C3909788142F6D13E +:104FD000100070475C03031030B5094C2368002BA8 +:104FE00001D1180030BD9D692D78854205D15D68DD +:104FF0008D4202D15D789542F3D00834EEE7C04689 +:105000005C03031010B544220021ECF75FF810BDDB +:1050100010B5041E13D0006C002805D02421F7F72A +:1050200095FA206CF7F780FAE06B002803D023682C +:105030009B699B6A984744212000F7F787FA10BDC7 +:1050400070B50468002C01D10C4870BD2569AD070E +:1050500002D465689542F7D142600372012B03D0F8 +:105060006578033D022D04D8A369DB69C06B9847BE +:10507000EBE7002BE8D1A3691B6AF7E7009FFFFF6E +:10508000036870B506001400002B15D0102A11D843 +:105090001A69D20703D4DB689C420DD31C0000259B +:1050A000AC4205D0300022002830EBF7B7FFB463E4 +:1050B000280070BD014DFBE7014DF9E7809FFFFF20 +:1050C000009FFFFF0368002B03D0002343621800FA +:1050D00070470148FCE7C046009FFFFFF0B5066837 +:1050E00089B004000491150006930E9F002E02D192 +:1050F000834809B0F0BD00233B6073690593002B22 +:1051000000D1F6E073780793012B0DD1059B9A42ED +:1051100000D0F0E00821B3693A6041565D68049A16 +:10512000069BC06BA847E4E7079B062B07D13A60B4 +:10513000069B049A2900C06B01F023FBD9E7049B6E +:10514000069A934208D1436A002BD1D105992800D1 +:10515000EBF728FE0029CBD1079B022B7AD108233D +:10516000E356606A002B11D1059BE2681B1A002AE6 +:1051700010D0AB4210D314302A0020180499EBF75A +:105180004DFF636A5D1965620020B2E7012B03D110 +:10519000059B1B1AAB42EED8002829D0059B049929 +:1051A0001B1A14301A0020180793EBF737FF069AE2 +:1051B000236808219B6901922200143200929B68A7 +:1051C00061561E002300059A2833E06BB047002883 +:1051D00000D08EE7059A3B6894469B183B60069B7F +:1051E000079A63440693049B60629B180493AD1A6C +:1051F000002DC9D005992800EBF7D4FD0E1E07D16C +:105200000823E356002B03D1E368002B00D0059E52 +:105210002000049BAD1B591932001430EBF7FEFE41 +:10522000636A9E196662002DAED02300082106989D +:10523000226828339269019004986156009096681C +:10524000E06B2A00B047002800D052E73B685D19A8 +:105250003D604EE7079B032B12D10698B26902907E +:105260000498230001902000082128300090D6687F +:10527000243361562A00E06BB0470028E8D038E7B5 +:10528000079B042B0DD1230022000698B1690190E1 +:105290000498283300900E6924322900E06BB0474F +:1052A000EBE7079B052B10D10698B1690290049893 +:1052B0002300019020002200143000904E69283312 +:1052C00024322900E06BB047D7E7079B092B14D1A4 +:1052D000636A002B11D1230008210698B26901905E +:1052E000049828330090966961562A00E06BB04715 +:1052F000C3E70448FDE60448FBE60448F9E6C04677 +:10530000009FFFFF809CFFFF809DFFFF809FFFFFAE +:10531000F7B5076804000E001500002F5AD00020D2 +:1053200010607B78DA1E042A10D9092B0ED03A7847 +:10533000483A012A0AD9012B09D1606A43425841EF +:10534000C5224042D201264B1040C018FEBD022BA0 +:1053500042D10823E356626A012B29D1E368002B6E +:1053600002D150425041EBE72000A16B14300029DC +:1053700000D1F96898472000082122681430936909 +:105380006156019600909F68230052692833E06BB4 +:10539000B8470028DAD10822A2562368002A13D180 +:1053A0002469191E00D059692A003000A047CDE7B2 +:1053B0007B699342DFD0E368002B0FD1501E8241FE +:1053C0005042074A1040C1E70200002B00D05A6942 +:1053D0002A60BBE70348B9E70348B7E70048B5E7E9 +:1053E000809DFFFF009FFFFF809FFFFF026800B5C9 +:1053F0000300002A21D05278022A1ED104291ED887 +:105400000800EBF735FC03090D1115000D4ADA60B1 +:105410000D4A00201A6100BD0C4ADA600C4AF8E718 +:105420000C4ADA600C4AF4E70C4ADA600C4AF0E7FE +:1054300000200C4AD8601A61EDE70B48EBE70B48F7 +:10544000E9E7C0460D4E0110254E01107D4E0110BA +:10545000354F0110994E0110BD4E01100D4F011036 +:10546000854F01101D4F0110009FFFFF809FFFFF20 +:1054700070B504000D1E10D044220021EBF726FE6B +:10548000AB695B6A9847E063002808D0256000217B +:105490002000FFF7ABFF002070BD0248FCE7024888 +:1054A000FAE7C046009FFFFF809EFFFF7FB50A9D81 +:1054B00004001E00FFF7E4FD002819D12368002B2B +:1054C00018D060620095099B089A31002000FFF710 +:1054D00005FE00280CD12A68099B2000991803AA10 +:1054E000FFF716FF002803D12B68039A9B182B6047 +:1054F00004B070BD0048FBE7009FFFFF10B504003B +:10550000FFF70BFC2000F7F70FF810BD10B5442192 +:105510000120F7F701F8041E01D0FFF7D7FB2000A8 +:1055200010BD10B513000A000221FFF7D5FB10BD16 +:1055300010B5040001F056FA2000F6F7F5FF10BD93 +:10554000C82110B549000120F6F7E6FF041E01D07E +:1055500000F0B6FF200010BD10B513000A000221B4 +:1055600000F0B5FF10BD842110B549000120F6F709 +:10557000D3FF041E01D004F091F8200010BD10B537 +:1055800004F0C4F810BD10B504F0A3F810BD00007D +:1055900013B5002901D0012906D1059C0194049C72 +:1055A000009404F04FF916BD0048FCE7009FFFFF90 +:1055B00010B5040004F054F82000F6F7B5FF10BD54 +:1055C00010B584210120F6F7A7FF041E01D004F0D6 +:1055D0003DF8200010BD10B504F077F810BD10B5EF +:1055E00004F06FF810BD1FB5089C0294079C01944D +:1055F000069C009404F020FA04B010BD13B5059C7D +:105600000194049C009404F0E9F916BD1FB5089CB0 +:105610000294079C0194069C009404F09FF904B046 +:1056200010BD13B5059C0194049C009404F09CF8F3 +:1056300016BD10B504F08CF810BD10B5041E04D0D2 +:1056400004F035F82000F6F76FFF10BD70B5102A92 +:1056500004D01B25082A02D00C480EE08725013A09 +:1056600000231600002A09DA0023CB56801902789D +:10567000DB112B4053400370002070BD8C5C640034 +:105680001C4384548B5C013ADB09EBE7009FFFFF6E +:1056900070B500249C4200D170BD0D5D165D754053 +:1056A00005550134F6E7000070B5051E1DD00368EE +:1056B000002B1AD0002918D00123FFF7C1FC041ECB +:1056C00011D12B681B78022B0FD3042B01D9242B6B +:1056D0000BD124210120F6F71FFF002807D02864F2 +:1056E0001021F6F733FF200070BD024CFBE7024C9F +:1056F000F9E7C046009FFFFF809EFFFFF0B589B02D +:1057000003900291170000285ED00368002B5BD045 +:10571000002959D0046C002C56D0206A5D690028FD +:105720001FD02A1ABA421CD210302018EBF776FC90 +:1057300021002B00220010312000FFF7A9FF07AB4A +:1057400000932A00230021000398FFF7C7FC061EE0 +:1057500020D1236A0299EA1A8A18DF1902927F1B64 +:105760002062681EC0192900EBF796FA0123059004 +:105770000493049B059A93420FD30026B74209D0A5 +:10578000206A3A00103020180299EBF747FC236A90 +:10579000DB192362300009B0F0BD2B002200029912 +:1057A0002000FFF775FF07AB00932A0023002100BC +:1057B0000398FFF793FC061EECD1029B7F1B5B193D +:1057C0000293049B0133D3E7004EE3E7009FFFFF02 +:1057D000F0B593B0061E039100D17CE00368002B66 +:1057E00000D178E0046C002C00D174E0002900D1D5 +:1057F00071E0102106A85D69F6F7A8FE10210AA83D +:10580000F6F7A4FE10210EA8F6F7A0FE33683000CC +:105810005F6905AB00930EAB3A001900FFF75EFC21 +:1058200000280BD13A000EA906A8FFF70FFF0028A9 +:1058300004D13A0006A90AA8FFF708FF27001021A3 +:105840000EA8F6F783FE226A1037AA4240D32B0037 +:1058500006AA39000EA80FE09A4202D9F95CC15499 +:1058600004E000219A42FAD18021815401339D4203 +:10587000F2D12B0001000AAAFFF70AFF2B00220039 +:105880000EA92000FFF704FF05AB009330002300B2 +:105890002A002100FFF722FC061E04D12A00210065 +:1058A0000398EBF7BBFB102106A8F6F74FFE10217B +:1058B0000AA8F6F74BFE0023102138002362F6F702 +:1058C00045FE10212000F6F741FE300013B0F0BD78 +:1058D00000230EA8CBE7014EF7E7C046009FFFFF6D +:1058E000C023F0B5514C0F00A544029016005B0098 +:1058F0009A4200D996E0D0223EAD52000021280005 +:10590000EBF7E4FB1DA803F0A1FE330AAB740024FF +:1059100030233200390044A8EB752C82EE74EBF78B +:105920007DFB8022A6AB9B19893BFF3B1A7009A91E +:1059300064540134202CFBD180221DA8520003F0B6 +:10594000C0FE041E4FD10700193603961022002115 +:1059500005A8EBF7BBFB3EAB039E01930023019927 +:1059600005AAC95CD25C4A4005A9CA540133102B70 +:10597000F5D1019B103301933300102E00D9102371 +:10598000F61A05AB1A0001211DA803F0E1FE041E62 +:1059900029D1002EE2D111ABF818102205A9EBF79E +:1059A0003DFB3EAAD37810370133D370302FCDD1D1 +:1059B000802211A952001DA803F083FE041E12D1FB +:1059C000029F029E303719AB1A0001211DA803F077 +:1059D000BFFE041E07D13000102219A91036EBF7C4 +:1059E0001DFBB742EFD11DA803F03AFED0212800DD +:1059F0004900F6F7ABFD302111A8F6F7A7FD2021ED +:105A000009A8F6F7A3FD102105A8F6F79FFD002CC5 +:105A100003D030210298F6F799FD2000A7239B00C0 +:105A20009D44F0BD38246442F7E7C04664FDFFFFA3 +:105A3000F0B58FB0019105003022002102A8EBF7EC +:105A400045FB0026290002AAB3180F31681E0A7808 +:105A50000132D2B20A70002A02D101398142F6D154 +:105A60002F0020372A000121380003F071FE041EA8 +:105A700019D11036302EE5D1019A02AB125D1B5DB3 +:105A8000534002AA13550134302CF5D1802202A9CB +:105A90005200380003F015FE041E04D110220AA99A +:105AA0002800EBF7BBFA02A83021F6F74FFD2000E3 +:105AB0000FB0F0BDF0B5E5B00192C022029181694E +:105AC00004001E00520091424BD8531AB34248D3EF +:105AD000931B5B1A01998B4243D3002104A8EBF777 +:105AE000F5FA27002300A437A83303931868A269A6 +:105AF00004A93B689847002802D034256D422DE068 +:105B0000A569002E08D003983B68320004A90068FC +:105B100098470028F1D1AD19029B002B0AD0019BB8 +:105B2000002B07D004ABE818019A0299EBF776FA3C +:105B3000019BED1804A92A000800FFF7D1FE051EFD +:105B400007D104A92000FFF773FF051E01D101232F +:105B50002361C02104A84900F6F7F8FC280065B0CD +:105B6000F0BD3825CAE7000010B5AC2200210400C2 +:105B7000EBF7ACFA01235B422361014BE36110BDFB +:105B80001027000010B5041E0BD0203003F068FD74 +:105B9000AC212000F6F7DAFC024BE36101235B4203 +:105BA000236110BD1027000010B50023FFF782FF0E +:105BB00010BDF0B5040025008BB00F0016000021C9 +:105BC000202202A820350193EBF780FA280003F089 +:105BD0003DFD2300A4331F605E60A369002B01D14B +:105BE0003033A3612669002E05DAA36900262F2B26 +:105BF00001D85E1C7608802202A95200280003F01A +:105C000060FD002805D13300109A01992000FFF7AC +:105C100051FF0BB0F0BDF0B51F00802393B004001E +:105C200001911500189EDB009A4260D880235B002A +:105C30009E425FD83022002106A8EBF747FA23697D +:105C4000E269934202DC6369002B13D03200390011 +:105C50002000FFF7A9FF061E23D11027002D23D116 +:105C600006A92000FFF7E4FE061E12D123690133C6 +:105C700023610EE0002EF0D03200390006A8FFF7B5 +:105C80002FFE061E05D106A92000FFF7D1FE061E35 +:105C9000E3D0302106A8F6F759FC102102A8F6F748 +:105CA00055FC300013B0F0BD2200611E0F32137896 +:105CB0000133DBB21370002B02D1013A8A42F6D1D4 +:105CC000200002AB22000121203003F041FD061E1E +:105CD000DFD12E00102D00D93E00320002A901981C +:105CE000EBF79CF9019BAD1B9B190193B6E7362698 +:105CF0007642D6E73826FBE7002307B50093FFF787 +:105D00008AFF0EBDF0B58FB0040005A817001E0075 +:105D10000D0004F0F8FA00230293159B2000019374 +:105D2000149B3200009305A93B0004F067FE041E9B +:105D300009D105A804F095FB00280AD105A928007F +:105D4000FDF7B4F8040005A804F018FB20000FB01C +:105D5000F0BD014CF7E7C04680B0FFFF10B504006E +:105D600004F0DEFA20007C30FDF75EF82000883079 +:105D700004F0C9FA2000AC3004F0C5FA2000D0309D +:105D8000FDF752F82000E03004F0BDFA601DFF304E +:105D900004F0B9FA20002930FF30FDF745F8002360 +:105DA000DC34236010BD10B5041E1ED0E03004F0BA +:105DB000E5FA601DFF3004F0E1FA20002930FF30E1 +:105DC000FDF738F8200004F0DFFA20007C30FDF702 +:105DD00031F82000883004F0D1FA2000AC3004F013 +:105DE000CDFA2000D030FDF725F810BD037870B54E +:105DF0000D00040016000978002B0CD106F050F9B4 +:105E000000281DD1012E0AD1290020008831AC3094 +:105E100004F0F8FA02E08B42F4D00A4870BD002E7C +:105E2000FBD1290020008831883004F0EBFA0028EB +:105E3000F4D1290020007C317C30FDF737F8EDE704 +:105E40000148EBE780B0FFFF80B1FFFFF0B585B000 +:105E500004000E0017000393002802D1184805B073 +:105E6000F0BD836D002BF9D00B9B050001930A9BBD +:105E7000020000930300D0357C33AC322900FFF7D9 +:105E800041FF0028EBD12800FDF72EF9039B834248 +:105E9000E4D30723A26D20001340591E8B41D20882 +:105EA0009B18336004F026FA32683900022803D1C7 +:105EB0002800FDF789F9D2E72800FDF7C1F9CEE700 +:105EC00080B0FFFFF0B50600C7B005934EAB187861 +:105ED000F36D0691DF1D079200F0F6FEFF080490B7 +:105EE00000285BD009A8FCF79FFF0CA800F086FDF6 +:105EF0003A0025A90598FDF7A3F9051E3DD1F36DDC +:105F0000DC1D4D9BE4089C4200D91C0022004C99EA +:105F100009A8FDF726F9051E2FD1F16DE4008C428A +:105F200025D834004C34210009A8FDF794FA002844 +:105F30002CDA25ABD9193A0009A8FDF781F9051E1D +:105F40001BD10CAC7B0025AA0499200000F011FEA7 +:105F5000134B039402934D9B079A01934C9B069914 +:105F600000933000059B03F0F1FE050005E0611A87 +:105F700009A8FDF7F3F9051ED3D00CA800F092FE96 +:105F800009A8FCF757FF280047B0F0BD09A9220077 +:105F90000800FDF7E2FB051ECBD0EEE7014DF2E76E +:105FA000996C011080B0FFFF1FB508AC24780294F3 +:105FB000079C0194069C0094FFF784FF04B010BD79 +:105FC000F0B50400AFB005A81E000F001500FCF7E7 +:105FD0002BFF08A8FCF728FF230001967C330297CB +:105FE000009508AA05A92000FFF76CFF061E2AD11C +:105FF000B72308AA6B440BA904A8049302F089FDF7 +:10600000041E1FDB05AA0BA904A802F082FD0028CC +:1060100022DB25182A000BA904A802F0B9FC041EF3 +:1060200010DB30220BA904A802F01CFD002813DBB2 +:1060300064190419220004993498EAF7EFFF359B9C +:106040001C603400260005A8FCF7F4FE08A8FCF745 +:10605000F1FE30002FB0F0BD0400F3E710B50024CE +:1060600086B004940B9C03940A9C0294099C0194AE +:10607000089C0094FFF7A4FF06B010BDF0B58DB0EA +:10608000039206AE129A070009AD30009C180291E7 +:106090000493FCF7C9FE2800FCF7C6FE302305AACE +:1060A000210004A802F099FB00280AD0174BC7185A +:1060B0003000FCF7BFFE2800FCF7BCFE38000DB036 +:1060C000F0BD049B059A9B189C421DD13200210013 +:1060D00004A802F0CFFB0028E8D12A00210004A880 +:1060E00002F0C8FB0028E1D13B003800883301955D +:1060F0000096039A029903F0D9FE071ED8D1049B9B +:10610000A342D5D0024FD3E7024FD1E780B0FFFFC3 +:1061100000B4FFFF1AB0FFFF13B500240194049CE4 +:106120000094FFF7ABFF16BD10B504F01AF910BDCF +:1061300010B5002801D004F057F910BD70B5060065 +:106140000D0004F075F9041E0FD1290030007C31D8 +:106150007C30FCF7ABFE041E07D1290030008831EB +:10616000883004F04FF9041E02D03000FFF7E0FF42 +:10617000200070BDF0B595B00600019100921D00A1 +:10618000402B0AD9002304AA2900009802F0B3FA90 +:10619000041E20D1402504AB0093019B03AF31685E +:1061A0003B70331D7D70019300290FD00123022223 +:1061B00033603900019806F066FA041E0BD12A00FC +:1061C0000099019806F05FFA040004E0301D06F023 +:1061D0004EFA041EEAD004A84021F6F7B7F92000D1 +:1061E00015B0F0BD0023F0B53C2507001E00A5B09A +:1061F000441CFF3401936D423B00FC331B689E42FC +:106200000BDB019B002B01D13D256D4204A88021B1 +:10621000F6F79CF9280025B0F0BD2369012B00D1C9 +:106220000193002325680393802203AB04A96068CF +:10623000A847051EEAD1039B002B0AD0F1B204AA9D +:106240003800FFF797FF0028E5D1A368039A9B1851 +:10625000A36001361434CFE770B506000025C822CC +:106260000400FC360130520029003560FF30EAF7A7 +:106270002DFF200020C006F0E4F93368132B0CDC5E +:1062800014225A43A418054AFC3462602022226179 +:106290001F3A9B18A5606261336070BDB5C60110DE +:1062A00070B50400043006F0D1F923000025C821A0 +:1062B000FC33601C1D60FF304900F6F747F925608C +:1062C00070BDF0B595B0050003910292402A00D947 +:1062D0006DE081235B000193019B013B0193002B47 +:1062E00060D02E00FC363368002B5ED02800FFF70C +:1062F00079FF041E3FD12F0033680937FF379C46D2 +:1063000002003B000121A4453CDC0029E4D03F2AE7 +:10631000E2D94022002104A82E1DEAF7D7FE04A9E5 +:10632000300006F0BEF9041E25D1300006F08EF9CB +:10633000300006F086F92100300006F098F9041EBE +:1063400019D1402204A9300006F09DF9041E12D193 +:1063500004AA03004021100002F0CDF9041E0AD166 +:1063600003000100FC352A689A4217DC029A04A94E +:106370000398EAF753FE402104A8F6F7E7F8200057 +:1063800015B0F0BD18685E68B04200D200219E686A +:10639000012E00D1121801341433B4E739600133EF +:1063A0001437E1E73C246442E5E74024FBE73C2462 +:1063B0006442E4E7F0B50F2589B00290C87B029BE8 +:1063C0002840C00018180300C83303911C68816C72 +:1063D0005B68C06C0195019E039D0707AD5D0F26AC +:1063E0002E402D0905950F2504960D40334EED00E6 +:1063F00075590E092D0406953E43250707093D43AF +:1064000007951F0725093D43AC46019D1F090F2D28 +:1064100011D0049B0699D800029B079D1818030011 +:10642000C8331C685B684B4061464C40816CC06C53 +:106430007B407140684005070E092E43000925077F +:106440002843059DB446029EED0075192E001F07D6 +:10645000C83624093C43376876681B0973400F2609 +:106460003140164EC9007158AE6C09044B4061466C +:10647000ED6C7C406840019D71406E1E0196AAD271 +:106480001D0E15701D0C5570D3701D0A230E13714F +:10649000230C5371230A9371030E1372030C53726E +:1064A000030A93720B0E13730B0C53730B0A957044 +:1064B000D471D0729373D17309B0F0BD6805031025 +:1064C000C82210B552000021EAF700FE10BDF0B559 +:1064D00091B0029017000800012219001E00FEF77B +:1064E0007BFD051E00D1A2E04469102C00D09EE087 +:1064F0000298FEF78DFD29000298FEF7B9FF0028EB +:1065000000D092E00123320039000298FEF798FD96 +:10651000002800D089E001000B9022000CA8EAF7C7 +:10652000D5FD0BAB00930CAB220019000298FEF7CF +:10653000D5FD002879D10F99029C0EBA0E990D9BBA +:10654000883409BA266061601ABA029C0C9BF83440 +:106550001BBA2261636100250024029FC8373C609A +:106560007D60029FBC64FD6404340325A4460127BA +:10657000E124374024066743CC070394490804917B +:10658000039976080E430499D40721435208DC0787 +:10659000224364465B087B40029FE4003C19A664EA +:1065A000E164C8340CC46446013D6410A446002D67 +:1065B000DDD103239C46013B03933B004833049306 +:1065C00080330593039B049ADB00D1180C00059AD5 +:1065D0000834D3181A6806925A68083307920A6872 +:1065E00008924A680992029A5032170080373E6832 +:1065F000069D6E401E607E68079D6E405E60166858 +:10660000089D08336E4026605668099D08326E402A +:10661000666008349142E8D1039B5B000393012339 +:106620005B429C446346002BCCD111B0F0BD1420DA +:106630004042FAE7F0B500278DB004000E00039247 +:106640001D000797BB4200D198E003006933FF3378 +:106650001022390018000293EAF738FD230079333D +:10666000FF333900180010220493EAF72FFDC423EA +:106670005B00E650230000200021F83318655965BF +:106680009865D9650C2D1FD12A0003990298EAF765 +:10669000C5FC78230122FF33E25407AB00932300AB +:1066A0005933FF33102202992000FEF717FD051E13 +:1066B00007D12300139AF8339A65D865139B002BF2 +:1066C0003FD128000DB0F0BD08AE102239003000D7 +:1066D000EAF7FCFCEB001A0E32731A0C72731A0AFA +:1066E000B273F3732F00102D00D910272600039BDF +:1066F0006936FA18FF3605923200117808001978C9 +:10670000013348400599107001329942F5D1029A3F +:1067100020001100FFF74EFE039BED1BDB190393D6 +:10672000002DDFD108A933786A5C013553403370FE +:106730000136102DF7D1029A20001100FFF73AFE22 +:10674000ABE7139E102E00D910262200129B79323F +:10675000FF32F01811781F7801337940117001323F +:106760009842F7D1049A20001100FFF723FE139BF3 +:106770009B1B1393129B9B1912939FE714256D4249 +:106780009FE7F0B58DB0039300230793039B0400AC +:106790000D001600934202D99B1A8B4267D3270043 +:1067A0002A000023F837386D796D12184B41994251 +:1067B0005DD801D190425AD80F2B58D802D1110080 +:1067C000203154D83A657B65002D02D128000DB0E8 +:1067D000F0BD2F00102D00D91027220021007832A3 +:1067E0007431FF32FF3113780133DBB21370002BA9 +:1067F00002D1013A9142F6D1210007AB69310093F1 +:10680000102208ABFF312000FEF768FC0028DED123 +:10681000230008AA7933FF330592C4225200A258FC +:106820000492002A03D11A78315C4A401A70059A02 +:10683000315C825C4A4003990A54C4214900615882 +:106840000491012902D119784A401A7001300133AC +:106850008742E2D121007931FF310A002000FFF7A1 +:10686000A9FD039BED1BDB19F6190393ACE714207C +:106870004042ACE70300F0B5F83389B003921A6DDB +:106880009E6DDD6D0700586D039B0291510FD20084 +:10689000C4000192ED00720F043B0C431543F60057 +:1068A0000C2B57D839005931039AFF310298EAF777 +:1068B000B5FB2200019B2A433343134302D100203E +:1068C00009B0F0BD1022002104A8EAF7FFFB04AADA +:1068D0002B0E13702B0C53702B0A9370330E137105 +:1068E000330C5371330A9371230E1372230C5372BA +:1068F000230A9372019BD5701B0E1373019BD671F3 +:106900001B0C5373019BD4721B0A93731300019ADF +:10691000DA733B007933FF330022190004AC187896 +:10692000A45C0132604018700133102AF6D10A00CD +:106930003800FFF73FFD00231A0002997932FF3239 +:10694000C95CBA5C4A400299CA54039A01339A421C +:10695000F2D1B4E714204042B2E737B515001A006F +:10696000089B04000193079B0093069BFFF762FEC0 +:1069700000280CD10A9B099A29002000FFF701FF8B +:10698000002804D10B9A0C992000FFF773FF3EBD3D +:1069900070B50C008CB01599139D0491149908AE34 +:1069A0000391119900930291109913000191069699 +:1069B000059522000021FFF7D0FF031E07D00CB081 +:1069C00070BD129AF15CD25C01334A401043AB4275 +:1069D000F7D10028F3D015982100F5F7B7FD122064 +:1069E0004042ECE710B5041E06D0FEF711FBC821AB +:1069F00020004900F5F7AAFD10BD000010B5040005 +:106A000064220021EAF762FB014BA36510BDC0467A +:106A100010270000F0B5050097B0006802910392BE +:106A200000F0F6FA029B01900127002B03D0039F90 +:106A30007A1E97410137002205AB254C1A7004AB32 +:106A40001B79BB421CD2280000F0CAFA041E17D1E1 +:106A50002E000C36019A3100280000F07FFA041E47 +:106A60000ED1012205A9280000F078FA041E07D1F2 +:106A7000022F0CD006A9280000F080FA041E0ED0C8 +:106A800006A84021F5F762FD200017B0F0BD039A7B +:106A90000299280000F062FA041EEBD0F0E7019A98 +:106AA00006A9280000F000FA041EE9D1019A31007D +:106AB000280000F053FA041EE2D13100280000F053 +:106AC0005DFA041EDCD105AA137801331370B6E712 +:106AD00000AFFFFFF0B5E3B001931600019A040088 +:106AE0000F00036D002A02D0032253435B0880226B +:106AF000520096423BD89B198032934237D80021EE +:106B000002A8EAF7E3FA226D02A9206EE36D984726 +:106B1000002802D00926764226E0019B256D002B35 +:106B20000AD002ABE9186A08206EE36D9847002886 +:106B3000F0D1236D5B08ED18002F08D0002E06D091 +:106B400002ABE81832003900EAF768FAAD192A00FA +:106B500002A92000FFF75EFF061E01D10123E364B6 +:106B6000290002A8F5F7F2FC300063B0F0BD05265D +:106B7000D1E7F7B50192012204000D001F0000F0DB +:106B8000E1F8002818D12600280000F041FA0C3660 +:106B900002003100200000F087F900280CD1280005 +:106BA00000F036FA012102003000EAF78FFA3A00CD +:106BB00001992000FFF72EFFFEBD10B50023FFF75F +:106BC00089FF10BDF0B5040085B000681E00029179 +:106BD000150000F01DFA80230390DB009D4256D87B +:106BE00080230A9A5B009A4254D8E36D002B1CD094 +:106BF000636D012B03D0E36CA26D934215DD0A9AFD +:106C000031002000FFF7D9FF00281AD100230A9392 +:106C1000002D18D10A9A31002000FFF7FBFE002852 +:106C20000FD1E36C0133E3640BE0002EF0D00A9B3C +:106C3000002BEBD01A0031002000FFF7EBFE0028FC +:106C4000E6D005B0F0BD039B2F009D4200D91F0088 +:106C5000200000F0C5F90028F3D123000C33039A7B +:106C600019002000019300F079F90028E9D1019979 +:106C7000200000F083F90028E3D13A00019902983E +:106C8000EAF7CCF9029BED1BDB190293C0E7032066 +:106C90004042D6E70520FBE7002307B50093FFF746 +:106CA00091FF0EBD10B5041E07D000F01FF864213F +:106CB0002000F5F74BFC014BA36510BD1027000029 +:106CC00000487047180603100538C3B20020032B94 +:106CD00002D8024A9B0098587047C046E805031046 +:106CE00010B50C220021EAF7F1F910BD10B5041E11 +:106CF00022D00268002A1FD04368002B0DD01079E3 +:106D00000538032806D8E9F7B3FF0202181818005F +:106D100005F065FC6068F5F707FCA068002807D05F +:106D2000236899794900F5F711FCA068F5F7FCFB99 +:106D30000C212000F5F70AFC10BD180005F086FCB8 +:106D4000E8E7000070B504000D001600002931D0FE +:106D500000282FD000232160436083600879053824 +:106D6000032827D8E9F784FF020211119821012096 +:106D7000F5F7D2FB6060002801D10F4804E005F070 +:106D800029FC002E0BD1002070BDF8210120F5F761 +:106D9000C3FB60600028F0D005F053FCF1E7A9794F +:106DA0000220F5F7B9FBA0600028ECD12000FFF726 +:106DB0009DFFE2E70148E7E780AEFFFF00AFFFFF7E +:106DC00010B5031E18D00268002A15D010790538B6 +:106DD000032811D8E9F74CFF0207090E0121586872 +:106DE00005F00EFC10BD0021F9E70121586805F0FF +:106DF0003EFCF7E70021F9E70048F3E700AFFFFFAB +:106E000010B5031E12D0006800280FD00079053895 +:106E100003280BD8E9F72CFF02020606586805F094 +:106E2000FBFB10BD586805F02EFCFAE70048F8E7B8 +:106E300000AFFFFF10B5031E12D00268002A0FD06A +:106E40001079053803280BD8E9F712FF020206066D +:106E5000586805F0EFFB10BD586805F022FCFAE712 +:106E60000048F8E700AFFFFF10B50C0011001A0052 +:106E7000002815D000790538032811D8E9F7F8FE65 +:106E80000207090E0123200001F014FC10BD0023AD +:106E9000F9E70123200001F02EFCF7E70023F9E7D2 +:106EA0000048F3E700AFFFFFF0B593B00400019195 +:106EB000170000284DD00368002B4AD08268002AB2 +:106EC00047D09B79BB4214D2FFF77AFF051E2DD124 +:106ED0003A0001992000FFF793FF051E26D102A971 +:106EE0002000FFF7A7FF051E20D123685F7902ABC2 +:106EF00001932368A6689A7936213000B518EAF71D +:106F0000E5F823685C219A792800EAF7DFF8002386 +:106F10009F4212D12000FFF753FF051E06D12368C0 +:106F200031009A792000FFF76BFF0500402102A88D +:106F3000F5F70CFB280013B0F0BD0199F25CC95CB9 +:106F40004A400199F254EA5CC95C4A40EA54013370 +:106F5000DEE7014DEEE7C04600AFFFFF10B50028A9 +:106F600008D00368002B05D08368002B02D0FFF700 +:106F700047FF10BD0048FCE700AFFFFFF0B504007D +:106F800091B00E00002826D00368002B23D085681E +:106F9000002D20D069469F79FFF74CFF002818D1BB +:106FA0002000FFF70DFF002813D12368E9199A7913 +:106FB0002000FFF725FF00280BD1236869465A7986 +:106FC0002000FFF71DFF002803D131002000FFF74C +:106FD00031FF11B0F0BD0148FBE7C04600AFFFFF35 +:106FE00070B5041E10D00368002B0DD08568002DED +:106FF0000AD0FFF7E5FE002805D1236829009A7919 +:107000002000FFF7FDFE70BD0048FCE700AFFFFF6A +:10701000002800D040797047002800D000797047E0 +:1070200070B505000E000B4C002807D12E20404201 +:1070300070BD62686B689A4204D0143420680028DE +:10704000F7D1F3E7A968EAF795F80028F5D1237C92 +:107050003370EDE74C08031070B505000E000B4CC3 +:10706000002807D12E20404270BD62686B689A42AA +:1070700004D0143420680028F7D1F3E7A968EAF7B0 +:1070800079F80028F5D1237C3370EDE794060310DE +:1070900030B5084B1C68002C02D12E20404206E07F +:1070A0001D7C854204D100205B680C60136030BDFC +:1070B0001433EFE79406031070B505000E000B4C77 +:1070C000002807D12E20404270BD62686B689A424A +:1070D00004D0143420680028F7D1F3E7A968EAF750 +:1070E00049F80028F5D1237C3370EDE758060310EA +:1070F00030B5084B1C68002C02D12E20404206E01F +:107100001D7C854204D100205B680C60136030BD9B +:107110001433EFE78407031070B505000E000B4C25 +:10712000002807D12E20404270BD62686B689A42E9 +:1071300004D0143420680028F7D1F3E7A968EAF7EF +:1071400019F80028F5D1237C3370EDE7E807031028 +:10715000F8B505000F0016000C4C002807D12E20B2 +:107160004042F8BD62686B689A4204D014342068CB +:107170000028F7D1F3E7A968E9F7FCFF0028F5D16B +:10718000237C3B70637C3370EBE7C0469C080310A4 +:10719000002303604360704710B5041E09D00368E4 +:1071A000002B02D09B6A4068984708212000F5F721 +:1071B000CDF910BD0138C3B20020032B02D8024A1A +:1071C0009B0098587047C0467012031070B50500B8 +:1071D0000E1E0AD00468002C07D14B6A98476860DD +:1071E000002804D020002E6070BD0248FCE7024851 +:1071F000FAE7C04680C1FFFF80C0FFFF031E03D037 +:107200000268131E00D0137818007047020001288E +:1072100002D006384242424110007047064A01231C +:107220004A6002000B700B73044B083214308A6002 +:107230000B6148617047C046481303104E1303109A +:107240000238C3B2022200209A4240417047806D4A +:107250007047000002230B70024B88304B6088603F +:107260007047C046801203100238C3B201220020CA +:107270009A4240417047043843425841704710B524 +:107280000400FAF7EDFE2000F5F74EF910BD10B539 +:10729000AC210120F5F740F9041E03D000221100B3 +:1072A000F9F744FE200010BD10B5F9F7B1FE10BD8E +:1072B00010B5F9F74FFEC00010BD0000F0B585B065 +:1072C0001F0004000E001500F9F744FE0A9B186029 +:1072D0000B9B98420AD802970196009500230D9ABD +:1072E0000C992000FAF7C8F905B0F0BD0048FBE79B +:1072F00000BCFFFFF0B585B0170004000D001E00B4 +:10730000F9F728FEB8420DD10B9B029603930A9B16 +:10731000019500930D9A01230C992000FAF798FB30 +:1073200005B0F0BD0048FBE780BFFFFFF0B585B0BA +:107330000D0017001E000400F9F70CFE0B9B0D9AC0 +:1073400018600A9B029703930196009501230C99FC +:107350002000FAF7D7FC05B0F0BD0000F0B587B00B +:10736000059306000C001700F9F7F4FD0D9B0500CE +:10737000984212D80C9B02970393059B00940193AB +:10738000002330001A001900FAF748FE002805D142 +:107390000D9B9D4202D2024800E0024807B0F0BDBA +:1073A00000C7FFFF80BCFFFF10B5040003F01CF80E +:1073B0002000F5F7B9F810BD10B5AC210120F5F7A4 +:1073C000ABF8041E01D002F0CCFF200010BD10B5B8 +:1073D00003F0F0FD10BD10B5AC210120F5F79CF8CD +:1073E000041E01D0FEF7A0FE200010BD10B5040061 +:1073F000FEF79EFE2000F5F797F810BD1FB5099C1B +:107400000394089C0294079C0194069C0094FEF748 +:1074100025FE04B010BDF0B50400B1B005A80D0004 +:1074200016001F00FEF780FE210005A8FEF786FE6D +:10743000041E0ED1399B32000393389B290002931E +:10744000379B05A80193369B00933B00FEF706FE91 +:10745000040005A8FEF76CFE200031B0F0BD00006E +:1074600007B511001A00059B0093049BFEF754FE1C +:10747000024B984200D102480EBDC04600B4FFFF47 +:1074800000C7FFFFF0B50400AFB003A80D00160061 +:107490001F00FEF749FE210003A8FEF74FFE041E61 +:1074A0000AD1359B32000193349B2900009303A835 +:1074B0003B00FFF7D5FF040003A8FEF739FE2000CC +:1074C0002FB0F0BD70B58AB01600302309AA0400B1 +:1074D0000D0001F082F9002802D0294BC01805E008 +:1074E0002368099A9B189D4202D026480AB070BDB5 +:1074F000022309AA2900200001F06FF90028ECD12D +:107500000690059004900390029001900090030073 +:10751000099A21683000F9F729FB002801D01848A2 +:10752000E4E72368099A29009B18236009AA02232B +:10753000200001F052F90028CFD1099B0490069356 +:1075400023680390059302900190009003000200CD +:1075500001003000F9F70AFB0028E0D12368099AFE +:1075600030009B182360F9F747FB0028D7D1300083 +:10757000F9F7F2FC0028D2D12368AB42B6D0B4E7C9 +:1075800000C5FFFF9AC4FFFFF0B50368C3B0040055 +:107590000E00062B10D103A9FFF75EFD002800D0D6 +:1075A00055E1337803AA1178002B00D04AE130006E +:1075B00004F076FD04001DE004A802F0B1FEA56809 +:1075C00063680295ED1823AA290002A801F04CF97E +:1075D000002805D09F4BC418002C00D1A3E004E084 +:1075E000239B013B022B08D99A4C04A802F0CCFE45 +:1075F000002CD6D0200043B0F0BD302303AA2900D0 +:1076000002A801F0EAF8041EEFD1029B039A02A837 +:107610009F183900062303AA01F0DFF8041EE4D105 +:10762000039A072A00D0C7E08B490298E9F7A2FD28 +:10763000002800D0C0E0029B039A39009B1802A8E2 +:1076400005AA029301F016F90028C3D105A8FBF79B +:107650002AFD029B1A909F4200D0ABE0302303AA80 +:10766000290002A801F0B9F8041EBED1029B039ABA +:1076700002A89F183900042303AA01F0AEF80028DD +:10768000A8D1039A029908A8FBF76BFD0028A1D1A5 +:10769000029B039A39009B18029303AA042302A8B1 +:1076A00001F09BF8002800D094E7039A02990BA8F8 +:1076B000FBF757FD002800D08CE7029B039A3900A6 +:1076C0009B18029303AA032302A801F086F800285E +:1076D00003D1029B039A9B180293029B9F4269D19C +:1076E000042303AA290002A801F077F8002800D09B +:1076F00070E7039B029A0EA904A802F023FF00285A +:107700002DD1029B039A29009B1802A817AA029365 +:1077100001F0B0F84F4BC418002800D05CE717A860 +:10772000FBF7C1FC1B9023A802F0FAFD02F0BAFDA2 +:1077300005002B78002B75D023A802F025FE2978B0 +:1077400023A804F0ADFC041E6DD11A9B0093399B55 +:107750000193019A009B934230D00135E9E73F4BFA +:10776000984200D040E7029B1B78023B012B00D9D6 +:107770003AE705A8FBF7B8FC0399431C02008B42CB +:1077800000D031E7029B0EA8591CFBF7EAFC002849 +:1077900000D029E7029B11A819780239FBF713FCE6 +:1077A000002800D020E7012114A8FBF70CFC0028DA +:1077B000A7D019E72A4C18E72A4C16E73A9A1B9BE0 +:1077C00000929342C9D124A905A8FBF744FE0028E2 +:1077D000C3D127A908A8FBF73EFE0028BDD12AA9DE +:1077E0000BA8FBF738FE0028B7D136A917A8FBF77E +:1077F00032FE0028B1D12DA90EA8FBF72CFE0028DF +:10780000ABD133A914A8FBF726FE0028A5D100218F +:1078100011A8FBF7F2FB0021040030A8FBF7EDFBF9 +:1078200084429AD1002423A802F0AEFD2A7803AB4B +:107830001A70002C00D0D8E62B78002B00D0D4E6AC +:10784000064CD2E68B4200D1B1E6024CD2E6064CA1 +:10785000D0E6C04600C3FFFFEA14031080B1FFFF6B +:107860009AC2FFFF80C6FFFF00C6FFFFF0B58BB0D6 +:10787000050006913023891806A805AA00F0ADFF7F +:10788000002804D05A4BC41820000BB0F0BD059A54 +:10789000069B06A89F18390004AA00F0E5FF0028FF +:1078A000F0D1049B012B00D09DE0033305AA3900E1 +:1078B00006A800F092FF0028E4D12E007C36059A3D +:1078C00006993000FBF74DFC041E05D0280002F09D +:1078D0008BFD474BE418D7E7069B059A9B18069348 +:1078E000BB4238D0A02305AA390006A800F075FFD6 +:1078F000041E2DD1069B059A9C18002A24DD1B78B6 +:107900000793062B01D0302B20D108AA210006A80E +:1079100000F063FF00280DD0354BC418002C05D1B2 +:10792000290007A8FFF730FE041E14D0280002F03B +:107930005BFDA9E7069B089A09939B18039206939F +:107940009C42EDD02B4CF1E72B4CEFE72B4CEDE7B5 +:1079500003006233BAD1069BBB422ED0A12305AAF5 +:10796000390006A800F039FF041E23D1059A069BB2 +:1079700006A89C18210005AA00F08FFF002800D05F +:1079800080E7069A059BD1188C422ED12F008837AC +:107990003900280002F0D6FD002803D13900280064 +:1079A00002F03CFE0694002815D0154B984204D0F6 +:1079B0000F4C69E70300623388D10023290001934B +:1079C00000932B00320028338831280003F0B0FAEE +:1079D000041E00D07AE73100280002F0B9FE041E30 +:1079E00000D151E7A2E7074C4EE7024C4CE7C046F6 +:1079F00000C3FFFF9AC2FFFFA0C2FFFF9EC2FFFFAE +:107A000080B1FFFF80C2FFFFF0B506000F001C0031 +:107A100085B00021180015000C22E9F757FB230060 +:107A200001AA3900300000F04FFF002803D00C4BB2 +:107A3000C01805B0F0BD290001A8FFF7F1FA002831 +:107A40000CD12B78012BF4D12368052B01D0002B0E +:107A500002D16368002BECD00148EAE70148E8E76F +:107A600080C5FFFF80C3FFFF70B5150000F002FF67 +:107A7000041E06D101002800FBF78EFD002800D16E +:107A8000014C200070BDC04600C3FFFFF0B50C00E4 +:107A9000160089B005AD07002800FBF7C5F9A1194C +:107AA000302303AA04A8049400F097FE002804D011 +:107AB0005A4BC418200009B0F0BD039A049B04A8D7 +:107AC0009E18310002AA00F0CFFE0028F0D1029BE0 +:107AD000002B00D0A0E02A00310004A8FFF7C4FF6B +:107AE000041E00D087E001900090030002002900EE +:107AF0003800F8F7F5FF041E00D07CE02A003100C2 +:107B000004A8FFF7B1FF041E00D074E0009003004A +:107B10000200010001953800F8F7E2FF041E6AD167 +:107B20002A00310004A8FFF79FFF041E63D10190D3 +:107B300003000200010000953800F8F7D1FF041E91 +:107B400059D12A00310004A8FFF78EFF041E52D13C +:107B500000212A00019100910B003800F8F7C0FFC6 +:107B6000041E48D12A00310004A8FFF77DFF041E3F +:107B700041D101900090020001002B003800F8F77D +:107B8000AFFF041E37D12A00310004A8FFF76CFFB5 +:107B9000041E30D1380029004430FBF787F9041E59 +:107BA00029D12A00310004A8FFF75EFF041E22D16C +:107BB000380029005030FBF779F9041E1BD12A0048 +:107BC000310004A8FFF750FF041E14D1380029002B +:107BD0005C30FBF76BF9041E0DD13800F9F70CF897 +:107BE000041E08D13800F9F7B7F9041E03D1049B2D +:107BF000B34200D00A4C2800FBF71CF9002C00D13E +:107C000058E7084B1C4205D1044BE4183800FAF73A +:107C100027FA4FE7014CF9E7034C4BE700C3FFFF9E +:107C20009AC2FFFF80FF000080C2FFFFF0B589B05D +:107C30006B46DE1D00230500049133708918303334 +:107C400003AA04A800F0C9FD002804D0284BC418DA +:107C5000200009B0F0BD039A049B04A89F183900C6 +:107C600002AA00F001FE0028F0D1029B002B3BD1BC +:107C700005AB3200390004A8FFF7C6FE0028E5D1A5 +:107C8000042303AA390004A800F0A7FD0028DDD1D1 +:107C9000039B002B2AD03078FFF78CFA011E01D10C +:107CA000144CD5E72800FFF791FA041ED0D13378A1 +:107CB000012B0AD1039A04996868FFF7E7FE041EB6 +:107CC000C6D02800FFF768FAC2E7023B012BE7D8CD +:107CD000696805A8FFF758FC041EF2D1039A0499BD +:107CE0006868FFF7C3FDEAE7034CB1E7034CAFE771 +:107CF00000C3FFFF80C3FFFF80C2FFFFA0C2FFFFE2 +:107D0000F0B593B01E00189B0B9107908918002BBB +:107D100000D175E030230AAA0BA800F05EFD002810 +:107D200003D0384BC01813B0F0BD0B9B0A9A0BA8B8 +:107D30009C1821000FAB0CAA00F0C6FD0028F0D162 +:107D400004230AAA21000BA800F047FD0028E8D16F +:107D50001E251F2702ABED18FF1839002A000CA8BA +:107D60000B9CFFF7F5F9011E13D10A983B782A788E +:107D700003900B98049402901898009601900FA815 +:107D800001F0DCF8002821D01F4B9842CBD11F48CE +:107D9000C9E70D9A0A2A04D00D9A092A1CD01C485A +:107DA000C1E70E991B48E9F7E5F9011EF4D10A9BDA +:107DB000029401930B9B320000930FA8189B00F0D4 +:107DC000C7FF0028AFD12378302BE0D10A9A2100D9 +:107DD0000798FFF72BFFA6E70E990F48E9F7CAF9B6 +:107DE000011EDCD10A9B029401930B9B320000938D +:107DF0000FA8189B01F000FA0028E7D0074BC4E752 +:107E0000074890E700C3FFFF00E2FFFF80C4FFFFC9 +:107E100080C6FFFFD5140310E014031000D2FFFF4B +:107E200000C4FFFFF0B58BB004ABDD1D00231700CD +:107E30002B7006AA3033060000F0CFFC002804D0D7 +:107E4000324BC41820000BB0F0BD069A336894463C +:107E5000634401932A0007AB01993000FFF7D4FD7A +:107E6000041EEFD106AA0199300000F016FD00288B +:107E700001D0274BE5E7069A33689B18019A9A428E +:107E800040D12878FFF796F9011E3DD03800FFF762 +:107E90009DF9041ED6D12B78012B0BD17A6801995C +:107EA0003000FFF70FFB051E24D03800FFF774F9F0 +:107EB0002C00C7E7023B012B22D8796807A8FFF7FF +:107EC00063FB051EF1D17B6832680293883303930C +:107ED000019B03999B1A029802F034FB051E04D102 +:107EE0000399029802F09AFB0500019B3360002D74 +:107EF000A8D0DAE73368019A9342A3D0054DD4E7BE +:107F0000054DD2E7034C9DE7034C9BE700C3FFFF01 +:107F100000C5FFFF9AC4FFFF80C3FFFFF0B58BB021 +:107F200004000F00151E059300D1F0E007A800F033 +:107F300069FE6B1EFB1804931B78002B20D0049B5A +:107F40001B78002B5AD106AB0293109B794A019300 +:107F5000059B7949009307A83B0000F059FE061ED7 +:107F600043D10220FFF726F901002000FFF72EF988 +:107F7000061E23D1089A07996068FFF777FC1BE07B +:107F800006AB0293109B6D4A0193059B6C490093CD +:107F900007A83B0000F03CFE061E16D10120FFF7AB +:107FA00009F901002000FFF711F9061E06D1089A11 +:107FB00007996068FFF76AFD061E02D02000FFF7F0 +:107FC000EBF807A800F0B0FE03E05E4B984203D147 +:107FD0005D4E30000BB0F0BD5C4B984201D15C4E61 +:107FE000F7E75C4B9842F4D1A9E7564B9842EFD0A3 +:107FF000564B9842F3D0574B9842EAD1049B1B78DA +:10800000002B14D106AA029201930093524A3B001E +:10801000524907A800F0FCFD061E05D1089A0799F1 +:108020002000FFF703FEC7E74A4B9842D1D1049BDB +:108030001B78002B17D106AA029201930093484A9D +:108040003B00484907A800F0E3FD061E08D1109B3D +:10805000089A00930799059B2000FFF751FEABE7B4 +:108060003C4B9842B5D129000120F4F755FA061E81 +:1080700001D13D4EADE72A003900E8F7CFFF109B54 +:108080002A0000933100059B2000FFF739FE2900EC +:1080900004903000F4F75AFA3000F4F745FA049BE4 +:1080A000002B01D1002694E72000FFF775F820008F +:1080B000FFF76EF8244B049A9A4200D188E72A0011 +:1080C00039002000FFF7B2FD0028EBD02000FFF7B9 +:1080D00063F82000FFF75CF80120FFF76BF8010060 +:1080E0002000FFF773F8002813D02000FFF754F8A2 +:1080F0002000FFF74DF80220FFF75CF80100200098 +:10810000FFF764F800280CD02000FFF745F8174E61 +:108110005FE72A0039006068FFF7B8FC0028E4D167 +:10812000C0E72A0039006068FFF7A0FB0028B9D03B +:10813000EAE7C046A9130310C61303106B1303101C +:108140008913031080ECFFFF80C4FFFF00EDFFFFE9 +:1081500000C4FFFF80EFFFFFE5130310FF130310C0 +:108160001B1403103F14031080C0FFFF00C3FFFF68 +:10817000F0B505008DB00F00161E00D17AE009A8F9 +:1081800000F040FD731EFB1805931B78002B2FD1C8 +:1081900008AA029201930093374A3B00374909A885 +:1081A00000F036FD041E20D1099B012005930793A2 +:1081B000FFF700F8011E03D1314C20000DB0F0BDD7 +:1081C0002800FFF703F8041EF7D10A99079B6A6895 +:1081D000591807A8FFF776F9041E02D02800FEF709 +:1081E000DBFF09A800F0A0FDE7E7264B9842F8D195 +:1081F000059B1B78002B19D108AA029201930093CA +:10820000214A3B00214909A800F002FD041E0AD1C1 +:1082100009990A9B07912A00C91807A80593FFF737 +:1082200001FE0400DDE7174B9842DAD109A800F0FF +:108230007BFD0120FEF7BEFF011EBDD02800FEF72A +:10824000C5FF041EB9D1BE196A68310007A8079797 +:10825000FFF738F9041EB0D02800FEF79DFF0C4B45 +:108260009C42AAD12A00310007A80797FFF7DAFD40 +:108270000400A2E7074CA0E7651403108214031062 +:1082800080C3FFFF80EFFFFFA1140310BA14031097 +:108290009EC4FFFF00C3FFFF70B5050010008523DB +:1082A0000E0001000022A6B004AC019388310094B6 +:1082B00003AB039202F0DEF800280CD12868B0422C +:1082C0000BD3039A861B964207D3801A286021009D +:1082D000E8F7A4FE039826B070BD6C204042FAE790 +:1082E00037B504000D001000694601AAFEF7D0FE64 +:1082F000002805D1019B009A2900200000F045FCD0 +:108300003EBD0000F0B58BB0039010000491140046 +:10831000FEF774FF012848D10025636807AF3800D5 +:108320000593FAF781FD019700952B002A0029009B +:108330000598F8F745FD2E000400A8421CD13A002C +:108340000499039800F0E5FB0400A84214DB060042 +:10835000019500952B002A0039000598F8F730FDAB +:108360000400A84208D13A000499039800F0D1FB18 +:108370000400A84200DB36183800FAF75BFD002C39 +:1083800010DB32000499039800F002FB0400051E84 +:1083900008DB30220499039800F064FB041E01DB23 +:1083A000AE19841920000BB0F0BD2000FEF726FFA7 +:1083B000022806D1626804990398FFF76DFF040054 +:1083C000F0E7014CEEE7C04680C6FFFFF0B50400C1 +:1083D0009BB00F00002A04D16C24644220001BB023 +:1083E000F0BD8A180892FEF709FF012800D0C1E00D +:1083F000636809A80293FAF717FD002209AB110080 +:108400000298F8F745FD00250400A84200D08FE04F +:1084100009AA390008A800F07CFB0400A84200DA91 +:1084200086E00023050009AA19000298F8F730FD3C +:10843000041E00D07CE009AA390008A800F069FBFE +:10844000041E75DB00232D181A0009A90298F8F7FD +:108450001FFD041E6CD109AA390008A800F059FBC1 +:10846000041E65DB00212D180191009109AB0A0063 +:108470000298F8F7A5FC041E5AD109AA390008A8E9 +:1084800000F047FB041E53DB00262D1801960096D2 +:10849000330009AA31000298F8F792FC0400B042B8 +:1084A00046D109AA390008A800F033FB0400B04205 +:1084B0003EDB09AB00932D180196330032003100EA +:1084C0000298F8F77DFC0400B04231D109AA3900C6 +:1084D00008A800F01EFB0400B04229DB09AB0193A1 +:1084E0002D1800963300320031000298F8F768FC2E +:1084F0000400B0421CD109AA390008A800F009FB09 +:108500000400B04214DB2D180196009633003200AF +:1085100009A90298F8F754FC0400B04208D109AA4E +:10852000390008A800F0F5FA0400B04200DB2D186D +:1085300009A8FAF77FFC002C00DA4FE70022390087 +:1085400008A800F03EFB041E00DA47E745192A00A0 +:10855000390008A800F01CFA041E00DA3EE73022B9 +:10856000390008A800F07EFA002800DA9DE06419BE +:10857000041933E72000FEF741FE022800D092E004 +:1085800066683900320008A8FFF786FE041E00DA8C +:1085900024E7089BDA1B002A00DC1DE70022013BD0 +:1085A000451C089339001A7008A82A0000F0F0F959 +:1085B000041E00DA12E70322390008A800F052FA7C +:1085C000002872DB641903191A00390008A8059302 +:1085D00000F0DEF90290041E00DAFFE6A122390065 +:1085E00008A800F03FFA0390041E00DAF6E632789D +:1085F000390008A8FFF774FE041E00DAEEE60490C6 +:108600000200390008A800F0C3F9041E069000DA41 +:10861000E4E6A022390008A800F024FA041E07901E +:1086200000DADBE6B36D09A9DD1DED082A00300094 +:1086300002F0AEF9041E06D12B0009AA390008A8E1 +:1086400000F0C4FA0400290009A8F3F77FFF002C0A +:1086500000DAC3E60122390008A800F0B2FA0028C7 +:1086600023DB059A029B944663441D00039B39005B +:108670005D19049BED18069BED18079BED18651915 +:1086800045192A0008A800F083F9041E00DAA5E6BF +:1086900045193022390008A800F0E4F9041E00DA78 +:1086A0009CE644199AE6024C98E6040096E6C04619 +:1086B00080C6FFFFF0B51C00A7B0060068460F009B +:1086C000150003F087FF2100684603F099FF041EA0 +:1086D0000BD13A003100684603F09EFF041E04D11E +:1086E0002900684603F0A6FF0400684603F077FF00 +:1086F000200027B0F0BDF0B51C00BFB006006846F2 +:108700000F00150003F09DFF2100684603F0AFFF46 +:10871000041E0BD13A003100684603F0B4FF041E7A +:1087200004D12900684603F0BCFF0400684603F04A +:108730008DFF20003FB0F0BD036870B50400CD1A76 +:10874000002D02DC602040420DE0187846B2002E79 +:108750000ADB581C20601B78136023680020C91AAC +:1087600013688B42EED870BD7F2630400138032855 +:1087700031D8E8F77DFA02091420012DE2D05878AB +:10878000023310602360E8E7022DDBDD98785D7826 +:108790000002284340BA80B210600333F2E7032D91 +:1087A000D0DD58789D7800042D022843DD7804330D +:1087B00028431060E6E7042DC4DD9D7858782D022B +:1087C0000543D8780004054318790533000628438B +:1087D00000BA1060D6E76420B5E770B504680D1BD9 +:1087E000002D07DD25789D4207D101340460FFF795 +:1087F000A3FF70BD60204042FBE76220FBE737B576 +:108800001D00130001AA0400FFF7E7FF002804D1B0 +:10881000019B002B02D1642040423EBD23681B789F +:108820007F2BF8D8019B002B09D021680A78002AF9 +:1088300015D0042BEFD802D152B2002AEBDB002373 +:108840002B60019B5A1E0192002BE6D022682B68F8 +:1088500011781B020B4301322B602260F1E70131DA +:10886000013B21600193DDE710B513000222FFF701 +:10887000C6FF10BD37B50223150001AA0400FFF79B +:10888000ACFF002808D1019A21682800FAF769FC9A +:108890002368019A9B1823603EBD70B50323040032 +:1088A0001500FFF79AFF002804D12B68002B02D196 +:1088B0006820404270BD013B2B6023681A78002A73 +:1088C000F6D101332360F5E7F0B585B017001E003F +:1088D00003AA302304000191FFF77FFF051E1ED17C +:1088E0002168019B5B1A002B32DD3A000B782000D7 +:1088F00008C2039BCB18019301990623FFF76DFF74 +:10890000051E0CD12368BB6022687B68D318019ACE +:108910002360934206D10C213000F3F717FE2800A4 +:1089200005B0F0BD32001978013302C22000236087 +:108930000199FFF701FF051EF1D12368B36022689A +:108940007368D318019A23609342E8D0662500E04B +:1089500060256D42E3E77FB504000D00160000219D +:108960000C2201A8E8F7B2FB01AB3200290020007D +:10897000FFF7AAFF002809D1019B052B01D0002B8E +:1089800002D1029B002B01D06820404204B070BD90 +:10899000036810B5591A7F2A06D800295ADD013B11 +:1089A000036001201A7010BDFF2A0BD8012951DD88 +:1089B000013B03601A7081220368013B03601A7057 +:1089C0000220F0E7254CA24210D8022942DD013BEB +:1089D00003601A700368120A013B03601A70822256 +:1089E0000368013B03601A700320DCE71C4CA242C1 +:1089F00015D803292EDD013B03601A700368110AA4 +:108A0000013B036019700368120C013B03601A708C +:108A100083220368013B03601A700420C3E7042922 +:108A200018DD013B03601A700368110A013B036003 +:108A300019700368110C013B036019700368120E72 +:108A4000013B03601A7084220368013B03601A70C3 +:108A50000520A8E76C204042A5E7C046FFFF0000C4 +:108A6000FFFFFF000368591A002904DD013B036082 +:108A700001201A7070476C204042FBE7F7B50F00E9 +:108A80000600002101933368D81B002805DC6C2404 +:108A900064422000FEBD2900F5E7013B33604D1C18 +:108AA0001A701212002AF6DC33681A787F2A07D966 +:108AB000DA1B002AEBDD0022013B33608D1C1A70AB +:108AC0002A0039003000FFF763FF041EE1DB6B462C +:108AD00039001A793000FFF7C5FF002802DB64195E +:108AE0000419D6E70400D4E770B51C00036815002C +:108AF0008B420BD3591AA14208D31B1B03602200DF +:108B000029001800E8F78AFA200070BD6C20404266 +:108B1000FBE7F7B5060010000F000192FAF7E4FA40 +:108B200031680500B94203D26C2464422000FEBDC6 +:108B3000CB1B8342F8D3091A020031600198FAF77F +:108B40007FFB041EF2D1019B1B68012B0AD1336805 +:108B50001A787F2A06D9DA1B002AE5DD013B33604B +:108B6000013518702A0039003000FFF711FF041E8C +:108B7000DCDB022239003000FFF774FF002802DB43 +:108B800064190419D2E70400D0E7F8B506000F0015 +:108B9000FFF7AAFF041E10DB0200050039003000B9 +:108BA000FFF7F6FE041E08DB062239003000FFF74F +:108BB00059FF002803DB641904192000F8BD0400E4 +:108BC000FBE710B50223FFF759FF10BDF8B506000B +:108BD0000F00FFF789FF041E10DB020005003900BB +:108BE0003000FFF7D5FE041E08DB042239003000F8 +:108BF000FFF738FF002803DB641904192000F8BDD3 +:108C00000400FBE710B50C220021E8F75FFA10BD65 +:108C1000F0B587B00500029103921F00002800D133 +:108C20006DE01800E7F71CFE061E03D1374E30003A +:108C300007B0F0BD03993800E7F712FE041EF5D027 +:108C40008642F3D20298E7F7DFFD36183378203BEF +:108C50005A425341F61833780D3B5A425341F618A5 +:108C600033780A2BE2D10398E7F7CEFD201803787A +:108C70000136203B5A425341C01803780D3B5A42FB +:108C80005341C01803780A3B5A425341C0180E9B07 +:108C9000C01B1860A71B152F03DCB4420AD81C4E5A +:108CA000C5E716221B493000E8F764FA0028F4D122 +:108CB000194EBCE700210097330005AA080000F018 +:108CC0009BFB2C301DD005990120F3F725FC041ED9 +:108CD00019D03300009705AA059900F08DFB061EF8 +:108CE00009D005992000F3F731FC2000F3F71CFCB4 +:108CF000074BF6189BE7059B2C606B6097E7074EC8 +:108D000095E7074E93E7074E91E7C04680EFFFFFD8 +:108D100000EFFFFFF214031000ECFFFF80EBFFFFFA +:108D2000D4EEFFFF80EEFFFF10B5040000680028BE +:108D300005D06168F3F70AFC2068F3F7F5FBA0683B +:108D4000F3F7F2FB0C212000F3F700FC10BD00004C +:108D50000048704700E1FFFFF0B5754CA54404934F +:108D6000A2AB0390009105921878802900D9DAE02F +:108D7000049B402B00D9D6E0A19B402B00D9D2E028 +:108D8000FDF7A2FF0290002800D1CEE007A8FDF772 +:108D9000A7FF0022029907A8FDF7D4FF002878D189 +:108DA0000298FEF735F980270190202800D8403F2F +:108DB000A39B3A00D9B21AA8E8F788F93C003AAE6A +:108DC000A19DA54200D9250030002A00A099E8F70E +:108DD00025F97619641BF3D13C005AAE049DA542D7 +:108DE00000D9250030002A000599E8F717F976190F +:108DF000641BF3D1009B002B36D007A8FDF7E0FFE2 +:108E0000041E32D13A001AA907A8FDF7F9FF041E83 +:108E10002BD13A003AA907A8FDF7F2FF041E24D18E +:108E20003A005AA907A8FDF7EBFF041E1DD10AA9B5 +:108E300007A8FDF7FFFF041E17D10125A49BAB4235 +:108E40002BD8009C019A944200D9140022000AA950 +:108E50000398E8F7E3F8009B1B1B0093039B1B1987 +:108E60000393009B002B22D1002480213AA8F3F722 +:108E70006DFB80215AA8F3F769FB80217AA8F3F7EC +:108E800065FB40210AA8F3F761FB07A8FDF72EFF59 +:108E900020009B239B009D44F0BD0AAB019A190062 +:108EA0000298FDF7E1FF041EDFD10135C6E73C0063 +:108EB0007AAE019DA54200D9250030002A000AA9FA +:108EC000E8F7ACF87619641BF3D13B00E82106AA59 +:108ED0004900013B5218D25C06A80132D2B24118B7 +:108EE000CA54002A1CD1002BF0D13B003AA87AAD1D +:108EF000013B195C5C5D091989180A0AD2B2195440 +:108F0000002BF5D13A005AA87AAD013A115C545DB4 +:108F10000919C9180B0ADBB21154002AF5D169E707 +:108F20003B000022E2E70348B3E70348B1E7C0464D +:108F300094FDFFFF80E0FFFF00E1FFFFF0B500249C +:108F4000DDB005001000099107930A94FCF736F88C +:108F50000600A04200D1B9E043680B940893C368AF +:108F60000693639B802B00D9AEE021000C220CA855 +:108F7000E8F7ACF8812221002C0052001BA8E8F78A +:108F8000A5F8AB686A6808349F182B68302B00D0AE +:108F90009EE02C3B0DAA39002000FFF71EFC0028A4 +:108FA00063D04C4BC418002C00D08AE00023639A95 +:108FB0009A426BD1089B551CDF080B9B6D000493F4 +:108FC00001230393079B1BAA02930D9B3900019376 +:108FD0000E9B13A8089300932B00FFF7BDFE041E01 +:108FE0006FD1069B002B59D11BA8FCF70BF8310061 +:108FF0001BA8FCF73DFA041E2BD124226B469B18BC +:109000001B78FA005BB213A91BA8FCF719F8041E21 +:109010001FD1F2680FA91BA8FCF732F8041E18D163 +:109020001BA8FCF74FF8041E13D10AAD0095669BF0 +:10903000659A64991BA8FCF751F8041E09D10A9A95 +:10904000669B1BA899182A00FCF762F9041E00D041 +:10905000214C13A82021F3F779FA0FA81021F3F778 +:1090600075FA1BA8FBF7D4FF2BE0AB680D9A0E93A3 +:109070009B18AB600BAA39002000FFF7F5FB002816 +:109080008FD1AB689F4291D0144C1AE05A001BA9B3 +:109090008A186299C95C0133517088E70B9B1BAA3F +:1090A000049302230393079B069902930D9B0FA839 +:1090B000079301930E9B00932B00FFF74DFE041EB8 +:1090C00092D020005DB0F0BD054CFAE7054CF8E702 +:1090D000054CF6E780E1FFFF00E2FFFF1AE1FFFF2A +:1090E00080E0FFFF00E1FFFF1EE1FFFFF0B504009D +:1090F000A5B000680E0017000193FDF789FF03ADCE +:109100000090042200212800E7F7E0FF01233A0045 +:1091100031002000EB70FDF7C7FE00283ED025B0DF +:10912000F0BD2A9A01992000FDF718FF051E39D1DC +:10913000042203A92000FDF711FF051E32D114A956 +:109140002000FDF71BFF051E2CD12000FDF748FF76 +:10915000051E27D1009A14A904A8E7F75FFF01278D +:109160002B9B9F4228D3009D2C9A954200D9150035 +:109170002A0014A92D98E7F751FF04212C9B03AA7C +:109180005B1B2C932D9B5B192D9301398B5C013359 +:10919000DBB28B54002B01D10029F6D12C9B002B84 +:1091A000BFD11D00402114A8F3F7D0F904A8402135 +:1091B000F3F7CCF92800B2E704AE009A31002000A2 +:1091C000FDF7CCFE051EEDD131002000FDF7D6FEE7 +:1091D000051EE7D12000FDF703FF051EE2D114AA0A +:1091E000009BAB4201DC0137BAE7AB5CA95D4B40A9 +:1091F000AB540135F4E70000F0B51F000023C1B007 +:10920000069212220424866809930A930C934368F9 +:1092100005910B9604A9F618036852181470302BA8 +:109220001DD113AB0DAA31000BA8FFF74DFB002891 +:1092300002D06B4BC418CEE00E9A092A01D0694CBB +:10924000C9E00F996848E7F795FF0028F7D1149B0C +:10925000159D07932795ED18139B302B01D0634C78 +:10926000B9E023001AAA290027A8FFF7B6FA0028B8 +:1092700000D17AE05A4BC418002C00D0ABE0122386 +:1092800004AA9B181878FDF71FFD041ED7D016AB53 +:1092900010AA31000BA8FFF717FB0028C9D113252E +:1092A00004ABED18290010A8FDF706FF0028C6D171 +:1092B0002878FBF783FE051EC1D04368DB080A93BC +:1092C000169B0793042B00D088E0179BC268079376 +:1092D000934200D082E01CA8FDF702FD2FA8FBF707 +:1092E00091FE179A189927A8E7F798FE2100012206 +:1092F0001CA8FDF727FD041E30D10A9B1FAE029368 +:10930000099B039601931A9B3A00079300930699D1 +:109310001B9B1CA8FFF7EAFE041E1FD129002FA8E3 +:10932000FCF7A6F8041E19D16B460A9A1B7DD200E1 +:109330005BB231002FA8FBF783FE041E0ED10CABED +:109340000293489B179A0193479B27A900932FA844 +:10935000469BFCF7ABF8041E00D0254C1CA8FDF77B +:10936000C5FC2FA8FBF754FE35E0279B1A9A1B93E8 +:1093700029009B1827A809AA2793FFF775FA002848 +:1093800000D077E7279B9D4200D178E70AAA290001 +:1093900027A8FFF769FA002803D00300623300D042 +:1093A00068E7279B9D4200D169E72FAA290027A8DB +:1093B000FFF7D1FA002800D05CE7122104ABC918EE +:1093C0002FA8FDF7A9FE002800D038E7279B9D4273 +:1093D00000D154E7074C200041B0F0BD004CFAE743 +:1093E00000D1FFFF80D1FFFF091503109ED0FFFFC2 +:1093F00000D2FFFF9AD0FFFFF0B5002485B00190A6 +:109400000F002000260002920A9A3100964212D2E2 +:109410005D5C202D0BD00A9A521A012A11D00D2D15 +:109420000FD15A1852780A2A0DD14E1CECE70A9A2D +:1094300001318A42ECD100281BD1029B186005B093 +:10944000F0BD0A2DF1D0B14204D13D2D04D101343B +:10945000022C04D92C202DE06EB2002EFADB2D4A0E +:10946000555D7F2DF6D03F2D01D8002CF2D1013073 +:10947000DBE70725062605407543C008704307351E +:10948000019AED08041B2C19002A10D0BC420ED8FA +:109490005A18002103240D0001980392039A934265 +:1094A0000AD1019BC01A029B18600020C7E72A203E +:1094B000029B1C604042C2E71F783E000A3EF6B2A3 +:1094C000162E05D8144AF24016000122B24315D0D8 +:1094D000104A8901D65D01353700403F7A427A4112 +:1094E000A41A3F2216403143042D07D10025AC4277 +:1094F00004D00E0C0670012C02D101300133CDE7EF +:109500000E0A4670022C01D10230F7E78170033059 +:10951000F4E7C0461315031009004000F7B508260C +:10952000CB684D680C688A68D90FC900761A872104 +:109530003141CE17B4462F00260036196F417140D5 +:1095400092185B41019161467940EF0F1D0017436E +:109550000A0E019BC2710A0C82710A0A42711A0E2C +:10956000C2701A0C82701A0A42702A0EC2732A0C38 +:1095700082732A0A42733A0EC2723A0C82723A0A13 +:1095800005730772017103704272F7BD37B50400AD +:10959000C02A07D080235B009A4217D0802A1AD1B4 +:1095A000002200E0012223000C4D20682D681434B5 +:1095B0002D352D78083300941F2D09D80EF014FC9A +:1095C0000023984200D0253B18003EBD0222EAE766 +:1095D0000EF02CFDF4E720235B42F5E73CF3010895 +:1095E00037B5074C069D24682D34247800951F2C30 +:1095F00002D80EF035FC3EBD0EF02EFDFBE7C04656 +:109600003CF3010837B5074C24682D342578102425 +:1096100000941F2D02D812F059FA37BD12F02CFB1E +:10962000FBE7C0463CF3010810B5074B1B682D3320 +:109630001B781F2B03D8102312F008FA10BD10233B +:1096400012F06AFAFAE7C0463CF3010810B50400CC +:10965000842100F05BFB0321200000F055FA10BDCF +:1096600010B5041E14D0C368002B0AD021000A4B89 +:1096700000681B6808312D331B781F2B09D80EF0AA +:10968000DFFB200000F078FA8421200000F03EFB90 +:1096900010BD0EF0BBFCF4E73CF3010810B504006C +:1096A000FFF7D4FF20008430FFF7D0FF10BD10B5C6 +:1096B000041E05D0FFF7D4FF20008430FFF7D0FF51 +:1096C00010BD10B5FFF762FF10BD10B5FFF75EFFCC +:1096D00010BD802370B55B000D0004005608110911 +:1096E0009A4202D0DB189A420DD12000691832004C +:1096F0008430FFF74BFF002804D1320029002000FE +:10970000FFF744FF70BD20204042FBE710B5FFF794 +:10971000E0FF10BD07B50B000100083100910068A3 +:109720000021FFF75DFF0023984200D0253B180081 +:109730000EBD07B50B000100083100910068012142 +:10974000FFF74EFF0023984200D0253B18000EBDC6 +:1097500010B50C0011001A00012C02D1FFF7DAFF3E +:1097600010BDFFF7E6FFFBE7F0B58BB005930F23C5 +:1097700006000D000392134061D100295CD01D004A +:109780000492109B039A03999A18049BD21A119B76 +:109790005C18049BE41A002B4BD0002D49D1059B8B +:1097A00021003068FFF72EFF3300083300932200BA +:1097B000230029003068FFF713FF220007000599F6 +:1097C0003068FFF731FF049B103B0493002FD8D083 +:1097D00025256D42D5E7220006A93068FFF724FF52 +:1097E0003300083300933A00230001213068FFF76B +:1097F000F7FE059B3A00390004003068FFF702FFCE +:1098000006AA05993068FFF70FFF049B103B0493ED +:10981000002C01D025256D42119B039A9F18049BB3 +:10982000FF1A109B9C18049BE41A002B01D0002DFA +:10983000D1D028000BB0F0BD039B0493ECE72225A8 +:109840006D42F6E7F0B50E0011001500424A8FB0E8 +:1098500010390190914200D978E002AA19008430B1 +:10986000FFF758FF041E38D10F232F091D40009524 +:10987000009B013F34D2002B2FD006AD002E00D02C +:1098800002AD00230AAF1A001599103A8A5CCA5437 +:10989000149AE95CD25C4A40DA55009A01339A4244 +:1098A000F1D10AAA190015981039415CE85C4140D1 +:1098B00099540133102BF5D1130031000198FFF7B3 +:1098C00047FF002845D10200295C3B5C103A4B4021 +:1098D000159901308B541028F5D120000FB0F0BD40 +:1098E000002B0CD0002E0AD1002F08D102A9102283 +:1098F00006A8E7F793FB02A90800FFF70FFE002375 +:109900000AAA149902A8C95C185C41409954013311 +:10991000102BF6D1130031000198FFF719FF002832 +:1099200017D10AA902AA825C435C5340159A1354CA +:1099300001301028F6D102A90800FFF7EFFD159BB2 +:1099400010331593149B1033149391E7222464422F +:10995000C3E70400C1E7C046F0FFFF00F7B51C688D +:1099600000901E000F2C36D80A9B099F9B1801936C +:109970000A9D002929D0019B9D4229D0002C04D1A9 +:10998000089A00981100FFF7C5FE089B39781A194C +:10999000137801344B402B7013700F2301371C4098 +:1099A0000135E8E7002C04D1089A00981100FFF770 +:1099B000B1FE089B39781A19137801344B402B708B +:1099C0000F2311701C4001370135019BAB42E9D1D7 +:1099D00000203460FEBD21204042FBE7F0B5146852 +:1099E00085B0039017001E000F2C22D80A9B0B9DF8 +:1099F00001936B180293029B9D4202D13C600020B0 +:109A000015E0002C0CD0019A335D127801345340DC +:109A10002B700F231C40019B013501330193EAE7B2 +:109A2000320031000398FFF775FE0028EBD005B037 +:109A3000F0BD21204042FAE7F0B5146885B00390EC +:109A400017001E000F2C2CD80B9B0C9D01936B183C +:109A50000293029B9D4203D100203C6005B0F0BD03 +:109A6000002C10D10A9A31000398FFF753FE320000 +:109A7000711E0F3213780133DBB21370002B02D149 +:109A8000013A9142F6D1019A0A9B12781B5D01348A +:109A900053402B700F231C40019B01350133019370 +:109AA000D7E721204042D9E710B5064C24682D3471 +:109AB00024781F2C02D812F063F910BD12F032FB8B +:109AC000FBE7C0463CF3010810B5064C24682D3472 +:109AD00024781F2C02D812F007FA10BD12F0C0FB38 +:109AE000FBE7C0463CF3010810B5064C24682D3452 +:109AF00024781F2C02D811F0A9FF10BD12F00CF829 +:109B0000FBE7C0463CF30108F8B504000E0000284E +:109B100006D083798B4203D10379002083421CD085 +:109B2000114D124B77007A5BFB5A9A4219D20023EF +:109B30000F482371637120606B882A881A43AB88B1 +:109B40001A43EB881343DBB2002B01D104F0A6FBD0 +:109B50000020EB5BA6710133EB5343425841C0B286 +:109B6000F8BD0448F9E7C04684AE01089C1503100F +:109B7000000010400110000070B503790400002BB4 +:109B800025D14179056880798A001218104B52005E +:109B9000D05A002801D00138D052CA00995A9B18D7 +:109BA0005A8811439A88DB880A431343DBB2002B9F +:109BB0000DD1084B1B68002B01D104F05BFB2B6817 +:109BC000002B02DA280004F01DFC0123237170BD74 +:109BD00084AE010888B1010870B505000C1E02D1E1 +:109BE0000120404270BD002BFAD00068FFF75CFFF7 +:109BF0000028F5D1074B28681B6821002D331B78FE +:109C00001F2B04D812F05CF9431E9841E9E712F0CB +:109C100013FBF9E73CF3010810B500290BD0002A2B +:109C200009D0CC68002C06D00068FFF74DFF431E1A +:109C30009841404210BD0120FBE7000010B500290B +:109C400014D0002A12D0CB68002B0FD0084B00682C +:109C50001B682D331B781F2B05D812F0B3F9431E58 +:109C60009841404210BD12F079FCF8E70120F8E776 +:109C70003CF30108F8B506000C0017001D00002891 +:109C800016D0002914D0002B12D0069B002B0FD029 +:109C90000321FFF739FFBBB2220031002068FFF734 +:109CA00023FF2B682900DAB22068069BFFF7FCFE31 +:109CB000F8BD0000F7B56C4615002200114B0600F8 +:109CC0000F0003CB03C2002E16D0002D14D00321A9 +:109CD0002000FFF719FF00280ED00B4A20681268F9 +:109CE000ABB22D3212781F2A07D83A00310011F09A +:109CF000CDFE2000FFF740FFF7BD3A00310011F024 +:109D00006DFFF6E7941503103CF3010810B50A0047 +:109D10000021FFF7CFFF10BD10B5041E07D00029AA +:109D200005D0FFF7F3FF03212000FFF7EDFE10BD84 +:109D300070B504000D00002807D0002905D0FFF7FA +:109D40001BFF29002000FFF7E1FF70BDF0B5040004 +:109D50008DB01D00504B0592049106AA03CB03C29F +:109D6000636D002B00D194E0207800F03DFE08AF39 +:109D7000787001212800F9F70FFC002803DA474D1D +:109D800028000DB0F0BD210028004C31F9F763FB2D +:109D90000028F4DA022106A8FFF7B6FE78780EF064 +:109DA000D3F9446801200734E4082100F2F7B4FB3A +:109DB000011EF86004D100231E000393384D41E0DA +:109DC00028002200F9F73CFA051E5CD12100F86852 +:109DD00004F02EFB61000120F2F79EFB061EEAD084 +:109DE00021000120F2F798FB03900028E6D0159B94 +:109DF0007978020000930698149B0EF051FE00281B +:109E000045D1039B00970193139A3300129906984A +:109E10000EF0A8F900283AD121003000371904F0DB +:109E200007FB2100380004F003FB220031000498F6 +:109E3000F9F797F9051E05D1220039000598F9F7C1 +:109E400090F9050006A8FFF797FE0B98002805D0AB +:109E50002100F2F77BFB0B98F2F766FB002E06D091 +:109E600030006100F2F772FB3000F2F75DFB039BFC +:109E7000002B00D184E718002100F2F767FB03985C +:109E8000F2F752FB7CE7002303931E00DAE7054D4F +:109E9000D8E7054D74E7C046A415031080B3FFFF53 +:109EA00080B2FFFF80B4FFFF80B0FFFFF0B593B03A +:109EB00008934B4B0490079206910CAA03CB03C264 +:109EC000049B5B6D0393002B00D187E0049B0EAED7 +:109ED000187800F089FD7070002800D175E002212B +:109EE0000CA8FFF711FE70780EF02EF941680120E2 +:109EF0000731CF087C00631C19000593F2F70CFBB7 +:109F00000390031E65D0013373607B1CC3182100CE +:109F10000120B360F2F700FB051E5BD001003A00A0 +:109F20001898F9F78DF9041E35D13900280004F08E +:109F30007FFAEB193A00190019980993F9F780F99B +:109F4000041E28D13900E81904F072FA059B22009A +:109F50000193039B0899009304980BAB00F08AFAD5 +:109F6000041E18D17068390004F062FAB068390034 +:109F700004F05EFA01960B2608ABF6180096079BD4 +:109F8000069A29000C980EF0E7FA002824D13378BD +:109F9000012B00D0134C0CA8FFF7EEFD039B002B08 +:109FA00007D0790018000131F2F7D0FA0398F2F7E0 +:109FB000BBFA002D06D028007900F2F7C7FA280076 +:109FC000F2F7B2FA200013B0F0BD03900500064C82 +:109FD000E1E7039D054CDEE7054CDCE7024CF1E7C9 +:109FE000A415031000B2FFFF80B0FFFF80B2FFFF97 +:109FF00080B4FFFF10B5FCF74FFE10BDF0B593B075 +:10A000000C0015000600FCF75BFE0068C0B2FCF710 +:10A010005BFE0700422D14D820002A0001A9F9F7A1 +:10A020000FF9041E06D12B0001AA39003000FCF7FD +:10A03000A0FD040001A82900F2F788FA200013B05F +:10A04000F0BD014CF6E7C04600B3FFFFF8B50C00C9 +:10A050000600110020001A00F9F7C7FB051E14D1F5 +:10A06000736E002B06D1321D21002000F9F76CFE23 +:10A0700005000AE02368002B09DB2000F9F713F83C +:10A08000B36D5B00984209D9174D2800F8BD010057 +:10A090002000F9F781FA0028EFD0F5E72000736E71 +:10A0A0009847051EF1D12368371D002B05DA0021E2 +:10A0B0002000F9F771FA00280DD139002000F9F7D6 +:10A0C000CAF90028E1DB3A0021002000F9F7CEFAB6 +:10A0D0000028F2D0CCE73A0021002000F9F719FB64 +:10A0E0000028E0D0C4E7C04680B0FFFFF0B589B0DB +:10A0F0000393836D06000733DB0805A80D00029269 +:10A1000001930C27F8F790FE039B029A019905A88A +:10A11000FAF70AF9041E1ED1311D05A8F9F79BF9BB +:10A1200000281EDA013F002F20D0012105A8F9F7F1 +:10A1300033FA0028E8DD05AB2A0029003000FFF7DC +:10A1400085FF041E07D12900183105AB0A00300035 +:10A15000FFF77CFF040005A8F8F76CFE200009B0AB +:10A16000F0BD012105A8F9F7F9F8D3E7004CF2E7B3 +:10A1700000B3FFFFF0B50F00183787B006000D00E1 +:10A1800038000021F9F708FA041E38D06846F8F7BD +:10A190004BFE03A8F8F748FE321D39006846FAF76F +:10A1A000BBF9041E25D16B466A4603A93000FFF7B0 +:10A1B0004DFF041E1DD103AB2A0029003000FFF71C +:10A1C00045FF041E15D10C3503AB2A0029003000D1 +:10A1D000FFF73CFF041E0CD16B462A00290030001B +:10A1E000FFF734FF041E04D101213800F8F7EBFE1D +:10A1F00004006846F8F71EFE03A8F8F71BFE2000CF +:10A2000007B0F0BD70B50C000600110020001A0068 +:10A21000F9F7A3FA051E08D0280070BD321D2100F1 +:10A220002000F9F776FA002809D12368002BF3DA29 +:10A2300000212000F9F7B0F90028EFD1ECE7050084 +:10A24000EAE770B506000C00351D29002000F9F77B +:10A2500002F9002801DA002006E02A00210020008F +:10A26000F9F704FA0028EFD070BD70B50C000500B6 +:10A27000110020001A00F9F74CFA002803D1210040 +:10A280002800FFF7DEFF70BD10B50400F8F7D2FD1F +:10A2900020000C30F8F7CEFD20001830F8F7CAFD8A +:10A2A00010BD00000023094930B50A6808489A42E9 +:10A2B00009D10C25074C2A005A43A25CC254002A3B +:10A2C00002D101230B6030BD0133F4E798AE0108E1 +:10A2D0008CAE0108BC150310054B1A78002A02D178 +:10A2E0001300180070478242FBD00C33F5E7C046DC +:10A2F000BC1503100300006B002803D0D86B434249 +:10A3000058410130704710B50400F8F78DFD20006A +:10A310000C30F8F789FD20001830F8F785FD10BDE6 +:10A3200070B50025040005700430F8F77DFD2000AD +:10A330001030F8F779FD20001C30F8F775FD20008B +:10A340002830FFF7E0FF20004C30F8F76DFDA565E1 +:10A35000E56525666566A566E56625676567A567A3 +:10A3600070BD10B50400FFF7DBFF20007C30F8F76C +:10A370005BFD20008830FFF7C6FF10BD10B5002838 +:10A3800001D0FFF781FF10BD70B5041E1ED0036E13 +:10A39000012B12D00430F8F74DFD20001030F8F7F3 +:10A3A00049FD20001C30F8F745FD20002830FFF75C +:10A3B000E5FF20004C30F8F73DFD0025636F2426B3 +:10A3C000AB420AD17C212000F2F7C0F870BD330007 +:10A3D0006B43C018FFF7D2FF0135A36F606FAB422C +:10A3E000F5D8F2F7A1F8EDE710B5041E09D0FFF794 +:10A3F000CBFF20007C30F8F71DFD20008830FFF7F0 +:10A40000BDFF10BD70B504000D00F8F74FFD00282A +:10A410000DD1290020000C310C30F8F747FD002841 +:10A4200005D12900200018311830F8F73FFD70BD24 +:10A4300010B5097801F034FE10BD10B501210400FB +:10A44000F8F7C1FD00280BD1200001210C30F8F7EE +:10A45000BAFD002804D1183401002000F8F7B3FD3C +:10A4600010BD10B518300021F9F796F84342584155 +:10A4700010BD0000F7B507000430009101921E00E6 +:10A48000F8F732FE05003800FFF734FF022822D12A +:10A49000099B35609D4202D9284C2000FEBD2A0050 +:10A4A00008990098F8F790FE041EF6D13800FFF7DF +:10A4B00021FF07000128F0D1009800211830F9F79A +:10A4C0006BF8002809D1099B002BE5D0089B187078 +:10A4D00037600400E1E71A4CE8E7019B002B18D134 +:10A4E0006B00099A013333609342D5D80423089A4C +:10A4F00000981370511C2A00F8F7A2FE041ECCD15C +:10A500002A00089B0098691C59180C30F8F798FE2F +:10A51000DFE7019B012BC0D1099A6B1C336093428A +:10A52000BAD8009800210C30F8F767FD089B02307C +:10A530001870591C2A000098E8E7C04600B1FFFFD8 +:10A5400080B1FFFFF7B507000D0001921E1E02D17A +:10A55000304C2000FEBD0430F8F7C6FD00903800F6 +:10A56000FFF7C8FE022831D1009B9E42F0D1320095 +:10A5700001992800F8F7BEFD041EEAD128000C302E +:10A58000F8F758FC3B78092B17D028000121183028 +:10A59000F8F719FD041EDCD13800FFF7ABFE070009 +:10A5A0000128D6D1019B1B78002B11D1012ECFD1D0 +:10A5B0002800FFF742FF0400CBE7F1002200013939 +:10A5C0002800F8F72AFD041EDFD0C2E7124CE3E7AB +:10A5D000042B1DD1009B5B000133B342B8D1019B1A +:10A5E000009A591C2800F8F7BCFD041EB1D12800C0 +:10A5F000009B009A591C019B0C305918F8F7B1FDCB +:10A60000041EA6D1280039001830F8F7DCFCD2E788 +:10A61000014C9EE780B0FFFF80B1FFFFF0B5050061 +:10A62000080089B00E0018300121F8F7B5FF041EAC +:10A6300001D0454C0CE02800FFF75CFE02280AD14F +:10A640003000F8F751FDEB6D0733DB089842F0D886 +:10A65000200009B0F0BD012874D121003000F8F7C6 +:10A660009BFF0028E5DB37000C3721003800F8F7A6 +:10A6700093FF0028DDDB2B1D190030000093F8F755 +:10A68000EAFE0028D5DA291D3800F8F7E4FE002894 +:10A69000CFDA02A8F8F7C8FB05A8F8F7C5FB3B001E +:10A6A0003A0002A92800FFF7D1FC041E43D1330071 +:10A6B000320005A92800FFF7C9FC041E3BD1AB6995 +:10A6C000002B2FD105A903220800F9F77CF8041EFE +:10A6D00031D1059B0193002B18DB05AA3300110033 +:10A6E0002800FFF7B3FC041E25D12B0005AA1C335C +:10A6F00011002800FFF7B9FD041E1CD105A902A80E +:10A70000F8F7A9FE041E16D00F4C14E0002105A88E +:10A71000F8F742FF0028E0D005A9009A0800F8F7F2 +:10A72000F8FFD4E72B0005AA103311002800FFF72B +:10A730009CFD041ED1D002A8F8F77CFB05A8F8F711 +:10A7400079FB85E7014C83E780B3FFFF80B0FFFF13 +:10A7500070B505000C00FFF7CDFD060002281CD1E6 +:10A7600000212000F8F749FC002825D10121200014 +:10A77000F8F743FC00281FD12000F8F794FCEB6D9C +:10A780000138984218D1FE2805D131002000F8F791 +:10A7900034FC002810D1002070BD01280ED101002A +:10A7A0002000F8F7F9FE002806DB290020004C31D4 +:10A7B000F8F751FE0028EEDB0148EDE70148EBE732 +:10A7C00080B3FFFF80B0FFFFF0B587B00393C36D88 +:10A7D000060007330093DB080D0002920193FFF798 +:10A7E00089FD022838D1039B029A01992800F9F7C4 +:10A7F0009BFD041E5FD12800F8F755FC0028F2D01D +:10A800002800F8F750FCF16D013881421FD2411A3F +:10A810002800F8F7A3FD041E4DD1002228001100E6 +:10A82000F8F7FBFB041E46D1020001212800F8F7CF +:10A83000F4FB041E3FD1F36DFE2B0ED1020002216A +:10A840002800F8F7EAFB002807D0040033E00122D3 +:10A850002800F8F7E2FBDEE7194C3000FFF74AFD6D +:10A86000012828D100231F270593039B029A0199F1 +:10A870002800F9F759FD041E1DD10723009928006F +:10A880009943F36DC91AF8F769FD041E13D1013F0E +:10A89000002F13D0310005AA4C312800F8F722FE12 +:10A8A000041E08D101212800F8F776FE0028DCDB21 +:10A8B000059B012BD9D1200007B0F0BD014CFAE770 +:10A8C00080B0FFFF00B3FFFFF7B50D0006000100E9 +:10A8D000280000921F0001F0E3FB041E4ED1280067 +:10A8E000FFF708FD019002284AD1092E48D1202FF8 +:10A8F00048D12E007C363A0000993000F8F7FAFB78 +:10A90000041E37D1020001003000F8F786FB041E58 +:10A9100030D1020001213000F8F77FFB041E29D15D +:10A92000020001993000F8F778FB041E22D10200E2 +:10A93000FF213000F8F771FB041E1BD10122FE211C +:10A940003000F8F76AFB041E14D12800FFF7D2FC90 +:10A9500001280DD12E007C363A0000993000F8F71E +:10A9600000FC041E06D131002800FFF7F1FE0400B0 +:10A97000002C03D028007C30F8F75CFA2000FEBDE4 +:10A98000014CE2E7014CF9E780B1FFFF80B3FFFF24 +:10A99000F8B504000E001500FFF7ACFC02280ED13C +:10A9A0002378092B0BD11F2D17D920002A00310045 +:10A9B0007C30F8F709FC071E02D03800F8BD084FBC +:10A9C0002000FFF797FC0128F7D120002A007C30F7 +:10A9D0003100F8F735FC0700EFE7024FEDE7C0461E +:10A9E00080B1FFFF00B1FFFF0138C3B20020042B8C +:10A9F00001D8014AD05C7047B4150310F0B50F00C0 +:10AA0000CDB01100050005920893FFF7A1FE041ECA +:10AA100000D08FE008992800FFF700FE041E00D048 +:10AA200088E02800FFF766FC022800D07AE133A80E +:10AA3000FBF7E4FF2AA8FFF766FC0CA8F8F7F4F987 +:10AA4000529B002B5FD1EB6D0599DA1DD20833A81C +:10AA5000FFF7D4FA041E61D133AB0A93BC4B0899BB +:10AA60000CA80993F8F722FA041E57D108992AA8CE +:10AA7000FFF7C8FC041E51D101213800F8F7A3FAF2 +:10AA8000041E4BD13E00183601003000F8F79BFA47 +:10AA9000041E43D138000C30F8F7CCF92B1D1900F7 +:10AAA0002AA80B93F8F7D7FC002830DA0A9B099AFA +:10AAB0002AA92800FFF71AFB041E2FD10598F8F7E2 +:10AAC000F2FA431E0793079B013336D10A9B099A7A +:10AAD00039002800FFF70AFB041E1FD10B9A310032 +:10AAE0003000F9F719FD041E18D133003A0039007F +:10AAF0002800FFF7ABFA041E10D101213000F8F74F +:10AB000062FA04000AE0539B0A93529BA7E72AA922 +:10AB10002A1D0800F8F7AAFD041EBFD033A8FCF7D1 +:10AB2000C1F82AA8FFF7B0FB0CA8F8F783F9002CAE +:10AB300000D1F8E020004DB0F0BD07990598F8F776 +:10AB40005CFAC3B21A002AA938000693F8F7F9F99B +:10AB5000041EE3D1069A30A93000F8F7F2F9041E7A +:10AB6000DCD10FA8F8F760F912A8F8F75DF915A87D +:10AB7000F8F75AF918A8F8F757F91BA8F8F754F995 +:10AB80001EA8F8F751F921A8F8F74EF924A8F8F70C +:10AB90004BF927A8F8F748F933003A000FA9280025 +:10ABA000FFF763FB041E00D089E00FAB1A0012A967 +:10ABB0002800FFF74BFA041E00D080E033003A0073 +:10ABC00015A92800FFF71EFB041E00D077E015AB87 +:10ABD0001A0018A92800FFF739FA041E6FD118AB24 +:10ABE00012AA1BA92800FFF70DFB041E67D130AB8A +:10ABF0002AAA1EA92800FFF738FB041E5FD130AB3C +:10AC00002AAA21A92800FFF7FDFA041E57D10FAB8D +:10AC100021AA24A92800FFF719FA041E4FD115AB69 +:10AC20001EAA27A92800FFF711FA041E47D127AB57 +:10AC300024AA2AA92800FFF718FB041E3FD12AAB3B +:10AC40001A0019002800FFF701FA041E37D127ABBC +:10AC500024AA30A92800FFF7D5FA041E2FD130AB63 +:10AC60001A0019002800FFF7F1F9041E27D130ABB4 +:10AC70000CAA19002800FFF7E9F9041E1FD118AB30 +:10AC800012AA39002800FFF7E1F9041E17D12A00A3 +:10AC90001BAB103231002800FFF7D8F9041E0ED18B +:10ACA000330018AA31002800FFF7DFFA041E06D18E +:10ACB00033001BAA31002800FFF7C8F904000FA8D1 +:10ACC000F8F7B8F812A8F8F7B5F815A8F8F7B2F839 +:10ACD00018A8F8F7AFF81BA8F8F7ACF81EA8F8F713 +:10ACE000A9F821A8F8F7A6F824A8F8F7A3F827A848 +:10ACF000F8F7A0F8002C00D010E7069A2AA938002F +:10AD0000F8F71FF9041E00D008E7069A30A93000B2 +:10AD1000F8F717F9079B0400013B0793002800D1BF +:10AD2000D1E6FBE60B4C2800FFF7E4FA012800D03F +:10AD300000E71EAC2200AB6D0693074B03CB03C2AA +:10AD40002878FFF751FE0790002807D1014CF1E663 +:10AD5000F59F011080B0FFFFAC1503102800002103 +:10AD60004C30F8F74AF90128F0D102212000FEF713 +:10AD7000CBFE33A8FBF742FE529B002B0DD1EB6DAF +:10AD80000599DA1DD20833A8FFF738F9041E00D060 +:10AD9000B0E033AB5393644B529321A8F8F744F8D7 +:10ADA000059921A8F8F782F8041E00D0A2E02AA88D +:10ADB000FFF7A9FA08992AA8FFF724FB041E00D080 +:10ADC00098E01F26069B21A81E40731E9E41069BED +:10ADD0005B09F6183100F8F741F8041E00D089E04D +:10ADE00031002AA8F8F73AF8041E00D082E03100BA +:10ADF0002DA8F8F733F8041E00D07BE031003800AE +:10AE0000F8F72CF8041E75D13B000C333100180004 +:10AE10000593F8F723F8041E6CD13E007B692C9A49 +:10AE20000293BB6807990193239B1E9800931836E1 +:10AE30002F9B10F0D5FC01213000F8F7C4F8041E58 +:10AE400058D1AB6D24A80733DB080793F7F7ECFF65 +:10AE500027A8F7F7E9FF0C230693539B529A07990B +:10AE600024A8F9F761FA041E37D1291D24A8F8F7A0 +:10AE7000F2FA002850DA069B013B0693002B50D0D3 +:10AE8000012124A8F8F788FB0028E6DD24AB320076 +:10AE900031002800FFF7DAF8041E1ED124AB1A0097 +:10AEA00027A92800FFF7D2F8041E16D127AB3A00D5 +:10AEB00039002800FFF7CAF8041E0ED127AA24ABD8 +:10AEC00011002800FFF7C2F8041E06D1059A27AB2F +:10AED00011002800FFF7BAF8040024A8F7F7AAFF2A +:10AEE00027A8F7F7A7FF002C04D139002800FFF7A7 +:10AEF00041F9040033A8FBF7D5FE21A8F7F79AFF24 +:10AF00002AA8FFF7C1F9002C02D03800FFF736FA63 +:10AF10001EA8FEF731FE0DE6012124A8F8F71EFA5F +:10AF2000A1E7024CD9E7C046F59F011000B3FFFF2F +:10AF30001FB500240294079C0194069C0094FFF71F +:10AF40005DFD04B010BDF7B515000F001E00089A96 +:10AF5000099B29000400FFF737FC002809D1099B51 +:10AF60002A000193089B3100009320003B00FFF76B +:10AF7000DFFFFEBD37B50C000100069D0093019573 +:10AF8000130028312200FFF7DEFF3EBD73B50C0031 +:10AF90000100200015001E0001F082F8002808D1F1 +:10AFA0002200210088327C3100962B002000FFF720 +:10AFB000E1FF76BDF0B50378ADB005000C00002BC5 +:10AFC00003D1294C20002DB0F0BD0A789A42F8D167 +:10AFD0000F00883739008830F8F73DFA0028F0D1A3 +:10AFE00026002800943631009430F8F734FA00280F +:10AFF000E7D123002800A033A03019000393F8F70D +:10B000002AFA051EDDD104A8FFF77DF90DA8FFF788 +:10B0100087F921000DA8FFF70BFA2300220028333F +:10B020007C320195009504A90DA8FFF781FF041E4D +:10B0300012D1390004A8F8F70EFA00280BD131001C +:10B0400007A8F8F708FA002805D103990AA8F8F725 +:10B0500002FA041E00D0044C04A8FFF715F90DA84D +:10B06000FFF792F9AEE7C04680B0FFFF30B50B683E +:10B0700004681B1903600C68A3429B415C4243684F +:10B08000E31843604D685D1945604968A3429B41E0 +:10B090008D42AD4110685B426D421B185B19136015 +:10B0A00030BD0368CB1803608B429B4111785B4233 +:10B0B0005B1813707047036810B58B429B4114787E +:10B0C0005B42E31A13700368591A016010BD000057 +:10B0D000F0B54368A5B0060000240E2B51D901221B +:10B0E00001AD0E3B01926B600E2B5AD815AB3B3273 +:10B0F00021001800AB60E5F7E9FF6B68B1689A00C2 +:10B10000383115A8E5F78AFF0E2372689A423BD8BA +:10B110002A0031003000F8F7FCFA041E31D104AFE8 +:10B120003B002A0013CA13C307A8382215A9B86028 +:10B13000E5F774FFE0213800F8F710F9041E20D17C +:10B140003A0031003000F8F7E4FA041E19D1072361 +:10B1500084466A689A421CD83A0029002800F8F709 +:10B16000D8FA041E0DD10F23E02128006B60F8F7F8 +:10B17000A1F8041E05D12A0031003000F8F7C9FA01 +:10B180000400200025B0F0BDB06899000C500133D8 +:10B19000BCE75424684600196446990044500133C2 +:10B1A000D8E7014CEDE7C04680B0FFFF30B54368FB +:10B1B000040091B00020072B35D90122073B0392F0 +:10B1C0000493092B36D806AD0100273228000595D7 +:10B1D000E5F77CFF049BA1689A001C3128000193CD +:10B1E000E5F71CFF1F2103A8F8F7B8F800281AD1CB +:10B1F000049B02000193FF21013320000493F7F721 +:10B200000CFF00280FD1082362689A420DD803A9C9 +:10B2100013220800F8F75CFB002804D103AA2100E0 +:10B220002000F8F7CBF911B030BDA568990048515E +:10B230000133EAE70048F6E780B0FFFF30B5436826 +:10B24000040099B00020102B22D90122103B039258 +:10B25000122B1FD80493049BA16806A840319A00C2 +:10B2600005900193E5F7DAFE092103A8F8F776F8CF +:10B2700000280DD1A2686168136CDB05DB0D136437 +:10B280001123994208D803AA21002000F8F796F963 +:10B2900019B030BD1223DDE79D0050510133F0E7B6 +:10B2A00010B5040010005368084A49429B18826890 +:10B2B0009B009950010022002000F8F7D7F90028E0 +:10B2C00002D101235B42236010BDC046FFFFFF3F58 +:10B2D000F0B593B06B46DC1C0123002105000293FE +:10B2E00005A80C333422217003930490E5F7EEFE99 +:10B2F00018212800F7F7B2FD061E00D05EE2AB6809 +:10B3000001A81A68196B01922200FFF7CAFEAB6808 +:10B310002200596D01A8FFF7C4FEAB682200196D29 +:10B3200001A8FFF7BEFEAB682200D96D01A8FFF7A8 +:10B33000C2FE0021AB68019A1A605B6801936156F6 +:10B340002670002900DB3CE24942220001A8FFF7F9 +:10B35000B2FEAB682200596B01A8FFF7A2FEAB68F2 +:10B360002200996D01A8FFF79CFEAB682200D96D01 +:10B3700001A8FFF796FEAB682200196B01A8FFF742 +:10B380009AFEAB682200196D01A8FFF794FEAB6826 +:10B39000019A00215A609B68019300236156237033 +:10B3A000994200DB12E24942220001A8FFF783FE26 +:10B3B000AB682200996B01A8FFF773FEAB6822000F +:10B3C000D96D01A8FFF76DFEAB682200596B01A88B +:10B3D000FFF771FEAB682200596D01A8FFF76BFE05 +:10B3E000AB68019A00219A60DB68019300236156E3 +:10B3F0002370994200DBEEE14942220001A8FFF7E9 +:10B400005AFEAB682200D96B01A8FFF74AFEAB6871 +:10B410002200196B01A8FFF744FEAB682200196DEA +:10B4200001A8FFF73EFEAB682200596D01A8FFF7A7 +:10B4300038FEAB682200996B01A8FFF73CFEAB68B1 +:10B440002200996D01A8FFF736FEAB682200D96D86 +:10B4500001A8FFF730FEAB68019A0021DA601B6992 +:10B460000193002361562370994200DBB8E1494201 +:10B47000220001A8FFF71FFEAB682200596D01A84A +:10B48000FFF70FFEAB682200596D01A8FFF709FE18 +:10B49000AB682200196C01A8FFF703FEAB6822001D +:10B4A000596B01A8FFF7FDFDAB682200196B01A8DD +:10B4B000FFF7F7FDAB682200196D01A8FFF7F1FD5A +:10B4C000AB682200996D01A8FFF7EBFDAB68220085 +:10B4D000D96B01A8FFF7EFFDAB682200D96D01A879 +:10B4E000FFF7E9FDAB682200D96D01A8FFF7E3FD86 +:10B4F000AB68019A00211A615B69019300236156D0 +:10B500002370994200DB70E14942220001A8FFF755 +:10B51000D2FDAB682200996D01A8FFF7C2FDAB68B0 +:10B520002200996D01A8FFF7BCFDAB682200596CA1 +:10B5300001A8FFF7B6FDAB682200996B01A8FFF7E1 +:10B54000B0FDAB682200596B01A8FFF7AAFDAB68FC +:10B550002200596D01A8FFF7A4FDAB682200D96D48 +:10B5600001A8FFF79EFDAB682200196C01A8FFF748 +:10B57000A2FDAB68019A00215A619B6901930023E7 +:10B5800061562370994200DB34E14942220001A850 +:10B59000FFF791FDAB682200D96D01A8FFF781FD8F +:10B5A000AB682200D96D01A8FFF77BFDAB682200D4 +:10B5B000996C01A8FFF775FDAB682200D96B01A853 +:10B5C000FFF76FFDAB682200996B01A8FFF769FDDB +:10B5D000AB682200996D01A8FFF763FDAB682200FC +:10B5E000596C01A8FFF767FDAB68019A00219A61C9 +:10B5F000DB690193002361562370994200DBFEE072 +:10B600004942220001A8FFF756FDAB682200D96C21 +:10B6100001A8FFF746FDAB682200196C01A8FFF7EF +:10B6200040FDAB682200D96B01A8FFF73AFDAB687B +:10B630002200D96D01A8FFF734FDAB682200996C98 +:10B6400001A8FFF738FDAB68019A0021DA611B6A97 +:10B650000193002361562370994200DBD4E04942F4 +:10B66000220001A8FFF727FDAB682200196D01A891 +:10B67000FFF717FDAB682200596C01A8FFF711FD19 +:10B68000AB682200196C01A8FFF70BFDAB68220024 +:10B69000D96C01A8FFF70FFDAB68019A00211A626F +:10B6A0005B6A0193002361562370994200DBB0E08E +:10B6B0004942220001A8FFF7FEFCAB682200596D49 +:10B6C00001A8FFF7EEFCAB682200996C01A8FFF718 +:10B6D000E8FCAB682200596C01A8FFF7E2FCAB68FC +:10B6E0002200196D01A8FFF7E6FCAB68019A002162 +:10B6F0005A629B6A0193002361562370994200DBD2 +:10B700008CE04942220001A8FFF7D5FCAB6822007B +:10B71000996D01A8FFF7C5FCAB682200D96C01A8A0 +:10B72000FFF7BFFCAB682200996C01A8FFF7B9FCDA +:10B73000AB682200596D01A8FFF7BDFCAB68019A08 +:10B7400000219A62DB6A01930023615623709942BB +:10B7500069DA4942220001A8FFF7ADFCAB6822007C +:10B76000D96D01A8FFF79DFCAB682200196D01A8F7 +:10B77000FFF797FCAB682200D96C01A8FFF791FC9A +:10B78000AB682200996D01A8FFF795FC0021019B91 +:10B79000AA68D36261560B1C002900DA00235BB251 +:10B7A000136300236C6801930C3301339C423FD830 +:10B7B000002903DA02AA2800FFF772FD300013B057 +:10B7C000F0BD220001A8FFF76CFCC2E5220001A831 +:10B7D000FFF767FCECE5220001A8FFF762FC10E62A +:10B7E000220001A8FFF75DFC46E6220001A8FFF752 +:10B7F00058FC8EE6220001A8FFF753FCCAE622009F +:10B8000001A8FFF74EFC00E7220001A8FFF749FC62 +:10B810002AE7220001A8FFF744FC4EE7220001A816 +:10B82000FFF73FFC72E7220001A8FFF73AFC95E71B +:10B83000019F98001750B8E7F0B58FB06B46DC1C3D +:10B84000012300210500029305A80833242221705A +:10B8500003930490E5F73AFC10212800F7F7FEFA6D +:10B86000061E00D0D9E1AB6801A81A68196A0192D6 +:10B870002200FFF716FCAB682200596A01A8FFF707 +:10B8800010FCAB682200D96A01A8FFF714FCAB6872 +:10B890002200196B01A8FFF70EFCAB682200596B60 +:10B8A00001A8FFF708FCAB682200996B01A8FFF71D +:10B8B00002FC0021AB68019A1A605B680193615633 +:10B8C0002670002900DBABE14942220001A8FFF706 +:10B8D000F2FBAB682200596A01A8FFF7E2FBAB68F4 +:10B8E0002200996A01A8FFF7DCFBAB682200196B04 +:10B8F00001A8FFF7E0FBAB682200596B01A8FFF736 +:10B90000DAFBAB682200996B01A8FFF7D4FBAB68A8 +:10B910002200D96B01A8FFF7CEFBAB68019A00218A +:10B920005A609B680193002361562370994200DBA3 +:10B930007BE14942220001A8FFF7BDFBAB68220072 +:10B94000996A01A8FFF7ADFBAB682200D96A01A88C +:10B95000FFF7A7FBAB682200596B01A8FFF7ABFB11 +:10B96000AB682200996B01A8FFF7A5FBAB6822002A +:10B97000D96B01A8FFF79FFBAB68019A00219A6081 +:10B98000DB680193002361562370994200DB51E18B +:10B990004942220001A8FFF78EFBAB682200D96A5A +:10B9A00001A8FFF77EFBAB682200D96A01A8FFF768 +:10B9B00078FBAB682200196B01A8FFF772FBAB683C +:10B9C0002200196B01A8FFF76CFBAB682200596BD2 +:10B9D00001A8FFF766FBAB682200D96B01A8FFF74F +:10B9E0006AFBAB682200196A01A8FFF764FBAB6829 +:10B9F0002200596A01A8FFF75EFBAB68019A00219B +:10BA0000DA601B690193002361562370994200DBC1 +:10BA100015E14942220001A8FFF74DFBAB68220067 +:10BA2000196B01A8FFF73DFBAB682200196B01A859 +:10BA3000FFF737FBAB682200596B01A8FFF731FB1A +:10BA4000AB682200596B01A8FFF72BFBAB68220003 +:10BA5000996B01A8FFF725FBAB682200596A01A882 +:10BA6000FFF729FBAB682200996A01A8FFF723FBC7 +:10BA7000AB68019A00211A615B690193002361564A +:10BA80002370994200DBDFE04942220001A8FFF762 +:10BA900012FBAB682200596B01A8FFF702FBAB68F1 +:10BAA0002200596B01A8FFF7FCFAAB682200996BE2 +:10BAB00001A8FFF7F6FAAB682200996B01A8FFF71F +:10BAC000F0FAAB682200D96B01A8FFF7EAFAAB687D +:10BAD0002200996A01A8FFF7EEFAAB682200D96A42 +:10BAE00001A8FFF7E8FAAB68019A00215A619B6947 +:10BAF0000193002361562370994200DBA9E049427B +:10BB0000220001A8FFF7D7FAAB682200996B01A8C1 +:10BB1000FFF7C7FAAB682200996B01A8FFF7C1FADB +:10BB2000AB682200D96B01A8FFF7BBFAAB68220013 +:10BB3000D96B01A8FFF7B5FAAB682200996B01A891 +:10BB4000FFF7AFFAAB682200596B01A8FFF7A9FA1B +:10BB5000AB682200196A01A8FFF7ADFAAB682200B2 +:10BB6000596A01A8FFF7A7FAAB68019A00219A6108 +:10BB7000DB690193002361562370994200DB6DE07D +:10BB80004942220001A8FFF796FAAB682200D96B60 +:10BB900001A8FFF786FAAB682200D96B01A8FFF76E +:10BBA00080FAAB682200D96B01A8FFF77AFAAB687C +:10BBB0002200196A01A8FFF774FAAB682200996A9B +:10BBC00001A8FFF778FAAB682200D96A01A8FFF74D +:10BBD00072FAAB682200196B01A8FFF76CFAAB6828 +:10BBE0002200596B01A8FFF766FA0021019BAA68A1 +:10BBF000D36161560B1C002900DA00235BB213628B +:10BC000000236C680193083301339C422BD8002930 +:10BC100003DA02AA2800FFF743FB30000FB0F0BDA3 +:10BC2000220001A8FFF73DFA53E6220001A8FFF722 +:10BC300038FA83E6220001A8FFF733FAADE62200C6 +:10BC400001A8FFF72EFAE9E6220001A8FFF729FA7A +:10BC50001FE7220001A8FFF724FA55E7220001A8F8 +:10BC6000FFF71FFA91E7019F98001750CCE7F0B556 +:10BC70008FB06B46DC1D012300210500039306A84D +:10BC800007332022217004930590E5F71FFA0E2157 +:10BC90002800F7F7E3F8061E00D0E2E0AB6802A840 +:10BCA0001A68D96902922200FFF705FAAB682200F0 +:10BCB000D96A02A8FFF7FFF90021AB68029A1A605F +:10BCC0005B68029361562670002900DBCCE0494294 +:10BCD000220002A8FFF7EFF9AB682200196A02A858 +:10BCE000FFF7E9F9AB682200196B02A8FFF7E3F947 +:10BCF000AB68029A00215A609B6802930023615648 +:10BD00002370994200DBB4E04942220002A8FFF709 +:10BD1000D2F9AB682200596A02A8FFF7CCF9AB68E8 +:10BD20002200596B02A8FFF7C6F9AB68029A0021FE +:10BD30009A60DB680293002361562370994200DB0E +:10BD40009CE04942220002A8FFF7B5F9AB68220047 +:10BD5000996A02A8FFF7AFF9AB682200D96902A877 +:10BD6000FFF79FF9AB682200D96A02A8FFF799F99B +:10BD7000AB68029A0021DA601B69029300236156C6 +:10BD80002370994200DB7EE04942220002A8FFF7BF +:10BD900092F9AB682200D96A02A8FFF78CF9AB6868 +:10BDA0002200196A02A8FFF77CF9AB682200196B20 +:10BDB00002A8FFF776F9AB68029A00211A615B6965 +:10BDC0000293002361562370994261DA49422200AE +:10BDD00002A8FFF770F9AB682200196B02A8FFF701 +:10BDE0006AF9AB682200596A02A8FFF75AF9AB68F2 +:10BDF0002200596B02A8FFF754F9AB68029A0021A0 +:10BE00005A619B690293002361562370994244DA78 +:10BE10004942220002A8FFF74EF9AB682200596B95 +:10BE200002A8FFF748F9AB682200996A02A8FFF759 +:10BE300038F90021029BAA68936161560B1C002906 +:10BE400000DA00235BB2D36100236C6802930733EE +:10BE500001339C4226D8002903DA03AA2800FFF701 +:10BE60001FFA30000FB0F0BD220002A8FFF719F949 +:10BE700032E7220002A8FFF714F94AE7220002A8DD +:10BE8000FFF70FF962E7220002A8FFF70AF980E73F +:10BE9000220002A8FFF705F99DE7220002A8FFF79C +:10BEA00000F9BAE7029F98001750D1E7F0B5436850 +:10BEB000040095B015000020934261D3012208913F +:10BEC000022109AF06920791039205975B1B9D42E1 +:10BED00058D304932C2200213800E5F7F7F8049B8F +:10BEE000AE009A000093A36838009919E5F796F818 +:10BEF000049B00200093079B61680193019A009BBB +:10BF000094466344049332002B008B423CD303A934 +:10BF100006AA0800F7F769FC002831D103AA21001E +:10BF20002000F7F74BFB00282AD163685B1B9D427A +:10BF30002FD304932C22002109A8E5F7C7F8049B0E +:10BF400009A89A000093A3689919E5F767F8049B7C +:10BF50000093079B0193019A009B9446002263443F +:10BF6000049363689D4216D303A906AA0800F7F755 +:10BF70003CFC002804D103AA21002000F7F71EFB97 +:10BF800015B0F0BD0495A5E7A7680133B850043299 +:10BF9000BBE70495CEE7A16801358A510436E1E795 +:10BFA00010B506220149FFF781FF10BD2491010859 +:10BFB00010B507220149FFF779FF10BD2C91010848 +:10BFC00010B508220149FFF771FF10BD3491010837 +:10BFD0000023F0B50C2185B005000393F6F73EFF72 +:10BFE000061E57D16B68AC689B00E31801932300D1 +:10BFF0001833190003AA20000093FFF737F8A96847 +:10C0000003AA28312000FFF731F8039AA36827001C +:10C01000D318A36093429B41E2685B429A189A420C +:10C020009B41A96808375B423800E260183103AAD7 +:10C030000393FFF71BF8A9683800203103AAFFF724 +:10C0400015F8A9683800283103AAFFF70FF8039AFA +:10C050002369A968D318236193429B4162695B42BB +:10C060009A189A429B4108375B426261203103AAC9 +:10C0700038000393FEF7FAFFA96803AA28313800B5 +:10C08000FEF7F4FF039A009BA2613200019904338A +:10C09000994202D8300005B0F0BD1A60F6E7000002 +:10C0A0007FB50D000400FEF76FF9681E25700C289F +:10C0B00000D982E2E4F7E6FD0D0037005000680089 +:10C0C0008000ED00070121013B019800B400D10080 +:10C0D0001A02BD4B012563660623BC4AA360E260D9 +:10C0E000BB4A23626262BB4A23656265BA4AE36265 +:10C0F000A363BA4B6560E561E564A562226365638D +:10C10000E363B74B25646564A364201DF6F7CBFF9A +:10C11000A06520004C30F6F7C6FF25660025E065D7 +:10C12000280004B070BDAF4B012563660823A360EF +:10C13000AD4BAE4AE36007236262AD4A236262659B +:10C14000AC4A2365E362A3636560E561E564A562CB +:10C1500022636563A84BD3E7A84B012563660823D8 +:10C16000A74AA360E260A74A23626262A64A2365E7 +:10C170006265A64AE362A3636560E561E564A56262 +:10C1800022636563A24BBBE7A24B012563660C23C8 +:10C19000A14AA360E260A14A23626262A04A2365C9 +:10C1A0006265A04AE362A3636560E561E564A56238 +:10C1B000226365639C4BA3E79C4B012563661123B7 +:10C1C0009B4AA360E2609B4A236262629A4A2365AB +:10C1D00062659A4AE362A3636560E561E564A5620E +:10C1E00022636563964B8BE7964B012563660623B6 +:10C1F000954AA360E260954A2365A261944AE3628E +:10C200006262944AA3636265934A656025616561D1 +:10C21000E5612562E564A562226365638F4B6FE784 +:10C220008F4A904BE260904A0125A2618F4A636673 +:10C2300062620822072322658D4AA36062658D4AE7 +:10C24000E362A363656025616561E5612562E5647C +:10C25000A56222636563884B52E7884B01256366BC +:10C260000823874AA360E260864A2365A261864A62 +:10C27000E3626262854AA3636265854A65602561FF +:10C280006561E5612562E564A56222636563814BB2 +:10C2900036E708230125804AA360E2607F4A636194 +:10C2A000A2617F4A236262627E4A236562657E4A9A +:10C2B000E362A36365602561E561E564A5622263CD +:10C2C00065637A4B1CE70C230125794AA360E26081 +:10C2D000784A6361A261784A23626262774A236581 +:10C2E0006265774AE362A36365602561E561E564A1 +:10C2F000A56222636563734B02E710230125724A2E +:10C30000A360E260714A6361A261714A2362626262 +:10C31000704A23656265704AE362A36365602561C4 +:10C32000E561E564A562226365636C4BE8E6102174 +:10C330006B4B6C4A63666018F7F7D6FA051E00D09F +:10C3400037E1261D01213000F6F73DFE051E00D025 +:10C350002FE1FF213000F6F7ADFF051E00D028E1E8 +:10C36000132231003000F7F72EFA051E00D020E12D +:10C370003000F6F798FE4836A0655B4A1021300081 +:10C38000F7F7B2FA051E00D013E10122FC213000BC +:10C39000F6F743FE051E00D00BE1200009212830EE +:10C3A000F6F711FE051E00D003E120000121403008 +:10C3B000F6F709FE051E00D0FBE020003430F6F74A +:10C3C00039FDFE23E365ABE6D1BF0110DC1A031093 +:10C3D0007C1A0310C41A0310941A0310AC1A031029 +:10C3E0003C9101086FBC0110E01B0310701B03108F +:10C3F000C41B03108C1B0310A81B031039B80110B9 +:10C40000081D0310881C0310E81C0310A81C03104F +:10C41000C81C0310D1B20110E81D0310281D031021 +:10C42000B81D0310581D0310881D03103DB20110E4 +:10C43000281F0310181E0310E41E03105C1E0310B7 +:10C44000A01E0310A1BF0110641A0310141A0310D8 +:10C45000181A03104C1A03101C1A0310341A031074 +:10C46000541B0310B1BF0110F41A0310F81A031083 +:10C47000341B0310FC1A0310181B0310C1BF01105A +:10C48000681C0310001C0310041C0310481C03103C +:10C49000081C0310281C0310EC1603104C16031084 +:10C4A0006C160310CC1603108C160310AC16031078 +:10C4B000FC1703100C1703103C170310CC170310C4 +:10C4C0006C1703109C1703106C1903102C18031021 +:10C4D0006C1803102C190310AC180310EC1803107F +:10C4E000ADB10110AC190310B3190310354B01A8FD +:10C4F0006366F6F799FC1021334A6018F7F7F4F9F0 +:10C50000051E50D1261D01213000F6F75CFD051EE9 +:10C5100049D1E0213000F6F7CDFE051E43D10122BE +:10C5200031003000F7F74FF9051E3CD1E021300013 +:10C53000F6F7C0FE051E36D1012231003000F7F7B4 +:10C5400042F9051E2FD13000F6F7ADFDA0652000A1 +:10C5500005212830F6F737FD051E24D120000121E2 +:10C560004030F6F730FD051E1DD120003430F6F7BF +:10C5700061FCDF214836012249003000F6F74DFD0D +:10C58000051E10D1114A102101A8F7F7ADF9051EBB +:10C5900009D101AA31003000F7F7DFF8051E02D1FA +:10C5A000C023FF33E36501A8F6F744FC002D00D15A +:10C5B000B6E52000FDF7E8FEB2E52000FDF7E4FE59 +:10C5C000034DADE5D1B00110D4190310D9190310F2 +:10C5D00080B1FFFF10B59821FDF79EFB10BD10B58F +:10C5E000002802D09821FDF7A3FB10BD07B502007B +:10C5F00003003832009208339822FDF73BFB07BD59 +:10C600000A00010053425A41030010B508310132BB +:10C610003833FDF7E1FA10BD70B5040000200D00BD +:10C620001300824205D021002A0008312000FDF7C6 +:10C63000F3FA70BD0A00010010B50831FDF7FEFAEB +:10C6400010BD10B5F821FDF767FB10BD10B500282F +:10C6500002D0F821FDF76CFB10BD07B50200030006 +:10C66000383200920833F822FDF704FB07BD0A00B8 +:10C67000010053425A41030010B5083103323833E8 +:10C68000FDF7AAFA10BD70B5040000200D001300DC +:10C69000824205D021002A0008312000FDF7BCFAB3 +:10C6A00070BD0A00010010B50831FDF7C7FA10BDD2 +:10C6B00000207047F0B5C64600B586B004AC150042 +:10C6C00022009846214B0E0003CB03C2002E39D026 +:10C6D000002D37D001212000FDF716FA1C4B03AFC7 +:10C6E0001A682D23D35C206800971F2B24D9194A80 +:10C6F0002023110010F0E2F8002823D12000FDF7DC +:10C700003BFA042D0DD82A0039003000E4F786FCEE +:10C710004346002B0ED000201D6006B004BC90469E +:10C72000F0BD042539002A003000E4F777FC4346C9 +:10C73000002BF0D10020F0E7064A2023110010F072 +:10C7400081F8D9E701204042E7E7C0466C1F03109B +:10C750003CF30108B71DC104BA22802110B50A4B71 +:10C7600049001B689A5A1B6AD0008018C018074AF3 +:10C7700002F078F843425841054B40421840054BBF +:10C780009C46604410BDC0463CF301085AFC05C6F7 +:10C79000FBFFFF7F05000080002310B5040082B07E +:10C7A000AE200193EBF746FFEBF75CFF01A8EBF738 +:10C7B00001FFA423019A1D21E25007200AF004FC86 +:10C7C000C120C021074A8000135809061B021B0A1A +:10C7D0000B43135080231360C320EBF72BFF002083 +:10C7E00002B010BD00E100E0064B1A68BA23D15A2E +:10C7F000126A8B005B185B009B181A68002AFCDA2F +:10C800007047C0463CF30108BA2210B5054B002121 +:10C810001B689A5A1B6A900080184000C01802F0EA +:10C820000DF810BD3CF30108044B82B01B681A0CD4 +:10C8300018041204000C104302B07047901F03103C +:10C84000082070470020704700207047023843429C +:10C85000584104234042184004387047014B18687F +:10C860007047C0469CAE0108014B1B685868704772 +:10C870004891010870B5164A164E127833681C6844 +:10C88000120722D55B685B68002B18D0002508E0F2 +:10C89000336801355B689A685B6894466444AB42D0 +:10C8A0000CD9200001F0DEFD0028F1D00A4B98429F +:10C8B00008D00A4B984202D10520404270BD0120A9 +:10C8C0004042FBE702204042F8E704204042F5E7FF +:10C8D0008C1F031048910108050052000600520009 +:10C8E000C2430C4B10B51B681B6893420CD218183E +:10C8F00001F0B8FD084B984209D0084B984203D08C +:10C9000043425841013810BD05204042FBE7022058 +:10C910004042F8E748910108050052000600520025 +:10C92000F8B5454657464E46DE46334BE0B51B68E4 +:10C9300004001F68884616003D18002959D0002EB3 +:10C9400057D05B6830001969E4F72CFA002950D100 +:10C95000E443A7424DD280239B00284F9A461BE018 +:10C9600053461B1B994680226B0A5B029B461900AB +:10C9700092003800E4F752FB414638194A46E4F782 +:10C980004DFB3900584601F0A5FD00281CD14B464F +:10C99000C8444D44F61A23D0EC05E40DA3195345C1 +:10C9A000DED880226D0A6D02920029003800E4F77B +:10C9B00035FB414638193200E4F730FB39002800D6 +:10C9C00001F088FD00280BD00D4B98420ED00D4B86 +:10C9D0009C466044434258410323404298430138F7 +:10C9E0003CBC90469946A246AB46F8BD0220404268 +:10C9F000F6E705204042F3E748910108A0AE0108A0 +:10CA000005005200FAFFADFF70B50B0000240029AD +:10CA100018D0002A16D00E4909680D68C1438D420E +:10CA200012D24119E8204003281881420CD2D64383 +:10CA3000B14209D25618B54206D8B04204D3180004 +:10CA4000E4F7ECFA200070BD05246442FAE7C04622 +:10CA500048910108C02080017047C046002310B5EE +:10CA600082B0040068460093ECF768F900990B481F +:10CA700010F0C0F900280FD001A910F0EBFAA023A4 +:10CA80001B06984208D10198002C03D0E3F7BCFEA6 +:10CA90002060019802B010BD0020FBE7F41F0310D6 +:10CAA000002310B582B0040068460093ECF746F905 +:10CAB00000990B4810F09EF900280FD001A910F042 +:10CAC000C9FAA0231B06984208D10198002C03D074 +:10CAD000E3F79AFE2060019802B010BD0020FBE74A +:10CAE000C01F0310F8B504000D00202818D8002935 +:10CAF00016D00D4F0D4E3B78002B06D02200310092 +:10CB00002800E4F78BFA0020F8BD0100300010F097 +:10CB100093FEA0231B06984204D101233B70EDE74E +:10CB20000348F1E70348EFE7C0B00108A0B00108EF +:10CB3000C5A300005C3A000030B5040083B00D00CE +:10CB400000281AD0002918D06846ECF7F7F80099A9 +:10CB50000B4810F04FF900280CD001AB22682900D7 +:10CB600010F08AFAA0231B06984203D1019B0020F3 +:10CB7000236000E0034803B030BD0348FBE7C04634 +:10CB8000442003105C3A0000C5A3000030B5040047 +:10CB900083B00D00002814D0002912D06846ECF7AD +:10CBA000CDF800990D4810F025F9002806D001A90C +:10CBB00010F050FAA0231B06984204D0084803B096 +:10CBC00030BD0848FBE70198E3F71EFE019902001B +:10CBD00020602800E4F722FA0020F0E72420031068 +:10CBE0005C3A0000C5A30000F0B54746CE4680B5CC +:10CBF00083B098466B4605000E000B20991C170069 +:10CC000010F08CFEA02304001B06984205D01E489D +:10CC100003B00CBC90469946F0BD00231B4901A807 +:10CC2000019310F08BFE8146A04203D001A810F0C2 +:10CC300013FEECE743463A00154901A810F04CFEFC +:10CC400004004845F2D16B4602215A88FF3101A801 +:10CC500010F032FE0700A042E8D133002A000D494F +:10CC600001A810F039FE0400B842DFD10B9A0A99EE +:10CC700001A810F043FE050001A810F0EDFD002012 +:10CC8000A542C5D0C3E7C0465C3A000009010020B8 +:10CC9000020200000302000070B505000C0000F065 +:10CCA0009FF92900E4F7E8FA002804D1002C04D009 +:10CCB0001223237070BD0248FCE70020FAE7C0464B +:10CCC0005C3A000070B5384C384DA54403A92800E3 +:10CCD000EDF7A8F98023039ADB009A4250D1344E35 +:10CCE0000020B36800939847002849D180227369D7 +:10CCF000920004A9286800939847002840D1059A1B +:10CD00002C4B01929A4240D08022920094462B688C +:10CD100004A963441800009B9847002830D1F369A8 +:10CD200028680093984700282AD1B369059A009390 +:10CD3000204B286801929A420FD000221D4B84A9F3 +:10CD4000059306AB04C38B42FCD1002105AA10CA8F +:10CD500061409342FBD104910BE004AB84AD002110 +:10CD600000E0210004CB14004C409D42F9D18A42DE +:10CD7000E3D1802204A99200009B9847002810D09C +:10CD80000D4884239B009D4470BD04AB84AC0022FD +:10CD900000E0020002CB08005040A342F9D19142CA +:10CDA000B2D10020EDE7C046F0FDFFFFC4B001089E +:10CDB000941F03104200DEC05C3A000010B50A4B1D +:10CDC00080001B6882B0083314001818042909D1A8 +:10CDD000064B04225B69210001939847002801D18A +:10CDE00002B010BD0248FBE7C4B00108941F031055 +:10CDF0005C3A00008022F0B5264C274E274DA54412 +:10CE0000736904000F00920002A9286800939847F4 +:10CE1000002838D10234A40002AB1B59BB4230D0E9 +:10CE200036D8802292009446F36900932B686344BD +:10CE30001800009B9847002825D1002202AB1F5103 +:10CE400082A803AB02CB4A408342FBD102928022EC +:10CE500092009446B36902A901932B6863441800B9 +:10CE6000019B984700280ED12868009B984700280E +:10CE700009D180222868920002A9019B98470028C6 +:10CE800001D1002000E0064883239B009D44F0BDB3 +:10CE90000448F9E7F4FDFFFF941F0310C4B0010834 +:10CEA0005C3A0000C5A3000010B504000D4B84B02F +:10CEB0001868A3000830C0180B4B04225B6903A953 +:10CEC0000193984700280AD103994B1C05D00131E2 +:10CED0002000FFF78FFF04B010BD0448FBE70448B3 +:10CEE000F9E7C046C4B00108941F0310A355000021 +:10CEF0005C3A000000B52B4885B000F08FFE0121A0 +:10CF0000012010F0E9FA00282DD0274B1B68002BD8 +:10CF100030DB03A8EBF712FF0B236B4400930022D6 +:10CF200000230121039810F079F9A0231B069842F1 +:10CF30000ED0EBF7C1FE002807D1EBF7E7FE002883 +:10CF400003D1EBF7A3FE002800D0184805B000BDC0 +:10CF50006B46DB7A002BECD080218020C902400593 +:10CF600010F032FCE5E764300AF05CF80E4B1B6809 +:10CF7000002BCEDA0E48EBF765FC01200AF052F8E0 +:10CF8000ECF79CFE80230B4A9B00D05010F0B4FAC3 +:10CF9000A0231B06984202D0EBF78CFCB9E712F0F5 +:10CFA0005BF8F9E7DC20031000012640DA3B0000C3 +:10CFB000004000160000204010B5EDF74FF9C0B258 +:10CFC000431E98417F234042984310BDC0231B0657 +:10CFD0009C460F220023604482425B41D8B27047D6 +:10CFE000004870470100004010B5354B1A7A002AFE +:10CFF00049D01A7D002A48D020229A5C002A46D0C7 +:10D000002C229A5C002A44D038229A5C002A42D012 +:10D0100044229A5C002A40D050229A5C002A40D0D8 +:10D020005C229A5C002A3ED068229A5C002A36D0A4 +:10D0300074229A5C002A38D080229A5C002A36D06A +:10D040008C229A5C002A34D098229A5C002A32D032 +:10D05000A4229A5C002A30D0B0229A5C002A07D021 +:10D06000BC229A5C0F24002A03D08D20404210BDC0 +:10D070000E2462001219920098509B1801225960E8 +:10D080001A720020F3E70024F3E70124F1E70224F9 +:10D09000EFE70324EDE70424EBE70524E9E70824A0 +:10D0A000E7E70624E5E70724E3E70924E1E70A24A4 +:10D0B000DFE70B24DDE70C24DBE70D24D9E7C046CE +:10D0C000C8B001084E4B0200197A002903D0196834 +:10D0D000884200D16FE0197D002903D0D9688A42C7 +:10D0E00000D16FE02021595C002902D099698A4261 +:10D0F0006AD02C21595C002902D0596A8A4265D035 +:10D100003821595C002902D0196B8A4260D0442131 +:10D11000595C002902D0D96B8A425BD05021595CFE +:10D12000002902D0996C8A4256D05C21595C0029B2 +:10D1300002D0596D8A4251D06821595C002902D031 +:10D14000196E8A424CD07421595C002902D0D96EE4 +:10D150008A4247D08021595C002902D0996F8A42C7 +:10D1600042D08C21595C002903D0842159588A422D +:10D170003CD09821595C002903D0902159588A420B +:10D1800036D0A421595C002903D09C2159588A42E9 +:10D1900030D0B021595C002903D0A82159588A42C7 +:10D1A0002AD0BC21595C0020002903D0B421595851 +:10D1B000914223D0704700214A00521892009B18D8 +:10D1C0005868F7E70121F7E70221F5E70321F3E7C4 +:10D1D0000421F1E70521EFE70621EDE70721EBE761 +:10D1E0000821E9E70921E7E70A21E5E70B21E3E761 +:10D1F0000C21E1E70D21DFE70E21DDE70F21DBE761 +:10D20000C8B00108034B9C46604443425841C0B239 +:10D210007047C046FFFFFFBFC023F0B51B06C31811 +:10D220008BB00F0016000F2B52D84C4BA0259C46FC +:10D230006B466044991C10F071FB2D060400A84257 +:10D2400049D0474B9C4200D16AE014D9454B9C42DF +:10D2500000D16BE022D8444B9C4239D000D274E01C +:10D26000424B9C4200D16DE0414B9C4213D18A203D +:10D2700040420BB0F0BD3F4B9C4254D01BD83E4BBC +:10D280009C4244D03DD93D4B9C4252D095203C4BD2 +:10D2900040429C42EDD084204042EAE7394B9C4218 +:10D2A00038D058D3384B9C4252D0384B9C42F2D1A4 +:10D2B00085204042DDE7364B9C422ED03FD3354B94 +:10D2C0009C4239D0344B9C42E5D18F204042D0E77C +:10D2D0008C204042CDE72422002101A8E3F7F6FE8E +:10D2E0006B4601A9588810F0C5FA0400A842A8D1DD +:10D2F000049800F0C1FB3860059800F0DFFB306057 +:10D300009FE7A02300201B069C42B2D0C3E79720D2 +:10D310004042AEE787204042ABE792204042A8E778 +:10D320008E204042A5E794204042A2E78920404257 +:10D330009FE7962040429CE79120404299E7932046 +:10D34000404296E78B20404293E78D20404290E791 +:10D35000862040428DE7882040428AE7010000C0D5 +:10D3600072FFFFF777FFFFF774FFFFF775FFFFF717 +:10D3700076FFFFF76CFFFFF769FFFFF76AFFFFF724 +:10D380006BFFFFF779FFFFF77AFFFFF77BFFFFF7F0 +:10D390006EFFFFF76FFFFFF771FFFFF7F0B547462E +:10D3A000CE4680B51F00C0231B06C3188BB089462C +:10D3B00090460F2B56D85A4BA026C5186B4628000E +:10D3C000991C10F0ABFA36060400B0424DD0554B14 +:10D3D0009C4200D19AE017D9534B9C4200D19BE06C +:10D3E00026D8524B9C423DD000D27DE0504B9C420F +:10D3F00000D176E04F4B9C4217D18A2040420BB0BF +:10D400000CBC90469946F0BD4B4B9C4200D180E04D +:10D410001BD84A4B9C425BD053D9494B9C4266D0A7 +:10D420009520484B40429C42E9D084204042E6E7A8 +:10D43000454B9C424FD05DD3444B9C425DD0444B06 +:10D440009C42F2D185204042D9E7424B9C4245D0D4 +:10D4500059D3414B9C4253D0404B9C42E5D18F2045 +:10D460004042CCE78C204042C9E72422002101A899 +:10D47000E3F72CFE6B4601A9588810F0FBF9040075 +:10D48000B04207D16B464A469B8813806B464246A2 +:10D49000DB881360129B1A68022D0AD1202A03D957 +:10D4A0001A002023136020222D493800E3F7B6FD2F +:10D4B0008DE76B4639005888129B10F0EBF9040099 +:10D4C00085E7A02300201B069C4200D197E7ACE72C +:10D4D0009720404293E78720404290E792204042C5 +:10D4E0008DE78B2040428AE78D20404287E79620D7 +:10D4F000404284E78820404281E7862040427EE720 +:10D50000912040427BE79320404278E78E204042C2 +:10D5100075E79420404272E7892040426FE7C04699 +:10D52000010000C072FFFFF777FFFFF774FFFFF7FE +:10D5300075FFFFF776FFFFF76CFFFFF769FFFFF757 +:10D540006AFFFFF76BFFFFF779FFFFF77AFFFFF73F +:10D550007BFFFFF76EFFFFF76FFFFFF771FFFFF72E +:10D560006C200310F0B51D00C0231B06C31887B044 +:10D570000E0014000F2B4FD84A4B9C4616236B44C9 +:10D580001900604410F0CAF9A0231B06984248D045 +:10D59000454B984200D173E013D9444B984200D1D7 +:10D5A0006BE01FD8424B984236D000D271E0414B1D +:10D5B000984200D16AE0404B984249D18A235B42AD +:10D5C0002CE03E4B98425ED019D83D4B984248D053 +:10D5D00039D93C4B98424DD03B4B984238D195239A +:10D5E0005B421BE0394B984235D058D3384B9842B8 +:10D5F00052D0384B98422BD185235B420EE0364BFC +:10D6000098422BD033D3354B98422DD0344B98428F +:10D610001ED18F235B4201E08C235B42180007B0D0 +:10D62000F0BD6B463000DF8A00F09AFA0E9B0100D5 +:10D6300002930D9B220001930C9B380000932B005A +:10D6400010F0CEF8A4E7A022002312069042E5D005 +:10D6500084235B42E2E787235B42DFE792235B425E +:10D66000DCE797235B42D9E791235B42D6E793231C +:10D670005B42D3E796235B42D0E789235B42CDE749 +:10D680008E235B42CAE794235B42C7E78B235B424E +:10D69000C4E78D235B42C1E786235B42BEE7882354 +:10D6A0005B42BBE7010000C072FFFFF777FFFFF7A7 +:10D6B00074FFFFF775FFFFF776FFFFF76CFFFFF7CB +:10D6C00069FFFFF76AFFFFF76BFFFFF779FFFFF7CF +:10D6D0007AFFFFF77BFFFFF76EFFFFF76FFFFFF7A4 +:10D6E00071FFFFF7F0B51D00C0231B06C31885B0FE +:10D6F0000E0014000F2B4FD8494B9C460E236B4451 +:10D700001900604410F00AF9A0231B06984248D083 +:10D71000444B984200D171E013D9434B984200D159 +:10D7200069E01FD8414B984236D000D26FE0404BA1 +:10D73000984200D168E03F4B984247D18A235B4230 +:10D740002CE03D4B98425CD019D83C4B984246D0D7 +:10D7500037D93B4B98424BD03A4B984236D1952320 +:10D760005B421BE0384B984233D056D3374B98423C +:10D7700050D0374B984229D185235B420EE0354B80 +:10D78000984229D031D3344B98422BD0334B984216 +:10D790001CD18F235B4201E08C235B42180005B053 +:10D7A000F0BD6B463000DF8900F0DAF90B9B010019 +:10D7B00001930A9B2200009338002B0010F028F8F8 +:10D7C000A6E7A022002312069042E7D084235B4202 +:10D7D000E4E787235B42E1E792235B42DEE797239E +:10D7E0005B42DBE791235B42D8E793235B42D5E7BB +:10D7F00096235B42D2E789235B42CFE78E235B42CD +:10D80000CCE794235B42C9E78B235B42C6E78D23B9 +:10D810005B42C3E786235B42C0E788235B42BDE7E8 +:10D82000010000C072FFFFF777FFFFF774FFFFF7FB +:10D8300075FFFFF776FFFFF76CFFFFF769FFFFF754 +:10D840006AFFFFF76BFFFFF779FFFFF77AFFFFF73C +:10D850007BFFFFF76EFFFFF76FFFFFF771FFFFF72B +:10D8600070B51E00C0231B06C31882B00C00150043 +:10D870000F2B4CD8444B9C466B466044991D10F0CE +:10D880004DF8A0231B06984246D0404B984200D149 +:10D8900067E011D93E4B984260D01ED83D4B98426C +:10D8A00035D000D266E03C4B984260D03B4B98426A +:10D8B0003FD18A235B422CE0394B984254D019D88F +:10D8C000384B98423ED02FD9374B984243D0374BF4 +:10D8D00098422ED195235B421BE0354B98422BD0CA +:10D8E0004ED3344B984248D0334B984221D18523B4 +:10D8F0005B420EE0314B984221D029D3304B984205 +:10D9000023D0304B984214D18F235B4201E08C230B +:10D910005B42180002B070BD6B462A00D888210017 +:10D9200033000FF0B7FFB0E7A022002312069042A9 +:10D93000EFD084235B42ECE787235B42E9E7922345 +:10D940005B42E6E797235B42E3E791235B42E0E734 +:10D9500093235B42DDE796235B42DAE789235B4250 +:10D96000D7E78E235B42D4E794235B42D1E78B2336 +:10D970005B42CEE78D235B42CBE786235B42C8E761 +:10D9800088235B42C5E7C046010000C072FFFFF775 +:10D9900077FFFFF774FFFFF775FFFFF776FFFFF7DD +:10D9A0006CFFFFF769FFFFF76AFFFFF76BFFFFF7F9 +:10D9B00079FFFFF77AFFFFF77BFFFFF76EFFFFF7B7 +:10D9C0006FFFFFF771FFFFF7852040427047C046A9 +:10D9D00010B582B0049B069C002B1FD192B2501C44 +:10D9E000013AFF30FF3A80B2FF2A17D801AA6946F0 +:10D9F0000FF050FDA0231B06984215D10199059BFD +:10DA000099420ED80098E9F7C7FE002C04D00020F8 +:10DA1000019B236002B010BD0020FBE7872040423D +:10DA2000F8E78A204042F5E792204042F2E7C046FC +:10DA300010B592B2501C013A82B0FF30FF3A049CFC +:10DA400080B2FF2A0ED801AA69460FF023FDA02359 +:10DA50001B06984209D1019B002063600123A3604B +:10DA600002B010BD87204042FAE792204042F7E71B +:10DA7000852040427047C04602000223012010402A +:10DA8000134200D0184380235B001A4200D0184391 +:10DA900080239B001A4200D01843530502D58023EF +:10DAA0005B011843130502D580239B011843D3045F +:10DAB00002D58023DB0118437047C046FF220300D4 +:10DAC000100018409343B022920493421CD0A0222D +:10DAD000920493421FD0194A93421ED0184A93428F +:10DAE0001DD0184A93421CD0174A93421BD0174AA4 +:10DAF00093421CD0164A93421BD0164A934214D02C +:10DB0000154A934217D070470023144ADB00D318FC +:10DB10005B681843F7E70123F7E70223F5E70323E0 +:10DB2000F3E70423F1E70523EFE70823EDE70623F6 +:10DB3000EBE70723E9E70923E7E7C0460000021007 +:10DB40000000031000000610000007100000031280 +:10DB50000001002000020020000300208C200310A0 +:10DB6000FF220300100018409343F02292049342D6 +:10DB70001CD0E022920493421ED0184A93421DD03A +:10DB8000174A93421CD0174A93421BD0164A93421D +:10DB90001AD0164A93421BD0154A93421AD0154AFE +:10DBA000934213D0144A934216D070470023134A6D +:10DBB000DB009B581843F8E70123F8E70223F6E758 +:10DBC0000323F4E70423F2E70523F0E70823EEE755 +:10DBD0000623ECE70723EAE70923E8E7000200064B +:10DBE0000003000600060006000700060003000709 +:10DBF0000001000800020008000300088C20031048 +:10DC0000BFF34F8F034B044ADA60BFF34F8FC04618 +:10DC1000FDE7C04600ED00E00400FA05014B186086 +:10DC20007047C0463CF301081A4BF0B51D68002D43 +:10DC30002ED0AB6BC3181F680F242B6DC618AB68B2 +:10DC4000C21813682340062BFBD88022EB6812060B +:10DC5000C31811431960BE4212D08021AB6849023B +:10DC6000C21813680B42FCD02B68C0180A4B1A6804 +:10DC70002D23D35C1F2B04D8802203681A42FCD1C9 +:10DC8000F0BD0368002BFBD00368002BF9D1F7E748 +:10DC90000027D1E788B101083CF301088C461E49F2 +:10DCA000F0B50968002935D08C6B041926680C6D15 +:10DCB0000F270419361B741EA6418C68F6B205198D +:10DCC0002C683C40062CFBD8CC6812060419134380 +:10DCD0002360002E03D16346002B00D1F0BD8024C9 +:10DCE0008B686402C21813682342FCD00B68C0180A +:10DCF0000A4B1A682D23D35C1F2B04D8802203689B +:10DD00001A42FCD1EAE70368002BE7D00368002B36 +:10DD1000F9D1E3E70026CAE788B101083CF301081E +:10DD2000F8B5C54B1B68002B00D19EE29A6B821898 +:10DD300016680F241A6D85189A6881180A6822409F +:10DD4000062AFBD8B821DA68090682181160BB4A96 +:10DD500014689A688118B5420FD080256D020A6850 +:10DD60002A42FCD02D251A68655D82181F2D00D926 +:10DD7000F7E1802615682E42FCD10F259A6B821898 +:10DD800017681A6D86180A682A40062AFBD8B4213B +:10DD9000DA680906821811609A688118B7420FD0B4 +:10DDA00080256D020A682A42FCD02D251A68655D1F +:10DDB00082181F2D00D9DCE1802615682E42FCD187 +:10DDC0000F259A6B821817681A6D86180A682A4000 +:10DDD000062AFBD8B021DA680906821811609A6811 +:10DDE0008118B7420FD080256D020A682A42FCD004 +:10DDF0002D251A68655D82181F2D00D9C1E1802686 +:10DE000015682E42FCD10F259A6B821817681A6D7F +:10DE100086180A682A40062AFBD8AC21DA68090667 +:10DE2000821811609A688118B7420FD080256D0260 +:10DE30000A682A42FCD02D251A68655D82181F2DBC +:10DE400000D9A6E1802615682E42FCD10F259A6BD9 +:10DE5000821817681A6D86180A682A40062AFBD8A5 +:10DE6000A821DA680906821811609A688118B742F9 +:10DE70000FD080256D020A682A42FCD02D251A6831 +:10DE8000655D82181F2D00D98BE1802615682E4212 +:10DE9000FCD10F259A6B821817681A6D86180A68CC +:10DEA0002A40062AFBD8A421DA68090682181160E4 +:10DEB0009A688118B7420FD080256D020A682A42FD +:10DEC000FCD02D251A68655D82181F2D00D970E1E0 +:10DED000802615682E42FCD10F259A6B8218176890 +:10DEE0001A6D86180A682A40062AFBD8A021DA682B +:10DEF0000906821811609A688118B7420FD08025F0 +:10DF00006D020A682A42FCD02D251A68655D8218C8 +:10DF10001F2D00D955E1802615682E42FCD10F2512 +:10DF20009A6B821817681A6D86180A682A40062AA2 +:10DF3000FBD89C21DA680906821811609A6881185A +:10DF4000B7420FD080256D020A682A42FCD02D25E9 +:10DF50001A68655D82181F2D00D93AE18026156880 +:10DF60002E42FCD10F259A6B821817681A6D8618FD +:10DF70000A682A40062AFBD89821DA68090682181E +:10DF800011609A688118B7420FD080256D020A6827 +:10DF90002A42FCD02D251A68655D82181F2D00D9F4 +:10DFA0001FE1802615682E42FCD10F259A6B82183E +:10DFB00017681A6D86180A682A40062AFBD8942129 +:10DFC000DA680906821811609A688118B7420FD082 +:10DFD00080256D020A682A42FCD02D251A68655DED +:10DFE00082181F2D00D904E1802615682E42FCD12D +:10DFF0000F259A6B821817681A6D86180A682A40CE +:10E00000062AFBD89021DA680906821811609A68FE +:10E010008118B74214D080256D020A682A42FCD0CC +:10E020002D251A68655D82181F2D00D9E9E080262C +:10E0300015682E42FCD103E088B101083CF30108C9 +:10E040000F259A6B821817681A6D86180A682A407D +:10E05000062AFBD88C21DA680906821811609A68B2 +:10E060008118B7420FD080256D020A682A42FCD081 +:10E070002D251A68655D82181F2D00D9C9E08026FC +:10E0800015682E42FCD10F259A6B821817681A6DFD +:10E0900086180A682A40062AFBD88821DA68090609 +:10E0A000821811609A688118B7420FD080256D02DE +:10E0B0000A682A42FCD02D251A68655D82181F2D3A +:10E0C00000D9AEE0802615682E42FCD10F259A6B50 +:10E0D000821817681A6D86180A682A40062AFBD823 +:10E0E0008421DA680906821811609A688118B7429B +:10E0F0000FD080256D020A682A42FCD02D251A68AF +:10E10000655D82181F2D00D993E0802615682E4288 +:10E11000FCD10F259A6B821817681A6D86180A6849 +:10E120002A40062AFBD88021DA6809068218116085 +:10E130004F4A11688908B74200D18EE080269A685C +:10E14000760285182A683242FCD02D221B68A25C18 +:10E15000C3181F2A75D880241A681442FCD10C23D6 +:10E1600073E01568002D00D107E61568002DF8D181 +:10E1700003E61568002D00D122E61568002DF8D1C0 +:10E180001EE61568002D00D13DE61568002DF8D17A +:10E1900039E61568002D00D158E61568002DF8D134 +:10E1A00054E61568002D00D173E61568002DF8D1EE +:10E1B0006FE61568002D00D18EE61568002DF8D1A8 +:10E1C0008AE61568002D00D1A9E61568002DF8D162 +:10E1D000A5E61568002D00D1C4E61568002DF8D11C +:10E1E000C0E61568002D00D1DFE61568002DF8D1D6 +:10E1F000DBE61568002D00D1FAE61568002DF8D190 +:10E20000F6E61568002D00D11AE71568002DF8D143 +:10E2100016E71568002D00D135E71568002DF8D1F7 +:10E2200031E71568002D00D150E71568002DF8D1B1 +:10E230004CE71568002D00D16BE71568002DF8D16B +:10E2400067E71A68002AFCD10D2399400B00F021E2 +:10E2500089051943FFF7E8FCF8BD2D23E25C0E3B6E +:10E2600093429B415B420C33EFE7002661E5C046D9 +:10E270008CB10108054B1A682D23D35C1F2B03D9E1 +:10E28000034A044B1A607047034AFAE73CF301085B +:10E29000F021031088B101089C210310F0B5C64697 +:10E2A0004E4B040018682D2300B5C35C1F2B14D8F7 +:10E2B0004B4A4C4B012113604B4A4C4D226090223B +:10E2C000D200A21811602A68002A22D02000FFF78D +:10E2D00027FD002004BC9046F0BD414A444B45490F +:10E2E00013602268414D0A40226082224249520155 +:10E2F000A21811608022216812060A4322600322BC +:10E30000A260A42201215201A21811602A68002AE9 +:10E31000DCD1196D61180029D8D0C66CB600771E03 +:10E32000B846364FB845D1D880273F01BE4249D0C4 +:10E3300030D98027BF01BE4226D03BD98027FF01BC +:10E34000BE4242D080273F02BE42BFD12D27C75DCB +:10E350001F2F1CD947460F42B8D1294FE2519B6B62 +:10E36000E31819602D23C25C0E3B93429B415B4234 +:10E370000C33B10899400B00F021890519432000A6 +:10E38000FFF752FC2E60A1E7C022D201DEE78A042B +:10E39000E5D09BE78022920096421BD08022D200DB +:10E3A000964214D080225200964200D08EE7FE2280 +:10E3B000D201CBE780225201964200D086E7E022CC +:10E3C000D201C3E7F022D201C0E73200BEE7F82253 +:10E3D000D201BBE7FC22D201B8E7C0463CF30108FA +:10E3E00088B101089C210310030000808CB1010852 +:10E3F000F0210310FFFFFE7F01000200FF7F0000FD +:10E4000088140000084B1A682D23D35C1F2B07D9F2 +:10E410000023036083600022044B00201A607047D1 +:10E4200000230360F7E7C0463CF301088CB1010804 +:10E4300010B5012914D901220A4054426241CB0F80 +:10E440005B185B1001399B1A8B4209DA4118C3181B +:10E4500002780C78013904704A7001309942F7D182 +:10E4600010BDC04670B5C4050500E40D24D1EAF71F +:10E47000A3F9124B124A1A605D609C60DC60114B7C +:10E480001A685423D35C002B05D180200021400062 +:10E4900010F0EAFD70BD08F05BFBFA218900E2F79D +:10E4A000FBFB01000848E2F7F7FB084BC11880208E +:10E4B000400010F0D9FDEDE70548EBE790B1010809 +:10E4C0000001001C3CF3010860F590009808000072 +:10E4D0000600520070B5C30504000D00002B16D1D4 +:10E4E000002914D08026EAF767F9124B124A760009 +:10E4F0001A605E609C60DD60104B1A685323D35C29 +:10E50000002B06D10021300010F0AEFD00E00C48D9 +:10E5100070BD08F01DFBFA218900E2F7BDFB010088 +:10E520000848E2F7B9FBE1239B00C118300010F066 +:10E530009BFDEDE790B10108000100063CF30108E6 +:10E5400006005200808D5B0070B5C40505000E000A +:10E55000E40D15D1002913D0EAF72EF9124B134A16 +:10E560001A605C609D60DE60114B1A685223D35CB8 +:10E57000002B07D180200021400010F075FD00E045 +:10E580000C4870BD08F0E4FAFA218900E2F784FB38 +:10E5900001000948E2F780FB084BC11880204000C9 +:10E5A00010F062FDEDE7C04690B1010800010005E2 +:10E5B0003CF3010806005200C0EA21014826000091 +:10E5C000F0B5DE4657464E464546E0B583B00028D6 +:10E5D00000D1DCE0002A00D1D9E0012634008C40D3 +:10E5E000A34683246D4D4F002D683B002C5D1033F6 +:10E5F000A046804444462468A146946926408E4043 +:10E600000324B446D669A24626409E40644626436B +:10E6100054469C4023005C4623434C469C4343465F +:10E6200026431E608123EB5C0F24984680444346BA +:10E630008E00A446B4401B680196A3436446566806 +:10E640003440019EB4402343444623606C69AB6967 +:10E65000A4461F24A0464646C31A147ADB091B01B0 +:10E6600034406344A446032900D87BE05C68A2469A +:10E670000C1FE400A14644464E46B440A046544612 +:10E680004646B443A2464E466446B440A446544669 +:10E69000664634435C608023EB5C032498468044E8 +:10E6A0004346A446BC401B68D668A3436446344036 +:10E6B000BC402343444623608369012799465B4657 +:10E6C000DB43146998463C408C404B46A446444684 +:10E6D00023406446234383618223EB5C9C4684444D +:10E6E00063461B68994653694C463B408B40190072 +:10E6F000434623401943634619608423E95C536A07 +:10E7000041185B009C46022364462340946A0D68CE +:10E71000A400A0460424A44644466646344023434D +:10E72000146A019E27403B431827D46AE40027401F +:10E73000146B3B436701FF2427403B43FE27BF0088 +:10E740003E40B340A5432B430B601368002B20D001 +:10E750005B468360002003B03CBC90469946A246CD +:10E76000AB46F0BD1C68A146CC00A24644465646C6 +:10E77000B440A0464C464646B443A146564664467D +:10E78000B440A4464C46664634431C6083E70448C4 +:10E79000E1E75B4643600020DDE7C0463CF301084B +:10E7A00001005A00F0B5CE46474680B507AC257843 +:10E7B000214C994626687769B469BC461F27041B1B +:10E7C000E409240164443D40032927D963689C4639 +:10E7D0000B1FDB009F4098466346BB431F00434628 +:10E7E0009D403D43656001244B4627001C408F40FF +:10E7F0008C40812305688900BD432C430460F35C91 +:10E80000C0180F231D0013408D408B400468AC439B +:10E81000234303600CBC90469946F0BD23689C4698 +:10E82000CB009F4098466346BB431F0043469D4034 +:10E830003D432560D7E7C0463CF30108074B1A6803 +:10E84000BC23D358C3181B68002B04DA0904090C35 +:10E850004160002070470248FCE7C0463CF30108D5 +:10E8600001008A000368002B05DA0904090CC26064 +:10E870008160002070470148FCE7C04601008A0023 +:10E88000064B1A68BC23D358C3181B68002B03DA45 +:10E89000C36800200B6070470148FCE73CF30108A7 +:10E8A00001008A00024B1A68002A00D118607047E4 +:10E8B000A4B10108F0B50824015F57468A46DE4638 +:10E8C0004E4645465446E0B5036A87B002933D4B39 +:10E8D00004A90C801968C2680B8F88460168066914 +:10E8E0008C4604A963444B80374B41681F682C2336 +:10E8F000B946FF275A43BC464A443740456A846AB2 +:10E9000005910397C16A1760BA27BB460194644614 +:10E910005B4647460091310A21404446360C51601F +:10E920009660FF5A039BB8465F43246A2C233F1925 +:10E9300017610F0080377F01E719576137043E43A5 +:10E94000224F4901BB46611859440E60019E00994F +:10E95000D6615646116200219681674666469161EE +:10E96000029A2E4053432A0A3A402F0C45464B4404 +:10E970001E606E4336191E61160080365A6076019D +:10E980005201A6193D04A4183D435C449F605E619A +:10E990002560D96119629961016B04A808F07EFABB +:10E9A00004AB00229B5E002B05DB1F221A400123D3 +:10E9B0009340074A136007B03CBC90469946A24674 +:10E9C000AB46F0BD3CF30108A4B1010808100000FB +:10E9D00000E100E0F0B52C25124C684324684D435B +:10E9E000201801696419002919D0A569002D14D1D6 +:10E9F0000D68002D11DA4768012006006568AE40F9 +:10EA00001588360435431560CA60A061B84000041B +:10EA1000000C63628860002000E00348F0BD0348FA +:10EA2000FCE7C046A4B1010807028A0004028A007C +:10EA300070B52C25234B68431D68002382B02D1828 +:10EA400001936B69DC68220C0BD012041A601A68FF +:10EA50001D4A28691168BC228A5882181268002A47 +:10EA600010DB2404240C0AD01C601A686A6A002A8D +:10EA700022D0904700236B626B690022AA611B6859 +:10EA800002B070BD01A9FFF7FBFE002600280DD1E2 +:10EA9000FF2301980268160C1340EA69934205D2DD +:10EAA0002A6A9B009B58002B00D0984731002869A8 +:10EAB000FFF7C4FE6B69D4E7AA6A002ADDD090474D +:10EAC0006B69DAE7A4B101083CF3010870B5131EC5 +:10EAD0002DD000292DD033251C4C62601C4A2160AA +:10EAE0001268555DA84224D2CD0622D1BA26965B83 +:10EAF000126A7043174D80182860CA081800002158 +:10EB0000E2F7E4FA00212868FFF798FE22000021CE +:10EB10002868FFF7A7FE002807D128680021FFF723 +:10EB20008DFE03000020002B04D00B4802E00029DA +:10EB300001D00A4870BD064B1A68BA23D35A58430D +:10EB4000136AC018034B18600020F3E77405001027 +:10EB50003CF30108A8B1010801018A0003018A0001 +:10EB6000F0B5C646244D00B52A68D46823688342B0 +:10EB700023D91F230127460918408740002907D0C1 +:10EB80001368002B22DB1D4C200004BC9046F0BD16 +:10EB9000E9F7E7FC804628680368002B24DA6368FD +:10EBA000B6009E1933681F4209D10021FFF746FEC7 +:10EBB000134C4046E9F7D9FCE6E7124CE4E7BB43C7 +:10EBC00033600021FFF73AFE0024F2E76368B600E5 +:10EBD0009E1933683B4209D0BB43336000211000CB +:10EBE000FFF72CFE0024CFE7044CE2E700211000E1 +:10EBF000FFF724FE024CC7E7A8B101080301880013 +:10EC00000201880004018A000B4B1B68DB681A684C +:10EC100082420FD959681F234209034001209840BE +:10EC20000300920050581840431E9841034B9C46E5 +:10EC3000604470470248FCE7A8B101080001880061 +:10EC400004018A0070B59621002008F067FA0021BF +:10EC5000002006F0DBFD002842D0002006F02CFD4D +:10EC6000012006F005FD002006F0E0FBE9F7A4FD19 +:10EC70003F23314D2A68D35C002B10D02F4C01204C +:10EC800007F0E2FB002850D03F232A68D35C012B19 +:10EC900005D92B4C022007F0D7FB002800D0294CC7 +:10ECA0000021012007F064F8002800D0264C002045 +:10ECB00006F0A2FD002826D007F076FA002800D042 +:10ECC000224C0021002007F053F8002800D0204CEF +:10ECD0000021002006F064FD002824D1200070BD32 +:10ECE000002006F0E9FC012006F0C2FC002006F03E +:10ECF0009DFBE9F761FD3F230F4D00242A68D35C9B +:10ED0000002BCDD0BBE707F073F81223FF339842F6 +:10ED1000D2D10121002006F043FD002800D0074C8D +:10ED2000E9F74AFDC8E7054CD8E73F232A68D35CDA +:10ED3000012BB5D9AEE7C0463CF301080F0F1A010D +:10ED40002F0F1A012E0F1A014E0F1A013F0F1A0131 +:10ED50004F0F1A01F0B5DE4657464E464546E0B520 +:10ED6000038883B00400092B00D9ABE0C74A9B009D +:10ED7000D3589F468368002B46D0C268052A43D8E3 +:10ED800000224260C24A002112681078002804D094 +:10ED9000D06891685860BF48986019605178002920 +:10EDA00001D100F0F6FF906A116AD46A1861BA487E +:10EDB0005861506ADC61B94C1C629861D9609178E5 +:10EDC000002901D100F0E1FF116B5962916B99624A +:10EDD000B349D962516BD26B19635A63B14A9A63D2 +:10EDE00014E04388922B00D96FE0AF4ADB009B58B8 +:10EDF000002B6AD01B6883600023436006E08168B3 +:10EE0000002901D000F072FFA84B636003B03CBC46 +:10EE100090469946A246AB46F0BD4388A249D80029 +:10EE20000A185268551C50D0922B4ED841580029D0 +:10EE30004BD0A3680868134203D01D0045402A4206 +:10EE400043D1024013430B6000236360DEE7418837 +:10EE5000C2689548CD0043195B681E00164034D146 +:10EE60005F1C32D0922930D8295800292DD0A568AE +:10EE700008682B4303401A430A606660C6E7002314 +:10EE80004360C3E78A4B1B78002B01D100F023FFBE +:10EE90004388083B9BB2632B14D8864A9B00D35807 +:10EEA0009F468368022B01D100F019FF824B6360FB +:10EEB000ACE743882C3B9BB2452B03D87F4A9B0091 +:10EEC000D3589F467E4B6360A0E77D4B63609DE710 +:10EED00083681878072897D8597808F03DFA0023F6 +:10EEE000636093E78068431E9841C0B208F0D0FE8B +:10EEF000002363608AE7734B1A68BA23D15A126AF7 +:10EF0000CB005B1A9B181A68002AFCDA8022D968A9 +:10EF100052050A43DA6000225A605B68626075E756 +:10EF20008368002B01D100F08EFFE821664B674D0E +:10EF3000586889012840014359605A682A405A603C +:10EF40000023636062E783681A895968188807F0AC +:10EF500067FB60605AE7806806F00AFD0023636083 +:10EF600054E708F085FE002363604FE708F0D4F90A +:10EF7000002363604AE7806807F02EFC606045E785 +:10EF8000534B98461B88002B01D100F01EFF514DBA +:10EF900004E0002D01D100F08AFF013D06F068FD7C +:10EFA0000228F6D1002D01D100F081FF4A4B002745 +:10EFB0009B460123434E9A4607E03F2332680137C0 +:10EFC000D35C9F4201D900F019FF5346BB409BB26E +:10EFD000994643464A461B881342EED00221380028 +:10EFE00006F0C6FE002F03D037E1002DE5D0013D2D +:10EFF00007F0D0F80028F8D0002DDED0B122C020D4 +:10F000003149D2008B58800503438B5000239B4627 +:10F01000D3E72F4B002598460023424613802F4A02 +:10F02000284E1380284B92469946B123DB009B461D +:10F030002B4F0CE007F0A6F8002801D000F0ADFE41 +:10F040003F2332680135D35C9D4200D978E7002D1B +:10F05000F0D0280007F0E4F9EEE78368187802287A +:10F0600000D9D1E642011F4E12189200B518803522 +:10F070002D68197A002D01D100F0F8FE131D9B199F +:10F080000426B446033E0022B0463BE0442203106F +:10F09000A4B201082000890035008B004A008D00D1 +:10F0A0005F008F007400910040F30108FE0F1A0109 +:10F0B000A0B201086C220310F90F1A01FC230310FF +:10F0C000FF0F1A013CF3010800002640FF00FC0F6F +:10F0D000ACB1010840420F00FA0F1A01AEB10108AD +:10F0E000FFFFFFCFD8F70108032901D100F045FE4B +:10F0F000002901D100F039FE01320833954201D1D7 +:10F1000000F0B4FE0229EFD11F680F42F4D1D84BB2 +:10F1100063607BE683681878022800D974E6596832 +:10F12000CAB20F2A00D96FE61B7AD24E9A46430123 +:10F130001D18AD00771999463B0080331B68002BE2 +:10F140007ED075590122CD402A4201D000F090FFB7 +:10F1500015008D40012B73D9BA682A4201D000F006 +:10F1600085FF022B6CD03A692A4201D000F07CFF67 +:10F17000032B65D0BA692A4201D000F047FF042B67 +:10F180005ED04A461718BF00F7193A6A2A4201D0E2 +:10F1900000F084FF052B53D0BA6A2A4201D000F058 +:10F1A0007BFF062B4CD03A6B2A4201D000F06CFF5B +:10F1B000072B45D0BF6B2F4201D000F063FF082B17 +:10F1C0003ED084274743F7193F6C2F4201D000F00F +:10F1D00061FF092B34D084274743F719BA6C2A42C0 +:10F1E00001D000F055FF0A2B2AD03A6D2A4201D0F7 +:10F1F00000F04CFF0B2B23D0BA6D2A4201D001F056 +:10F2000029F80C2B1CD03A6E2A4201D000F087FF5F +:10F210000D2B15D0BF6E2F4201D000F07EFF0E2BBC +:10F220000ED084274743F7193A6F2A4201D000F0E5 +:10F2300072FF0F2B04D0BB6F2B4201D000F069FF8F +:10F2400000235246636008F085FC002800D0DBE50F +:10F25000DCE5002D00D1B0E6013D380007F0EAF80A +:10F260000028F6D0002D00D1A7E64A46824B1B8825 +:10F27000134201D100F02DFE804A81499446BB0023 +:10F2800063445A587F4802405A5000239B4694E6F4 +:10F290007D4D24262B78AF5D984601232B700023EB +:10F2A000AB55C368FF2B00D14AE6280003F02CFEC3 +:10F2B0006060002800D1A9E54346AF552B70A5E555 +:10F2C000714D24262B78AF5D984601232B70AB55EA +:10F2D000C368FF2B00D133E6280003F015FE606001 +:10F2E000002800D192E54346AF552B708EE5664D60 +:10F2F00023222B786F78984601232B7000236B70A4 +:10F30000037A2E79AB54023B5A4253412B71C368A6 +:10F31000FF2B00D114E6280003F0F6FD6060002802 +:10F3200000D173E543466F702B702E716EE5564D1C +:10F3300022222B786F78984601232B706B70037A0A +:10F340002E79AB545A4253412B71C368FF2B00D125 +:10F35000F6E5280003F0D8FD6060002800D155E5EF +:10F3600043466F702B702E7150E50122464B9A7107 +:10F3700082689A640023436048E5A426424DAB5D51 +:10F380002F7D984601232B758368AB55C368FF2BEF +:10F3900000D1D5E5280003F0B7FD6060002800D15A +:10F3A00034E543462F75AB5530E58668012E01D113 +:10F3B00000F0FBFD022E01D100F0CBFD334B1A68AB +:10F3C0003F23D35C9E4204D82F4D002E01D000F085 +:10F3D000CEFD2F4B636019E501232B4DEE79EB71C8 +:10F3E000C368FF2B00D1ABE5280003F08DFD606002 +:10F3F000002800D10AE5EE7108E58368002B01D1F1 +:10F4000000F063FD214A11683F228A5C934201D9D2 +:10F4100000F05BFD1C4D012B01D100F048FE0023E4 +:10F42000EE7AEB72E368FF2B00D189E5280003F048 +:10F430006BFD6060002800D1E8E4A368012B01D1D6 +:10F4400000F005FFEE72E1E400230F4DAE6E6F7A1F +:10F45000AB666B72C368FF2B00D171E5280003F027 +:10F4600053FD6060002800D1D0E46F72AE66CDE439 +:10F47000FE0F1A01D8F70108AEB1010800002640BE +:10F48000FC050000FFFFFFCFB0B101083CF301080D +:10F490002D0F1A01E94D6E7A002E01D100F033FDD7 +:10F4A000E74B4360B2E48268E44B1168D96670218F +:10F4B00090885852907902315854D079013158547B +:10F4C000108901315852907A02315854D07A013162 +:10F4D0005854908901315852907B02315854118A06 +:10F4E0007C2299520023636090E400234360836888 +:10F4F0001A68052A00D9E5E4D24992008A58CF4D0E +:10F5000097460123CD4D6E796B71C368FF2B00D1F7 +:10F5100016E5280003F0F8FC6060002800D175E4CF +:10F520006E7173E483681A68002A01D100F0C9FC87 +:10F53000C54908683F21415C8A4201D900F0C1FCFD +:10F540005B681F785E789D78D8781979BB4B012A63 +:10F5500001D100F0A9FD90229F5401329E54013246 +:10F560009D540132985401329954E9E4B34B5979CE +:10F57000002901D100F0BBFCB44B436046E4D72620 +:10F58000AE4DAB5D6F7F984601236B778368AB55BB +:10F59000C368FF2B00D1D3E4280003F0B5FC606002 +:10F5A000002800D132E443466F77AB552EE40023A8 +:10F5B00043608368052B00D984E4A54A9B00D35897 +:10F5C0009E4D9F46037A5626013B5A4253419B4D1E +:10F5D000AF5DAB5500234360C368FF2B01D1FFF73C +:10F5E00015FC2B7A002B01D1FFF710FC280003F04B +:10F5F0008BFC6060002801D1FFF708FCAF55FFF7D6 +:10F6000005FC202600238D4DAF5DAB55C368FF2B55 +:10F6100000D195E4280003F077FC6060002801D158 +:10F62000FFF7F4FBAF55FFF7F1FB20260123834DD5 +:10F63000AF5DAB55C368FF2B00D181E4280003F018 +:10F6400063FC6060002801D1FFF7E0FBAF55FFF7D6 +:10F65000DDFB836855265A1E9341784DAF5DAB554F +:10F66000C368FF2B00D16BE4280003F04DFC606001 +:10F67000002801D1FFF7CAFBAF55FFF7C7FB0023F6 +:10F680006E4DEE79EB71C368FF2B00D158E4280072 +:10F6900003F03AFC6060002801D1FFF7B7FBEE7180 +:10F6A000FFF7B4FBDA26654D8368AF5DAB550023E9 +:10F6B0004360AB7F002B01D1FFF7A8FBC368FF2B92 +:10F6C00001D1FFF7A3FB280003F01EFC60600028B7 +:10F6D00001D1FFF79BFBAF55FFF798FBD826574D9D +:10F6E0008368AF5BAB5300234360AB7F002B01D13A +:10F6F000FFF78CFBC368FF2B01D1FFF787FB2800C6 +:10F7000003F002FC6060002801D1FFF77FFBAF53DC +:10F71000FFF77CFBD626494DAB5D2F7F9846012332 +:10F720002B778368AB55C368FF2B01D1FFF708FC2B +:10F73000280003F0E9FB6060002801D1FFF766FBB9 +:10F7400043462F77AB55FFF761FBA3263B4DAB5DDF +:10F75000EF7C98460123EB748368AB55C368FF2B9D +:10F7600001D1FFF7EDFB280003F0CEFB606000281D +:10F7700001D1FFF74BFB4346EF74AB55FFF746FB58 +:10F78000A2262E4DAB5DAF7C98460123AB748368F7 +:10F79000AB55C368FF2B01D1FFF7D2FB280003F064 +:10F7A000B3FB6060002801D1FFF730FB4346AF7424 +:10F7B000AB55FFF72BFB0023436083681A68052ACB +:10F7C00001D9FFF77FFB234992008A581B4D9746CA +:10F7D0000023436083681A68052A01D9FFF772FB8A +:10F7E0001D4992008A58154D97460023436083684F +:10F7F000052B01D9FFF766FB184A9B00D3580F4D24 +:10F800009F46D5260D4D8368AF5DAB550023436001 +:10F81000EB7E002B01D1FFF7F9FAC368FF2B01D172 +:10F82000FFF7F4FA280003F06FFB6060002801D1B5 +:10F83000FFF7ECFAAF55FFF7E9FAC046B0B101089F +:10F840003E0F1A01142503103CF30108590F1A0149 +:10F850002C250310442503105C2503107425031088 +:10F86000D426F24D8368AF5DAB5500234360EB7E39 +:10F87000002B01D1FFF7CAFAC368FF2B01D1FFF7B4 +:10F88000C5FA280003F040FB6060002801D1FFF7B3 +:10F89000BDFAAF55FFF7BAFA0023E44DEE7EEB76E2 +:10F8A000C368FF2B01D1FFF74BFB280003F02CFBB3 +:10F8B0006060002801D1FFF7A9FAEE76FFF7A6FAFB +:10F8C0000123DA4DEE7EEB76C368FF2B01D1FFF703 +:10F8D00037FB280003F018FB6060002801D1FFF718 +:10F8E00095FAEE76FFF792FA0023D04D6E796B71A0 +:10F8F000C368FF2B01D1FFF723FB280003F004FBB3 +:10F900006060002801D1FFF781FA6E71FFF77EFA7F +:10F910000023C64D2E7A2B72C368FF2B01D1FFF74F +:10F920000FFB280003F0F0FA6060002801D1FFF718 +:10F930006DFA2E72FFF76AFA0123BC4D2E7A2B72F4 +:10F94000C368FF2B01D1FFF7FBFA280003F0DCFAB4 +:10F950006060002801D1FFF759FA2E72FFF756FABE +:10F960000023B24DAE7FAB77C368FF2B01D1FFF709 +:10F97000E7FA280003F0C8FA6060002801D1FFF719 +:10F9800045FAAE77FFF742FA0123A84DAE7FAB7779 +:10F99000C368FF2B01D1FFF7D3FA280003F0B4FAB4 +:10F9A0006060002801D1FFF731FAAE77FFF72EFA39 +:10F9B00000236E7E6B76E368FF2B01D1FFF726FAFA +:10F9C000280003F0A1FA6060002801D1FFF71EFAB9 +:10F9D000A368052B01D9FFF719FA954A9B00D35864 +:10F9E0009F4600232E7E2B76E5E70023EE7DEB7508 +:10F9F000E1E70023AE7DAB75DDE700236E7D6B751F +:10FA0000D9E70023AE7EAB76D5E7C5221B79AF5C84 +:10FA1000AB54C8239A46EE586B7E91469846C42351 +:10FA2000E85C06F055FA4B46EB5C8249D840E1F7BA +:10FA300033F95346E8506368002B01D0FFF7E6F92D +:10FA40004346002B01D1FFF7E1F9E368FF2B01D119 +:10FA5000FFF7DCF9280003F057FA6060002801D1B5 +:10FA6000FFF7D4F9A3681B68052B01D9FFF7CEF97E +:10FA7000714A9B00D3589F46BD221B79AF5CAB54A3 +:10FA8000C0239A46EE582B7E91469846BC23C7E782 +:10FA9000C4221879C823AF5CA854EE5899466B7EEF +:10FAA000984606F015FAC523EB5C6249D840E1F7A9 +:10FAB000F3F84B46E8506368002B01D0FFF7A6F936 +:10FAC0004346002B01D1FFF7A1F9E368FF2B01D1D9 +:10FAD000FFF79CF9280003F017FA6060002801D1B5 +:10FAE000FFF794F9A3681B68052B01D9FFF78EF97E +:10FAF000524A9B00D3589F46BC221879C023AF5C62 +:10FB0000A854EE5899462B7E984606F0E1F9BD239D +:10FB1000CAE7B4221879B823AF5CA854EE589946C6 +:10FB2000EB7D984606F0D4F9B523BDE7AC221879F1 +:10FB3000B023AF5CA854EE589946AB7D984606F0CA +:10FB4000C7F9AD23B0E7A5221879A823AF5CA85464 +:10FB5000EE5899466B7D984606F0BAF9A623A3E7BE +:10FB6000CC221879D023AF5CA854EE589946AB7ECE +:10FB7000984606F0ADF9CD2396E7B5221B79AF5C28 +:10FB8000AB54B8239A46EE58EB7D91469846B42381 +:10FB900046E7AD221B79AF5CAB54B0239A46EE58D2 +:10FBA000AB7D91469846AC233AE7A6221B79AF5C21 +:10FBB000AB54A8239A46EE586B7D91469846A523F0 +:10FBC0002EE7CD221B79AF5CAB54D0239A46EE587A +:10FBD000AB7E91469846CC2322E701236E7E6B765E +:10FBE000E368FF2B01D1FFF711F9280003F08CF92E +:10FBF0006060002801D1FFF709F9A368052B01D93E +:10FC0000FFF704F90E4A9B00D3589F4601232E7E2E +:10FC10002B76E5E70123EE7DEB75E1E70123AE7D71 +:10FC2000AB75DDE701236E7D6B75D9E7B0B10108D7 +:10FC30008C25031040420F00A4250310BC2503109F +:10FC4000D42503100123AE7EAB76C9E79E220121A5 +:10FC50002E7CAF5A29749B88AB52E368FF2B01D1ED +:10FC6000FFF7D4F8280003F04FF9A36860601B6821 +:10FC7000002800D1FEE1052B01D9FFF723F9D64A70 +:10FC80009B00D3589F469C220121EE7BAF5AE9731B +:10FC90009B88AB52E1E79A220121AE7BAF5AA97350 +:10FCA0009B88AB52D9E7982201216E7BAF5A6973CA +:10FCB0009B88AB52D1E7962201212E7BAF5A297344 +:10FCC0009B88AB52C9E7A02201216E7CAF5A6974B0 +:10FCD0009B88AB52C1E7C14B4360FFF797F8C368FD +:10FCE0001E2B01D0FFF7E2F8FFF72AF90023BC4DE5 +:10FCF000BC4E4360F02228003778E1F78FF907F017 +:10FD0000D3F900282DD13378002B0ED0606800285D +:10FD100001D0FFF77BF83070280003F0F5F8606041 +:10FD200000286FD03770FFF771F8EB78002B18D0F0 +:10FD3000EB79002B15D05523EB5C984607F0A0F922 +:10FD400000283FD105F036FE002803D005F03CFE28 +:10FD5000002837D105F01AFE404605F051FE002379 +:10FD60006360FEF76FFF6060D1E746461F68374269 +:10FD700001D0FFF7C1F9FFF7CAF966461F6837429D +:10FD800001D0FFF7B9F9FFF7C2F959621963FFF71C +:10FD90003DF800200021FFF710F8280006F028F8B1 +:10FDA000022833D0002D01D0FFF74AF94B465A46BE +:10FDB0009A5880233A409B05134359464A4653506C +:10FDC000FFF73EF9884B6360CBE706F0DBF90028CC +:10FDD00012D0864D02E0002D69D0013D06F0DAF91F +:10FDE0000028F8D0002D62D0B122C0238049D20073 +:10FDF00088589B0503438B5000239B465B466360FA +:10FE0000FFF704F801233370FFF700F80123AB403C +:10FE10009BB20193002D33D14B465A469A5880230A +:10FE20003A409B05134359464A4653500021280047 +:10FE300005F09EFF4346019A1B881A431300424671 +:10FE40001380FFF7FDF86A4B6A495A680A401B2184 +:10FE50000A435A605968684A114359605968114306 +:10FE6000596059680A435A60FFF76AF800236360D3 +:10FE700007F0A0FE002801D0FEF7C6FFFEF7C6FF80 +:10FE80005B4A03219446AB005C4863441A58120F46 +:10FE900011420FD01A58120F114001290AD08022A6 +:10FEA00056489205195839400A431A50BEE7544B38 +:10FEB0009B46A3E75246019912880A4351460A809D +:10FEC000EDE7504B6360FEF7A1FF4E4B6360FEF71A +:10FED0009DFF474AC02094464849BB0063445A5896 +:10FEE000800502435A5000239B46FFF766F882685C +:10FEF000106898625068D8629068D26818635A6334 +:10FF00006160FEF783FF012328006B7202F0C0FEE0 +:10FF1000E368A866FF2B01D1FFF712F8280002F072 +:10FF2000F3FF6060002800D0BAE0A523E85C002859 +:10FF300001D0FEF76BFF05F0CBFFA6232B49EB5C4E +:10FF400099404B081818E0F7A7FEA823E850FEF7E1 +:10FF50005DFF234DEB7A002B01D0FFF73AFA2A4BD5 +:10FF60001A683F23D35C012B01D8FFF732FA29002E +:10FF7000022002F0CBFE8C23E8508B3BEB72E3684F +:10FF8000FF2B01D1FEF7DCFF280002F0BDFF60600F +:10FF9000002800D190E0A368012B00D1A1E000234C +:10FFA0008C22EB72AB50FEF731FF0D4DAB7A002B7C +:10FFB00001D0FFF70EFA144B1A683F23D35C002BD5 +:10FFC00001D1FFF706FA2900012002F09FFE8023ED +:10FFD000AE72E850D3E7C046EC250310FF0F1A01BC +:10FFE000B0B10108A0B201086F0F1A0140420F0022 +:10FFF000000026400000FC0F003A0280FC050000D3 +:020000041002E8 +:10000000FA0F1A01BD0F1A013CF3010803235246EF +:10001000022A11D0032A1BD0002A01D0FFF710F9C1 +:1000200084254543DB005B19F3185B68DB0701D5CA +:10003000FFF706F9FEF7E8FE84254543DB005B1970 +:10004000F3185B68134201D0FFF7FAF8FEF7DCFE05 +:1000500084254543DB005B19F3185B685B0701D51A +:10006000FFF7EEF8FEF7D0FE0223D0E70123CEE73C +:100070000023CCE7052B01D9FEF7C8FEB04A9B0050 +:10008000D3589F460723C2E70623C0E70A23BEE7EB +:100090000923BCE70823BAE70523B8E70423B6E73A +:1000A000AE666E72FEF7B2FE8332FFF755FA00239A +:1000B000AE7AAB72FFF7B6F9A523E85C431E012BBD +:1000C00001D9FEF7A3FE05F003FFA6239D49EB5CD3 +:1000D00099404B081818E0F7DFFDA823E850FEF719 +:1000E00095FE00238022AB72AB50FEF78FFE6E763A +:1000F000FEF78CFE2E76FEF789FEEE75FEF786FE85 +:10010000AE75FEF783FE6E75FEF780FEAE76FEF7E7 +:100110007DFE0F237BE70E2379E70D2377E70C2382 +:1001200075E7EB7A002B05D02900022002F0EEFDE6 +:100130008C23E850A523E85C022801D0FEF766FE78 +:1001400005F0C6FEA6237F49EB5C99404B081818C2 +:10015000E0F7A2FDA823E850FEF758FEAB7A002B8B +:1001600005D02900012002F0D1FD8023E850A5230D +:10017000E85C012801D0FEF749FE05F0A9FEA623A0 +:100180007049EB5C99404B081818E0F785FDA823EF +:10019000E850FEF73BFE6B7A002B03D0280002F0FC +:1001A00077FDA866A523E85C002801D0FEF72EFEA7 +:1001B00005F08EFEA6236349EB5C99404B081818A6 +:1001C000E0F76AFDA823E850FEF720FEA523E85CCF +:1001D000052801D0FEF71AFE05F07AFEA62359493C +:1001E000EB5C99404B081818E0F756FDA823E8503F +:1001F000FEF70CFEA523E85C042801D0FEF706FEFE +:1002000005F066FEA6234F49EB5C99404B08181891 +:10021000E0F742FDA823E850FEF7F8FDA523E85CCF +:10022000032801D0FEF7F2FD05F052FEA623454952 +:10023000EB5C99404B081818E0F72EFDA823E85016 +:10024000FEF7E4FD9E232E74EF52FEF7DFFDAE7243 +:10025000FEF7DCFD0B23DAE6A0236E74EF52FEF707 +:10026000D5FD98236E73EF52FEF7D0FD96232E73C3 +:10027000EF52FEF7CBFD9C23EE73EF52FEF7C6FD67 +:100280009A23AE73EF52FEF7C1FDC423EF5404333B +:10029000EE50FEF7BBFDBC23EF540433EE50FEF7E7 +:1002A000B5FDB523EF540333EE50FEF7AFFDAD239C +:1002B000EF540333EE50FEF7A9FDA623EF540233AB +:1002C000EE50FEF7A3FDCD23EF540333EE50FEF7BF +:1002D0009DFDEE75FEF79AFDAE75FEF797FD6E7506 +:1002E000FEF794FDAE76FEF791FDB423EF54043390 +:1002F000EE50FEF78BFDAC23EF540433EE50FEF7C7 +:1003000085FDA523EF540333EE50FEF77FFDCC238C +:10031000EF540433EE50FEF779FDC523EF54033359 +:10032000EE50FEF773FDBD23EF540333EE50FEF79E +:100330006DFD6E76FEF76AFD2E76FEF767FDC04610 +:100340000426031040420F00F0B54E464546DE46F7 +:100350005746BA22E0B5D84B85B019689846019146 +:100360008A5A0B6A914692009F18FC6894466288EC +:1003700025889346E2683800A6680092092D00D9C6 +:10038000D9E0CE49AA008A589746002201925A46DF +:100390006280019A80216260009A4903E2608522AE +:1003A00052012580A660995000219B58FEF746FA1D +:1003B00005B03CBC90469946A246AB46F0BD002E27 +:1003C00001D001F0E7FABE4A0192E0E75A462C3A22 +:1003D00092B2452A00D906E3BA4992008A58974654 +:1003E000B94A1278002A01D101F0A4FA5A46083A13 +:1003F00092B2632A01D901F05CF8B44F9200BA5866 +:100400009746022E01D101F0A5FAB14A0192BEE74A +:10041000002E01D101F092FA009A052A00D990E04D +:10042000AC4A002112681778002F04D0D768916871 +:100430007760A94FB76031605178002901D101F090 +:1004400033FB116A976A88463761D16AA34F776197 +:10045000576AF161A24931624146B761F160917812 +:10046000002901D101F01AFB116B7162916BB1622D +:100470009C49F162516BD26B316372639A4AB263E9 +:100480000022019283E75A46922A01D901F05AFAD2 +:10049000D100964A8A58002A59D016680022019243 +:1004A00075E7924A009991465A46D20090464A44CE +:1004B00052680291114201D001F048FA571C43D012 +:1004C0005F46922F01D901F0E5FA474649467F5829 +:1004D000002F01D101F010FB3B68324302991A4012 +:1004E0000A433A606246019B1B6AD01800220192BF +:1004F0004DE75A467D4FD2009046BA185268511CBB +:1005000001D101F073FA5946922917D84146C959C9 +:100510008846002901D101F0E2FA0F68164201D1A4 +:1005200001F092FA390071400A4201D101F08CFACF +:100530006F4A01922BE76E4A019228E76C4A0192BA +:1005400025E75F4A019222E7694A01921FE7684A5C +:1005500001921CE706F0E0FE4346BA211A68505AA1 +:10056000136A00228000C018019210E74A46520028 +:100570004A44D7193A68002AFCDA8022F968520501 +:100580000A43FA6000227A607A6800220192FEE64D +:10059000584A5168002E01D101F0D7FA564F394020 +:1005A000BC46E827BF010F43576067465168394092 +:1005B000516000220192EAE632897168308806F0C3 +:1005C0002FF84346BA211A680190505A136A8000E6 +:1005D000C018DCE6300005F0CBF94346BA211A68B2 +:1005E000505A136A00228000C0180192CFE63000F2 +:1005F00006F0F2F84346BA211A680190505A136A7D +:100600008000C018C3E63D4B01931B88002B01D12D +:1006100001F0D9FA3A4B1F0004E0002F01D101F09C +:100620000FFB013F05F024FA0228F6D1BA46002F4D +:1006300001D101F005FB00230294A9465446314F35 +:10064000B2461D0008E043461A683F23D35C0135DB +:100650009D4201D901F09DFA0126AE40019BB6B240 +:100660001B883342EFD00221280005F081FB002DCA +:1006700003D09FE1002CE6D0013C05F08BFD002863 +:10068000F8D0002CDFD0B122C0201A49D2008B58FC +:10069000800503438B500027D5E7184B00271A002D +:1006A000019300231380184A1380124B9A46B123FA +:1006B000DB00994639E0C0463CF301081C260310D4 +:1006C000FE0F1A0144260310A0B201085C27031094 +:1006D000F90F1A01A4B201082000890035008B002F +:1006E0004A008D005F008F007400910040F3010804 +:1006F000FF0F1A0100002640FF00FC0FACB10108FB +:1007000040420F00FA0F1A01AEB1010805F03AFDA0 +:10071000002801D001F0CDF943461A683F23D35C8D +:1007200001379F4201D901F0EBF9002FEED03800DC +:1007300005F076FEECE732789446022A01D901F002 +:1007400077FA6746327A7F0101926744DC4ABF003C +:10075000D119894680218A46D1444946096889468B +:10076000002901D101F004FA04210390484604371E +:10077000BA188A46994600270294019903000DE0B1 +:10078000032901D101F079F9002901D101F068F9BB +:1007900001370832BB4201D101F0E8F90229EFD15B +:1007A00010680842F4D1C74A029C4B460398019254 +:1007B000EDE53778022F01D901F03EFA72689146D3 +:1007C000D2B20F2A01D901F047FA327A0292BC4A1A +:1007D00092467A010392D21992009446D44461461B +:1007E000803109680191002900D1A8E051468A585A +:1007F0004946CA40110001220A4201D001F052FCD0 +:1008000049468A400199012900D898E061468968E3 +:10081000114201D001F044FC0199022900D18EE07F +:1008200061460969114201D001F038FC01990329A0 +:1008300000D184E061468969114201D001F0F9FBE1 +:10084000019904297BD003998C46BC4461468900F8 +:100850008C46D4446146096A114201D001F07EFC05 +:10086000019905296BD06146896A114201D001F0D6 +:1008700073FC0199062962D06146096B114201D0CF +:1008800001F068FC0199072959D06146896B114232 +:1008900001D001F05DFC0199082950D084217943F1 +:1008A0008C46D4446146096C114201D001F091FCA0 +:1008B0000199092943D0842179438C46D444614667 +:1008C000896C114201D001F082FC01990A2936D0CD +:1008D0006146096D114201D001F077FC01990B29A5 +:1008E0002DD06146896D114201D001F0D1FE0199F0 +:1008F0000C2924D06146096E114201D001F0D0FECE +:1009000001990D291BD06146896E114201D001F079 +:10091000C5FE01990E2912D0842179438C46D44416 +:100920006146096F114201D001F0B6FE01990F290D +:1009300005D06146896F114201D001F0ABFE029AE9 +:100940004946380007F006F943461A68BA21136A87 +:10095000002801D001F08BF9505A00228000C01805 +:10096000019214E53278072A01D801F01DF9554AA1 +:1009700001920CE53000431E9841C0B207F088F99F +:100980004346BA211A68505A136A00228000C018E0 +:100990000192FCE407F06CF94346BA211A68505AF8 +:1009A000136A00228000C0180192F0E4002C00D1EC +:1009B00049E6013C280005F03DFD0028F6D0002C5A +:1009C00000D140E6404B1B88334201D101F05BF976 +:1009D0003E4A3F499446AB0063445A583D4800277D +:1009E00002405A502FE63C4A0192D0E43B4A9146DD +:1009F00052794946924600224A710192009AFF2A92 +:100A000000D1C4E4484602F07FFA0190002801D1E9 +:100A100001F067FA4B4652465A714346BA211A68AA +:100A2000505A136A8000C018B1E42C4A91461278DB +:100A30000292242292464A465146525C494603920B +:100A4000012257460A700022CA550192009AFF2AD5 +:100A500000D19CE4484602F057FA0190002801D1E9 +:100A600001F085F94B46029A03991A70D95543460D +:100A7000BA211A68505A136A8000C01887E4174ACE +:100A80009146127A4946924601220A720022019248 +:100A9000009AFF2A00D17AE4484602F035FA019024 +:100AA000002801D101F026FA4B4652461A724346FD +:100AB000BA211A68505A136A8000C01867E4C04609 +:100AC000D8F70108FE0F1A01AEB101080000264058 +:100AD000FC050000FFFFFFCFFF0F1A01B0B10108B6 +:100AE000F04A9146D27E494692460122CA760022B9 +:100AF0000192009AFF2A00D149E4484602F004FA24 +:100B00000190002801D101F085F94B465246DA7672 +:100B10004346BA211A68505A136A8000C01836E456 +:100B2000E04A9146D279494692460022CA71019222 +:100B3000009AFF2A00D12AE4484602F0E5F9019024 +:100B4000002801D101F02EF94B465246DA71434696 +:100B5000BA211A68505A136A8000C018FFF717FCB0 +:100B60003268002A01D101F09FF83F270199C95D41 +:100B70008A4201D901F01AFA7168894609788846D3 +:100B8000494649788C464946897801914946C97851 +:100B90000291494609798A46012A01D101F0EDFA0C +:100BA00090214746BF4A5754674601315754019F29 +:100BB0000131575493270299D155942157465754E0 +:100BC00000220192FFF7E3FBB64A914620229246AB +:100BD0004A465146525C5746029249460122CA553E +:100BE00000220192009AFF2A01D1FFF7D0FB48466C +:100BF00002F08AF90190002801D101F0C1F84B46BA +:100C00000299D9554346BA211A68505A136A80008E +:100C1000C018FFF7BCFBA34A9146202292464A46E1 +:100C20005146525C5746029249460022CA550192EB +:100C3000009AFF2A01D1FFF7AAFB484602F064F9A7 +:100C40000190002801D101F0BFF84B460299D95517 +:100C50004346BA211A68505A136A8000C018FFF739 +:100C600096FB904A9146A32292464A465146525CD0 +:100C7000494617004A46D27C02920122CA744A466B +:100C80005146565400220192009AFF2A01D1FFF7E3 +:100C90007EFB484602F038F90190002801D101F0AE +:100CA000CBF84B4652469F54029ABA21DA74434617 +:100CB0001A68505A136A8000C018FFF768FB002EAC +:100CC00001D100F0F9FF3F2201998A5CB24201D2C2 +:100CD00001F073F9734A9146012E01D101F084FAB3 +:100CE000D27A494692460022CA7200220192009AA4 +:100CF000FF2A01D1FFF74BFB484602F005F90190AE +:100D0000002801D101F067FA4346BA211A68505A07 +:100D1000136A8000C0184A465146012E01D101F0E5 +:100D20009FFAD172FFF733FB5E4A9146127849462B +:100D300092464A4652784F4602924A4612790392A8 +:100D400001220A704A702221F2B27A5451424A4179 +:100D50003A7100220192009AFF2A01D1FFF717FB96 +:100D6000484602F0D1F80190002801D101F07FF847 +:100D700052464346BA213A70029A7A70039A3A71FF +:100D80001A68505A136A8000C018FFF700FB454AE2 +:100D9000914612780292242292464A465146525C6B +:100DA00057464946039201220A70CA550022019211 +:100DB000009AFF2A01D1FFF7EAFA484602F0A4F8A8 +:100DC0000190002801D101F05BF84B46029A03998B +:100DD0001A70D9554346BA211A68505A136A8000CE +:100DE000C018FFF7D4FA2F4A914612784946924626 +:100DF0004A4652784F4602924A461279039201229D +:100E00000A7000224A702321F2B27A54023A514207 +:100E10004A413A7100220192009AFF2A01D1FFF75C +:100E2000B6FA484602F070F80190002801D100F0AF +:100E3000E8FF52464346BA213A70029A7A70039A02 +:100E40003A711A68505A136A8000C018FFF79FFA67 +:100E5000144A9146552292464A465146525C57469C +:100E600002923200511E8A414946CA55002201921F +:100E7000009AFF2A01D1FFF78AFA484602F044F8A7 +:100E80000190002801D101F008F84B460299D9558C +:100E90004346BA211A68505A136A8000C018FFF7F7 +:100EA00076FAC046B0B10108F04A9146927F4946B1 +:100EB000924601228A7700220192009AFF2A01D1EC +:100EC000FFF765FA484602F01FF80190002801D1AB +:100ED00000F0A9FF4B4652469A774346BA211A685A +:100EE000505A136A8000C018FFF751FADF4A914642 +:100EF000D279494692460122CA7100220192009A93 +:100F0000FF2A01D1FFF743FA484601F0FDFF0190A7 +:100F1000002801D100F022FF4B465246DA714346C9 +:100F2000BA211A68505A136A8000C018FFF72FFAC6 +:100F3000CE4A914652794946924601224A71002290 +:100F40000192009AFF2A01D1FFF721FA484601F0E9 +:100F5000DBFF0190002801D100F077FF4B4652469D +:100F60005A714346BA211A68505A136A8000C01851 +:100F7000FFF70DFABD4A9146926E494617004A4660 +:100F8000527A924600224A728A660192009AFF2A99 +:100F900001D1FFF7FCF9484601F0B6FF01900028A7 +:100FA00001D100F095FF4B4652469F665A72434668 +:100FB000BA211A68505A136A8000C018FFF7E7F97F +:100FC000052E01D901F0A6F9B20011001700A84AB8 +:100FD00052589746A54A9146127D1700A422924680 +:100FE0004A465146525C4946029201220A754A46D7 +:100FF0005146565400220192009AFF2A01D1FFF770 +:10100000C6F9484601F080FF0190002801D100F0A8 +:10101000C0FE4B46524602991F7599544346BA2169 +:101020001A68505A136A8000C018FFF7B0F90121FE +:101030008E4A9171966400220192FFF7A8F98B4ABB +:101040009146D42292464A465146525C17004A467F +:1010500056540021D27E0191002A01D1FFF797F961 +:10106000009AFF2A01D1FFF792F9484601F04CFFA0 +:101070000190002801D000F0A8FF4346BA211A6869 +:10108000505A136A8000C018FFF781F9774A9146D9 +:10109000927F4946924600228A770192009AFF2A5F +:1010A00001D1FFF774F9484601F02EFF01900028A6 +:1010B00001D100F09DFE4B4652469A774346BA2135 +:1010C0001A68505A136A8000C018FFF760F9674A1F +:1010D0003168D1667021B7885752B77902315754B9 +:1010E000F77901315754378901315752B77A0231B4 +:1010F0005754F77A01315754B78901315752B77BAA +:1011000002315754378A0231575200220192FFF7B9 +:101110003EF93268052A01D901F018FA554B9200C0 +:101120009B589F463268052A01D901F0EFF8524BCF +:1011300092009B589F464D4A9146927C1700A222EE +:1011400092464A465146525C4946029201228A74AE +:101150004A465146565400220192009AFF2A01D174 +:10116000FFF715F9484601F0CFFE0190002801D1A4 +:1011700000F021FE4B46524602999F749954434613 +:10118000BA211A68505A136A8000C018FFF7FFF896 +:10119000364A9146562292464A465146525C574636 +:1011A0000292F2B2013A51424A414946CA55009A66 +:1011B000FF2A01D100F06DFE0A7A002101918A42D6 +:1011C00001D1FFF7E4F8484601F09EFE01900028A7 +:1011D00001D000F00EFF4346BA211A68505A136A34 +:1011E0008000C018FFF7D3F8052E01D901F06DF883 +:1011F000B20011001700214A525897461B4A9146E7 +:10120000127A4946924600220A720192009AFF2AF7 +:1012100001D1FFF7BCF8484601F076FE01900028A6 +:1012200001D100F04CFE4B4652461A724346BA2199 +:101230001A68505A136A8000C018FFF7A8F8012EE8 +:1012400001D100F099FE022E01D100F065FE3F228F +:1012500001998A5CB24201D200F0B3FE002E01D0A7 +:1012600000F0C9FF064A0192FFF791F8B0B10108FA +:10127000EC280310042903101C290310342903103F +:101280002D0F1A01DB4A9146D82292464A46514612 +:10129000525A17004A4656520021927F0191002A65 +:1012A00001D1FFF774F8009AFF2A01D1FFF76FF818 +:1012B000484601F029FE0190002801D000F00BFF04 +:1012C0004346BA211A68505A136A8000C018FFF7C3 +:1012D0005EF8C84A9146127F1700D62292464A46C7 +:1012E0005146525C4946029201220A774A465146CB +:1012F000565400220192009AFF2A01D1FFF747F8C5 +:10130000484601F001FE0190002801D100F0CEFD19 +:101310004B46524602991F7799544346BA211A68A0 +:10132000505A136A8000C018FFF731F8B14A91464D +:10133000DA2292464A465146525C17004A465654B3 +:101340000021927F0191002A01D1FFF720F8009A35 +:10135000FF2A01D1FFF71BF8484601F0D5FD0190A7 +:10136000002801D000F0ABFE4346BA211A68505A5B +:10137000136A8000C018FFF70AF89E4A9146527F10 +:101380001700D72292464A465146525C494602927D +:1013900001224A774A465146565400220192009A49 +:1013A000FF2A01D1FEF7F3FF484601F0ADFD0190A1 +:1013B000002801D100F0A7FD4B46524602995F7705 +:1013C00099544346BA211A68505A136A8000C018CB +:1013D000FEF7DDFF874A9146D52292464A4651469E +:1013E000525C17004A4656540021D27E0191002AD1 +:1013F00001D1FEF7CCFF009AFF2A01D1FEF7C7FF0B +:10140000484601F081FD0190002801D000F08BFEDC +:101410004346BA211A68505A136A8000C018FEF772 +:10142000B6FF744A9146527A9246002A01D100F0E2 +:1014300073FC714A0192FEF7AAFF6E4A51790029A6 +:1014400001D000F02DFC316891627168D162B16801 +:101450001163F168516300220192FEF798FF326830 +:10146000052A01D901F0F8F8644B92009B589F4679 +:10147000604A9146D27E494692460022CA7601923F +:10148000009AFF2A01D1FEF782FF484601F03CFD99 +:101490000190002801D100F0E1FC4B465246DA767B +:1014A0004346BA211A68505A136A8000C018FEF7E2 +:1014B0006EFF534A0192FEF76AFF4E4BCD279946C5 +:1014C0004A46DB5D02933379D355D0239A464B4687 +:1014D00052469B5803934B469B7E0193CC234A462E +:1014E000D05C04F0F5FC4B46DB5D4649D840DFF7A5 +:1014F000D3FB4B4652469850019B002B01D100F084 +:101500006CFC009BFF2B01D100F002FE484601F06D +:10151000FBFC0190002801D100F011FE4346BA21E6 +:101520001A68505A136A32688000C018052A01D917 +:10153000FEF72DFF344992008A5897462D4BC52758 +:1015400099464A46DB5D02933379D355C8239A46C0 +:101550004B4652469B5803934B465B7E0193C423F4 +:10156000BDE7244A9146527E4946924601224A7678 +:10157000009AFF2A00D1A3E3484601F0C5FC019080 +:10158000002801D100F0B3FD4346BA211A68505A31 +:10159000136A8000C018052E01D9FEF7F8FE1B4A19 +:1015A000D2599746134A9146127E494692460122E5 +:1015B0000A76DDE70F4A9146D27D494692460122DE +:1015C000CA75D5E70B4A9146927D4946924601225B +:1015D0008A75CDE7074A9146527D494692460122D7 +:1015E0004A75C5E7034A9146927E494692460122D2 +:1015F0008A76BDE7B0B101083E0F1A014C290310ED +:10160000FF0F1A0140420F00642903107C290310C8 +:10161000D74BC8279946C4234A46D25C30799246B4 +:101620004A46D054D3590293537E019304F050FCA0 +:10163000C5234A46D35CCF49D840DFF72DFB4B4644 +:10164000D851019B002B01D100F0A5FC009BFF2B82 +:1016500001D100F029FD484601F056FC0190002818 +:1016600001D100F0A9FD4346BA211A68505A136A05 +:1016700032688000C018052A01D9FEF788FEBE49ED +:1016800092008A589746BA4BC0279946BC234A46CF +:10169000D25C307992464A46D054D3590293137E95 +:1016A000019304F015FCBD23C3E7B14BB82799465D +:1016B000B4234A46D25C307992464A46D054D35934 +:1016C0000293D37D019304F003FCB523B1E7A84B4B +:1016D000B0279946AC234A46D25C307992464A46B6 +:1016E000D054D3590293937D019304F0F1FBAD23C1 +:1016F0009FE79F4BA8279946A5234A46D25C30799D +:1017000092464A46D054D3590293537D019304F034 +:10171000DFFBA6238DE7964BD0279946CC234A467C +:10172000D25C307992464A46D054D3590293937E84 +:10173000019304F0CDFBCD237BE78D4A9146927D4A +:101740004946924600228A75009AFF2A00D1AFE2EC +:10175000484601F0D9FB0190002801D100F055FC6A +:101760004346BA211A68505A136A8000C018052EE1 +:1017700001D9FEF70CFE814AD25997467C4A914620 +:10178000527D4946924600224A75DDE7784A9146E5 +:10179000927E4946924600228A76D5E7744A91465F +:1017A000127E4946924600220A76CDE7704A91465B +:1017B000D27D494692460022CA75C5E76C4A9146D9 +:1017C000527E4946924600224A76BDE7684BBD27C5 +:1017D00099464A46DB5D02933379D355C0239A4636 +:1017E0004B4652469B5803934B461B7E0193BC23AA +:1017F00075E65F4BB52799464A46DB5D0293337920 +:10180000D355B8239A464B4652469B5803934B46B2 +:10181000DB7D0193B42362E6554BAD2799464A46DA +:10182000DB5D02933379D355B0239A464B4652463B +:101830009B5803934B469B7D0193AC234FE64C4B47 +:10184000A62799464A46DB5D02933379D355A823F0 +:101850009A464B4652469B5803934B465B7D0193F9 +:10186000A5233CE6424B99461B7C4A469A469E235A +:10187000D25A4946170001220A74B288CA52009B04 +:10188000FF2B00D120E2484601F03EFB01900028EA +:1018900001D100F035FC3368052B01D900F069FE59 +:1018A000374A9B00D3589F46314B9946DB7B4A46CB +:1018B0009A469C23D25A494617000122CA73B2881D +:1018C000CA52DCE72A4B99465B7B4A469A469823E4 +:1018D000D25A4946170001224A73B288CA52CEE74B +:1018E000234B99461B7B4A469A469623D25A494631 +:1018F000170001220A73B288CA52C0E71C4B9946EE +:101900005B7C4A469A46A023D25A494617000122D8 +:101910004A74B288CA52B2E7154B99469B7B4A4635 +:101920009A469A23D25A4946170001228A73B288EE +:10193000CA52A4E7134A0192FEF729FD124A019206 +:10194000FEF725FD0F4A0192FEF721FD0D4A019297 +:10195000FEF71DFD009F1E3F7A4257417F4239002E +:101960000A4A11400A4A944661440191FEF70FFD6C +:10197000B0B1010840420F0094290310AC290310B4 +:10198000C4290310FF0F1A01FE0F1A0107F0E5FE2C +:10199000F90F1A01D24BF0229A461B7831000293BC +:1019A000D04B18009946DFF739FB05F07DFB002886 +:1019B0003CD153461B78002B1CD00023524648468E +:1019C000137001F0A1FA5346029A01901A70002890 +:1019D00000D088E00123524613704346BA211A68AA +:1019E000505A136A8000C018FEF7D1FCBE4A01921B +:1019F000FEF7CDFC4B46DB78002B17D04B46DB794E +:101A0000002B13D055234A46D75C05F039FB00283C +:101A10000CD103F0CFFF002803D003F0D5FF00283E +:101A200004D103F0B3FF380003F0EAFFFDF70AF931 +:101A300001900028C1D04346BA211A68505A136A4F +:101A40008000C018FEF7A3FC43463A4032431A60B8 +:101A50006246019B1B6AD01800220192FEF797FC98 +:101A600001241068204201D0FEF792FE9F4A029C9A +:101A70004B4603980192FEF78AFC544610682042B8 +:101A800001D0FEF785FE994A029C4B4603980192CD +:101A9000FEF77DFC944A0192FEF779FC0022716208 +:101AA00031630192FEF773FC002100278846FEF7A0 +:101AB000D3FC380004F09CF902282AD0002F01D072 +:101AC000FEF72AFE53464A469A58894B49461A4021 +:101AD00080239B05134352465350FEF71DFE824A56 +:101AE0000192FEF754FC4346BA211A68505A136A11 +:101AF0008000C018FEF74BFC7B4A0192FEF747FCC2 +:101B0000BA21136A505A00228000C0180192FEF7D1 +:101B10003EFC0123BB409BB20293002F70D1534681 +:101B20004A469A58724B49461A4080239B051343F4 +:101B3000524653500021380004F01AF9019A0299D4 +:101B4000138819431180FEF7E7FD6A4F39401B27C0 +:101B500039435160576868490F43576057680F43CE +:101B60005760576839435160FEF723FD029C01918D +:101B70000199604606F01EF843461A68BA21136AB6 +:101B8000002862D0505A594A8000C0180192FEF7CE +:101B9000FEFB4D465646029C0197BA21505A136AE5 +:101BA0008000C018FEF7F3FB1000717805F0D4FB3D +:101BB0004346BA211A68505A136A00228000C0189E +:101BC0000192FEF7E4FB04F0DDFA002856D04B4FFB +:101BD00002E0002F34D0013F04F0DCFA0028F8D0F6 +:101BE00043461A68002F00D1E4E1B121C0234448E4 +:101BF000C90047589B053B43435000230193CCE762 +:101C00003F4A03219446BB003E4863441A58120FD2 +:101C1000114225D01A58120F1140012920D03948FD +:101C2000334A19581140802292050A431A5081E71D +:101C30002E4A0192FEF7ABFB2C4A0192FEF7A7FB5E +:101C400043461A68304B0193A7E7505A00228000A0 +:101C5000C0180192FEF79BFB244A0192FEF797FB06 +:101C60002A4A029912880A4328490A80D7E7505A1B +:101C70001E4A8000C0180192FEF789FB43461A688D +:101C80000023019389E71E4AC02094461D49AB00FA +:101C900063445A58800502435A500027FEF7D3FC8C +:101CA0001B4A0192FEF773FB1A4A0192FEF76FFB83 +:101CB00000220192FEF76BFB164A0192FEF767FBCA +:101CC00000220192FEF763FB4346BA211A68505A7C +:101CD000136A00228000C0180192FEF758FBC0462C +:101CE000A0B20108B0B10108FF0F1A01FE0F1A01DE +:101CF000FFFFFFCF0000FC0F003A028040420F00C0 +:101D000000002640FC050000FA0F1A01AEB10108E0 +:101D1000590F1A01BD0F1A0101234A464846537252 +:101D200000F0B6FF4B469866009BFF2B00D175E193 +:101D3000484601F0E9F80190002800D010E2A52300 +:101D40004A46D35C002B00D172E24346BA211A689E +:101D5000505A136A8000C018FEF719FB4346BA2197 +:101D60001A68505A136A8000C018FEF710FB4346E9 +:101D7000BA211A68505A136A8000C018FEF707FB90 +:101D80004346BA211A68505A136A8000C018FEF7F9 +:101D9000FEFA4346BA211A68505A136A8000C018E6 +:101DA000FEF7F5FA4346BA211A68505A136A8000C2 +:101DB000C018FEF7ECFA4346BA211A68505A136A63 +:101DC0008000C018FEF7E3FA4346BA211A68505A59 +:101DD000136A8000C018FEF7DAFA4346BA211A687F +:101DE000505A136A00228000C0180192FEF7CFFA01 +:101DF0004346BA211A68505A136A8000C018FEF789 +:101E0000C6FA4346BA211A68505A136A8000C018AD +:101E1000FEF7BDFA4346BA211A68505A136A800089 +:101E2000C018FEF7B4FA4346BA211A68505A136A2A +:101E30008000C018FEF7ABFA4346BA211A68505A20 +:101E4000136A8000C018FEF7A2FA4346BA211A6846 +:101E5000505A136A8000C018FEF799FA4346BA2117 +:101E60001A68505A136A8000C018FEF790FA434669 +:101E7000BA211A68505A136A8000C018FEF787FA10 +:101E80004346BA211A68505A136A8000C018FEF7F8 +:101E90007EFA00220192FEF77AFA4346BA211A68C6 +:101EA000505A136A8000C018FEF771FA4346BA21EF +:101EB0001A68505A136A8000C018FEF768FA434641 +:101EC000BA211A68505A136A8000C018FEF75FFAE8 +:101ED0004346BA211A68505A136A8000C018FEF7A8 +:101EE00056FA4346BA211A68505A136A8000C0183D +:101EF000FEF74DFA4346BA211A68505A136A800019 +:101F0000C018FEF744FA4346BA211A68505A136AB9 +:101F10008000C018FEF73BFAD94A9146D27A002ACF +:101F20005FD13F2201998A5C012A00D837E14946F6 +:101F3000022000F0EBFE8C234A46D0508B3BD3723C +:101F4000009BFF2B00D168E1484600F0DDFF0190C7 +:101F5000002800D152E10023012E00D183E149463F +:101F60008C22CB728B504346BA211A68505A136A9E +:101F70008000C018FEF70BFAC14A9146927A002AF7 +:101F800033D13F2201998A5C002A00D00BE1BD4A7F +:101F90000192FEF7FCF94346BA211A68505A136AB7 +:101FA00000228000C0180192FEF7F1F9B64A0192B2 +:101FB000FEF7EDF9B54B0193EFE5B34A0192FEF759 +:101FC000E6F9B04A0192FEF7E2F94B4652469F54B9 +:101FD0004346BA211A68505A136A8000C018FEF7A7 +:101FE000D6F9A84A0192FEF7D2F9A64A0192FEF765 +:101FF000CEF94B460299D9554346BA211A68505A30 +:10200000136A8000C018FEF7C2F94346BA211A6865 +:10201000505A136A8000C018FEF7B9F94346BA2136 +:102020001A68505A136A00228000C0180192FEF705 +:10203000AEF903220299022913D0032920D00029E6 +:1020400001D0FEF77CFC84317943D200521852440F +:102050005268D20701D5FEF772FC8D4A0192FEF755 +:1020600096F984217943D200521852445268029959 +:102070000A4201D0FEF763FC854A0192FEF787F918 +:1020800084217943D200521852445268520701D534 +:10209000FEF755FC7E4A0192FEF779F90222C9E764 +:1020A0000122C7E70022C5E74346BA211A68505A01 +:1020B000136A00228000C0180192FEF768F94B46AF +:1020C00052469F544346BA211A68505A136A8000F8 +:1020D000C018FEF75CF94B4652469F524346BA2160 +:1020E0001A68505A136A8000C018FEF750F9434628 +:1020F000BA211A68505A136A8000C018FEF747F9CF +:102100003368052B00D9F8E1624A9B00D3589F46FB +:102110004346BA211A68505A136A00228000C01838 +:102120000192FEF734F94B4652469F544346BA217A +:102130001A68505A136A8000C018FEF728F94346FF +:10214000BA211A68505A136A8000C018FEF71FF9A6 +:1021500007226FE706226DE705226BE7042269E795 +:102160004B4652469A665A724346BA211A68505AEA +:10217000136A8000C018FEF70AF984214746404AD6 +:102180005754674601315754019F013157548727EF +:102190000299D155882157465754FEF711FD394A07 +:1021A0000192FEF7F4F84946012000F0AFFD4A46DF +:1021B00080239672D050C3E64346BA211A68505A1B +:1021C000136A8000C018FEF7E2F80A2232E70922FB +:1021D00030E708222EE74346BA211A68505A136A9C +:1021E0008000C018FEF7D3F8927A49469246002242 +:1021F0008A72FEF77AFD224B994698E6A5234A4655 +:10220000D05C431E012B49D94346BA211A68505A63 +:10221000136A8000C018FEF7BAF84346BA211A685C +:10222000505A136A00228000C0180192FEF7AFF8DE +:10223000019803F04DFE4A46A6231749D35C994006 +:102240004B081818DEF728FDA8234A46D05043460D +:10225000BA211A68505A136A8000C018FEF797F81E +:102260009172FEF794F8494680228B728B50434658 +:10227000BA211A68505A136A8000C018FEF787F80E +:10228000B0B101082D0F1A01BD0F1A01FA0F1A0182 +:10229000FE0F1A01DC29031040420F0003F018FE64 +:1022A0004A46A623EA49D35C99404B081818DEF742 +:1022B000F3FCA8234A46D0504346BA211A68505A24 +:1022C000136A8000C018FEF762F8E24A0192FEF736 +:1022D0005EF8CD224946029F8F54039F03328F50F0 +:1022E000FEF755F84A4651465175FEF750F84A46F2 +:1022F00051469176FEF74BF84A4651465175FEF726 +:1023000046F84A4651469176FEF741F8D14A019285 +:10231000FEF73DF8CF4A0192FEF739F8C42249464C +:1023200057468F54029F04328F50FEF730F8A52392 +:102330004A46D05C04282FD04346BA211A68505A26 +:10234000136A8000C018FEF722F8A5234A46D05C25 +:10235000032838D04346BA211A68505A136A8000BD +:10236000C018FEF714F84B46DB7A002B06D049461E +:10237000022000F0CBFC8C234A46D050A5234A46CD +:10238000D05C022836D04346BA211A68505A136AE4 +:102390008000C018FDF7FBFF03F09AFD4A46A62314 +:1023A000AB49D35C99404B081818DEF775FCA8239D +:1023B0004A46D0504346BA211A68505A136A8000E0 +:1023C000C018FDF7E4FF03F083FD4A46A623A049A9 +:1023D000D35C99404B081818DEF75EFCA8234A46E8 +:1023E000D0504346BA211A68505A136A8000C01868 +:1023F000FDF7CDFF03F06CFD4A46A6239449D35C5C +:1024000099404B081818DEF747FCA8234A46D050DD +:102410004346BA211A68505A136A8000C018FDF763 +:10242000B6FF4B469B7A002B06D04946012000F0B0 +:102430006DFC80234A46D050A5234A46D05C012833 +:102440001FD04346BA211A68505A136A8000C01838 +:10245000FDF79DFF4B465B7A002B04D0484600F009 +:1024600017FC4B469866A5234A46D05C00281FD02F +:102470004346BA211A68505A136A8000C018FDF703 +:1024800086FF03F025FD4A46A6237149D35C994097 +:102490004B081818DEF700FCA8234A46D0504346E4 +:1024A000BA211A68505A136A8000C018FDF76FFFEE +:1024B00003F00EFD4A46A6236549D35C99404B08BC +:1024C0001818DEF7E9FBA8234A46D0504346BA2144 +:1024D0001A68505A136A8000C018FDF758FFA523E8 +:1024E0004A46D05C052811D04346BA211A68505A92 +:1024F000136A8000C018FDF74AFF4346BA211A68E4 +:10250000505A136A8000C018FDF741FF03F0E0FC49 +:102510004A46A6234E49D35C99404B081818DEF76B +:10252000BBFBA8234A46D0504346BA211A68505AEA +:10253000136A8000C018FDF72AFFC5224946029F92 +:102540008F54039F03328F50FDF721FF414A0192C0 +:10255000FDF71DFF4B4652465A74A0234A46D752F8 +:102560004346BA211A68505A136A8000C018FDF712 +:102570000EFF4346BA211A68505A136A354A800042 +:10258000C0180192FDF703FF4B465246DA739C23B5 +:102590004A46D7524346BA211A68505A136A8000F5 +:1025A000C018FDF7F4FE4B4652469A739A234A46EA +:1025B000D7524346BA211A68505A136A8000C0188D +:1025C000FDF7E5FE4B4652465A7398234A46D752CA +:1025D0004346BA211A68505A136A8000C018FDF7A2 +:1025E000D6FE4B4652461A7396234A46D752434666 +:1025F000BA211A68505A136A8000C018FDF7C7FE46 +:102600004A4651465176FDF7C2FE4A46514611767A +:10261000FDF7BDFE4A465146D175FDF7B8FE4A4664 +:1026200051469175FDF7B3FE4A4651465176FDF786 +:10263000AEFE4A4651461176FDF7A9FE4A4651467E +:10264000D175FDF7A4FE4A4651469175FDF79FFEF0 +:1026500040420F00FF0F1A01364A0192FDF797FE24 +:102660004B4652461A749E234A46D7524346BA21D5 +:102670001A68505A136A8000C018FDF788FECC22F1 +:10268000494657468F54029F04328F50FDF77FFE14 +:102690000B22CFE40F22CDE40E22CBE40D22C9E4BD +:1026A0000C22C7E4BD224946029F8F54039F033288 +:1026B0008F50FDF76CFEB5224946029F8F54039F51 +:1026C00003328F50FDF763FEAD224946029F8F54BF +:1026D000039F03328F50FDF75AFEA6224946029F00 +:1026E0008F54039F02328F50FDF751FEBC224946A2 +:1026F00057468F54029F04328F50FDF748FEB42294 +:10270000494657468F54029F04328F50FDF73FFED3 +:10271000AC22494657468F54029F04328F50FDF732 +:1027200036FEA522494657468F54029F03328F50EA +:10273000FDF72DFEFF0F1A019322574BD200991877 +:10274000002230B583B01A6008338B42FBD1534B63 +:102750005349196053499960534919615349996123 +:10276000534919625349996253491963534999630B +:1027700053491964534908684021415C042900D831 +:1027800087E0514A05399A640A00511E8A414F492F +:1027900052420A401A654268842511000831996541 +:1027A0004B49802419664B4959664B4999664B49F8 +:1027B00019674B498C46012162449A6700224942BD +:1027C000595104355A510435595104355A5104357B +:1027D000595104355A510435595104355A5104356B +:1027E000595104355A510435595104355A5104355B +:1027F000595104355A510435595104355A5104354B +:10280000595104355A510435595104355A5104353A +:10281000595104355A510435D9671A515951043563 +:102820005A510435595104355A510435595104351A +:102830005A510435595104355A5104355951294BCF +:102840000631FF315A5084315A50852149018C4656 +:1028500080211A51036A490363449960694604233D +:102860000B80038F684605334B801F49019204F0AB +:1028700015FB002800D001BE6B4600229B5E002B9A +:1028800005DB1F221A4001239340184A136003B04E +:1028900030BD9A6400227DE744F3010840F301084B +:1028A0000800264000072640040726400807264067 +:1028B0001007264084032640880326408C032640C8 +:1028C000900326403CF301089403264098032640D9 +:1028D0000400264000FF03F048052640440526403A +:1028E00060F00000D8F701084903021000E100E0A1 +:1028F000F0B585B014006A4610802D4A029401920A +:102900006A46518007280BD0052806D1002904D13A +:102910000393002C0BD1274800E0274805B0F0BDF9 +:10292000FF2368460393FCF715FA0020F6E7234ED1 +:10293000234D0191F022210030002F78DEF76EFB4D +:1029400004F0B2FB002828D12B78002B0AD0019884 +:102950000028E3D12870300000F0D6FA002823D0F8 +:102960002F70DBE7F378002B17D0F379002B14D00E +:102970005523F45C04F084FB002812D103F01AF80C +:10298000002803D003F020F800280AD102F0FEFF4F +:10299000200003F035F800230193FCF753F9019070 +:1029A000D6E7084B0193F8E701232B70B6E7C04642 +:1029B000FC0F1801FE0F1A01FF0F1A01B0B1010838 +:1029C000A0B201086F0F1A01A52310B50400C05C66 +:1029D00003F07EFAA62302000120E35C9840400841 +:1029E0008018D84010BD000010B5040003F05CFD55 +:1029F000002806D10449200003F0B8FD002800D1CA +:102A000010BD0248FCE7C04610270000FD0F1A0168 +:102A100070B50400150002F0C3FE00280AD1290099 +:102A2000200002F0F3FE002804D1200002F05EFE38 +:102A3000002800D0004870BDFD0F1A01022310B518 +:102A40003E245B4213604C4B1B681C5D844205D9DD +:102A5000052803D8494C800020588746484810BDB7 +:102A6000087C0028FAD09E20085A022819D0022893 +:102A700062D91221FF31884271D01421FF3188427E +:102A800060D088235B0098424ED002235B421360E3 +:102A90000020E4E7487C0028E0D0A020085A022863 +:102AA000E5D18B6AF3E7087B0028D7D0487A002865 +:102AB0005AD07A20085C022856D08B6E0020136012 +:102AC000CDE7887B0028C9D03F20185C01282ED98B +:102AD000C87A00282BD09420085C022827D08C23A9 +:102AE000CB5800201360BAE7C87B0028B6D09C20E2 +:102AF000085A0228BBD1D4E7487B0028AED03F203B +:102B0000185C00280BD0887A002808D08820085C40 +:102B1000022804D08023CB58002013609FE7982020 +:102B2000085A0228A3D1BCE7FA23DB01AFE79A20B9 +:102B3000085A02289BD1B4E7002813D00128A4D159 +:102B40008B6CA4E741215B5C013B591E8B410D4915 +:102B50005B420B40802109028C46634497E7802347 +:102B60001B0294E7084B92E79620085A022800D0EF +:102B70007DE78B6A8BE7C0463CF30108F42903101C +:102B8000FE0F1A01FE7FFFFF00127A0000B5052834 +:102B90000ED83C4B80001B589F461222FF329342B6 +:102BA00062D01422FF3293424FD0033A934245D071 +:102BB000354800BD0B7C002BFAD09E23CB5A032B4B +:102BC00014D0032BE9D8012B55D00020012BF0D9CC +:102BD0004879434258412C4B40421840E9E74B7C2E +:102BE000002BE5D0A023CB5A032BEAD12123C85CCC +:102BF00043425841244B40421840DAE70B7B002BFC +:102C0000D6D09623CB5A032BDBD1EFE78B7B002B5F +:102C1000CED09A23CB5A032BD3D1E7E7CB7B002B23 +:102C2000C6D09C23CB5A032BCBD1DFE74B7B002BA9 +:102C3000BED09823CB5A032BC3D1D7E7C8794342E0 +:102C40005841114B40421840B3E72023CB5C002B86 +:102C5000AED00E4B1A684123D05C0138431E984118 +:102C6000094B40421840A4E7087A43425841064BBA +:102C7000404218409DE7887943425841024B404208 +:102C8000184096E70C2A0310FE0F1A013CF30108C6 +:102C9000962310B5C35A0400022B31D00CD912224E +:102CA000FF32934216D01422FF3293420CD0033AE3 +:102CB000934220D0002010BD002B1FD0012BF9D152 +:102CC000836C9A1C08D1F5E70E4B1A684123D35C3C +:102CD000012BEFD180231B027022A15A0020002972 +:102CE000E9D0E06E5843DDF7D7FF7323E35C002B98 +:102CF000E1D04008DFE7FA23DB01EDE7024BEBE729 +:102D0000836ADEE73CF3010800127A00030010B585 +:102D10000020002B1DD03F24464A1268145D9C42BF +:102D200017D3012B16D0022B13D19833CB5A022B79 +:102D300000D16AE042D91224FF34A34200D16EE0F0 +:102D40001424FF34A34262D088225200934241D01F +:102D5000002010BD9733CB5A022B54D014D9122423 +:102D6000FF34A3423ED01424FF34A34236D088223D +:102D700052009342ECD184238522CB5C885C0132E3 +:102D80008C5CFA22D2010CE0002B34D0012BDFD175 +:102D90008A6C842385208624CB5C085C0C5D911CA6 +:102DA000D6D00028D5D0002CD2D053430100180033 +:102DB000DDF772FF2100DDF76FFFCAE7002B30D08F +:102DC000012BC5D18A6C902391209224CB5C085CA6 +:102DD0000C5DE4E790239122CB5CCFE74123D35CE9 +:102DE000012BB6D184238522CB5C885C01328C5CBC +:102DF00080221202D5E785228423885C01328C5C14 +:102E0000CB5C0D4ACDE78A6AC3E78A6ADBE74123D8 +:102E1000D35C012B9DD18F33CB5C9122E5E79023CE +:102E2000FAE791229023885C01328C5CCB5C024AE9 +:102E3000B7E7C0463CF3010800127A00F8B503007A +:102E40000C00012914D09A22C17A865A0E3A85586C +:102E50000732877B825C0020002908D0002F05D034 +:102E6000012E3CD0002E16D0022E0DD01E48F8BDEB +:102E70009822817A865A183A85580732477B825CB5 +:102E800000200029EAD1F2E71848996A8446614493 +:102E900017488142EAD851424A41164952420A40F3 +:102EA00015498C4619796244002912D09542DDD328 +:102EB000124A9542DAD819002000FFF727FF281A96 +:102EC000454268410E4B40421840074B9C466044C7 +:102ED000CDE79542CAD30B4A9542ECD9C6E70348E1 +:102EE000996C84466144D3E7FE0F1A0100F7C2FFD4 +:102EF00000879303389C1C00E81FA20080F0FA02B0 +:102F000002F0E5FE80D1F008F0B5CE46474680B528 +:102F1000040089B0002816D0A5233E220B4EC35CC6 +:102F200031688A5C9A4206D8094D280009B00CBC69 +:102F300090469946F0BD052B01D900F0B9FC054A31 +:102F40009B00D3589F46044DEFE7C0463CF3010871 +:102F50009F0F1A01242A0310FE0F1A01037C002B75 +:102F600000D14DE29E23C35A022B00D1F5E112227B +:102F7000FF32934200D1CFE1012B00D1B1E102F049 +:102F800077FD02281AD06379002B17D0B54AA36ABF +:102F90009446B54A6344934200D91FE2E36A013B79 +:102FA000632B00D91CE2236BB04A013B934200D94A +:102FB00030E2636B013B934200D95FE2A379002BBF +:102FC0000CD02279A16C002A00D1F5E1A84A9142E7 +:102FD00000D940E2E26C002A00D189E2227B002A7B +:102FE00010D03E2231688A5C002A33D09622A25A41 +:102FF000032A00D1C5E200D91CE2012A00D1C7E2B0 +:1030000000D9E2E2627B002A10D03E2231688A5C5D +:10301000012A0BD99822A25A032A00D191E200D9A1 +:10302000FAE1012A00D187E200D97FE2A27B002ADF +:1030300010D03E2231688A5C022A0BD99A22A25A09 +:10304000032A00D1E8E200D907E2012A00D1F0E228 +:1030500000D9E8E2E27B002A10D03E2231688A5C87 +:10306000032A0BD99C22A25A032A00D12EE300D9AD +:103070000AE2012A00D138E300D92FE3227C002A9A +:1030800010D03E2231688A5C042A0BD99E22A25AB3 +:10309000032A00D152E300D919E2012A00D15CE3EE +:1030A00000D953E3627C002A10D03E2231688A5C4A +:1030B000052A0BD9A022A25A032A00D11BE300D96A +:1030C000F3E1012A00D1FBE200D9F2E203F05AF861 +:1030D000002854D1637A002B51D0237B002B00D1E0 +:1030E00036E29623E35A022B00D188E300D931E27D +:1030F000002B0AD0012B00D083E3A36C5D4A9446D9 +:103100005D4A6344934200D9CFE32379002B00D179 +:10311000ACE25A4AA36E9446594A6344934200D99A +:1031200089E3E36E574A013B934200D989E3702358 +:10313000E35A554A013B9BB2934200D97EE3722386 +:10314000E35C042B00D98EE37422504BA25A9A42BE +:1031500000D98BE37622A25C0F2A00D993E3772271 +:10316000A25C0F2A00D997E37821494A615A91421B +:1031700000D997E37C22A25A9A4200D98FE33F25D7 +:1031800033685B5D002B09D0A27A002A00D0F1E2FF +:10319000012B03D9E37A002B00D010E3237F002B0F +:1031A00015D0D623E35C012B00D137E3002B00D1EF +:1031B0002DE3032B00D027E32023E35C002B00D179 +:1031C00064E341233268D35C012B00D051E3637D7B +:1031D000002B45D0402233689A5C002A40D0A522BB +:1031E000A55C673A9B5C9D423AD221002800FFF71C +:1031F000CDFC002834D1052D00D93DE3254AAB0094 +:10320000D3589F46037B002B00D1FDE09623C35A81 +:10321000AAE6437B002B00D1F4E09823C35AA3E62F +:10322000437C002B00D1F3E0A023C35A9CE6837BB0 +:10323000002B00D1EAE09A23C35A95E6C37B002B0A +:1032400000D1DBE09C23C35A8EE6237C002B00D107 +:1032500012E39E23E35A88225200934200D047E3B0 +:103260000D4D62E600DC0BFFC0EA2101E703000020 +:1032700080F0FA0218FCFFFF18DDF50500CA91FE88 +:1032800080BA8C01FEFF0300FE1F0000FF0100005A +:10329000FF1F00003C2A03109F0F1A01237B002B05 +:1032A00000D1E9E29623E35AD5E7A37B002B00D1B6 +:1032B000E2E29A23E35ACEE7637B002B00D1DBE204 +:1032C0009823E35AC7E7E37B002B00D1D4E29C2389 +:1032D000E35AC0E7637C002B00D1CDE2A023E35A80 +:1032E000B9E7BD4B1B68002B7ED01A78002A73D03B +:1032F0005A68A16C8A4265D19A68E16C8A4279D198 +:10330000DB68226D934200D0DFE05423E35C102B96 +:1033100000D134E6B14D08E6AF4B1B68002B65D0F9 +:103320009A78002A54D05622D978A25C91424DD185 +:103330001A6BA16D8A425BD15A6BE16D8A4200D053 +:103340009EE09A6B216E8A4200D0D5E0DB6B626E04 +:10335000934200D113E6A24DE7E59F4B1B68002B7B +:1033600040D05A78002A35D01A69A16A8A422BD1F6 +:103370005A69E16A8A423FD19A69216B8A4200D038 +:1033800080E0DA69616B8A4200D0B3E01A6AA16B0F +:103390008A4200D03EE15A6AE16B8A4200D023E2C1 +:1033A0009A6A216C8A4200D057E2DB6A626C9342CF +:1033B00000D1E4E58B4DB8E58B4A914200D809E68F +:1033C0008A4DB2E5854DB0E5864DAEE5844DACE560 +:1033D000834DAAE5834DA8E5804DA6E5844DA4E57F +:1033E000834DA2E57F4DA0E57C4D9EE57C4D9CE59F +:1033F0007B4D9AE5794D98E57A4D96E57D4D94E5BE +:103400007C4D92E57B4D90E57A4D8EE5794D8CE5CE +:10341000784D8AE5764D88E51220FF3082427FD0D4 +:103420001420FF3082426FD0882149008A4265D043 +:10343000714D7AE51220FF30824200D1BFE01420A6 +:10344000FF30824200D1AEE0882149008A4200D19B +:10345000A3E06A4D69E5654D67E51220FF308242C1 +:1034600000D1FDE01420FF30824200D1ECE0882141 +:1034700049008A4200D1E1E0614D56E55C4D54E5DA +:10348000574D52E5574D50E51220FF30824200D192 +:103490004DE11420FF30824200D13BE188214900F8 +:1034A0008A4200D12FE1574D3FE51223FF339A4264 +:1034B00000D1F7E01423FF339A4200D1E6E0033B4A +:1034C0009A4200D1DCE0504D2FE5444D2DE512200D +:1034D000FF30824200D16BE11420FF30824200D1E4 +:1034E0005AE1882149008A4200D13CE1474D1CE560 +:1034F0003E4D1AE53B4D18E5394D16E5E279002AB7 +:1035000000D093E53C4D10E52022A25C002A00D1BA +:103510006DE141228A5C012A00D187E5364D04E540 +:10352000227A002A00D081E5334DFEE46279002A38 +:1035300000D07BE5304DF8E4002B00D076E52E4D31 +:10354000F3E42122A25C002A00D06FE52A4DECE4CE +:103550002F4DEAE488225200934200D251E1122218 +:10356000FF32934200D8D0E51422FF32934200D0BC +:1035700047E141233268D35C012B00D1C5E5244DDE +:10358000D3E42122A25C002A00D03BE51B4DCCE411 +:10359000002B00D036E5194DC7E4E279002A00D0AF +:1035A00030E5164DC1E42022A25C002A00D13CE1A6 +:1035B00041228A5C012A00D124E5104DB5E4227A2B +:1035C000002A00D01EE50D4DAFE46279002A00D03C +:1035D00018E50A4DA9E4C046A4B20108570F1A0124 +:1035E000560F1A01580F1A0100E1F505EE0F1A01E6 +:1035F000EF0F1A019F0F1A01DE0F1A01DF0F1A01D8 +:10360000DD0F1A01DC0F1A01DA0F1A01DB0F1A01A4 +:10361000CF0F1A01A84D88E42122A25C002A00D015 +:1036200018E5A64D81E46279002A00D012E5A34D89 +:103630007BE4002B00D00DE5A04D76E4E279002A72 +:1036400000D007E59D4D70E42022A25C002A00D145 +:10365000EEE041228A5C012A00D1FBE4974D64E44C +:10366000227A002A00D0F5E4944D5EE4944AA36ED9 +:103670009446944A6344934200D852E5924D54E4F0 +:10368000E379002B00D021E5904D4EE42023E35C4C +:10369000002B00D1DEE04123CB5C012B00D115E5EE +:1036A0008A4D42E4237A002B00D00FE5874DFFF7C7 +:1036B0003CFC6379002B00D008E5844DFFF735FC16 +:1036C000002B00D002E5814DFFF72FFC2122A25CE8 +:1036D000002A00D0D2E47E4DFFF727FC6279002A51 +:1036E00000D0CBE47A4DFFF720FC002B00D0C5E4DE +:1036F000774DFFF71AFC2123E35C002B00D0E5E4B3 +:10370000724DFFF712FCE279002A00D0B6E4704D4A +:10371000FFF70BFC2022A25C002A00D197E0412297 +:103720008A5C012A00D1A9E4694DFFF7FEFB227AE9 +:10373000002A00D0A2E4664DFFF7F7FB2122A25C2D +:10374000002A00D0AEE4634DFFF7EFFB6279002A58 +:1037500000D0A7E45F4DFFF7E8FB002B00D0A1E409 +:103760005C4DFFF7E2FBE279002A00D09AE4594D64 +:10377000FFF7DBFB012002F053FE3368002839D14C +:103780005D5D002D6CD001212000FFF757FB002864 +:1037900075D0514DFFF7C9FB2022A25C002A53D0FF +:1037A00041228A5C012A00D17CE44A4DFFF7BDFB2F +:1037B000227A002A00D075E4464DFFF7B6FB0220BE +:1037C00002F02EFE002800D0E8E43F233268D35CEC +:1037D000012B5ED902212000FFF730FB002800D129 +:1037E000DCE43E4DFFF7A1FB334DFFF79EFB3C4D64 +:1037F000FFF79BFB5B5D012B00D9CBE4CEE4A36A12 +:103800007CE4314DFFF791FB364DFFF78EFBE379FA +:10381000002B00D0DBE4334DFFF787FB237A002B2E +:1038200000D0D4E42F4DFFF780FB2F4DFFF77DFB39 +:10383000224DFFF77AFB244DFFF777FB224DFFF770 +:1038400074FB214DFFF771FB224DFFF76EFB204DFE +:10385000FFF76BFB1D4DFFF768FB174DFFF765FB8F +:103860001D4DFFF762FB184DFFF75FFB164DFFF78D +:103870005CFB1C4DFFF759FB1C4DFFF756FB012D60 +:1038800000D987E48AE4104DFFF74FFB154DFFF791 +:103890004CFB124DFFF749FB0B4DFFF746FB0A4D62 +:1038A000FFF743FB084DFFF740FB074DFFF73DFBDC +:1038B0000E4DFFF73AFBC046580F1A01DD0F1A01F3 +:1038C00000CA91FE00AB8704CF0F1A01DA0F1A016C +:1038D000DC0F1A01DB0F1A01BF0F1A01BE0F1A010C +:1038E000DE0F1A01AF0F1A01DF0F1A019F0F1A0125 +:1038F0001422FF32934200D1B2E4032B00D1AFE493 +:1039000003AA28002100FFF799F8954B039A0500B8 +:103910009A4200D8A4E4002D00D0A1E4A823E258E4 +:10392000002A00D19CE4023BE15C8E4B53438E4A5B +:10393000934200D994E4032900D991E4A37D002B9C +:1039400022D0402233689A5C012A1DD9AC22A05CA7 +:103950006E3A9B5C984201D300F02DFF2100FFF7E7 +:1039600015F9002801D000F026FFAD23E25C0333F7 +:10397000E1587C4B4B437C498B4201D900F01BFF43 +:10398000032A01D900F017FFE37D002B22D040224B +:1039900033689A5C022A1DD9B422A05C763A9B5CFB +:1039A000984201D300F00AFF2100FFF7EFF800284A +:1039B00001D000F003FFB523E25C0333E158694B0B +:1039C0004B4369498B4201D900F0F8FE032A01D923 +:1039D00000F0F4FE237E002B22D0402233689A5C54 +:1039E000032A1DD9BC22A05C7E3A9B5C984201D37D +:1039F00000F0E7FE2100FFF7C9F8002801D000F031 +:103A0000E0FEBD23E25C0333E158564B4B4356497D +:103A10008B4201D900F0D5FE032A01D900F0D1FE76 +:103A2000637E002B22D0402233689A5C042A1DD981 +:103A3000C422A05C863A9B5C984201D300F0C4FE8D +:103A40002100FFF7A3F8002801D000F0BDFEC52338 +:103A5000E25C0333E158434B4B4343498B4201D96A +:103A600000F0B2FE032A01D900F0AEFEA37E002BC7 +:103A700022D0402233689A5C052A1DD9CC22A05C52 +:103A80008E3A9B5C984201D300F084FE2100FFF740 +:103A90007DF8002801D000F07DFECD23E25C0333E9 +:103AA000E158304B4B4330498B4201D900F072FE54 +:103AB000032A01D900F06EFEE37E002B1FD0D42331 +:103AC000E35C326898463E23D35C984545D221009A +:103AD0004046FFF75BF800283FD1D527E35D042B74 +:103AE0003BD803AA21004046FEF7A8FF002834D1A6 +:103AF000E35D039ADA4013001C4A93422DD8637F9A +:103B0000002B39D0D723E35C002B01D100F0F3FD6B +:103B1000012B01D000F0F7FD237F002B01D100F035 +:103B20000AFED623E35C012B01D100F0E4FD002B5B +:103B300001D100F038FE032B01D000F031FE20232C +:103B4000E35C002B01D100F028FE41233268D35CF6 +:103B5000012B11D0064DFFF7E8F9064DFFF7E5F907 +:103B60003F0D030040420F0080D1F0080084D717BA +:103B70008E0F1A018F0F1A01A37C002B16D0637DC4 +:103B8000002B01D100F0DFFDA823E358002B01D169 +:103B900000F0D4FDD5485843A223E15C0131DDF7A4 +:103BA0007BF8D34B984201D900F0CDFDE37C002B8C +:103BB00001D100F0B8FD637D002B01D100F0B3FD11 +:103BC000A823E358002B01D100F0B0FDC7485843AB +:103BD000C84B984201D900F0A6FDA323E15C013156 +:103BE000DDF75AF82379002B01D100F097FDC24B85 +:103BF000984201D900F097FDA37F002B1DD0D82358 +:103C00000222E35AFF32934201D100F0ADFD01D907 +:103C100000F0A4FD002B01D000F09BFD0127B74868 +:103C2000DA23E15C0131DDF737F83900DDF734F8EC +:103C3000AF4B984201D900F089FD237D002B01D1C3 +:103C400000F064FDE37C002B01D100F05FFDA823B0 +:103C5000E358002B01D100F05CFDA4485843A54B6C +:103C6000984201D900F05FFDA323E15C0131DDF74B +:103C700013F8A423E15C0131DDF70EF8A04B984264 +:103C800001D900F043FD9621002003F047FA237884 +:103C9000002B00D03EE141233268D35C012B00D1E0 +:103CA00088E1984B227A1F6808231F4000D1F3E077 +:103CB000002A00D1AFE1237F002B0DD0D623E75C93 +:103CC00001F0CCFC874207D004F03CF8002800D07B +:103CD00017E2380001F0AEFC01F0CAFE6379022859 +:103CE00000D130E1002B00D09BE1A379002B00D064 +:103CF00051E1A37C002B00D048E1E37C002B00D0F5 +:103D00003FE1237D002B00D036E196221223A25AF8 +:103D1000FF339A4204D16C3BE35C002B00D16AE193 +:103D200098230120E15A02F023F8002800D020E176 +:103D3000237B002B00D09BE1A37B002B00D0D5E19F +:103D4000E37B002B05D03E233268D35C032B00D9E4 +:103D500029E2237C002B05D03E233268D35C042B60 +:103D600000D92BE2637C002B05D03E233268D35C64 +:103D7000052B00D90CE202F005FA002800D0CEE1B4 +:103D8000637A002B00D07EE1A5230020E15C9846F9 +:103D900001F006FD002800D03AE1A623E15C01F025 +:103DA00035FD002800D033E196221223A25AFF33BA +:103DB0009A4200D1CDE03F239846424633689B5C4F +:103DC000002B00D06CE2012001F0B4FCA37D0028A0 +:103DD00000D106E2002B00D14CE3022001F0AAFC46 +:103DE000002800D121E2E37D002B00D14BE34027E6 +:103DF0003368DB5D032B00D9B5E201F0FFFB00283F +:103E000000D19DE2A37F002B01D101F001FC01F064 +:103E100079FBE37E002800D180E2002B01D101F084 +:103E20007BFB637F002B00D0D7E25523364FE65C47 +:103E30003B78B34207D003F085FF002829D130003A +:103E400001F0DEFD3E7001F0B5FDE379002800D100 +:103E500042E3002B0ED02378002B07D0637D002B8C +:103E600004D0A8232079E15803F058F9E4F7A4FC22 +:103E7000FFF75BF8A32003F0F9F801F09BFD0028A1 +:103E8000E9D003F05FFF002803D101F09DFD002879 +:103E9000E1D01E4DFFF749F8002A00D10BE7E4F707 +:103EA0008BFCA06D00280FD0E36D002B0CD00023FD +:103EB0000022216E0097FAF775FC0097002300227C +:103EC000616EE06DFAF76EFC5623E35C002B00D1C7 +:103ED0005AE1012001F0FCFC044801F0C3FC002879 +:103EE00000D1E8E60A4DFFF720F8C04640420F0037 +:103EF0000084D71780D1F00840787D0100127A0045 +:103F000000E1F50500002740A8B201085C0F1A0186 +:103F10005A0F1A016378002B59D02223E05C012844 +:103F200000D856E12423E35C002B5DD003F068F950 +:103F3000002856D103F0ECFEA378002B00D0E3E07C +:103F400003F0D4FEA7E6002B00D0CEE601F07EFD04 +:103F5000CBE64346E35C002B00D02CE7637B002BD1 +:103F600007D098230120E15A01F002FF002800D178 +:103F700021E7BC4DFEF7D9FFA423E05C01F056FA1F +:103F8000C3E6A323E05C01F073FBBAE6A223E05C86 +:103F900001F092FBB1E6E06C002807D05423E35C0B +:103FA00008220093216D0023FAF7FCFBA06C01F0BE +:103FB0003BFD9EE601F0C0FC2023E35C002800D11D +:103FC000A5E0002B00D06CE601F0C0FC69E62323DD +:103FD000E05C022801D00528A4D103F02BFD0028C5 +:103FE000A0D0A14DFEF7A1FF03F044F90028A1D015 +:103FF0009D4DFEF79AFF0021012001F0B9FE002837 +:10400000B7D10121002001F0CBFB002800D18FE6C1 +:10401000964DFEF78AFF7B2003F028F801F048FC5C +:1040200049E6E4F7C9FBA06B002810D0E36B002B36 +:104030000DD00023984600930022216CFAF7B2FBC2 +:10404000434600220093616CE06BFAF7ABFB636BB5 +:10405000226BE16AA06A01F01BFD002805D18448AB +:1040600001F048FE002800D13FE6824DFEF75DFFDB +:1040700096230020E15A01F07BFE002800D15BE688 +:104080007D4DFEF752FF02F07DF8002800D07BE660 +:10409000E4F792FBE36E6A4603937023E35A03A8A6 +:1040A00013827223E35C93747323E35CD3747423ED +:1040B000E35A93827623E35C93757723E35CD375AD +:1040C0007823E35A13837A23E35C93767C23E35AC1 +:1040D000938302F08DF8002805D1684802F0ECF8CF +:1040E000002800D150E6664DFEF71FFF9A230220FC +:1040F000E15A01F03DFE002800D121E6614DFEF7B6 +:1041000014FF614DFEF711FF03F0E0FDC3E5002B46 +:1041100000D1C6E5E4F750FB01F0F2FBC1E502F087 +:1041200095FB9623E35A8046022B00D190E173D988 +:104130001222FF32934200D14CE11422FF3293420B +:1041400000D141E1033A93420DD00020637A002B65 +:1041500001D0804597D002F027F8002800D10FE663 +:10416000474DFEF7E2FEFA23DB017022A15A002040 +:104170000029EBD0E06E5843DCF78EFD7323E35C3F +:10418000002BE3D04008E1E7002001F0A1FBA3E60B +:10419000A0230520E15A01F0EBFD002800D1EAE55B +:1041A0003A4DFEF7C2FE9C230320E15A01F0E0FDE8 +:1041B000002800D1CDE5364DFEF7B7FE9E23042042 +:1041C000E15A01F0D5FD002800D1CBE5314DFEF7D5 +:1041D000ACFE03F09DFA002800D1A3E6224DFEF7C5 +:1041E000A4FE002B00D1F8E5AD23E75C013BE15CC8 +:1041F000012001F0D5FA00280BD13900013001F07F +:1042000005FB002805D1013001F070FA002800D12B +:10421000E3E5214DFEF789FE002B00D116E1012BCD +:1042200093D1A36C9A1CA0D18FE7E37D002B00D122 +:10423000DDE5B523E75C013BE15C022001F0B0FA6B +:1042400000280BD13900023001F0E0FA002805D136 +:10425000023001F04BFA002800D1C8E50F4DFEF7FF +:1042600064FEC0464E0F1A016F0F1A010F0F1A019C +:10427000B80B00005F0F1A014F0F1A01400D030029 +:104280003F0F1A014D0F1A011F0F1A014A0F1A0191 +:104290004C0F1A014B0F1A019E0F1A019D0F1A01A4 +:1042A000012002F0BDF8002800D025E1A37A002B00 +:1042B00000D054E13F239846424633689B5C012B73 +:1042C00000D880E5022002F0ABF8002800D089E099 +:1042D000E37A002B00D176E5022002F0A1F8002855 +:1042E00000D070E590236A46E35C13739123E35C8E +:1042F00053739223E35C93739323E35CD37394230C +:10430000E35C1374E4F758FA03A90220FEF76CFB90 +:10431000002800D157E5D44DFEF707FE002B00D151 +:104320007FE5D423E75C0133E65C01F0F5F8380063 +:1043300001F0A2F8300001F0B9F801F0D1F870E511 +:10434000A37F002B00D162E5D823E75A0233E65C55 +:1043500001F05EF9380001F00BF9300001F022F9AC +:1043600001F038F953E5032001F0E4F9237E002839 +:1043700000D191E0002B00D113E13368DB5D042B09 +:1043800000D83AE5042001F0D5F9637E002800D179 +:1043900092E0002B00D12EE140233268D35C052B44 +:1043A00000D82AE5052001F0C5F9A37E002851D0E8 +:1043B000002B00D021E5052001F0CEF9002800D126 +:1043C0001BE5AA4DFEF7B1FD41233268D35C012BFA +:1043D00000D0BAE680231B02C7E6D723E05C01F0D9 +:1043E000AFF822E5022002F0A3FC43460021326828 +:1043F0008146D35C8846012B17D99A23E35A022BB6 +:1044000000D12EE100D8D5E01221FF318B4200D13E +:10441000FFE01421FF318B4200D1F5E088225200E9 +:10442000934200D139E100239846E37A002B02D071 +:10443000C14500D150E7E4F7BFF9022002F004F8CB +:10444000002800D144E7884DFEF76FFD884B8CE6CD +:10445000A36AE7E6002B00D1CFE4CD23E25C013B69 +:10446000E15C0520FEF7D4FA002800D1C5E47F4DB9 +:10447000FEF75BFD012001F06FF9002800D1ACE4EC +:104480007C4DFEF752FD022001F066F9002800D1B4 +:10449000ADE4794DFEF749FD002B00D16DE7BD235A +:1044A000E25C013BE15C0320FEF7B2FA002800D198 +:1044B00063E7724DFEF739FD002B00D16CE7C52391 +:1044C000E25C013BE15C0420FEF7A2FA002800D187 +:1044D00062E76B4DFEF729FD002B00D1BBE401F034 +:1044E00069FA002800D0B6E403F02CFC002800D0C4 +:1044F000CFE401F04BFAAEE4012002F019FC434690 +:10450000002132688146D35C8846002B17D098235F +:10451000E35A022B00D1E3E000D884E01221FF31FE +:104520008B4200D1C8E01421FF318B4200D1BEE0A4 +:1045300088225200934200D1C8E000239846A37A13 +:10454000002B01D0C1450AD0E4F736F9012001F073 +:104550007BFF002800D1A9E64A4DFEF7E6FC0120CA +:1045600001F05EFF002800D0A4E684236A46E35CE5 +:1045700013738523E35C53738623E35C9373872370 +:10458000E35CD3738823E35C1374E4F715F903A9A0 +:104590000120FEF729FA002800D18BE6394DFEF7FD +:1045A000C4FC032001F0D8F8002800D1E5E6334D23 +:1045B000FEF7BBFC8B4267D0012B00D033E7A06C29 +:1045C00090230027E25C0133E15C0133E35CB846F1 +:1045D000871C00D129E79846002900D123E74346EC +:1045E000002B00D121E75043DCF756FB4146DCF7B6 +:1045F00053FB804619E7042001F0AEF8002800D1F3 +:10460000CAE61F4DFEF791FC4123D35C012B00D07D +:104610000BE790238020E25C0133E15C0133E35C33 +:1046200000029846D8E78B425CD0012B85D1A06C64 +:1046300085228423A15C0132A25CE35C9046821C4B +:1046400000D17AE7002900D177E74246002A00D15D +:1046500075E75843DCF720FB4146DCF71DFB80463D +:104660006DE7A06AACE7C0462E0F1A019A0F1A0137 +:1046700000127A009E0F1A019D0F1A019C0F1A0159 +:104680009B0F1A012F0F1A019023E25C0133E15CAA +:104690000133E35C534898469EE79023FA20E25C9E +:1046A0000133E15C0133E35CC001984694E74123A8 +:1046B000D35C012B00D042E7852284238020A15CBB +:1046C0000132A25CE35C90460002BBE785228423B2 +:1046D000FA20A15C0132A25CE35C9046C001B1E724 +:1046E000A06AA5E785228423A15C0132A25CE35C79 +:1046F00090463C48A6E7237A002B01D0FFF73CFA0E +:10470000394DFEF712FC384DFEF70FFC374DFEF722 +:104710000CFC2000FEF758F9FFF7A1FA344B984241 +:1047200001D8FFF769FA334DFEF7FFFB2000FEF7D3 +:104730004BF9FFF74DFA2C4DFEF7F7FB2000FEF783 +:1047400043F9FFF729FA2C4DFEF7EFFB2B4DFEF74F +:10475000ECFB012B08D0294DFEF7E7FB284A9342DA +:1047600002D0284A9342F6D1627D002AEED002227E +:10477000FF32934234D0224A93422FD0214A9342AF +:104780002AD00127A823E358002B20D01E485843E5 +:10479000FFF746FA1D4DFEF7C8FB134DFEF7C5FBAC +:1047A000114DFEF7C2FBE379002B01D0FFF7E4F9CE +:1047B0000D4DFEF7BAFB164DFEF7B7FB154DFEF794 +:1047C000B4FB154DFEF7B1FB144DFEF7AEFB200018 +:1047D000FEF7FAF8FFF724FA0827D3E70427D1E712 +:1047E0000227CFE700127A008E0F1A018B0F1A01F1 +:1047F00000E1F5058C0F1A018D0F1A01890F1A01BE +:10480000010200000103000040420F009A0F1A014C +:104810009E0F1A019D0F1A019C0F1A019B0F1A017E +:104820007047C0467047C046F0230A041B031A4075 +:104830000F2310B51C000C402243084C8002246852 +:10484000246900198024E401025100591840401ADB +:10485000431E9841024B4042184010BD3CF30108F2 +:104860000300C200044B10301B6880021B69C35850 +:104870000F2018407047C0463CF3010810B54A8924 +:104880007F2314009C43231E23D18C7907332340BC +:10489000520213434A7ACC79920713433822E40038 +:1048A000224013430A7A01214A40920113431A001D +:1048B00009490A409A420CD14262406A0840801A73 +:1048C00043425841054B40421840054B9C466044CA +:1048D00000E0044810BDC046DBFEFFE0FDFF3DFFE9 +:1048E0000300C2000100C20030B54C897F232200C2 +:1048F0009A43131E30D10A68FF339A434B798D795E +:104900001A43072364022B4023434C7ACD79A40732 +:1049100023433824ED002C40012523430C7A0979E8 +:104920006C40A4012343F8240906640521400B438D +:1049300043600260016891420CD14068074A104010 +:10494000C01A43425841064B40421840054B9C4612 +:10495000604430BD0348FCE70348FAE7FFFEFFFF71 +:10496000FDFF3DFF0300C2000100C2008023426A38 +:104970001B0613434362406A024BC00F01381840C4 +:104980007047C0460300C200802342681B061343E1 +:1049900043604068024BC00F013818407047C04662 +:1049A0000300C200F0B54646D6464F46364DC0B568 +:1049B0002E683025755D040008A800781F2D60D989 +:1049C000FF2529409D000C232B4003252A401A4334 +:1049D000434258410001024313049A461306994684 +:1049E000E36B4900E363E06B17021B1A581E834117 +:1049F00026485B4218400D0AA36B02D01F25AB432B +:104A00001343A363A56B9D4200D020480D09636B3F +:104A1000EE0702D51F26B3431343AA0702D51C4A4B +:104A200013403B436A0703D51A4A134052461343C7 +:104A30002A0703D5184A13404A4613436363626B3F +:104A4000934200D01148236B8A0702D5104A1340C5 +:104A50003B434A0703D50F4A1340524613430A0704 +:104A600003D50D4A13404A4613432363226B534038 +:104A70001F22934300D005481CBC90469946A2468D +:104A8000F0BD0648F8E7C0463CF301080300C20049 +:104A9000FFE0FFFFFFFFE0FFFFFFFFE00200C200BB +:104AA000114B30B51C683023E35C1F2B1AD903234C +:104AB000F825994301606D05130644682B400B4DA2 +:104AC0002C40234343600368994209D14068C000E9 +:104AD000C00E101A421E9041054A4042104030BD9F +:104AE0000348FCE70348FAE73CF30108FFFFFFE057 +:104AF0000300C2000200C200F0B5CE4647464C4D4E +:104B000080B52E683025755D07AC24781F2D00D840 +:104B10008BE09D000C232B4003252A401A4363425F +:104B20005C4124012243490013040F0B99461602ED +:104B30001506C369FC0702D51F24A3431343BC0712 +:104B400002D53C4C234033437C0703D53A4C2340E9 +:104B50004C4623433C0702D5384F3B402B43C361AF +:104B6000C769DB1B5F1EBB41354F5B423B400F0AF1 +:104B7000BC4664468769E40702D51F24A743174350 +:104B80006446A40702D52B4C27403743644664078C +:104B900003D5294C27404C4627436446240702D5B9 +:104BA000264C27402F4387618469BC4200D0244BA8 +:104BB0000C09A4464769E40702D51F24A7431743FD +:104BC0006246920702D51B4A174037436246520796 +:104BD00003D5194A17404A4617436246120702D5C1 +:104BE000164A17402F4347614269974200D0144B41 +:104BF00002698C0702D50F4F3A4032434C0703D568 +:104C00004C460D4E32402243090702D50B490A405B +:104C10002A43026101694A401F218A4300D0084BA0 +:104C200018000CBC90469946F0BD064BF8E7C0460C +:104C30003CF30108FFE0FFFFFFFFE0FFFFFFFFE0A5 +:104C40000300C2000200C200094B1A683023D35C83 +:104C50001F2B0AD9802342681B0613434360406818 +:104C6000044BC00F0138184070470348FCE7C046AA +:104C70003CF301080300C2000200C200F0B5464642 +:104C8000D6464F46364DC0B52E683025755D0400BA +:104C900008A800781F2D60D9FF2529409D000C230E +:104CA0002B4003252A401A43434258410001024346 +:104CB00013049A4613069946E36B4900E363E06BDD +:104CC00017021B1A581E834126485B4218400D0AE2 +:104CD000A36B02D01F25AB431343A363A56B9D4277 +:104CE00000D020480D09636BEE0702D51F26B343A1 +:104CF0001343AA0702D51C4A13403B436A0703D556 +:104D00001A4A1340524613432A0703D5184A134040 +:104D10004A4613436363626B934200D01148236B8E +:104D20008A0702D5104A13403B434A0703D50F4A6E +:104D30001340524613430A0703D50D4A13404A460F +:104D400013432363226B53401F22934300D0054833 +:104D50001CBC90469946A246F0BD0648F8E7C046FE +:104D60003CF301080300C200FFE0FFFFFFFFE0FF8C +:104D7000FFFFFFE00200C200F0B5CE4647464C4DB3 +:104D800080B52E683025755D07AC24781F2D00D8BE +:104D90008BE09D000C232B4003252A401A436342DD +:104DA0005C4124012243490013040F0B994616026B +:104DB0001506C369FC0702D51F24A3431343BC0790 +:104DC00002D53C4C234033437C0703D53A4C234067 +:104DD0004C4623433C0702D5384F3B402B43C3612D +:104DE000C769DB1B5F1EBB41354F5B423B400F0A6F +:104DF000BC4664468769E40702D51F24A7431743CE +:104E00006446A40702D52B4C274037436446640709 +:104E100003D5294C27404C4627436446240702D536 +:104E2000264C27402F4387618469BC4200D0244B25 +:104E30000C09A4464769E40702D51F24A74317437A +:104E40006246920702D51B4A174037436246520713 +:104E500003D5194A17404A4617436246120702D53E +:104E6000164A17402F4347614269974200D0144BBE +:104E700002698C0702D50F4F3A4032434C0703D5E5 +:104E80004C460D4E32402243090702D50B490A40D9 +:104E90002A43026101694A401F218A4300D0084B1E +:104EA00018000CBC90469946F0BD064BF8E7C0468A +:104EB0003CF30108FFE0FFFFFFFFE0FFFFFFFFE023 +:104EC0000300C2000200C200F0B54F46D646464677 +:104ED000C0B5C0270F24BF00C3591C40A446002AF8 +:104EE00025D0C2239B0099460F23D025BA46984669 +:104EF000AD004B46C458E405E40D944200D91400BB +:104F000053464646C3583340072B19D9002C07D0C7 +:104F10000B0067007F1846591E800233BB42FAD14E +:104F20006346072B08D96300C918121BE1D11CBCCA +:104F300090469946A246F0BD0919121BD9D1F6E751 +:104F4000002CEDD00B000F1946591E700133BB42E7 +:104F5000FAD1E5E7F0B55746DE464E464546E0B5A0 +:104F600080270F24BF00C3591C40A446002A32D01A +:104F700080231B019A4640239946C933FF3390256D +:104F80009846BB46AD005446036823405C1EA341CF +:104F90005C424B461C404346C3584034DB05DB0DA6 +:104FA000E31A934200D913005C460F26045934409B +:104FB000072C1AD9002B07D00C005F007F18268819 +:104FC00002344651BC42FAD16446072C09D95C0030 +:104FD0000919D21AD7D13CBC90469946A246AB4695 +:104FE000F0BDC918D21ACED1F5E7002BECD00C00D9 +:104FF0005F18267801344651BC42FAD1E4E7C04636 +:10500000F0B5DE4657464E464546E0B583B000282B +:1050100000D1D6E0002900D1D3E00F78022F00D1D3 +:10502000C8E04B685C1E0F231C4080239B04234375 +:105030000C7F002C02D08024640223438E68082E4B +:1050400002D8802424012343C0240360A4043B0627 +:10505000234003644B7F4D7B5C1EA3419B019A461A +:105060008B7C013D5C1EA3419B0299460B7C013E5B +:105070005C1EA3411B0298464B7C5C1EA341072487 +:105080005B029C46302325408C7B24011C4001940C +:10509000F024CB6A2403013B1B042340019C2B43D7 +:1050A0002343544623434C46234344462343644608 +:1050B000234383640B7B5C1EA341FF241B029C469D +:1050C000CB7F240498468B691B0423400C7D23432B +:1050D0000F24264064463443A146019C2C43CD7BDB +:1050E000002D53D080264D46B6002E43C025AD007E +:1050F0004651103543514346002B52D0012F62D008 +:10510000446480234C469B00C450FF26C1240B6B93 +:10511000A400334003512023CB5C5F1EBB415F06DC +:105120002123CD5C013D6B426B411D062823CC5CE5 +:10513000013C63425C414B6A240433403B432B43B4 +:10514000234303658B6B4C6B1E4081239B00C65031 +:10515000284B2340284C0351CC6B284B2340284C30 +:105160000351002A39D0002300205360936013605C +:10517000D36013625363D362897F3033D15403B059 +:105180003CBC90469946A246AB46F0BD022F26D0C5 +:10519000C0254E46AD004651103543514346002BC5 +:1051A000ACD14464012FACD180234C465B021C433C +:1051B000A146A6E78B7F002B00D032E780239B041B +:1051C00036E71048DBE780256D002C4380234464DC +:1051D0004C465B021C43A14693E70020CFE78025A5 +:1051E000AD002E4365462E43C025AD004651103517 +:1051F000435185E76D0B0000C80F000073070000E6 +:10520000880F00000160AA00114B08220360C02132 +:105210000F3B03640023FF32890083644250043152 +:1052200043500C3143501139FF3943644250FD3231 +:105230008350084A03658350074A8350074A8350C6 +:10524000074A8350074A8350074A83507047C04635 +:105250000F000003C80E0000880E0000C80F0000F9 +:10526000880F0000080F0000480F000003685B0073 +:105270005B080360002904D000234B600B600B62C5 +:10528000CB627047002813D1072913D8FF2A11D801 +:10529000114B890018687823C35A80681B18591865 +:1052A0000B680E48034012021A430A60002002E015 +:1052B000012801D00A4870470F29FBD8094B9A42B0 +:1052C000F8D8054B890018687A23C35A80681B18E0 +:1052D00059180B680448E5E73CF30108FF00FFFF9D +:1052E00001004A00FFFF0000FF0000FF70B54224EC +:1052F000154B1B681C5D844205D9032903D800297E +:1053000017D1072A03D9114870BD002AFBD1752493 +:105310001E5D723C214071349D681B5DB1401A4096 +:10532000C0239B009C46604480000A4342510020F9 +:10533000EAE7012902D10F2AE9D9E4E70229E4D1F9 +:10534000032AE4D9DFE7C0463CF3010801004A0024 +:10535000F0B5C64600B5032803D8002805D10729B3 +:1053600007D9194804BC9046F0BD012824D10F2963 +:10537000F7D8164B03221C687423E75C0133E35C07 +:10538000160098467723E35CA5689E403300762696 +:10539000A45D3E00A64034001C4380231B0623432B +:1053A0003940194343461040984080230143DB00B5 +:1053B000E950EB580020D5E7022802D10329D8D9BB +:1053C000CFE70029D5D0CCE701004A003CF3010823 +:1053D00030B5032803D8002803D1072905D911487F +:1053E00030BD012815D10F29F9D80F4B1A68752344 +:1053F000D55C723B18407133D35CA84019408023C0 +:10540000DB051943802394680143DB00E150002051 +:10541000E6E7022802D10329E7D9E0E70029E4D032 +:10542000DDE7C04601004A003CF3010810B5020068 +:10543000040000232B210720FDF75AFA8821064B90 +:1054400024021A68136852589B181868034A1040BF +:105450002043186010BDC0463CF30108FF00FFFF69 +:105460008821044B1A68136852589B181868000A60 +:10547000C0B270473CF3010810B5020004000023DD +:105480001F210720FDF734FAA022F0200549D200A1 +:10549000000124028B580440034803401C438C50F5 +:1054A00010BDC04600002640FFF0FFFF10B502000F +:1054B0000400002320210720FDF71AFAA022E02093 +:1054C0000549D200C00124038B580440034803401F +:1054D0001C438C5010BDC04600002640FF8FFFFFCC +:1054E00010B50023012221210720FDF701FAA02297 +:1054F00080230349D20088581B0203438B5010BD00 +:1055000000002640A023034ADB00D0580004C00F4F +:105510007047C0460000264010B50023002222211B +:105520000720FDF7E5F9A0220349D2008B58034874 +:1055300003408B5010BDC04600002640FF7FFFFF98 +:1055400010B502000400002323210720FDF7D0F945 +:10555000C021054A8900240213680C4003490B400E +:105560001C43146010BDC04600002740FFFCFFFF35 +:1055700010B50400020000231B210720FDF7B8F935 +:10558000044A054B0549D058084005490C402043C2 +:10559000D05010BD0000264004050000FEFCFFFFB7 +:1055A0000103000010B50400020000231C210720A5 +:1055B000FDF79EF9044A054B0549D05824040840DC +:1055C0002043D05010BDC046000026400405000016 +:1055D000FFFF00FF10B5002301221D210720FDF76A +:1055E00087F980230349044A1B06885803438B50DC +:1055F00010BDC0460000264004050000024A034BCF +:10560000D058C00F7047C046000026400405000077 +:1056100010B5002300221E210720FDF769F9034978 +:10562000034A8B585B005B088B5010BD000026407E +:105630000405000010B50200040000231A21072011 +:10564000FDF756F9A02303220349DB00C858904315 +:1056500022401043C85010BD00002640A023032064 +:10566000024ADB00D35818407047C046000026406D +:1056700010B502000400002319210720FDF738F9B6 +:105680008821064B24061A68136852589B1818681C +:105690000002000A2043186010BDC0463CF3010818 +:1056A0008821044B1A68136852589B181868000E1A +:1056B0007047C0463CF3010810B502000400002307 +:1056C00018210720FDF714F98C21064B24021A68D3 +:1056D000136852589B181868034A104020431860FA +:1056E00010BDC0463CF30108FF00FFFF0E4B10B594 +:1056F0001A684023D35C0400834212D902000023BD +:1057000014210720FDF7F4F8084BE0229C46802383 +:105710000020A40064449200A1581B060B43A35030 +:1057200010BD0348FCE7C0463CF3010800002640DA +:1057300001004A00064A0300116840228A5C0020EA +:105740009A4204D9E033034A9B009858C00F70472F +:105750003CF301080000264010B5041E17D00D4B85 +:105760001A684023D35C834211D90200002315211B +:105770000720FDF7BDF8084BE0229C46A4006444D6 +:105780009200A35800205B005B08A35000E0034890 +:1057900010BDC0463CF301080000264001004A004D +:1057A000124B30B51A684023D35C83B004000D005F +:1057B000834217D90F2915D86B46009019716A4694 +:1057C000002316210720FDF793F8094BE0229C46A1 +:1057D0000F21A40064449200A35800208B431D4372 +:1057E000A55000E0034803B030BDC0463CF30108BB +:1057F0000000264001004A00E030034B8000C358FF +:105800000F2018407047C04600002640124B30B5AC +:105810001A684023D35C83B004000D00834218D97A +:10582000032916D86B46009019716A460023172188 +:105830000720FDF75DF8094BE0229C463021A400CB +:1058400064449200A3582D018B431D43A5500020B2 +:1058500000E0034803B030BD3CF3010800002640DF +:1058600001004A0070B50200002304001121072046 +:10587000FDF73EF808220C4D2B6813432B602B6973 +:105880005B070CD4042606E0012001F0EFFB2B6936 +:10589000013C1E4203D1002CF6D1044802E0002C4A +:1058A000FBD0002070BDC0460000274002004A0027 +:1058B00010B50023002212210720FDF719F8082156 +:1058C000024A13688B43136010BDC0460000274096 +:1058D00010B502000400002313210720FDF708F88B +:1058E0008021054A4902240413680C4003490B40F7 +:1058F0001C43146010BDC04600002740FFFFFEFFA0 +:1059000070B50E21002301220720FCF7F1FF802350 +:10591000074D084C1B062A59012013432B5101F057 +:1059200081FBC0232A59DB0513432B5170BDC046B0 +:10593000000026403C050000024A034BD05880007E +:10594000C00F7047000026403C05000010B5002342 +:1059500000220F210720FCF7CBFF0349034A8B5895 +:10596000DB00DB088B5010BD000026403C0500002A +:105970000449054A80058B58800D9B0A9B021843F9 +:1059800088507047000026403C05000010B50023F9 +:1059900001220B210720FCF7ABFF80230349044AB7 +:1059A0001B06885803438B5010BDC046000026409C +:1059B0000C050000024A034BD058C00F7047C04688 +:1059C000000026400C0500000023002210B50C2129 +:1059D0000720FCF78DFFC023064A5B00D358DB0786 +:1059E00006D40020044953585B005B08535010BD97 +:1059F0000248FCE7000026400C05000003004A00B6 +:105A000010B50200040000230D210720FCF770FFF1 +:105A10000121034A034BD05888432043D05010BD86 +:105A2000000026400C050000064B10B5040098420B +:105A300007D8002302002E210720FCF759FF024B54 +:105A40001C6010BD00E1F505B4B2010810B50023DB +:105A5000002208210720FCF74BFF0349034A8B581B +:105A60005B005B088B5010BD000026402C05000039 +:105A7000A6220649D2008B58DB439B0703D00120A6 +:105A80008B58184070470220FCE7C04600002640B3 +:105A9000F0B54746CE4680B585B0009001910292A0 +:105AA000039304000E00170098466A460023242141 +:105AB0000720FCF71DFF051E01D17D4B1C607D4AB0 +:105AC0007D4BD358002B00DAD4E07C4B7C4AE318A2 +:105AD000934200D9C8E0731E632B00D9C4E0794A11 +:105AE0007B1E934200D9BFE04346774A013B934275 +:105AF00000D9B9E02000FA21F5308900FF30DBF74A +:105B0000CBF8434642465B019B1A81469801C01A76 +:105B1000C00040447B08C001C0183900DBF7BCF866 +:105B20006A4B802283429B415B42DB03D2011A43D2 +:105B300011005143884200D2B8E080239B011343F7 +:105B400019005943884200D2AEE0802252011A4324 +:105B500011005143884200D2A4E080231B0113436B +:105B600019005943884200D29AE08022D2001A4399 +:105B700011005143884200D290E080239B001343E0 +:105B800019005943884200D286E0802252001A430D +:105B900011005143884200D27CE080231343190056 +:105BA0005943884200D273E040221A431100514306 +:105BB00088426BD32023134319005943884263D38F +:105BC00010221A431100514388425BD30823134328 +:105BD00019005943884253D304221A4311005143F8 +:105BE00088424BD30223134319005943884243D3BD +:105BF00001221A4311005143884200D31300494641 +:105C000033487143434348081818DBF745F8314BD4 +:105C1000984229D94846304B40439C462F4960441E +:105C2000DBF73AF87643704364213230DBF734F81F +:105C30002B497843DBF730F8032815D8012801D821 +:105C4000012358401B4A274D274953590003194047 +:105C5000264B0B4318435051022000251649535838 +:105C600003435350124B1C60280005B00CBC9046F7 +:105C70009946F0BD1E4DF7E71300B9E71A00B1E7EA +:105C80001300A9E71A00A1E7130099E71A0091E7AA +:105C9000130089E71A0080E7130076E71A006CE723 +:105CA000130062E71A0058E713004EE71A0044E7B2 +:105CB000B8B20108000026402C05000000DC0BFFF4 +:105CC000C0EA2101E7030000CF070000FFFFFF3F0C +:105CD000B36D0200890200005DF70000BBEE010019 +:105CE000A0BB0D0020FF000008C0FFFFF70300006D +:105CF00003004A00F8B50200002304002521072014 +:105D0000FCF7F6FD164D174BEA58002A1EDB8022E1 +:105D1000A626E95812060A43EA50F600AB59DB43BF +:105D20009B0711D0AB59002C0ED0032702E0AB59D2 +:105D3000002C0DD0012001F099F9AB59013C3B40FA +:105D4000032BF4D1002C03D00020F8BD0648FCE75B +:105D50000349044A05488B585B005B088B50F4E705 +:105D6000000026402C05000003004A0002004A0003 +:105D70001C4B30B51A683E23D35C83B004000D0081 +:105D800083422DD904291BD94B1EFF3B132B27D847 +:105D90006B46009099806A46002326210720FCF775 +:105DA000A7FD1F231D40104B04229C46C023A400C6 +:105DB00064449B00E5504033E250002003B030BD06 +:105DC0006B46009099806A46002326210720FCF745 +:105DD0008FFD0723D0341D40034BA400E550ECE7B2 +:105DE0000248EBE73CF301080000264001004A00AE +:105DF000094A83009446D0220720634492009A58AF +:105E00001040042806D1C02292009B581B3003404A +:105E1000E13018437047C04600002640254B800003 +:105E20009C46D02360449B00C25807231340042B98 +:105E300006D1C0239B00C2581F231A40E1331343ED +:105E4000022B2AD00CD91222FF3293420FD01422F7 +:105E5000FF3293421BD0033A934210D0002005E05A +:105E6000002B12D0012BF9D1134B18687047042076 +:105E7000124B1B691840F9D080200002F6E70D4A4A +:105E80000F4BD058C00FC003F0E70E48EEE7094AA9 +:105E90000D4BD058C00FC003E8E7A6220549D20039 +:105EA0008B58DB439B0702D08B580020DEE7074B63 +:105EB0001868DBE700002640B4B201080000274064 +:105EC0000C05000000127A003C050000B8B2010881 +:105ED000F0B54746CE4680B5070083B0002800D114 +:105EE0007CE09D4B1A683F23D35C83423DD2BB00CC +:105EF0009A4A9A18D0239B00D15807230B40042BB1 +:105F00001FD0022B26D0022B0FD91222FF32934230 +:105F100000D1C1E01422FF32934200D1B0E0033A35 +:105F2000934200D1B2E0002006E0002B00D1A5E0B2 +:105F3000012BF8D18A4B186803B00CBC90469946E7 +:105F4000F0BDC0239B00D2581F231A40E1331343F6 +:105F5000022BD8D1A6228149D2008B58DB439B0764 +:105F600000D1B8E08B580020E6E7002BBFD0421EDE +:105F7000934200D8E2E0794A83009918794A8D5813 +:105F80008A58002AB4DAAA00920F022AB0D01F223F +:105F90002C0A1440ACD02E0C1640A9D03800FFF7C4 +:105FA0003DFF32008046002320000021DAF720FF69 +:105FB00006007F200C002840424600230021DAF72B +:105FC00017FFE50772082A43630880185941320019 +:105FD0002300DAF7EDFE0028AED188E7B0225F4B50 +:105FE0006149D200614C9E585858043159581C5987 +:105FF0009A580023002A00DB7AE78900890F0229DA +:1060000000D175E702240025F30100D4A0E0C0040C +:10601000C30C99464A460023002A00D168E7D023E2 +:106020004E4A9B00D15807230B40042B4BD0B6039C +:10603000B10B022B52D038D91220FF30834274D0DA +:106040001420FF3083426DD0033883425CD000229D +:1060500000230092019322002B0048460021DAF72A +:10606000C7FE02000B005408C9070C435D080098E6 +:10607000019900196941DAF79BFEACE73C485BE700 +:10608000364A3C4BD058C00FC00355E7334A3A4B11 +:10609000D058C00FC0034FE70420384B1B6918408D +:1060A00000D149E78020000246E7002B23D0012BD6 +:1060B000CDD12B4B18680A0000230021DAF798FE97 +:1060C00000900191C7E7C0239B00D2581F231A40BC +:1060D000E1331343ABE72A4B18682DE7A6221F488C +:1060E000D2008358DB439B0730D083580022002323 +:1060F00000920193AFE708001D4A00230021DAF760 +:1061000077FE00900191A6E714481B4BC05800226F +:1061100000230092019300289DDAF30F0193CB0333 +:10612000009398E70D48134BF0E7144B00221869D1 +:1061300000230092019343078DD5EEE703008033DF +:10614000FF33064A9B009B588300D1E60C4BB1E716 +:10615000012400255BE7C0463CF30108000026400F +:10616000B4B20108FC050000840500008C050000A5 +:1061700000127A003C0500000C05000000002740DA +:10618000B8B20108B023024ADB00D058C00F7047F4 +:1061900000002640B2230120024ADB00D3581840F9 +:1061A0007047C0460000264010B500230022092198 +:1061B0000720FCF79DFBB1200A4BC0001A580A4982 +:1061C0001140802292050A43B0211A50C9005A5842 +:1061D0000020520052085A5004495A58520052089E +:1061E0005A5010BD00002640FFFFFFCF8C05000075 +:1061F000020070B50023040027210720FCF778FB7C +:10620000B023254ADB00D358002B42DB2368E27918 +:106210009B039B0B002A38D1B0211F4AC900535061 +:106220002389A1881D481B04C9040340C90C0B43E2 +:106230001B491C4D5350FF23E17AE02609010B4016 +:10624000A189F600090229400B430F21A57A2940B4 +:10625000C0250B43A17BAD05090729400B43B121A4 +:10626000C9005350A179104D0902535931400F4EC6 +:10627000334019435151238A51591B0403400C48A0 +:10628000014000200B43535170BD80225204134340 +:10629000C2E70848F8E7C046000026400000FF01BA +:1062A0008405000000FF1F008C050000FFF8FFFFC1 +:1062B000FFFF00FE03004A00F0B5C64602000023BF +:1062C000282100B580460720FCF712FB8021B2266A +:1062D0004F4D504A0906AB58F6000B43AB50AB5933 +:1062E0005B0700D56DE04346002B00D180E04446BB +:1062F000042701E0002C39D0012000F0B7FEAB5993 +:10630000013C1F42F6D0B121C9006B58424A1A40E5 +:1063100080239B0513436B50002C30D0B022802388 +:10632000D200A9581B060B43AB50AB59DB0711D465 +:10633000B225374EED0001E0002C3ED0012000F0E8 +:1063400095FE7359013CDB07F6D54346002B01D07F +:10635000002C15D0B122C0232D49D20088589B05AE +:10636000034300208B5004BC9046F0BDB121C9000E +:106370006B58294A1A4080239B0513436B50AB5935 +:106380000023002209210720FCF7B2FAB120204B9C +:10639000C0001A5820491140802292050A43B021BA +:1063A0001A50C9005A581D48520052085A501949EB +:1063B0005A58520052085A50D5E74346002BC9D0CC +:1063C000DEE7B120C0002B58134A44461A40802310 +:1063D0009B051343B0222B50D200AB581943A95050 +:1063E000AB59DB07B1D44346002BB3D044469FE7FB +:1063F000B120C0002B58084A1A4080239B05134344 +:106400002B50B023DB00EA581143E950AB59A1E708 +:10641000000026408C050000FFFFFFCF02004A006D +:106420008030034BFF308000C058C00F7047C0461B +:10643000000026409030FF30024B8000C3580120FE +:106440001840704700002640124B70B51A683F2371 +:10645000D25C431E04009A421AD9020000230A218A +:106460000720FCF745FA0C4B0C4D9C46A4006444F5 +:1064700063590B4A01201A4080239B051343635143 +:1064800000F0F4FD002063595B005B08635170BDB0 +:106490000448FCE73CF3010800002640FC0500002E +:1064A000FFFFFFCF01004A002A4B70B51A683F2357 +:1064B000D35C82B00D00834242D3274B84009C46BC +:1064C000264B6444E358002B41DB8B78023B0E2BB8 +:1064D00036D84B78013B112B32D8CA780B78002A7A +:1064E00031D1152B2CD97022934229D8009000234A +:1064F0006A46292107200195FCF7FAF92B79022B2E +:1065000013D07F22F826297876010A40E978C90657 +:106510000A436978090231400A43A978F825090439 +:106520006D0329400A430D496250C0250B49AD0552 +:106530001B0762582B400A4D2A401343635000E06A +:10654000084802B070BD122BFAD93822CCE70648B1 +:10655000F7E7C0463CF3010800002640FC050000B8 +:10656000FFFFFFCF01004A0003004A00254B70B532 +:106570001A683F23D25C431E05000C009A422ED9B4 +:10658000020000232A210720FCF7B2F91E4B1F4A04 +:106590009C468023AD006544A9581B060B431C4E46 +:1065A000AB50AB59DB070DD4002C02D10AE0002C14 +:1065B00017D0012000F05AFDAB59013CDB07F6D59E +:1065C000002C0ED0114A0020AB589B009B0F022BD1 +:1065D00004D1C023A9589B050B43AB5070BD0D4897 +:1065E000FCE70A4C0C4A2B5901201A4080239B05DA +:1065F00013432B5100F03AFD2B5908485B005B0810 +:106600002B51EBE73CF3010800002640FC0500009D +:106610003C06000001004A00FFFFFFCF02004A00D5 +:10662000F0B5CE464746524B80B598423ED89A4286 +:106630003CD8504B994239D801244F4B1C70FF284D +:1066400039D94E4B984268D80F2701254C4B4D4EF7 +:106650004D4C38406D42A1460027F124BC466442AF +:10666000FF2A35D8FF2312011A4063461343E02264 +:106670009C462500D2020243444B1868BA23C35AF1 +:10668000DE00F61A036AF4182368002BFCDA404B8C +:106690001B78002B25D03F4B984647463E4BFB5876 +:1066A000002B1EDB3D480023636000E03B480CBC30 +:1066B00090469946F0BD0F250540AC46102532485E +:1066C0002F4B81462F4E6D42354C0720FF2AC9D9EA +:1066D0002A4CA2422FD8F02312041B031A40024373 +:1066E000CAE7304B304C1C60304B314C1C60A3244B +:1066F000284BE4001F593D4067463D434F461D511E +:106700002C4C1D592F4017432B4A1F511160224A10 +:106710009950046A00203419C5E7284B070A9842AB +:106720001AD80301FF20012518403843244B254E79 +:106730006D42254C8FE7170A204C3F043843A24294 +:1067400006D8F02712053F043A400243B14693E7CA +:106750001206024399468FE7F02301251B01000230 +:1067600018403843194B1A4E6D421A4C73E7C04615 +:106770000F060000FFFFFF00B0B20108FF04000099 +:10678000F0FFF0F0F0FF00FFF0FFF0FF3CF3010836 +:10679000BCB20108000026401C05000001004A00B0 +:1067A00000FFFFFF080126401F1F000004012640D4 +:1067B0003D3D000014050000ACB20108FF050000DB +:1067C00000FFF0F000FF00FF00FFF0FFF0F0F0F03E +:1067D000F0F000FFF0F0F0FF164AF8B50300904229 +:1067E00012D9F621144A3F2780184900DAF754FAE3 +:1067F000124E134D745973593C40241A3C40BB430C +:106800001C4374514042F8BD0E4A00209342FAD80E +:10681000F6210D483F27C01A4900DAF73DFA074E26 +:10682000074D745973593C4024183C40BB431C43EA +:106830007451E8E7EC810000F680FFFF000026407D +:1068400018FF0000137E0000F6800000B022F0B5B3 +:10685000C6464C4B4C49D2004C489F585E580431B8 +:10686000595818589B5800B50020002B02DB04BC77 +:106870009046F0BD8900890F0229F8D00224002536 +:10688000FB0127D5F604F30C98460020002BEED030 +:10689000D0233C4A9B00D15807230B40042B06D140 +:1068A000C0239B00D2581F231A40E1331343BA037D +:1068B000910B022B59D016D91220FF3083424DD0B4 +:1068C0001420FF30834237D0033883423ED0002665 +:1068D000002715E0F604F30C01240025984600205B +:1068E000002BC4D0D4E7002B1DD0012BEFD1284BB7 +:1068F00018680A0000230021DAF77AFA06000F0070 +:1069000022002B0040460021DAF772FA02000B0049 +:106910005408C9070C435D082000290080197941FB +:10692000DAF746FAA3E708001A4A00230021DAF74B +:106930005FFA06000F00E3E71248174B0026C35822 +:106940000027002BDCDAD70FCE03D9E70D48134B15 +:106950000026C3580027002BD2DAF4E7104B00269C +:106960001B6900275B07CBD5EDE7A6220548D200BF +:106970008358DB439B0703D0835800260027BFE7DB +:10698000084BB5E700002640840500008C05000098 +:10699000B4B2010800127A003C0500000C050000AA +:1069A00000002740B8B20108604BF0B59C46CE46C7 +:1069B0004746E022032101240F2580006044920015 +:1069C00080B5835882581B090B4083B09C4015400A +:1069D0007CD0574B1A683F23D35C9D4238D9AA001C +:1069E000524B9C46D02362449B00D15807230B4056 +:1069F000042B1AD0022B21D0022B0FD91222FF32E6 +:106A0000934200D17FE01422FF32934200D16EE026 +:106A1000033A934200D170E000235CE0002B64D085 +:106A2000012BF9D1434B1B6855E0C0239B00D25882 +:106A30001F231A40E1331343022BDDD1A6223B4929 +:106A4000D2008B58DB439B0765D08B58002342E074 +:106A5000002BC4D06A1E934260D9344BAA00D018D0 +:106A6000354BC658C358B046002BB9DA330F0B402C +:106A7000022BB5D01F23360A1E40B1D041460F0C61 +:106A80001F40ADD02800FFF7C9F93A008146002326 +:106A900030000021DAF7ACF9434607007F200E00F2 +:106AA00018404A4600230021DAF7A2F9F3077A08D2 +:106AB0001A43009001910098019973088018594178 +:106AC00033003A00DAF774F9030002E0FFF7BEFE84 +:106AD0000300002B83D06008C0182100DAF7DCF82F +:106AE00003B00CBC90469946F0BD144BF3E70F4A37 +:106AF000134BD358DB0FDB03EDE70C4A114BD35894 +:106B0000DB0FDB03E7E704200F4B1B690340E2D0F8 +:106B100080231B02DFE70D4B1B68DCE72B00803373 +:106B2000024AFF339B009B58AA0059E70000264009 +:106B30003CF30108B4B20108FC05000000127A0021 +:106B40003C0500000C05000000002740B8B2010819 +:106B5000F0B5E0224646D6464F46032101250F24D4 +:106B60006A489200C0B5835882581B090B4082B016 +:106B700088469D40144000D181E03F23644EA2002E +:106B80003168CB5C9C4239D9604B9C46D02362442F +:106B90009B00D05807230340042B1BD0022B22D08C +:106BA000022B0FD91222FF32934200D19EE0142211 +:106BB000FF32934200D18BE0033A934200D18DE043 +:106BC000002263E0002B00D180E0012BF8D1514B73 +:106BD0001A685BE0C0239B00D2581F231A40E133A0 +:106BE0001343022BDCD1A6224848D2008358DB4352 +:106BF0009B0700D182E08358002247E0002BC3D0DE +:106C0000671EBB4200D87CE0404B4348D3181F5856 +:106C10001B58B946002BB7DA40463B0F0340022B06 +:106C2000B2D01F233F0A1F40AED04846000C03409D +:106C30009846A9D02000FFF7F1F84246824600238B +:106C400038000021DAF7D4F84B4680467F200F0049 +:106C50001840524600230021DAF7CAF8009001914B +:106C60004146FB074A081A437B080098019980189F +:106C7000594142463B00DAF79BF8020003E0FFF778 +:106C8000E5FD0200224E3168002A2DD088200B68D5 +:106C9000095868085B18801829001E681C68D9F715 +:106CA000FBFF360E013673083100C018D9F7F4FF28 +:106CB0002404240E01346308C0182100D9F7ECFF26 +:106CC00002B01CBC90469946A246F0BD134ADDE7CF +:106CD0000E4A134BD258D20FD203D7E70B4A114BAF +:106CE000D258D20FD203D1E7A2004DE704220E4BB7 +:106CF00018690240CAD080221202C7E70B4B1A68FB +:106D0000C4E78034FF34A40023583DE70000264048 +:106D10003CF30108B4B20108FC05000000127A003F +:106D20003C0500000C05000000002740B8B2010837 +:106D3000F8B5514B020019683F23CB5C0020002BB3 +:106D400003D0002A01D0934200D2F8BD511E8B42DD +:106D500046D94A4B92009C46494B6244D158D3587D +:106D6000002BF2DA8B009B0F022BEED01F230C0AB4 +:106D70001C40EAD00D0C1D40E7D0D0200726800033 +:106D800010580640042E06D1C0208000165833400B +:106D9000802676001E437F200140022E4DD025D94B +:106DA0001223FF339E4241D01423FF339E4235D03D +:106DB000033B9E4228D0002600272A000023200003 +:106DC0000021DAF715F802000B005408C9070C433C +:106DD0005D082000290080197941D9F7E9FFB4E75F +:106DE0008032FF32254B9200D358AEE7002E2FD0D1 +:106DF000012EE0D1234B0A00186800210023D9F7A7 +:106E0000F7FF06000F00D8E71C4A1F4B0026D35897 +:106E10000027002BD1DA0027CE03CEE7174A1B4B01 +:106E20000026D3580027002BC7DAF4E7184B0026BA +:106E30001B6900275B07C0D5EDE7A6220F48D200EB +:106E40008358DB439B070CD0835800260027B4E708 +:106E50000800104A00230021D9F7CAFF06000F00DE +:106E6000ABE70D4B0A00186800231900D9F7C0FFE3 +:106E700006000F00A1E7C0463CF3010800002640D1 +:106E8000FC050000B4B201080C0500003C05000040 +:106E90000000274000127A00B8B20108F0B5DE46C3 +:106EA00057464E4645468B46E0B5002800D17FE068 +:106EB0000023C55E0323FF221E001400AFB23E4034 +:106EC000F600B4409A46E443002D1BDA0F233B4002 +:106ED000384F4068BC4680010240B240083B9B08E6 +:106EE0009B006344DF6934483C402243DA61314A05 +:106EF000324C9368A34233D03CBC90469946A2469C +:106F0000AB46F0BD2C2147888946BC462C4F4B46EA +:106F10003F68B8464146CB5CAF081F2B28D80723F3 +:106F200099463B004946BF008B432FD14146096833 +:106F30005346884620218946C844B84441460968DA +:106F40002B4089466146DB009A4699404B465940A2 +:106F500053469A404B460A405A4043461A6015E051 +:106F600092689342C8D15A461035AD00EA50C3E743 +:106F70000B6880229846072312062B401A43802371 +:106F800041469B0163449B005A50BF000D4B406833 +:106F90009C46C02367449B00FA589C46FF2380010F +:106FA0000340B34014401C4363460020FC509EE75E +:106FB0000148A1E700ED00E001005600008F010844 +:106FC0003CF3010800E100E02C2230B5144B1B68B3 +:106FD0009A5C1F2A16D884080722250095432A1E8A +:106FE0000FD103321040C00081400A00FF218140D0 +:106FF0001B68A40020331B191C68624011406140CB +:10700000196030BD1A68072303408020000618432A +:1070100080239B019C46614489008850F1E7C0466B +:107020003CF30108F8B5802506002D02A8420FD9CF +:1070300004000A4F3868E1F78BFA094B9C46644418 +:10704000AC42F7D8074BF318DB0BDB036644F61AA8 +:10705000054B18687043E1F77BFAF8BD8C8F010887 +:107060000080FFFFFF7FFFFF908F010810B5034BEB +:107070001B785843E1F76CFA10BDC046948F0108A5 +:107080008022064B12069A64986C054BC043C017C9 +:107090001840044B9C4660447047C046000027409F +:1070A000FDFFB9FF0300460080220D4B12019858E6 +:1070B000FF225B681A4202D08023DB021843084A91 +:1070C000084BD3581B0402D080235B021843044AA8 +:1070D000044BD3581B0C02D080239B0218437047EB +:1070E0000000264004080000FEE7C04602680A4B84 +:1070F00010B51A6042685A6082689A60C268DA60A5 +:1071000002691A6142695A6182699A61C269DA61E7 +:10711000FFF7EAFF10BDC0467C05001003005A1EB1 +:1071200093414A22F0B5AC245B4293436433032776 +:107130008B429B41254A5B421268145B15686619B5 +:107140003568BD431D4335601568214EAC46644427 +:107150002568B44635402560AE241568145B661971 +:107160003568BD432B43654633601368E3181C68DC +:107170002C401C6000280ED00023102904D9213394 +:107180008B429B415B4201330F205268116881435F +:1071900019431160F0BD5523D05C00238842F3D21F +:1071A0005633D05C553B8842EED25633D05C553BCB +:1071B0008842E9D25633D05C553B8842E4D25633FC +:1071C000D35C8B429B415B420433DDE73CF3010817 +:1071D000FFFCFFFFB0235B055A78002A02D05878E5 +:1071E000C0B270472120FCE7B0235B059A89002AD2 +:1071F00002D0988980B2704780204000FBE7C046EB +:107200000023002210B56A210720FBF771FB144B05 +:107210001A68920610D51A68196812020DD5114A1B +:107220000A431A600120FFF721FF802300200C4A47 +:10723000DB0511680B43136010BD0B4A0A431A604B +:107240000A4AB0219858E8224905D200895C1F22D9 +:1072500002408A42E6D05021054A9950E2E7C046F2 +:107260000000264000000416000004171CFF000068 +:10727000307F000070B5002300226B210720FBF750 +:1072800037FB1E4B04001A68120216D41A681C49F8 +:107290000A401A600820FFF7E9FE18490B68002B26 +:1072A00010DB642301E0002B05D00A68013B002AB3 +:1072B000F9DA002B06D1200070BD1A6811490A4086 +:1072C0001A60E7E70D4D104A2B68012013402B6030 +:1072D000FFF7CCFE2B6800241B02ECD40B4BB02232 +:1072E000E858E8235205DB00D15C1F2303408B42A2 +:1072F000E1D0074BD258074BEA50DCE700002640AC +:10730000FFFFFBACFFFFFBADFFFFFFFB1CFF00001F +:1073100010180000307F00000D4B10B51A6847238D +:10732000D35C002B0FD080230A4ADB055169194238 +:107330000AD080239620074A1B06916980000B43E0 +:107340009361FFF793FE10BD51690B435361F0E762 +:107350003CF30108000026400D4B70B51A68472326 +:10736000D35C002B0ED007230A4DAA691A40904225 +:1073700008D0AC699C4303402343AB61002901D092 +:10738000904200D870BDC820FFF770FEFAE7C046F3 +:107390003CF3010800002640F8B50400FFF71AFF8F +:1073A00085B2FFF721FF07000020FDF75BFA0028F8 +:1073B00022D18022224E52003368974231D062425D +:1073C00062411D6A012352429A431E4B9C4662440D +:1073D00001212800F7F746FA00280BD1BC233268B8 +:1073E000D258AA181368002BFCDBEB6800201B0E98 +:1073F000A02B00D01448F8BD80235B009F4202D030 +:107400000F4E3368DBE7222DF4D90D4E336862420C +:1074100062411D6AFF2352429A430C4B9C466244D0 +:10742000D6E7222DF3D880205968094A4004240663 +:107430008B580440074803401C438C500020DAE777 +:107440003CF301080300000C04004200010100307D +:1074500018F00000FFFFFFFEF8B5DE4657464E4627 +:107460004546E0B59C27020000236921050007205E +:10747000FBF73EFA9B4B06001A689B461368D259ED +:107480009B181B689A46C0231B01994653464A46DF +:1074900013409846FFF7A8FE80235B00984227D050 +:1074A0005B461B689048D9591A688C46624411683B +:1074B000544601401160D9591A688C4649466244C5 +:1074C0001068A143014311601A68DB59D31818688A +:1074D0004B4618404346C01A431E9841C0B200288C +:1074E0000ED130003CBC90469946A246AB46F8BD52 +:1074F0000020FDF7B7F90700FFF76CFE222861D9DD +:10750000E1F72FF80700022D6ED00721774A3420CB +:1075100053698B4304390B435361FFF7A7FDFFF712 +:1075200063FE80235B00984250D05A46B026126812 +:107530006F4B10689C217605F35884466D4C51586A +:107540002340C02461440868A400204003430B602A +:10755000A021136852589B18674AB2581A60072234 +:10756000624915404B69912093431D434D61FFF7DC +:107570007DFDFFF739FE80235B00984279D05A46A3 +:10758000B02512685D4B10689C216D05EB58844650 +:10759000584C51582340C02461440868A40020403E +:1075A00003430B60A021136852589B18C12252015B +:1075B000AA581A600020FFF7EFFE06003800E0F737 +:1075C000D4FF8EE778427841C0B288E75B469C21C1 +:1075D0001A68136852584A499B181A681140802249 +:1075E000D2010A431A60BAE70120FFF7D5FE061E52 +:1075F000E4D1FFF7F9FD80235B0098425DD05A4645 +:10760000B02512683F4B10689C216D05EB588446ED +:10761000384C51582340C02461440868A4002040DD +:1076200003430B60A021136852589B18364AAA588E +:107630001A6007212D4A53698B4305390B43536167 +:10764000FFF7D2FD80235B00984228D0B0222F4B59 +:107650005205D3585A469C2011680A680958254893 +:1076600052180340C0201168800001400B43136092 +:10767000A4E75B4619689C23C8580B680F259C46F5 +:107680000324A02360440268AA4322430260CB582B +:107690000A68D2181368AB43234313608AE75B463A +:1076A0009C211A681368525815499B181A68114092 +:1076B000C022D2010A431A6080E75B4619689C2306 +:1076C000CA580B680F209C466244136883432B43BF +:1076D0001360A0230A68CB58D218136883431D4354 +:1076E0001560A6E73CF30108FFF3FFFF000026400A +:1076F00050180000FFFCFFFF4C1800002418000089 +:10770000FF8FFFFF48180000441800001C180000FD +:10771000F8B5DE4657464E464546E0B59C27020082 +:107720000023682105000720FBF7E2F8B14B0600B3 +:107730001A689B461368D2599B181B689A46C02347 +:107740001B01994653464A4613409846FFF74CFDA5 +:1077500080235B00984227D05B461B68A648D95916 +:107760001A688C4662441168544601401160D95928 +:107770001A688C46494662441068A143014311606F +:107780001A68DB59D31818684B4618404346C01A8C +:10779000431E9841C0B200280ED130003CBC904638 +:1077A0009946A246AB46F8BD0020FDF75BF80700FE +:1077B000FFF710FD22287AD9E0F7D3FE8F4A0700A1 +:1077C000002D7CD08E4913688C461B02DB171B06EC +:1077D0001168634419408B426DD0B021894B490533 +:1077E000C958894BD150B0261F20884B7605F55CCF +:1077F0008249874BEDB2CA58824314380243CA50BB +:107800000838FFF733FCFFF7EFFC80235B0098425A +:1078100000D1A4E05A4612687E4B10689C21F358B0 +:1078200084467D4C51582340C02461440868A4001C +:10783000204003430B60A021136852589B18774ADD +:10784000B2581A601F2272496C481540435893433E +:107850002B4343500720FFF709FCFFF7C5FC8023AB +:107860005B00984200D188E05A46B02512686C4B04 +:1078700010689C216D05EB588446674C5158234095 +:10788000C02461440868A400204003430B60A02189 +:10789000136852589B18C1225201AA581A6000203E +:1078A000FFF77AFD06003800E0F75FFE75E77842E3 +:1078B0007841C0B26FE75021534BD15093E7524B00 +:1078C0000120D550B0235B059846E8234246DB00F3 +:1078D000D55CFFF761FDEDB2061EE4D1FFF784FC35 +:1078E00080235B0098426CD042464E4B9C21D3587B +:1078F0005A461268484C106823408446C0245158A8 +:10790000A40061440868204003430B60A021136871 +:10791000525841469B18444A8A581A601F223748D9 +:107920003B49435893432A4013434350FFF75CFCC1 +:1079300080235B00984236D0B0223C4B5205D3588E +:107940005A469C2011680A68095833485218034067 +:10795000C0201168800001400B431360A3E75B4621 +:107960009C211A681368525831499B181A681140B3 +:107970008022D2010A431A6064E75B4619689C239F +:10798000C8580B680F259C460324A0236044026856 +:10799000AA4322430260CB580A68D2181368AB434B +:1079A000234313607BE75B469C211A681368525897 +:1079B0001F499B181A681140C022D2010A431A605D +:1079C00071E75B4619689C230A680F209446CB58E0 +:1079D00063441A68844682430D3802431A60A02328 +:1079E0000A68CB586146D21813688B43034313606F +:1079F00094E7C0463CF30108FFF3FFFF0000264078 +:107A00000000045310180000307F00004107000000 +:107A10001CFF000050180000FFFCFFFF4C18000086 +:107A20002418000048180000441800001C1800002A +:107A3000FF8FFFFFF8B5CE4647460023020080B512 +:107A4000040069210720FAF753FF3F4E0500336811 +:107A50001B020ED507237269002513409C4203D0F8 +:107A60002000FFF7F9FC050028000CBC9046994661 +:107A7000F8BDE0F776FD0700022C43D0052C05D0B9 +:107A8000002D18D03800E0F770FDEDE7B021E822B6 +:107A90002E4B4905D2009846F3588A5C1F2189462F +:107AA0000B40934249D043464A46F35893431B2226 +:107AB00013434246B3500920FFF7D8FAE023224D82 +:107AC000DB032A68E120134307222B606B69144013 +:107AD00093431C4380236C616A69DB0513436B612C +:107AE00080236A691B0613436B618000FFF7BEFAAF +:107AF00080232A681B04134300222B60144BEA5096 +:107B00000025BFE7B021E822104B4905D200984676 +:107B1000F3588A5C1F2189460B40934204D0002011 +:107B2000FFF7F6FD051EADD143464A46F358934391 +:107B30000B2213434246B350BDE70120FFF7E8FD97 +:107B4000051E9FD1AFE7C046000026401CFF000085 +:107B5000307F0000002810D10F291FD8124B890058 +:107B60001868B423C35A00681B185918032300204F +:107B700013400E4A1A430A607047012810D00228A9 +:107B80000CD1094B1968B823CB5A096800205B183F +:107B900003211140054A0A431A60EDE70448EBE768 +:107BA000014B1968B623EFE73CF301080000FA0522 +:107BB0000100420010B500283DD12A4B03301A685D +:107BC000B42301402848D35A0143106818180160B3 +:107BD00010680430C018016014681800A44608300A +:107BE0006044016010681818C160106818180161BD +:107BF0001068181841611068181881611068181809 +:107C0000C161106818180162106818184162106884 +:107C10001818816210681818C1621068181801637A +:107C200010681818416310681818816300201268E2 +:107C30009B18D96310BD012810D002280CD1094B24 +:107C40001A68B823D35A126800209B1803220A40EE +:107C5000054911431960EDE70448EBE7014B1A6849 +:107C6000B623EFE73CF301080000FA0501004200EB +:107C7000054B1A684723D35C002B04D0034A936951 +:107C80005B005B08936170473CF3010800002640ED +:107C90000B4A10B5116847220A4B8A5C5C69002ABE +:107CA00009D08022D205144205D0002804D19A6957 +:107CB00005490A409A6110BD99690A439A61FAE739 +:107CC0003CF3010800002640FFFFFFBF054A536C4C +:107CD0001B041B0E3A2B03D1516C034B0B43536413 +:107CE0007047C04600002740003A0020064A536C07 +:107CF0001B041B0E3A2B06D1536C04491940E82390 +:107D00009B010B435364704700002740FFC5FFDF12 +:107D10000449054A4B6C1A40E8239B0113434B640A +:107D20007047C04600002740FF00FFFFC022C0236D +:107D30000349520088581B0603438B507047C046C6 +:107D400000002640C023044A5B00D058800F431E29 +:107D50009841C0B27047C04600002640C022802033 +:107D6000064952008B58C0059B009B0803438B506B +:107D7000802388581B0603438B5070470000264021 +:107D8000C023074A5B00D3589B0F08D1C421490088 +:107D9000535800041B0C1B04000C18435050704730 +:107DA00000002640C023094A5B00D35810B59B0F42 +:107DB0000AD1C421F0244900240300045358204070 +:107DC000034C23401843505010BDC04600002640CD +:107DD000FFFFF0FFE0230121024ADB00D150D3581E +:107DE0007047C0460000264070B51D001A70049B05 +:107DF00002326B60D3000A000499040003F026FEEF +:107E000003220E4E2878336869685B690240E318E4 +:107E10001A600A002000203204F038FF08230022F4 +:107E20002000462104F09AFF0122336818682018C8 +:107E300003681A42FCD1002070BDC04688B1010819 +:107E400070B50D00040070230022496803F01EFE87 +:107E5000290020000C23002203F018FE002070BD32 +:107E6000F0B5D6464F464646C0B517001A00402327 +:107E7000994682B00A9E8A467568303BA9444946B5 +:107E8000040003F0E3FD03221B4B317898461B6886 +:107E90000A405B695035E3181A6053467168012B3C +:107EA00021D02B004A46200004F00AFF44210C2375 +:107EB000002200932000083B04F064FF43460121A8 +:107EC0001B681A68A21813681942FCD120001023FD +:107ED0002A00390003F0BAFD002002B01CBC904615 +:107EE0009946A246F0BD20312B004A46200004F0FE +:107EF000E7FE4521DBE7C04688B10108F0B50F2653 +:107F0000204B0D781A68AC1C93684F68E400C118C8 +:107F10000B683340042BFBD8862149014358002BC2 +:107F2000FCDB0F26D3681849C3181960D368C3183F +:107F30001F60D368C3181C609368C1180B68334076 +:107F4000062BFBD8D3681149C318103C1960002CCC +:107F50000CD00F269368C1180B683340062BFBD852 +:107F6000D3680B492404C3180C431C6003215369D4 +:107F70000D40C3181D601368C0180368002BFCD1A6 +:107F8000F0BDC04688B101080800007108401040EB +:107F90000850004070B504000D78FFF7AFFF0F21C7 +:107FA000174B02351868ED008368E21813680B4020 +:107FB000062BFBD8A0220F21C368D205E3181A6054 +:107FC0008368E21813680B40062BFBD8C3680D4A80 +:107FD000E318103D1A60002D0CD00F218368E218C1 +:107FE00013680B40062BFBD8C368074A2D04E3181F +:107FF00015431D600368E4182368002BFCD170BD95 +:1080000088B10108064010400750004070B50D00CF +:10801000040070230022496803F0E0FD29002000DD +:108020000C23002203F0DAFD002070BDF8B51D001E +:10803000140006000F000C232900002203F0CEFDDF +:10804000069B30006B60A31C2C703A00DB00069985 +:1080500003F062FD0020F8BDF8B50D000400160025 +:108060001F000699002D61D1FFF748FF0F20314B0B +:108070001A689368E1180B680340042BFBD886212B +:1080800049016358002BFCDBD3682B49E3181960C6 +:1080900010210F20D368E3181F60D368E31819601C +:1080A0009368E1180B680340042BFBD8D36823497D +:1080B000E318196010210F20D368E3181E60D368FD +:1080C000E31819609368E1180B680340062BFBD88E +:1080D000D3681B49E318196093680F20E118002D3D +:1080E00009D10B680340062BFBD8A021D368C90532 +:1080F000E318196008E00B680340062BFBD8A221A7 +:10810000D368C905E31819600F209368E1180B685C +:108110000340062BFBD8D3680A49E318196013689B +:10812000E4182368002BFCD10020F8BDFFF732FFD4 +:108130009CE7C04688B10108080000710C0000707F +:108140000800104001C01040421E0300042A05D858 +:108150008000C018024BC000C01870470020FCE728 +:10816000542A0310F0B557464E46DE464546E0B564 +:108170000400ABB00E0092461F00002900D19FE022 +:10818000002B00D19CE0349B002B00D198E0359B64 +:10819000002B00D194E0349B5878FFF7D5FF804640 +:1081A000002800D195E04368359A994608AB0593BD +:1081B00019AB0693349B2000597804AB00F0DCFD2A +:1081C000051E7ED1DC4B00219B461A682D23D35C13 +:1081D0001F229446D2229C459B4112031340E02269 +:1081E000120294464A466344013A13430392200024 +:1081F0001222F5F753FD41464B468A6920000E21B5 +:1082000004F0A0FB59462D230968C322CB5C1F2133 +:108210008C46D0219C459B4109028C46494612035D +:10822000134063440B43122200212000F5F736FD72 +:1082300041464B46CA6920000D2104F083FB594694 +:108240002D2309688722CB5C1F218C4690219C45F9 +:108250009B4109028C4612031340039A6344134363 +:10826000002112222000F5F719FD59462D23096837 +:108270009622CB5C1F218C46A0219C459B41090284 +:108280008C4612031340039A6344134300211222C5 +:108290002000F5F703FD09212000059A4B4604F064 +:1082A00051FB0921200004F049FC002813D0A34D04 +:1082B000CC231322DB0100212000F5F7EFFC00E0C6 +:1082C0009E4D28002BB03CBC90469946A246AB463A +:1082D000F0BD9B4DF5E75B461A682D23D35C1F224A +:1082E0009446F0229C459B41D20213408022120208 +:1082F0009446039A63441343002112222000F5F7A9 +:10830000CDFC5246D20092465A462D2312680021D7 +:10831000D35C1F229446A5229C459B411203134027 +:10832000B0221202944652466344013A134320009D +:108330001222F5F7B3FC0E220921200004F04EFCB6 +:10834000002800D099E07F4B302200212000F5F773 +:10835000A5FC5A462D231268D35C1F2B00D99DE043 +:108360008021794B98461B681A68A2181368194235 +:10837000FCD14B4608220921200000F063FE3900A1 +:1083800020004B46092204F069FB0921200004F07B +:10839000D5FB002868D1349B0821DA6820004B46C1 +:1083A00004F0D0FA022003F0F1F94B4608220093C2 +:1083B0000A210923200000F02BFF0B212000534647 +:1083C000320004F0BFFA0B21200004F02FFCCA4554 +:1083D00000D987E00E220B21200004F0FFFB0028CB +:1083E00065D04B46359A0921200004F0ABFA0A23E8 +:1083F0000B220A21200002F0C9FA039B122200215D +:108400002000F5F74BFC0A23302200212000F5F76D +:1084100045FC5B461A682D23D35C1F2B36D8434698 +:1084200080211B681A68A21813681942FCD14B46B8 +:10843000002200930A210923200002F0E7FA00211C +:10844000200001231322F5F729FC0A21200004F063 +:1084500075FB002808D14B46D91DC90879180A2296 +:10846000200004F0FBFA00E0384D902313221B019A +:1084700000212000F5F712FC1AE74B4609223900CB +:10848000200004F0EBFA304B984684E743461B6823 +:108490001A68A2181368002BFCD1C8E72A4B98462B +:1084A0001B681A68A2181368002BFCD161E7284BDF +:1084B000302200212000F5F7F1FB5A462D231268E7 +:1084C000D35C1F2B2FD8434680211B681A68A21843 +:1084D00013681942FCD14B4608220B21200000F002 +:1084E000B1FD7EE74A4653461F219B1A5A462D2668 +:1084F0008A4612682000925D0021924592415242C4 +:108500000C3293408022F5F7C9FB5B4651460022AE +:108510001B6820009B5D994252410E4B2332002183 +:10852000F5F7BCFB56E743461B681A68A2181368A8 +:10853000002BFCD1CFE7C0463CF301080B00320012 +:108540000A0032000980000088B1010801003200F1 +:108550000B800000B0B00000F0B55746DE464E4636 +:108560004546E0B587B004000F1E9246039300D144 +:108570002AE2002A00D127E2109B002B00D123E23F +:10858000119B002B00D11FE25878FFF7DDFD8046DC +:10859000002800D12CE246680220F21DD308049383 +:1085A00003F0F4F8300003F0C5F8BA4A1F259146ED +:1085B0002D2293464A46594612682000535CD22227 +:1085C0009D429B4112031340E02212029446721E08 +:1085D00063441343029200211222F5F75FFB4146E8 +:1085E00033008A6920000E2104F0ACF94946584650 +:1085F0000968731C05930B5CD021C3229D429B41EB +:1086000009028C46120313406344334312220021B3 +:108610002000F5F743FB4146731CCA6920000D2179 +:1086200004F090F9494658460968F0220B5C802115 +:108630009D429B41C9018C4692021340029A6344B9 +:108640001343002112222000F5F728FB4946584623 +:108650000968029A0B5CA0219D429B419625C901A5 +:108660008C46ED022B40634413430021122220006C +:10867000F5F714FB3A0033000421200004F062F9FE +:10868000049B0521FA182000330004F05BF9042153 +:10869000200004F053FA451EA8417F4F45420E22A8 +:1086A000042120003D4004F099FA002800D13D004B +:1086B0000521200004F042FA0E220521002800D0F6 +:1086C0008BE1200004F08AFA002800D192E1002D0D +:1086D00000D0CDE12D239B464B465A461F271B68F1 +:1086E00000219B5CB4229F429B41D2021340C022D6 +:1086F000D2019446029A6344134320001222F5F7F4 +:10870000CDFA4B4659461B68D2225B5CE0219F4262 +:108710009B41C9018C46D2021340029A6344134321 +:10872000002112222000F5F7B9FA4B4659461B6882 +:1087300087225B5C90219F429B4109028C46120379 +:108740001340029A63441343002112222000F5F7DC +:10875000A5FA4B4659461B6896225B5CA0219F42B6 +:108760009B4109028C4612031340029A634413434F +:10877000002112222000F5F791FA4B4659461B685A +:10878000A5225B5CB0219F429B4109028C461203EB +:108790001340029A63441343002112222000F5F78C +:1087A0007DFA4B4659461B68B4225B5CC0219F4250 +:1087B0009B4109028C4612031340029A63441343FF +:1087C000002112222000F5F769FAC0233422DB01D0 +:1087D00000212000F5F762FA039B5A46D9004B4668 +:1087E0001B6820009B5CF0229F429B41D2021340F9 +:1087F0008022120294464A1E6344134303911222BC +:108800000021F5F74BFA802334221B0200212000BF +:10881000F5F744FA039B52460821200004F092F831 +:108820000821200004F002FA0399B14200D902E1C4 +:108830001A4B302200212000F5F730FA8023132252 +:108840005B0000212000F5F729FA4B462D271B6815 +:108850000021DA5D1F2393429B41F022D202134094 +:10886000802212029446029A63441343200012228B +:10887000F5F714FA122200212000029BF5F70EFAF8 +:108880000E220621200004F0A9F9002800D1B8E04A +:1088900006E0C0463CF301080B003200086000000F +:1088A0000023352200212000F5F7F8F905230022E6 +:1088B00005212000009602F0A9F8052306220621D2 +:1088C0002000009600F0A4FC0422072105232000CC +:1088D000009600F09DFC4346187B02F057FF42468D +:1088E000330012690E21200004F02CF84246059B4B +:1088F00052690D21200004F025F842463300126A27 +:108900000921200004F01EF8434608275A6A0A216C +:108910003300200004F016F8119B0B215B68200047 +:108920000293029A330004F00DF8119B0C219A680F +:108930002000330004F006F806230A220921200053 +:108940000196009702F028FF07230C220B2120003C +:108950000196009702F020FF0A230C22002120003C +:1089600002F034F809230B220521200002F02EF832 +:108970000523002205212000009602F047F833006D +:1089800005220521200002F039F8092305220521DE +:10899000200002F01BF80B2305220521200002F025 +:1089A00015F880231322002120005B00F5F776F9EB +:1089B00004220521200004F0E9F800281DD001233D +:1089C000109A13702F4B0DE02F4D280007B03CBCC0 +:1089D00090469946A246AB46F0BD200004F0FEF852 +:1089E000294D2A4B132200212000F5F757F9ECE717 +:1089F000274DEAE7244D254BF4E7109B1870214BD7 +:108A0000F0E7244B302200212000F5F747F94B46D0 +:108A10001B68DB5D1F2B2DD880211F4B1B681A683C +:108A2000A21813681942FCD1330008220621200045 +:108A300000F008FB34E74A468B1B594612682000B9 +:108A4000525C00219742924152420C329340802264 +:108A5000F5F724F94B465A461B6800219B5C2A0017 +:108A60009F426A41200023320C4BF5F717F9DFE6ED +:108A7000064BB7E7084B1B681A68A2181368002B4F +:108A8000FCD1D1E7F17E00000B0032003060000025 +:108A90000A0032000680000088B1010880800000D2 +:108AA000F0B54E46DE4645465746E0B5040087B071 +:108AB0000800150003929946FFF746FB061E00D1F9 +:108AC000A0E0002D00D19DE0A24B456898462D23E3 +:108AD0009B4643465A461B6800219B5C0E3A9246D1 +:108AE00096229A459B4112031340A02212029446FB +:108AF0006A1E63441343049220001222F5F7CEF855 +:108B000043465A46EF1DFF08F9001B6805919B5C20 +:108B100087229A459B4112031340902212029446E9 +:108B20004A1E63441343002112222000F5F7B6F8D1 +:108B3000894B19689B468B6BE3181A680B692433C1 +:108B40001B191B689B009B0C9B0099184B46002B24 +:108B500014D03A001098C847002834D07F4DC02365 +:108B60001322DB0000212000F5F798F8280007B059 +:108B70003CBC90469946A246AB46F0BD2F1E22DD76 +:108B80005346049AAA469A432B00203B9B1AB146AF +:108B90000D001E001F2F00DCD9E0202341462D22AE +:108BA00009688A5C00951F2A00D8CAE06C4A6D49A2 +:108BB000200003F083FE0028D0D1203F0435B742C7 +:108BC000E8D14E4655460921200004F02FF8059BB8 +:108BD000AB4200D991E0644B302200212000F5F730 +:108BE0005DF842462D231268D35C1F2B0CD85B46E0 +:108BF00080211B681A68A21813681942FCD1E0236F +:108C00001B020AE0594DB1E75B461B681A68A218BF +:108C10001368002BFCD1E0231B03049A00211343AB +:108C200020001222F5F73AF8B2690E2120002B003D +:108C300003F088FE0E220A21200003F0CFFF002857 +:108C40000ED080231322DB0100212000F5F726F847 +:108C50002B000A220399200003F000FF00257EE785 +:108C60002D239A46434652461B6820009B5C0E3AD1 +:108C70009146C32299459B4112031340D022120210 +:108C8000944663442B436F1C12220021F5F706F82B +:108C90003B00F26920000D2103F054FE434652468A +:108CA0001B6820009B5CF02299459B41D202134037 +:108CB000802212029446049A63441A43130000214E +:108CC0001222F4F7EBFF2A4B302200212000F4F7A8 +:108CD000E5FF307B02F05AFD280002F02BFD2B004F +:108CE000200008220A2100F0ADF9842313229B0101 +:108CF00000212000F4F7D2FFA3E72D22914642463F +:108D000049461F2712685B1B525C20009742924124 +:108D100052420C3293401A0080239B0513430021DA +:108D20008022F4F7BBFF43464A461B6800219B5C48 +:108D300000229F425241200023320E4BF4F7AEFF37 +:108D400049E7074A0749200003F07CFD33E73B0071 +:108D500024E7C0463CF3010888B101080100320055 +:108D6000E146D2528D0B746C09A000000B0032005A +:108D70000A80000098900000F0B55746DE464E4647 +:108D80004546E0B5040085B008008A4615001F007E +:108D9000FFF7DAF9061E00D1D9E00395002D00D1C6 +:108DA000D5E0002F00D1D2E07968002900D1CEE0D3 +:108DB000B968002900D1CAE06949456889462D2172 +:108DC0008846494640460968D2220B5C1F218B46E3 +:108DD000E0219B459B4109028C46120313406344EA +:108DE000691E0B430291122200212000F4F756FF66 +:108DF0004846424600680299835C90208722000220 +:108E00009B459B4184461203134063440B4312224B +:108E100000212000F4F742FF4A4640461268002134 +:108E2000135CC3229B459B4112031340D0221202C4 +:108E3000944663442B4312222000F4F72FFF4A4646 +:108E4000404612680299135CA5229B459B41120380 +:108E50001340B0221202944663440B4312220021B5 +:108E60002000F4F71BFF4A46404612680299135C43 +:108E7000B4229B459B4112031340C0221202944628 +:108E800063440B43122200212000F4F707FF2B005C +:108E900032690E21200003F055FD2B00B269092133 +:108EA000200003F04FFD6B1C72690D21200003F0C0 +:108EB00049FD2B00326A0B21200003F043FD2B00FB +:108EC000726A0C21200003F03DFD280002F032FC04 +:108ED000307B02F05BFC4846036840461B5CA020E8 +:108EE000962200029B459B4184461203029913403F +:108EF00063440B43122200212000F4F7CFFE2B0025 +:108F0000039A0A21200003F01DFD09230C2200937F +:108F10000B2101332000019502F03EFC2B000B22B7 +:108F20007968200003F09AFD2B000C22B96820001C +:108F300003F094FD00233B7053467B70FC2320001C +:108F4000DB0113220021F4F7A9FE002000E0054810 +:108F500005B03CBC90469946A246AB46F0BDC04623 +:108F60003CF301080B003200F8B504000023102286 +:108F70000021F4F793FE20002A4B00220021F4F791 +:108F80008DFEC0232D261F2520009B0100220021DD +:108F9000F4F784FE244FF0223B6812029B5D200010 +:108FA0009D429B411340214A002194461222634472 +:108FB000F4F774FE3B681E4A9B5D94469D429B41BC +:108FC00013406344200080220021F4F767FE002252 +:108FD0003B6820009B5D00219D425241154B23328E +:108FE000F4F75CFE2000144B36220021F4F756FE05 +:108FF0002000124B3D220021F4F750FE2000104BC0 +:1090000037220021F4F74AFE200002231322002118 +:10901000F4F744FE0023112200212000F4F73EFE65 +:10902000F8BDC046012000003CF301080812000012 +:109030000090200030200000232000002E0040007F +:109040002E203000F0B5D6464F4646469A46C0B56B +:1090500015000E000023102200210400F4F71EFE6C +:109060008023DB013343200000220021F4F716FEA9 +:10907000C0239B012B43200000220021F4F70EFEA9 +:1090800053465A002D23984641461F25594F013A11 +:109090003B6820005B5CF0219D429B4149020B40F4 +:1090A000802189018C466344134300211222F4F786 +:1090B000F5FD42463B6820009B5CF0229D429B41AF +:1090C0001202914613408022520194465246634454 +:1090D000013A134300211222F4F7E0FD42463B68B7 +:1090E00020009B5C52469D429B415B420C339A4060 +:1090F000002113008022F4F7D1FD002642463B6890 +:1091000020009B5C32009D427241002123323A4B89 +:10911000F4F7C4FD2000394B33220021F4F7BEFDE3 +:1091200042463B6820009B5C00219D4276418123A2 +:1091300032005B012332F4F7B1FD2000304B3322C3 +:109140000021F4F7ABFD2000022313220021F4F7E5 +:10915000A5FD42463B6820009B5C00219D42AD413D +:109160004B461D4080235B019C46534665445F1C73 +:109170002B001B3A3B43F4F791FD3B0020001222E9 +:109180000021F4F78BFD2000322337220021F4F771 +:1091900085FD20001B4B37220021F4F77FFD2000C6 +:1091A000194B03220021F4F779FD20001E233722FA +:1091B0000021F4F773FD2000144B30220021F4F756 +:1091C0006DFDC12320009B0330220021F4F766FDD2 +:1091D0002000072313220021F4F760FD0023112251 +:1091E00000212000F4F75AFD1CBC90469946A24687 +:1091F000F0BDC0463CF30108304000004D200000A7 +:109200001E2000000E100000100040000140400031 +:10921000F0B5C64600B51D0088B00F00160000234B +:10922000102200210400F4F739FD80235B013B4349 +:10923000002200212000F4F731FD80239B013343FD +:10924000002200212000F4F729FDC0239B012B43BD +:10925000002200212000F4F721FD0E9B12225B006A +:10926000013B00212000F4F719FD232333220021C4 +:109270002000F4F713FD2D23864D2A68D35C1F2BA5 +:1092800015D88021844B1B681A68A21813681942EC +:10929000FCD1824B1B78002B14D0012B1AD1804BB0 +:1092A0001B78052B1CD87F4A9B00D3589F467A4BCE +:1092B0001B681A68A2181368002BFCD1774B1B7827 +:1092C000002BEAD1764B1B78052B09D8764A9B00F8 +:1092D000D3589F460E9B002201212000FFF7B2FECB +:1092E0002000012313220021F4F7D8FC00231122CF +:1092F00000212000F4F7D2FC08B004BC9046F0BD79 +:109300002000FFF731FEEBE701AE3200674B1C3364 +:1093100083CB83C21968200011601B79002113716F +:1093200000231022F4F7BAFC614B00220021200038 +:10933000F4F7B4FCA0230022DB0100212000F4F7A5 +:10934000ADFC802312229B0000212000F4F7A6FC34 +:109350002D23984642461F272B6800219B5CF02254 +:109360009F429B4112021340524A2000944612220F +:109370006344F4F793FC42462B6800219B5CB422C3 +:109380009F429B41D2021340C122D2019446200049 +:1093900063441222F4F782FC42462B6800219B5C56 +:1093A000C0229F429B41D2021340434A2000944670 +:1093B00080226344F4F772FC42462B6800219B5CD8 +:1093C000C0229F429B41520313403C4A20009446D6 +:1093D00080226344F4F762FC3200812306212000DE +:1093E00003F0B0FA002642462B6800219B5C320055 +:1093F0009F42724120002332314BF4F74FFC314B36 +:10940000302200212000F4F749FC162333220021EA +:109410002000F4F743FC0423362200212000F4F757 +:109420003DFC42462B6800219B5C20009F42764118 +:109430003200254B2332F4F731FC80233022DB014C +:1094400000212000F4F72AFC1623332200212000FB +:10945000F4F724FC1D4B362200212000F4F71EFCFB +:109460004E233D2200212000F4F718FC184B372230 +:1094700000212000F4F712FC4323200013220021D6 +:10948000F4F70CFC0023112200212000F4F706FC65 +:1094900026E7C0463CF3010888B101084C91010859 +:1094A000BDB2010850300310683003108030031043 +:1094B00001400000DF110000000006080000180C49 +:1094C000531000000540000003100000044000009D +:1094D0004E40300001AE3200B04B83CB83C283CB11 +:1094E00083C21B6800211360200000231022F4F7C0 +:1094F000D5FBAB4B002200212000F4F7CFFB8023EB +:109500000022DB0100212000F4F7C8FB2D23984640 +:1095100042461F272B6800219B5C96229F429B415D +:10952000D20213409F4A2000944612226344F4F76B +:10953000B5FBE0231222FF3300212000F4F7AEFB3D +:1095400042462B6800219B5CF0229F429B41120205 +:109550001340954A2000944612226344F4F79EFB80 +:1095600042462B6800219B5C80229F429B41520314 +:109570001340812212059446200063448022F4F7B0 +:109580008DFB3200E02305212000002603F0DAF9EC +:1095900042462B6800219B5C32009F4272412000B2 +:1095A0002332824BF4F77AFB814B302200212000DA +:1095B000F4F774FB1523332200212000F4F76EFB2F +:1095C0000323362200212000F4F768FB42462B6873 +:1095D00000219B5C32009F42724120002332754B78 +:1095E000F4F75CFBC02330229B0100212000F4F73C +:1095F00055FB1523332200212000F4F74FFB0323F2 +:10960000362200212000F4F749FB42462B68002156 +:109610009B5C32009F42724120002332654BF4F77D +:109620003DFBC02330229B0100212000F4F736FBD4 +:109630001523332200212000F4F730FB03233622C8 +:1096400000212000F4F72AFB42462B6800219B5C96 +:1096500032009F42724120002332564BF4F71EFB2A +:10966000C02330229B0100212000F4F717FB1523B3 +:10967000332200212000F4F711FB032336220021BE +:109680002000F4F70BFB42462B6800219B5C320064 +:109690009F42724120002332464BF4F7FFFAC02369 +:1096A00030229B0100212000F4F7F8FA1523332221 +:1096B00000212000F4F7F2FA0323362200212000D3 +:1096C000F4F7ECFA42462B6800219B5C32009F4283 +:1096D000724120002332374BF4F7E0FAC0233022E6 +:1096E0009B0100212000F4F7D9FA15233322002131 +:1096F0002000F4F7D3FA0323362200212000F4F7E8 +:10970000CDFA42462B6800219B5C32009F42724199 +:1097100020002332274BF4F7C1FAC02330229B01EB +:1097200000212000F4F7BAFA15233322002120008B +:10973000F4F7B4FA0323362200212000F4F7AEFA3E +:1097400042462B6800219B5C20009F4276413200FC +:10975000184B2332F4F7A2FAC02330229B010021D8 +:109760002000F4F79BFA1523332200212000F4F7A0 +:1097700095FA114B362200212000F4F78FFA3E2390 +:109780003D2200212000F4F789FA0C4B37220021FA +:109790002000F4F783FA23236FE6C04680300310DD +:1097A00001300000DF500000FF10000042100000F8 +:1097B0000430000002100000033000003E30300092 +:1097C0000023102200212000F4F768FA8C4B0022BD +:1097D00000212000F4F762FAA0230022DB0100211F +:1097E0002000F4F75BFAA02312225B000021200086 +:1097F000F4F754FA2D23984642461F272B68002180 +:109800009B5CF0229F429B41120213407D4A200044 +:10981000944612226344F4F741FA42462B68002131 +:109820009B5CC0229F429B41D2021340764A20009B +:10983000944680226344F4F731FA42462B680021B3 +:109840009B5CE0229F429B41120313406F4A200021 +:10985000944680226344F4F721FA002642462B689E +:1098600000219B5C32009F42724120002332684BF2 +:10987000F4F714FA674B302200212000F4F70EFAB7 +:109880004123372200212000F4F708FA624B2022FE +:1098900000212000F4F702FA0123362200212000E3 +:1098A000F4F7FCF942462B6800219B5C20009F42A4 +:1098B00076413200594B2332F4F7F0F93722504BFE +:1098C00000212000F4F7EAF9534B20220021200068 +:1098D000F4F7E4F9524B362200212000F4F7DEF9C8 +:1098E0004E233D2200212000F4F7D8F94D4B3722BA +:1098F00000212000F4F7D2F90323BEE50023102253 +:1099000000212000F4F7CAF93D4B0022002120007D +:10991000F4F7C4F9A0230022DB0100212000F4F7B2 +:10992000BDF9802312225B0000212000F4F7B6F974 +:109930002D23984642461F272B6800219B5CF0226E +:109940009F429B4112021340374A20009446122244 +:109950006344F4F7A3F942462B6800219B5C802204 +:109960009F429B41D2021340304A200094468022FD +:109970006344F4F793F942462B6800219B5CC022B4 +:109980009F429B4112031340294A200094468022A3 +:109990006344F4F783F9002642462B6800219B5C60 +:1099A00032009F42724120002332194BF4F776F9BE +:1099B000184B302200212000F4F770F914233622CE +:1099C00000212000F4F76AF9134B20220021200027 +:1099D000F4F764F90123362200212000F4F75EF940 +:1099E00042462B6800219B5C20009F42764132005A +:1099F0000A4B2332F4F752F90E4B362260E7C04689 +:109A0000014000003F1100000000060800000E0C9D +:109A10005310000005400000121000000310000069 +:109A2000414000004E403000FF10000000000408DC +:109A300000000C0C10400000002310220021200028 +:109A4000F4F72CF9FD4B002200212000F4F726F951 +:109A5000A02300221B0200212000F4F71FF92D2370 +:109A6000984642461F272B6800219B5CB4229F42E8 +:109A70009B41D2021340F24A2000944612226344D2 +:109A8000F4F70CF942462B6800219B5CD2229F42DE +:109A90009B41D2021340EB4A2000944612226344B9 +:109AA000F4F7FCF842462B6800219B5CF0229F42B1 +:109AB0009B41D2021340E44A2000944612226344A0 +:109AC000F4F7ECF842462B6800219B5C80229F4211 +:109AD0009B41920294461340634480222000F4F795 +:109AE000DDF842462B6800219B5C80229F429B410F +:109AF000D2021340D54A2000944680226344F4F7F2 +:109B0000CDF842462B6800219B5CC0229F429B41BE +:109B1000D2021340CE4A2000944680226344F4F7D8 +:109B2000BDF842462B6800219B5C80229F429B41EE +:109B300012031340C74A2000944680226344F4F77E +:109B4000ADF842462B6800219B5C80229F429B41DE +:109B500052031340C04A2000944680226344F4F725 +:109B60009DF842462B6800219B5CC0229F429B418E +:109B700052031340B94A20009446802263440026D1 +:109B8000F4F78CF842462B6800219B5C32009F4220 +:109B9000724120002332B24BF4F780F8B14B3622E9 +:109BA00000212000F4F77AF8AF4B3D22002120007D +:109BB000F4F774F8AD4B372200212000F4F76EF86B +:109BC00042462B6800219B5C32009F42724120007C +:109BD0002332A74BF4F762F8A64B3622002120006F +:109BE000F4F75CF8A04B3D2200212000F4F756F872 +:109BF0009E4B372200212000F4F750F89E4B202284 +:109C000000212000F4F74AF89C4B36220021200066 +:109C1000F4F744F8944B3D2200212000F4F73EF87D +:109C2000924B372200212000F4F738F842462B6887 +:109C300000219B5C32009F42724120002332904BF6 +:109C4000F4F72CF88F4B202200212000F4F726F89F +:109C50008A4B362200212000F4F720F8824B3D2267 +:109C600000212000F4F71AF8804B37220021200051 +:109C7000F4F714F842462B6800219B5C32009F42A7 +:109C8000724120002332804BF4F708F87B4B3722D7 +:109C900000212000F4F702F87C4B3622002120003E +:109CA000F3F7FCFF42462B6800219B5C32009F4289 +:109CB000724120002332764BF3F7F0FF6F4B3622D0 +:109CC00000212000F3F7EAFF674B3D22002120002E +:109CD000F3F7E4FF654B372200212000F3F7DEFFA6 +:109CE00042462B6800219B5C20009F427641320057 +:109CF000684B2332F3F7D2FF5E4B3722002120005E +:109D0000F3F7CCFF614B362200212000F3F7C6FFAA +:109D10005D4B202200212000F3F7C0FF574B362275 +:109D200000212000F3F7BAFF4F4B3D220021200015 +:109D3000F3F7B4FF4D4B372200212000F3F7AEFFBD +:109D4000554B202200212000F3F7A8FF4B4B362271 +:109D500000212000F3F7A2FF434B3D220021200009 +:109D6000F3F79CFF414B372200212000F3F796FFC9 +:109D7000424B362200212000F3F790FF3A4B3D2260 +:109D800000212000F3F78AFF384B37220021200002 +:109D9000F3F784FFE1232022DB0100212000F3F709 +:109DA0007DFF364B362200212000F3F777FF2E4B44 +:109DB0003D2200212000F3F771FF2C4B37220021B8 +:109DC0002000F3F76BFF324B202200212000F3F735 +:109DD00065FF2A4B372200212000F3F75FFF2B4B52 +:109DE000362200212000F3F759FF2B4B20220021BF +:109DF0002000F3F753FF214B372200212000F3F717 +:109E00004DFF224B362200212000F3F747FF234B62 +:109E1000202200212000F3F741FF184B37220021B8 +:109E20002000F3F73BFF194B362200212000F3F707 +:109E300035FF174B20220021200031E00190000067 +:109E40007F6100007F7100001F800000000004049B +:109E5000000006080000080C000010100000181494 +:109E6000A56000006A9000009E0040009E903000B7 +:109E700064800000989000008270000097900000BD +:109E80006470000073700000727000009E904000CB +:109E90007170000071800000707000006070000040 +:109EA000F3F7FCFE164B362200212000F3F7F6FEF6 +:109EB000144B3D2200212000F3F7F0FE124B372215 +:109EC00000212000F3F7EAFE104B202200212000A1 +:109ED000F3F7E4FE0A4B362200212000F3F7DEFE02 +:109EE000084B3D2200212000F3F7D8FE064B372215 +:109EF00000212000F3F7D2FEE0235B00FFF7BDFA5C +:109F0000979000009E0040009E903000707000000E +:109F10000023102200212000F3F7C0FEFE4B002298 +:109F200000212000F3F7BAFEB02300221B0200211B +:109F30002000F3F7B3FE2D23984642461F272B68D7 +:109F400000219B5C96229F429B41D2021340F34A20 +:109F50002000944612226344F3F7A0FE42462B6889 +:109F600000219B5CB4229F429B41D2021340EC4AE9 +:109F70002000944612226344F3F790FE42462B6879 +:109F800000219B5CD2229F429B41D2021340E54AB2 +:109F90002000944612226344F3F780FE42462B6869 +:109FA00000219B5CF0229F429B41D2021340DE4A7B +:109FB0002000944612226344F3F770FE42462B6859 +:109FC00000219B5C87229F429B4112031340D74A8A +:109FD0002000944612226344F3F760FE42462B6849 +:109FE00000219B5C80229F429B4152039446134078 +:109FF000634480222000F3F751FE42462B68002183 +:10A000009B5C80229F429B4192021340C84A2000E1 +:10A01000944680226344F3F741FE42462B680021B8 +:10A020009B5CC0229F429B41D2021340C14A200048 +:10A03000944680226344F3F731FE42462B680021A8 +:10A040009B5CC0229F429B4112031340BA4A2000EE +:10A05000944680226344F3F721FE42462B68002198 +:10A060009B5CE0229F429B4112031340B34A2000B5 +:10A070009446802263440026F3F710FE42462B6884 +:10A0800000219B5C32009F42724120002332AC4B86 +:10A09000F3F704FE42462B6800219B5C32009F428E +:10A0A000724120002332A74BF3F7F8FD42462B689C +:10A0B00000219B5C32009F42724120002332A24B60 +:10A0C000F3F7ECFD42462B6800219B5C32009F4277 +:10A0D0007241200023329D4BF3F7E0FD9C4B202280 +:10A0E00000212000F3F7DAFD9A4B362200212000F0 +:10A0F000F3F7D4FD984B3D2200212000F3F7CEFD6D +:10A10000964B372200212000F3F7C8FD944B202204 +:10A1100000212000F3F7C2FD924B372200212000DE +:10A12000F3F7BCFD904B362200212000F3F7B6FD7B +:10A130008E4B202200212000F3F7B0FD894B362200 +:10A1400000212000F3F7AAFD834B3D2200212000CF +:10A15000F3F7A4FD814B372200212000F3F79EFD89 +:10A16000804B362200212000F3F798FD7A4B3D22E8 +:10A1700000212000F3F792FD784B372200212000C8 +:10A18000F3F78CFD42462B6800219B5C32009F4216 +:10A19000724120002332764BF3F780FD714B37225A +:10A1A00000212000F3F77AFD6F4B362200212000BA +:10A1B000F3F774FD6F4B202200212000F3F76EFDB2 +:10A1C000684B362200212000F3F768FD624B3D22E8 +:10A1D00000212000F3F762FD604B372200212000B0 +:10A1E000F3F75CFD644B372200212000F3F756FDA6 +:10A1F0005D4B362200212000F3F750FD42462B68CC +:10A2000000219B5C32009F427241200023325B4B55 +:10A21000F3F744FD5A4B202200212000F3F73EFDC6 +:10A22000504B362200212000F3F738FD4A4B3D22E7 +:10A2300000212000F3F732FD484B37220021200097 +:10A24000F3F72CFD4F4B202200212000F3F726FDD1 +:10A25000444B372200212000F3F720FD424B3622E9 +:10A2600000212000F3F71AFD42462B6800219B5C79 +:10A2700032009F42724120002332434BF3F70EFD20 +:10A280003D4B372200212000F3F708FD364B3622E4 +:10A2900000212000F3F702FD344B20220021200092 +:10A2A000F3F7FCFC2F4B362200212000F3F7F6FCDD +:10A2B000294B3D2200212000F3F7F0FC274B3722E9 +:10A2C00000212000F3F7EAFC42462B6800219B5C4A +:10A2D00032009F427241200023322C4BF3F7DEFC08 +:10A2E0001F4B202200212000F3F7D8FC1D4B372202 +:10A2F00000212000F3F7D2FC1B4B36220021200066 +:10A30000F3F7CCFC42462B6800219B5C32009F4255 +:10A31000724120003CE0C04601A00000FF50000058 +:10A32000FF600000FF7000001F8000005F900000D1 +:10A33000000002040000060800000C0C00000E10D3 +:10A34000B050000052A00000A1600000A1800000F9 +:10A35000A2A00000AAA00000AE004000AEA0300005 +:10A3600084700000A7A00000AEA040006270000052 +:10A370005370000073700000A6A000006180000010 +:10A380008370000071700000616000005280000066 +:10A390002332EF4BF3F782FCEE4B2022002120000A +:10A3A000F3F77CFCEC4B372200212000F3F776FC1E +:10A3B000EA4B362200212000F3F770FC42462B685E +:10A3C00000219B5C32009F42724120002332E44B0B +:10A3D000F3F764FCE34B372200212000F3F75EFC27 +:10A3E000DE4B362200212000F3F758FC42462B6852 +:10A3F00000219B5C32009F42724120002332DA4BE5 +:10A40000F3F74CFCD74B362200212000F3F746FC33 +:10A41000D64B3D2200212000F3F740FCD44B3722DD +:10A4200000212000F3F73AFC42462B6800219B5C98 +:10A4300032009F42724120002332CE4BF3F72EFCB4 +:10A44000CD4B202200212000F3F728FCC24B3722FD +:10A4500000212000F3F722FCC04B3622002120000F +:10A46000F3F71CFCC54B202200212000F3F716FC5B +:10A47000B94B372200212000F3F710FCB74B3622EE +:10A4800000212000F3F70AFC002380220021200095 +:10A49000F3F704FC42462B6800219B5C32009F428C +:10A4A000724120002332B64BF3F7F8FBAD4B362256 +:10A4B00000212000F3F7F2FBAC4B3D2200212000ED +:10A4C000F3F7ECFBAA4B372200212000F3F7E6FB61 +:10A4D000AA4B202200212000F3F7E0FB9E4B3722FD +:10A4E00000212000F3F7DAFB9C4B362200212000EC +:10A4F000F3F7D4FBA34B202200212000F3F7CEFB7F +:10A50000954B362200212000F3F7C8FB974B3D22E4 +:10A5100000212000F3F7C2FB954B372200212000D9 +:10A52000F3F7BCFB42462B6800219B5C32009F4244 +:10A53000724120002332944BF3F7B0FB864B372255 +:10A5400000212000F3F7AAFB844B362200212000D3 +:10A55000F3F7A4FB42462B6800219B5C20009F423E +:10A5600076413200894B2332F3F798FB7A4B36223F +:10A5700000212000F3F792FB7C4B3D2200212000BC +:10A58000F3F78CFB7A4B372200212000F3F786FB90 +:10A59000F8239B00FEF771FF00231022002120000A +:10A5A000F3F77CFB7A4B002200212000F3F776FBC7 +:10A5B000A0232D271F26DB01002200212000F3F716 +:10A5C0006DFB2B68F022DB5D12029E429B41134023 +:10A5D000704A00219446200063441222F3F75EFB88 +:10A5E0002B68F022DB5D52029E429B4113406A4A77 +:10A5F00000219446200063441222F3F74FFB2B689E +:10A60000B422DB5D92029E429B411340634A0021CB +:10A610009446200063441222F3F740FBE0222B68AB +:10A620001203DB5D94469E429B41134063448022AB +:10A6300000212000F3F732FB00222B689046DB5DFF +:10A6400011009E42524120002332554BF3F726FB66 +:10A6500080222B681203DB5D94469E429B4113408F +:10A660006344802200212000F3F718FB42462B6848 +:10A670000021DB5D20009E425241822323325B0198 +:10A68000F3F70CFBC0222B68D202DB5D90469E42A2 +:10A690009B4113404344802200212000F3F7FEFA3F +:10A6A000404B202200212000F3F7F8FA2B684246A5 +:10A6B000DB5D00219E429B411340434480222000E9 +:10A6C000F3F7ECFAC12320229B0100212000F3F7CD +:10A6D000E5FA354B362200212000F3F7DFFA334B41 +:10A6E0003D2200212000F3F7D9FA314B3722002117 +:10A6F0002000F3F7D3FA2F4B372200212000F3F785 +:10A70000CDFA2D4B362200212000F3F7C7FA2B4B50 +:10A71000372200212000F3F7C1FA274B362200210F +:10A720002000F3F7BBFA264B362200212000F3F776 +:10A73000B5FA244B3D2200212000F3F7AFFA224B5B +:10A74000372200212000F3F7A9FA0E23FEF795FE29 +:10A750005180000083700000A7A00000AEA0400060 +:10A7600052900000A9A0000051900000AE004000EF +:10A77000AEA0300091800000847000009270000054 +:10A78000509000005470000071700000B070000024 +:10A7900001400000DF100000DF200000DF3000007B +:10A7A0005040000010200000252000002E00400036 +:10A7B0002E203000242000002E2040002120000008 +:10A7C000234000004E0040004E4030000023102285 +:10A7D00000212000F3F762FA614B002200212000E3 +:10A7E000F3F75CFAA0230022DB0100212000F3F73D +:10A7F00055FA2D23984642461F262B6800219B5C64 +:10A80000F0229E429B4152021340564A2000944639 +:10A8100012226344F3F742FA42462B6800219B5C04 +:10A82000B4229E429B41920213404F4A200094461C +:10A8300012226344F3F732FA42462B6800219B5CF4 +:10A84000C0229E429B4112039446134063448022DF +:10A850002000F3F723FA002742462B6800219B5C77 +:10A860003A009E427A4120002332404BF3F716FA19 +:10A8700042462B6800219B5C80229E429B41120332 +:10A8800094461340634480222000F3F707FA4246BF +:10A890002B6800219B5C20009E427F4181233A006F +:10A8A0009B012332F3F7FAF942462B6800219B5CA7 +:10A8B00020009E429B418026F602B446334063440A +:10A8C0008022F3F7EBF9C12320229B010021200015 +:10A8D000F3F7E4F9264B362200212000F3F7DEF9E6 +:10A8E000244B3D2200212000F3F7D8F9224B3722D8 +:10A8F00000212000F3F7D2F9204B3622002120005E +:10A90000F3F7CCF91B4B3D2200212000F3F7C6F9E9 +:10A91000194B372200212000F3F7C0F9184B2022F1 +:10A9200000212000F3F7BAF9164B3822002120004D +:10A93000F3F7B4F9144B362200212000F3F7AEF9F7 +:10A940000C4B3D2200212000F3F7A8F90A4B3722D7 +:10A9500000212000F3F7A2F90C23FEF78EFDC0467C +:10A96000014000007F200000BF3000005040000088 +:10A97000454000004E0040004E4030004340000083 +:10A9800020300000232000004240000070B50C0081 +:10A99000050012010E031343334336220021F3F75F +:10A9A0007DF9084B2401280023433D220021F3F7C1 +:10A9B00075F9054B34432800234337220021F3F770 +:10A9C0006DF970BD0E0040000E00300070B50C0037 +:10A9D000050012010E031343334337220021F3F71E +:10A9E0005DF92401044B344328002343362200211F +:10A9F000F3F754F970BDC0460E00400000B583B0B7 +:10AA000000931300FEF704FC03B000BDF8B5CE467A +:10AA100047460D0080B51E001700002310220021BC +:10AA20000400F3F73BF9E023DB013B430022002164 +:10AA30002000F3F733F980231B0233430022002167 +:10AA40002000F3F72BF9B0231B022B430022002137 +:10AA50002000F3F723F92D23984642461F26B24DD6 +:10AA600000212B6820009B5C87229E429B411203A1 +:10AA70001340902212029446089A6344571E3B43A7 +:10AA80001222F3F70BF942462B6800219B5C9622B9 +:10AA90009E429B4112031340A0221202944663443B +:10AAA0003B4312222000F3F7F9F842462B680021BD +:10AAB0009B5CC0229E429B41B42612029446360300 +:10AAC000334063443B4312222000F3F7E7F8974BEF +:10AAD000302200212000F3F7E1F8954B30220021CD +:10AAE0002000F3F7DBF8934B302200212000F3F72E +:10AAF000D5F8C0232D261B02342200212000F3F7B5 +:10AB0000CDF88D4F9A2320003D220021F3F7C6F89F +:10AB10002B6838689B5D1F2B00D987E08021036874 +:10AB2000E21813681942FCD1C36B3F22E3181B687B +:10AB30002000984600210923F3F7B0F82B68386805 +:10AB40009B5D1F2B6CD880210368E21813681942A3 +:10AB5000FCD1C36B3F22E3181B68002199462000FB +:10AB60000A23F3F79BF82B68995D3B689C461B68AA +:10AB7000E2181F294DD8802013681842FCD1634683 +:10AB8000DB6BE318186802239C464B466246134071 +:10AB90004246520700D59AE0002B4DD1634603424E +:10ABA00000D088E04346DB0752D5644B37220021B2 +:10ABB0002000F3F773F82B689B5D1F2B00D89EE0F5 +:10ABC0005F4B242200212000F3F768F85D4B372209 +:10ABD00000212000F3F762F836225B4B00212000B1 +:10ABE000F3F75CF80B233F2200212000F3F756F81F +:10ABF000564B362200212000F3F750F82B689B5D5E +:10AC00001F2B1ED9524B252200212000F3F746F8B6 +:10AC100078E71368002BB2D01368002BF9D1AEE7A8 +:10AC20000368E2181368002BFCD192E70368E2186E +:10AC30001368002BFCD177E71F2959D9404B2422F8 +:10AC4000CCE7444B262200212000F3F727F859E7F0 +:10AC5000414B372200212000F3F720F82B689B5D41 +:10AC60001F2B53D93D4B242200212000F3F716F867 +:10AC70003B4B372200212000F3F710F83622394BE6 +:10AC800000212000F3F70AF80C233F2200212000C6 +:10AC9000F3F704F8344B362200212000F2F7FEFFD0 +:10ACA0002B689B5D1F2B0BD9304B252200212000E8 +:10ACB000F2F7F4FF26E71F292FD9284B2422DFE7DC +:10ACC0002B4B262200212000F2F7E8FF1AE7B023E1 +:10ACD00020005B0113220021F2F7E0FF0023112284 +:10ACE00000212000F2F7DAFF0CBC90469946F8BD2F +:10ACF000204B252200212000F2F7D0FF72E71D4BE8 +:10AD0000252200212000F2F7C9FF5FE71A4B252218 +:10AD100000212000F2F7C2FFAAE7174B25220021ED +:10AD20002000F2F7BBFFAFE73CF3010808900000FA +:10AD30000EA0000007B0000088B101089A90000042 +:10AD40009F900000BCB00000BEB04000BEB08000CC +:10AD5000BFB00000B0B00000A9A00000AFA000008C +:10AD6000CBC00000CEC04000CEC08000CFC00000ED +:10AD7000C0C0000090900000A0A00000F0B5CE463A +:10AD80004746884680B51D0083B017000023102277 +:10AD9000002104000A9EF2F781FFA02342461B0215 +:10ADA0001343200000220021F2F778FFB0231B029A +:10ADB0003B43200000220021F2F770FFC0231B025A +:10ADC0002B43200000220021F2F768FF3D4B1F2596 +:10ADD00099462D2398464B4642461B68771E9B5C3E +:10ADE000D2229D429B41D2021340E022D2019446DE +:10ADF00063443B43200012220021F2F74FFF4B46F1 +:10AE000042461B6820009B5CF0229D429B41D2027F +:10AE1000134080221202944663443B4312220021D5 +:10AE2000F2F73CFF4B4642461B6820009B5C902299 +:10AE30009D42AD418723120294461B032B4063447D +:10AE40003B4312220021F2F729FFE0232000DB011F +:10AE500035220021F2F722FF200000960C23072262 +:10AE60000821FFF7D3FD20000096082308220721C0 +:10AE7000FEF7CEF92000009607230A220A21FEF7EA +:10AE8000C7F92000009607230B220921FEF7C0F91D +:10AE900020000096082309220B21FEF7B9F9E023D0 +:10AEA00020009B0013220021F2F7F8FE002311225C +:10AEB00000212000F2F7F2FE03B00CBC9046994648 +:10AEC000F0BDC0463CF30108F0B5CE464746884683 +:10AED00080B51E0083B0170000231022002104005B +:10AEE0000C9DF2F7DBFE802342461B021343200039 +:10AEF00000220021F2F7D2FE90231B023B432000E8 +:10AF000000220021F2F7CAFEA0231B0233432000D7 +:10AF100000220021F2F7C2FEB0230A9A1B0213435B +:10AF2000200000220021F2F7B9FEC0230B9A1B0279 +:10AF30001343200000220021F2F7B0FE844B1F26AD +:10AF400099462D2398464B4642461B686F1E9B5CD4 +:10AF5000F0229E429B41920213408022D2019446ED +:10AF600063443B43200012220021F2F797FE4B4638 +:10AF700042461B6820009B5C96229E429B41D20267 +:10AF80001340A022D201944663443B431222002185 +:10AF9000F2F784FE4B4642461B6820009B5CB422BD +:10AFA0009E429B41D2021340C022D2019446634488 +:10AFB0003B4312220021F2F771FE4B4642461B68CA +:10AFC00020009B5CE0229E42B641D223D2019446EF +:10AFD000DB02334063443B4312220021F2F75EFE62 +:10AFE000200000950A230A220421FEF711F920000F +:10AFF000009504230B220621FEF70AF92000009594 +:10B000000A230C220521FEF703F92000514B3722B9 +:10B010000021F2F743FE20004F4B36220021F2F7C9 +:10B020003DFE200000950A2308220A21FEF7F0F8D1 +:10B0300020000095042305220721FEF7E9F82000EF +:10B04000464B37220021F2F729FE2000444B3622DE +:10B050000021F2F723FE2000009508230822042196 +:10B06000FEF7D6F820000095042306220521FEF7FE +:10B07000CFF820000095082304220621FEF7C8F827 +:10B0800020000095062307220421FEF7C1F82000C6 +:10B090000095092309220821FEF7BAF820002D4B5C +:10B0A00037220021F2F7FAFD20002B4B3622002137 +:10B0B000F2F7F4FD20002B4B36220021F2F7EEFDD3 +:10B0C0002000294B3D220021F2F7E8FD2000274B0C +:10B0D00037220021F2F7E2FD2000254B3722002124 +:10B0E000F2F7DCFD20001C4B36220021F2F7D6FDE2 +:10B0F0002000204B37220021F2F7D0FD20001E4B0C +:10B1000036220021F2F7CAFD20000095052309220E +:10B110000921FEF77DF82000184B37220021F2F7B5 +:10B12000BDFD20000E4B36220021F2F7B7FD2000B6 +:10B13000F02313220021F2F7B1FD00231122002198 +:10B140002000F2F7ABFD03B00CBC90469946F0BD71 +:10B150003CF30108868000008E804000979000003C +:10B160009E904000557000007E0040007E703000D0 +:10B1700087800000585000005E504000949000000E +:10B18000F0B5CE464746884680B51D0083B017000F +:10B1900000231022002104000A9EF2F77FFDA02365 +:10B1A0004246DB011343002100222000F2F776FD26 +:10B1B000C023DB013B43002200212000F2F76EFD9B +:10B1C000E0232D27DB012B431F2500220021200037 +:10B1D000F2F764FD9C4BF02298461B681202DB5D7F +:10B1E00000219D429B411340802252019446721ED1 +:10B1F00063449146134320001222F2F74FFD434669 +:10B200001B68F022DB5D52029D429B41134080226D +:10B21000920194464A4663441343002112222000BF +:10B22000F2F73CFD43461B68B422DB5D92029D426F +:10B230009B411340C022920194464A466344134303 +:10B24000002112222000F2F729FD434680221B68CC +:10B25000D201DB5D94469D42AD41F0234A469B02FC +:10B260002B4063441343002112222000F2F716FD05 +:10B2700006230622042120000096FDF7C9FF0723BC +:10B280000722032120000096FDF7C2FF07230622B4 +:10B29000072120000096FDF7BBFF042305220621AD +:10B2A00020000096FDF7B4FF684B362200212000F5 +:10B2B000F2F7F4FC664B3D2200212000F2F7EEFC91 +:10B2C000644B372200212000F2F7E8FC624B362263 +:10B2D00000212000F2F7E2FC604B3D22002120001B +:10B2E000F2F7DCFC5E4B372200212000F2F7D6FC9F +:10B2F0005C4B372200212000F2F7D0FC5A4B36225B +:10B3000000212000F2F7CAFC0323052201212000BE +:10B310000096FDF77DFF554B362200212000F2F705 +:10B32000BDFC4E4B3D2200212000F2F7B7FC4C4BF8 +:10B33000372200212000F2F7B1FC4D4B36220021CC +:10B340002000F2F7ABFC4B4B3D2200212000F2F72E +:10B35000A5FC494B372200212000F2F79FFC012376 +:10B360003F2200212000F2F799FC444B36220021B5 +:10B370002000F2F793FC43461B68DB5D1F2B5BD973 +:10B380003F4B252200212000F2F788FC2000009688 +:10B39000012301220321FDF73BFF2000394B372217 +:10B3A0000021F2F77BFC20002F4B36220021F2F720 +:10B3B00075FC2000344B37220021F2F76FFC20008F +:10B3C000324B36220021F2F769FC2000304B372245 +:10B3D0000021F2F763FC20002E4B36220021F2F709 +:10B3E0005DFC20000096062301220221FDF710FFDC +:10B3F00020000096042304220121FDF709FF20000C +:10B40000254B37220021F2F749FC2000214B362240 +:10B410000021F2F743FC20001E2313220021F2F743 +:10B420003DFC0023112200212000F2F737FC03B07D +:10B430000CBC90469946F0BD184B262200212000F6 +:10B44000F2F72CFCA2E7C0463CF301085350000081 +:10B450005E0040005E503000333000003E0040008F +:10B460003E303000533000003E30400011300000CC +:10B47000131000001E0040001E1030001E1080003F +:10B480001F10000036300000365000005E504000B3 +:10B49000656000006E604000216000001010000038 +:10B4A000F0B5DE4657464E464546E0B585B01D0030 +:10B4B0000E9B0F0016009946102200230021040065 +:10B4C000F2F7ECFBE023DB013B43002200212000EC +:10B4D000F2F7E4FB80231B0233430022002120000B +:10B4E000F2F7DCFBC0232D271F261B022B43002273 +:10B4F00000212000F2F7D2FB864D96222B68D20263 +:10B50000DB5D00219E429B411340A022D201944664 +:10B510000122524263444A449046134320001222BF +:10B52000F2F7BCFB2B68B422DB5DD2029E429B414A +:10B530001340C022D2019446424663441343002183 +:10B5400012222000F2F7AAFB2B688722DB5D120390 +:10B550009E429B411340902212029446424663440D +:10B560001343002112222000F2F798FB2B68962249 +:10B57000DB5D12039E429B411340A02212029446BF +:10B58000424663441343002112222000F2F786FB57 +:10B590002B68A522DB5D12039E429B411340B02223 +:10B5A00012029446424663441343002112222000B3 +:10B5B000F2F774FB584B302200212000F2F76EFBAB +:10B5C000564B302200212000F2F768FB90233522F1 +:10B5D0001B0200212000F2F761FBA0233422DB01D3 +:10B5E00000212000F2F75AFB2B680021DA5D0123CD +:10B5F000964292419A432832494B2000F2F74EFB83 +:10B60000484B202200212000F2F748FB464B9A4687 +:10B610001B681B6918331B191E682B68B600DB5D9D +:10B62000B60C1F2B6ED9414B212200212000F2F7CE +:10B6300035FB4B469F1B2D23013F00269846002FCC +:10B6400029D042462B689B5C1F2B47D9374B2122C0 +:10B6500000212000F2F722FB5346414618682A6871 +:10B660000368525CE3181F2A31D880211A681142FE +:10B67000FCD1C36B0822E3181B6807219B464B468D +:10B68000200000930923FFF77BFD5B46DB072CD4EA +:10B690000136BE42D5D14B46200000930822092333 +:10B6A0000721FFF76BFBE62320001B01132200217B +:10B6B000F2F7F4FA0023112200212000F2F7EEFA4B +:10B6C00005B03CBC90469946A246AB46F0BD1A6810 +:10B6D000002ACED01A68002AF9D1CAE7144B2122D9 +:10B6E00000212000F2F7DAFAB6E74B4602930B236B +:10B6F0000193013B00930822013B07212000FFF743 +:10B70000E3FBC5E70A4B212200212000F2F7C6FA2D +:10B710008FE7C0463CF3010807A0000008B0000016 +:10B72000C5600000C6C0000088B10108CFC000009D +:10B73000C0C0000080235B0098421FD007D8C028FB +:10B7400018D0E0280ED102220E4B1A707047C02389 +:10B750005B0098420AD00C4B984203D10522094B5A +:10B760001A70F3E70022074B1A70EFE70422054B2B +:10B770001A70EBE70122034B1A70E7E70322014B33 +:10B780001A70E3E7BDB2010809020000014B18700E +:10B790007047C0464C91010810B5040082B005986E +:10B7A00000902000FFF77CFE0B4B1A682D23D35C22 +:10B7B0001F2B09D88022094B1B68186820180368C2 +:10B7C0001A42FCD102B010BD044B1B681868201847 +:10B7D0000368002BFCD1F5E73CF3010888B10108B0 +:10B7E000F0B5DE46574645464E46E0B5050085B005 +:10B7F000080092469B46FCF7A7FC002800D1F7E022 +:10B8000003694468029343690393027B884B1A706F +:10B8100080235B009C4200D106E100D9D8E0C02C17 +:10B8200000D1EDE0E02C00D0FAE00222814B1A704A +:10B830005346002B00D1D9E05B46002B00D1D5E068 +:10B840000E9B002B00D1D1E00F9B002B00D1CDE04F +:10B85000109B002B00D1C9E02D271F26764B962286 +:10B8600099461B681203DB5D00219E429B411340F9 +:10B87000A02212029446621E63449046134328009D +:10B880001222F2F70BFA4B461B68A522DB5D12036E +:10B890009E429B411340B0221202944642466344AA +:10B8A0001343002112222800F2F7F8F94B461B68D7 +:10B8B000B422DB5D12039E429B411340C022120260 +:10B8C0009446424663441343002112222800F2F7B3 +:10B8D000E5F94B461B68D222DB5D12039E429B4179 +:10B8E0001340E0221202944642466344134300216F +:10B8F00012222800F2F7D2F94B461B68C322DB5D07 +:10B9000012039E429B411340D0221202944663448C +:10B910002343122200212800F2F7C0F94B4690225F +:10B920001B681202DB5D94469E429B41872642467D +:10B930003603334063441343002112222800F2F7F8 +:10B94000ADF92300029A0E21280000F0FBFF631CD2 +:10B95000039A0D21280000F0F5FF230052460B2129 +:10B96000280000F0EFFF23005A460C21280000F0C9 +:10B97000E9FF23000E9A0A21280000F0E3FF0A23C2 +:10B9800000940C220B212800FFF78AFD4B461B6810 +:10B99000DB5D1F2B3CD88021284B1B681A68AA1836 +:10B9A00013681942FCD123000B220F99280001F0E3 +:10B9B00055F823000C221099280001F04FF8FC23C1 +:10B9C0002800DB0113220021F2F768F9002010E0C3 +:10B9D000C0235B009C4217D0194B9C4220D105220A +:10B9E000144B1A705346002B00D025E7154800E091 +:10B9F000154805B03CBC90469946A246AB46F0BD02 +:10BA000001220C4B1A7013E704220A4B1A700FE73D +:10BA10000A4B1B681A68AA181368002BFCD1C2E7EE +:10BA20000022044B1A7003E70322024B1A70FFE650 +:10BA30004C910108BDB201083CF3010888B101082E +:10BA4000090200000B0032000A00320010B50400A9 +:10BA500082B01000002B01D102B010BD0A0001001D +:10BA6000200001F02DF90823002200932000043B60 +:10BA7000502101F087F91022034B1B681868201829 +:10BA800003681A42FCD1E7E788B1010810B5040049 +:10BA900082B0181E01D102B010BD130002002000B8 +:10BAA00001F00EF90C23002200932000043B5121E9 +:10BAB00001F068F91022044B1B681868201803680D +:10BAC0001A42FCD1E7E7C04688B1010810B582B040 +:10BAD000040010001A0004AB1B88002B01D102B037 +:10BAE00010BD00910100200001F006F90C23019324 +:10BAF000043B00930022043B2000532101F05CF939 +:10BB00001022044B1B681868201803681A42FCD1E5 +:10BB1000E5E7C04688B10108F0B59446002B44D053 +:10BB2000294A1D001668B26887180F223C68144025 +:10BB3000042CFBD886277F01C459002CFCDBF2685B +:10BB4000224C8218146064460F27F2688218146031 +:10BB5000F26882181360B268841822683A40042A96 +:10BB6000FBD8F2681A4C82181460F26882181160CF +:10BB7000F268821813600F2B18D91D000F24154F7F +:10BB8000B26881180A682240062AFBD8F268103D84 +:10BB90008218ADB217600F2DF2D80F251D4005D1C8 +:10BBA0003368C0180368002BFCD1F0BD0F21B368C7 +:10BBB000C3181A680A40062AFBD8F368064A2D04FF +:10BBC000C31815431D60EBE788B101080800007138 +:10BBD0000C00007008C0104008C00040F0B5002BF9 +:10BBE00030D09C460F26204C2768BC6805192C686D +:10BBF0003440042CFBD8FC681C4D04192560FC68FB +:10BC000004192160F96841180B600F2B1CD91849E1 +:10BC10001E0011438C460F25B9684418216829403D +:10BC20000629FBD86446F968103E4118B6B20C608C +:10BC30000F2EF1D80F210B4005D13B68C0180368C7 +:10BC4000002BFCD1F0BD9C460F24BB68C1180B68CB +:10BC50002340062BFBD8FB68C118064B1A436346EA +:10BC60001B041A430A60E8E788B101080C00007061 +:10BC700000C0104200C00042F0B5C64600B5904674 +:10BC800006AA1688002E59D0B4460F27354A1568E3 +:10BC9000AA68821814683C40042CFBD88622520102 +:10BCA0008458002CFCDBEA682F4C82181460444650 +:10BCB0000F27EA6882181460EA6882181660AA687A +:10BCC000841822683A40042AFBD8284C0259002ADA +:10BCD000FCDBEA68264C821814600F24EA6882189C +:10BCE0001360EB68C3181E60AB68C218136823406A +:10BCF000042BFBD8EB681F4AC3181A60EB68C31803 +:10BD00001960EB68C3181E600F2E1BD934000F2179 +:10BD1000194FAB68C21813680B40062BFBD8EB68B1 +:10BD2000103CC318A4B21F600F2CF2D80F27374065 +:10BD300007D12B68C0180368002BFCD104BC9046C7 +:10BD4000F0BDBC460F21AB68C21813680B40062B30 +:10BD5000FBD86246EB681704084AC31817431F60F4 +:10BD6000E7E7C04688B1010808000071D010000064 +:10BD7000090000710C00007098C0104198C000418B +:10BD8000062A00D988E04548920082588B60974681 +:10BD90001A00C0338B6105230B60033B4B60404BA3 +:10BDA0008032CB628023CB60403B4B610A61203BF9 +:10BDB0004B62A02300209B00CB6170471A00C03368 +:10BDC0008B6106230B60043B4B60364B8032CB62A9 +:10BDD0008023CB60403B4B610A61243BE8E71A00BB +:10BDE00054338B6100230B604B602F4B4032CB628E +:10BDF0004023CB602C3B4B614B622D33FF330A61F8 +:10BE0000CB610020D9E71A0060338B6101230B60FE +:10BE10004B60264B4032CB624023CB60203B4B61D2 +:10BE2000043B4B62E4330A61CB610020C5E71A0092 +:10BE300060338B6102230B60013B4B601C4B403233 +:10BE4000CB624023CB60203B4B614B62E0330A6105 +:10BE5000CB610020B1E71A00C0338B6103230B6074 +:10BE6000013B4B60134B8032CB628023CB60403B65 +:10BE70004B610A61103B9BE71A00C0338B610423BE +:10BE80000B60023B4B600C4B8032CB628023CB605B +:10BE9000403B0A614B618BE708488EE7B0300310E6 +:10BEA000E0310310A0310310CC300310E030031058 +:10BEB0000031031020310310603103100B003200F9 +:10BEC00010B500290CD000238B620B624B69002B4C +:10BED00006D0CA6A9BB20969FFF7B8FD002000E0EE +:10BEE000004810BD0B003200F0B557464E4645469F +:10BEF000DE46E0B50C0083B0050017001E000029E7 +:10BF000049D0002A47D0CB689946002B43D0002E59 +:10BF10003FD00B6A9B190B62896A7318994542D806 +:10BF2000264BB0469B4607239A46A2684B4694464A +:10BF30005E1AB3B261443A002800FFF787FD52460B +:10BF40006368A1681340C0229200AB502369226944 +:10BF500000932800A36900F0CFFE0C230193043B5B +:10BF600000930022043B4C21280000F025FF5B4693 +:10BF700004211B681A68AA1813681942FCD14346A9 +:10BF80009B1B9846BF1900219945CED91E1EA3625E +:10BF90000AD1002000E00A4803B03CBC9046994614 +:10BFA000A246AB46F0BDA362A26828005118B3B206 +:10BFB0003A00FFF74BFD0020EEE7C04688B10108CC +:10BFC0000B003200F0B557464E464546DE46E0B51A +:10BFD000060085B00F001500002900D19CE0002A62 +:10BFE00000D199E08B680C699A46BB6AC9689B4688 +:10BFF0003B6A5846DB0099460B00803B5A1E934132 +:10C0000037225B4293439846702352469C46103336 +:10C0100013548BB20393013B1B1A0291411CE04461 +:10C020009BB2514400223000FFF730FDD8454BD978 +:10C030003A4B98464946029B090E53441A1F117009 +:10C040004946DA1E090C117049469A1E090A1170F8 +:10C050004A46013B1A7007237A6830001340C02219 +:10C060009200B3503B6951460093BB693A6900F0B6 +:10C0700043FE0C230193043B00930022043B300059 +:10C080004C2100F099FE434604221B681B68F618F9 +:10C0900033681A42FCD17B6A9B080DD09B00E318E1 +:10C0A000E2782A70A2786A706278AA7022780434E2 +:10C0B000EA700435A342F3D1002005B03CBC9046A1 +:10C0C0009946A246AB46F0BD07237A685146134015 +:10C0D000C0229200B3503B6930000093BB693A69BB +:10C0E00000F00AFE0C230193043B00930022043B62 +:10C0F0004C21300000F060FE0421084B98461B687C +:10C100001A68B21813681942FCD1039B00225146E9 +:10C110003000FFF7BBFC8DE70148CEE788B101088E +:10C120000B003200062A00D971E03A48920082588A +:10C130008B60974680330B6105230B6066334B6041 +:10C14000354B0020CB628023CB60403B4B61203BD2 +:10C150004B62704780330B6106230B6065334B6085 +:10C160002E4B0020CB628023CB60403B4B61243BB5 +:10C170004B62EEE740330B6100230B6069334B6089 +:10C18000274B0020CB624023CB602C3B4B614B62A2 +:10C19000DFE740330B6101230B6069334B60214BB8 +:10C1A0000020CB624023CB60203B4B61043B4B62C1 +:10C1B000CFE740330B6102230B6068334B601A4BAF +:10C1C0000020CB624023CB60203B4B614B62C0E739 +:10C1D00080330B6103230B6068334B60134B0020EB +:10C1E000CB628023CB60403B4B61103B4B62B0E79E +:10C1F00080330B6104230B6067334B600C4B0020D2 +:10C20000CB628023CB60403B4B614B62A1E7094886 +:10C210009FE7C04620320310503303101033031041 +:10C220003C3203105032031070320310903203106E +:10C23000D03203100B00320010B500290CD00023BF +:10C240008B620B624B69002B06D0CA6A9BB20969EC +:10C25000FFF762FC002000E0004810BD0B00320038 +:10C26000F0B54546DE4657464E46E0B5050083B07C +:10C27000002900D11EE1002A00D11BE1C86801900D +:10C28000002800D116E10020002B00D113E1086A3C +:10C29000C0180862886A8146AB48006884682F1914 +:10C2A0000F24A44666463C683440062CFAD8C827BA +:10C2B000C468FF052C19276004682F193C68002CFE +:10C2C000FCD10C69A0464C69A24684682F190F2442 +:10C2D000A44666463C683440042CFAD84646C468F6 +:10C2E0009A4F2C192760C4682C1926605646C468DA +:10C2F0002C1926604C69A24684682F190F24A44685 +:10C3000066463C683440062CFAD8CC275646C468AA +:10C31000FF052C193743276004682F193C68002C4F +:10C32000FCD184682F190F24A44666463C6834402B +:10C33000062CFAD8CA27C468FF052C1927604C467A +:10C34000002C2BD08C68A24684682F190F24A44699 +:10C3500066463C683440042CFAD85646C4687B4F85 +:10C360002C192760C4682C1926604E46C4682C1905 +:10C37000266084682F190F24A44666463C68344022 +:10C38000062CFAD8CC274E46C468FF052C19374333 +:10C39000276004682F193C68002CFCD184682F1991 +:10C3A0000F24A44666463C683440042CFAD88627FD +:10C3B0007F01EC59002CFCDBC468654F2C19276009 +:10C3C000C4682C192260C268AA1813604A469C18D7 +:10C3D000019AA24200D9B2E0CC22D2050F249446A1 +:10C3E0004A46019EB21A93468268AF183A682240C4 +:10C3F000062AFBD8C2685E46AF184A46120232438C +:10C40000664632433A604A6892468268AF183A6894 +:10C410002240062AFBD85646C2683606AA1816607D +:10C420005A469B1A00229146019A9A42D8D98B62A9 +:10C43000002B47D18368EA180F244E691368234004 +:10C44000042BFBD8C368434AEB181A6042460F24FA +:10C45000C368EB181A60C368EB181E608368EA189B +:10C4600013682340062BFBD8CA22C368D205EB18F9 +:10C470001A604C690F218368EA1813680B40062B79 +:10C48000FBD8CE22C368D205EB1822431A6003689A +:10C49000EA181368002BFCD10F218368EA1813688F +:10C4A0000B40062BFBD8CA23C068DB052D182B6078 +:10C4B000002000E0284803B03CBC90469946A246C4 +:10C4C000AB46F0BD00220F2784682E1934683C402B +:10C4D000062CFBD81343CC22C468D20513432C1975 +:10C4E00023600368EA181368002BFCD183688E6A06 +:10C4F000EA18002EA0D00F248F6813682340042B65 +:10C50000FBD80F24C368134AEB181A60C368EB18F2 +:10C510001F60C368EB181E6083688E6AEA18136890 +:10C520002340062BFBD8CE22C368D205EB1832433A +:10C530001A600368EA181368002BFCD17AE74A46B0 +:10C540008C621202BFE7C04688B101080800007083 +:10C55000080000710C0000700B003200F0B54E4670 +:10C56000DE4657464546E0B5914683B0002900D1E6 +:10C5700059E1002A00D156E18B6A0E6ACD689846CF +:10C58000730F01932B00803B5A42534138225B4288 +:10C590001A40382394469A460F27A44BF6001B688E +:10C5A000D4449A68841822683A40062AFBD8C824E2 +:10C5B000DA68E405821814601A6884182268002A70 +:10C5C000FCD10A6993464A6992469A6887180F22F5 +:10C5D0003C681440042CFBD8DA68954C821814602F +:10C5E0005C46DA680F27821814605446DA688218AD +:10C5F00014604A6992469A68841822683A40062A6A +:10C60000FBD8CC245746DA68E40582183C43146012 +:10C610001A6884182268002AFCD10F279A688418A7 +:10C6200022683A40062AFBD8CA240F27DA68E405B4 +:10C63000821814608A6892469A68841822683A4080 +:10C64000042AFBD8DA687A4C821814605446DA68F7 +:10C650000F27821814604446DA68821814609A68BA +:10C66000841822683A40062AFBD8CC244746DA6868 +:10C67000E40582183C4314601A6884182268002A72 +:10C68000FCD10F279A68841822683A40062AFBD802 +:10C690004446DA682702674C82183C431460C4455C +:10C6A00012D80F274A6894469A68841822683A403C +:10C6B000062AFBD86446DA682406821814601A68D1 +:10C6C00084182268002AFCD10F276A1F94469A68B2 +:10C6D000841822683A40062AFBD8DA688418624631 +:10C6E0001702D022D2053A43019F3A430F27226016 +:10C6F0002A1F9046320E94469A68841822683A405F +:10C70000062AFBD8DA68841842461702D022D205DE +:10C710003A4367463A430F272260EA1E9046320C9E +:10C72000D2B294469A68841822683A40062AFBD806 +:10C73000DA68841842461702D022D2053A43674687 +:10C740003A430F272260AA1E9046320AD2B294467C +:10C750009A68841822683A40062AFBD8DA68013DB4 +:10C76000841842461702D022D2053A4367463A431C +:10C770000F2722609A68F6B2841822683A40062A87 +:10C78000FBD8DA682D028418D022D2051543354330 +:10C7900025600F259A684E68841822682A40062A68 +:10C7A000FBD8DA683606821816601A688418226880 +:10C7B000002AFCD10F259A684E6A841822682A4004 +:10C7C000042AFBD8DA681C4C821814604C460F25EA +:10C7D000DA6882181460DA68821816609A68841819 +:10C7E00022682A40062AFBD8CA24DA68E40582189F +:10C7F00014600F249A684D6A81180A682240062A3C +:10C80000FBD8CE22DB68D2052A43C3181A600B4A34 +:10C810008358002BFCDB002003B03CBC90469946BB +:10C82000A246AB46F0BD0648F6E7C04688B101080F +:10C8300008000070800000680C000070F01000001C +:10C840000B00320070B50400A020194D8000255067 +:10C850003F2504302550B0250020AD00605108353B +:10C860006051B420012580002550124D1030255014 +:10C8700040382150A921890062502000190000F0A1 +:10C88000EFF900226021200000F056FA40210A4B07 +:10C8900018680368E21813680B40FCD1C269A2183B +:10C8A0001168049A00201160A1229200A35070BD6B +:10C8B000000003310100010088B10108F0B5A02497 +:10C8C0001C4DA40005513F250434B0260551002518 +:10C8D000B600855108368551174F08360135855108 +:10C8E00010368751403E8151A92189004250A22231 +:10C8F0009200835003599B0715D0A42322000324E0 +:10C900009B00C5500D4B1E683368C51829688358B5 +:10C910001C4208D00029F9DBF369C3181A68059B8B +:10C920001A60002300E0064BA122002192008150F2 +:10C930001800F0BD000003310100010088B10108BA +:10C9400001003200F0B5D6464F46464692462D22AB +:10C950000500C0B53E4F3868825C3E48006884469A +:10C96000006828181F2A0BD8802604682642FCD1AC +:10C9700060460469281906684068B146804607E0A9 +:10C980000468002CFCD16046046900208046814682 +:10C9900060468900806B69182818091900680C68BE +:10C9A000DE1DA4001F33A40C5B09F608A4009B0045 +:10C9B000B6B224189BB21F2A44D9002221002800B5 +:10C9C000FFF70CF92D233A68D35C1F2B33D93300C2 +:10C9D000524621002800FFF79FF82D243B681B5D7D +:10C9E0001F2B23D84B461C4A1B091A404B461B05DC +:10C9F0001B0D1343002180222800F1F74FF9434615 +:10CA00001F2198001A053B68800C1B5D120D99428E +:10CA100089418023DB041A43030049420C318B40D7 +:10CA20002800134300218022F1F738F91CBC9046FE +:10CA30009946A246F0BD3300524621002800FFF778 +:10CA400005F8CAE7002221002800FFF71FF8B9E720 +:10CA50003CF3010888B1010800F0FF03F8B5474630 +:10CA6000CE4604002D2080B5314D2E68305C8446C2 +:10CA70006646304800688046006820181F2E0AD895 +:10CA8000802706683742FCD140460069814620185D +:10CA90000768466806E00668002EFCD1404600693B +:10CAA0000027814640469200806BA21820184A4415 +:10CAB0000068126807339200920C920012186046C8 +:10CAC000DB089BB21F282FD92000FFF725F82D2364 +:10CAD000984642462B689B5C1F2B21D8164A3B097F +:10CAE0003F0513403F0D3B43802200212000F1F71A +:10CAF000D5F842462B68B1009B5C0E3A9A429241AF +:10CB000080233605890CDB04360D1E430B00524290 +:10CB10000C3293400021334380222000F1F7BEF80D +:10CB20000CBC90469946F8BD2000FEF78FFFCEE77B +:10CB30003CF3010888B1010800F0FF030B0010B5B9 +:10CB40003F2200210400F1F7A9F80E4B1A682D23AB +:10CB5000D35C1F2B0DD880210B4B18680368E2189B +:10CB600013681942FCD1C36BE41820684007C00F5A +:10CB700010BD054B18680368E2181368002BFCD140 +:10CB8000F1E7C0463CF3010888B1010813010B43EB +:10CB900010B53D2200210400F1F780F80D4B1A6812 +:10CBA0002D23D35C1F2B0DD880210B4B18680368F5 +:10CBB000E21813681942FCD1C36BE41820684007DF +:10CBC000C00F10BD044B18680368E2181368002BEF +:10CBD000FCD1F1E73CF3010888B1010813010B43D4 +:10CBE00010B53D2200210400F1F758F80D4B1A68EA +:10CBF0002D23D35C1F2B0DD880210B4B18680368A5 +:10CC0000E21813681942FCD1C36B0120E4182368B1 +:10CC1000184010BD044B18680368E2181368002B15 +:10CC2000FCD1F1E73CF3010888B101080B4A8B0005 +:10CC3000126810B51169926B8C4663441B188018FA +:10CC4000196802681868C9048000C90C800C083192 +:10CC50008000C9088018F1F7EBFB10BD88B101080E +:10CC600030B50F24084B1D68AB68C2181368234009 +:10CC7000062BFBD88022EB68D205C3181A60EB683C +:10CC8000C018016030BDC04688B1010870B50F25DD +:10CC9000094B1E68B368C41823682B40052BFBD8CA +:10CCA000F368064CC3181C60F368C3181960F36876 +:10CCB000C018026070BDC04688B101081000004174 +:10CCC000F0B50F260A4C2768BC6805192C6834405B +:10CCD000042CFBD8FC68074D04192560FC68041976 +:10CCE0002160F96841180A60FA6880180360F0BD95 +:10CCF00088B1010810020042F0B50F260C4C2768DD +:10CD0000BC6805192C683440032CFBD8FC68094D1D +:10CD100004192560FC6804192160F96841180A604B +:10CD2000FA6882181360FB68C018059B0360F0BDA9 +:10CD300088B101081032004330B50F24064B1D683E +:10CD4000AB68C21813682340072BFBD8EB680906B1 +:10CD5000C018016030BDC04688B1010870B50F250C +:10CD6000074A1668B268841822682A40072AFBD846 +:10CD7000F2680906801801229A401143016070BDD3 +:10CD800088B10108F0B50F250A4A1F00166805ABE7 +:10CD9000B2681B78841822682A40072AFBD8F268F8 +:10CDA0000906801802229A400123BB40134319430D +:10CDB0000160F0BD88B10108F0B50F251F000C4BD4 +:10CDC0001E68B368C41822682A40072AFBD80222CA +:10CDD000F368069CC018059B09069A400123BB40D6 +:10CDE00013430322A240134319430160F0BDC04620 +:10CDF00088B10108F8B5CE464746040080B50D005D +:10CE0000002800D181E0002948D000239946524BE8 +:10CE1000524E98462000D3F7F7FC4F2800D976E011 +:10CE20004F2221003000D3F707FD434600211E604A +:10CE300032000027002003E02F2B34D022000121F4 +:10CE40001378002B05D0541C3A2BF5D11070270015 +:10CE5000F4E7340000296DD100239946002F10D04B +:10CE6000D3F7A8FB4B460A22036000213800D3F712 +:10CE700055FE8146D3F79EFB0368002B18D143462D +:10CE80001C682278EB68002A1AD0102B20D02800CA +:10CE9000310001F0E7FB0500002DBBD100200CBCE8 +:10CEA00090469946F8BD0023137043461C60D3E7B3 +:10CEB00043461C68002322789946EB68002AE4D197 +:10CEC0004A46102B27D03100280001F0CBFBE6E7C3 +:10CED0004B464A46AD68013B002A27D09946002DB3 +:10CEE00007D13100002001F0BDFB0500D4E7002D83 +:10CEF00004D04B462D68013B9946F8D228003100FA +:10CF000001F0B0FB0500002CC6D12800C7E7EB6894 +:10CF10004A46102BD7D101235B429C46AD68E144C1 +:10CF2000002A12D0002D09D00024E2E701235B4241 +:10CF30009946ACE7434614001A608DE731000020A3 +:10CF400001F090FB05002800A9E72800310001F05E +:10CF500089FB05002800A2E710B30108C0B2010850 +:10CF6000F0B5C64600B50D0082B000292DD02E21A7 +:10CF7000D3F732FC041E22D0471C2E213800D3F7F1 +:10CF80002BFC00281BD0E4430419E31C9B085E0023 +:10CF9000F6180136300000F0BFF98046002823D093 +:10CFA000124B0200009321003300380000F0D6FC41 +:10CFB00000280CDC0E4C404600F012FA00E00D4C4C +:10CFC000200002B004BC9046F0BD0B4CF8E7404690 +:10CFD00001F0A4FA2860441EA041084B44429C463C +:10CFE000074804406444E6E7064CE9E7005F2D008B +:10CFF000070000F8090000F80C0000F8060000F82F +:10D00000FAFFFFA70A0000F800290AD0C368012B25 +:10D0100001D0002B03D1A0200B70000670470248FE +:10D02000FCE70248FAE7C046030000F80C0000F8ED +:10D03000002909D0C368042B01D004487047436914 +:10D04000A0200B600006F9E70148F7E7030000F8AD +:10D050000C0000F8002909D0C368082B01D004484F +:10D0600070470369A0200B600006F9E70148F7E765 +:10D07000030000F80C0000F8F0B5C646050000B546 +:10D080000E0014009846002920D0C368102B03D04E +:10D09000154804BC9046F0BD01F0C2FA0700A0425A +:10D0A00012D8002F14D0002407E0C368042BEFD15E +:10D0B000436933550134BC420AD02100280001F0F5 +:10D0C000C1FA0028F1D1E3E72700EAE70748E0E7E3 +:10D0D0004346002B02D1A0200006DAE74346A020F9 +:10D0E0001F600006D5E7C046030000F80C0000F8FA +:10D0F000F0B557464546DE464E46E0B5884683B015 +:10D1000092461F1E13D00C9B002B10D001003948F3 +:10D11000FFF770FE051E0CD0C368102B0BD03648ED +:10D1200003B03CBC90469946A246AB46F0BD33489E +:10D13000F6E73348F4E701F073FA8146002853D04C +:10D14000304B00249B4602E00134A1454CD0210025 +:10D15000280001F077FA5946060001F083FAC36807 +:10D16000042BF1D143699845EED13000264901F0F6 +:10D1700079FA061EDDD0F368102BD0D1300001F013 +:10D180004FFA8046002832D0204B0024994602E016 +:10D190000134A0452BD02100300001F053FA49465C +:10D1A000050001F05FFAC368082BF1D10169504610 +:10D1B000D3F720FB0028EBD11549280001F052FAE3 +:10D1C000C368042BABD1436912493B60280001F0CE +:10D1D00049FAC368042BA2D14369A0200193019AA4 +:10D1E0000C9B00061A609BE7F720000698E70A48A8 +:10D1F00096E7C046D0330310030000F80C0000F897 +:10D20000020000F868200310A033031090330310CD +:10D210009833031058F60210060000F8F8B5DE4601 +:10D2200057464E4645468946E0B50100334892468A +:10D230009B46FFF7DFFD051E09D0C368102B08D001 +:10D240002F483CBC90469946A246AB46F8BD2D48B7 +:10D25000F7E701F0E5F9071E45D02B4B002498466F +:10D2600002E00134A7423ED02100280001F0EAF993 +:10D270004146060001F0F6F9C368042BF1D1436979 +:10D280009945EED15346002B19D02049300001F0CA +:10D29000E9F900282FD0C368012B01D0002BCFD192 +:10D2A000524613705B46002B09D01949300001F03B +:10D2B000D9F9C368042BC3D15B4642691A600A9B43 +:10D2C000002B15D01349300001F0CCF9002804D010 +:10D2D000C368012B0AD0002BB2D10023A0200A9AE8 +:10D2E00000061370ADE7F7200006AAE70A9A13704C +:10D2F000A0200006A5E753461870E0E7D0330310DE +:10D30000030000F8020000F868200310AC3303109B +:10D31000C4330310B83303100323F0B52F4D013885 +:10D3200098436E68041DA6423BD9AB68002B04D11C +:10D3300039E05A68002A1AD01300DA68002AF8D1B6 +:10D3400019688C42F5D81800091B103013290CD924 +:10D350000519103929605968EA606960AB605D6041 +:10D360006A681C60002A00D09560D860F0BDE9684A +:10D370002F68B94215D3BE19B14212D8002910D076 +:10D380001430081887420CD886420AD3E860002877 +:10D3900007D0080010300C604A608B60C86059608C +:10D3A000E4E70020E2E7EA6829688A42F9D38E19A7 +:10D3B000B242F6D8002AF4D0143010188142F0D8C6 +:10D3C0008642EED3E8600028EBD0100010301460E5 +:10D3D00053609360D060AA60C8E7C04650910108CE +:10D3E00070B52B4CA368002B31D000282FD0984269 +:10D3F0002DD9E26823689A4229D361688C46634438 +:10D400009A4224D8904222D20500103DEB689842FF +:10D410001DD12A680021D3F759FE0023EB60AB68C9 +:10D420002E00002B02D0DA68002A19D06A68002A80 +:10D430000FD0D16800290AD1116833688C46634443 +:10D440001033336053687360002B00D09E6070BD52 +:10D450001E00B368002B17D00022E6605A60F6E782 +:10D460005A68002AF4D0D1680029F0D110681968F0 +:10D47000844610315268614419605A60002AE7D02E +:10D480009360D1681E00D5E7A360E660DFE7C04681 +:10D490005091010870B50D0084B01600002917D016 +:10D4A000DC239B0500930023029002AC68460393A3 +:10D4B000019400F02DF8A0231B06984201D004B07F +:10D4C00070BD63682B60002EF9D023683360F6E7E7 +:10D4D0000048F4E7010100F800B50302054883B0F5 +:10D4E00018430904014301A8019100F011F803B0A9 +:10D4F00000BDC0460100003A00B5044B83B001A84E +:10D50000019300F005F803B000BDC04601010032F0 +:10D51000F8B52D4B05001B68002B52D02B48046832 +:10D52000E40F012C48D02A4B1E68316A0B68002B8F +:10D530000BDB0023274801E083423BD00A6801331C +:10D54000002AF9DA234A934234D0012318002A68CA +:10D55000104084461FD1CD608B60BB33F058081853 +:10D560000368002B2BDA00231B4E1C4F01E0BB424B +:10D570001BD0326802680133002AF8DB174A934255 +:10D5800013D06346002B1AD0CD68012C10D10F4860 +:10D59000F0F784FE0CE0CA608B60BC23F0580818DA +:10D5A0000368002BDFDBCD68EFE70D4D012CEED0DB +:10D5B0002800F8BD0A4DFBE7F0F724FFB3E72D681C +:10D5C000F4E7F0F757FEA9E788B101080000104022 +:10D5D0003CF30108983A00000001014000943577BF +:10D5E000000100F80368454A013B70B5040093420E +:10D5F0004ED8434B1A78002A4AD101321A70414B57 +:10D600001978002906D1E1203F4DC00029589143E7 +:10D6100029501A70FAF7A2FBC02201203A495200A1 +:10D620008B5883438B502368384A934233D8384A07 +:10D6300093423ED8374A93423ED8783AFF3A9342D3 +:10D640003DD8BB2B3ED85D2B3FD82E2B40D8172B77 +:10D6500041D80B2B42D8052B43D8022B44D846D0B7 +:10D6600010250C30002B45D1FAF79CFBC223FA2180 +:10D670002068254A5B008900C003D658D3F70CFB0D +:10D680008019401B80B2FAF77BFBA020000601E066 +:10D69000F720000670BD002000221F499200515A59 +:10D6A00011220125121A9540ADB28B42DCD22160C5 +:10D6B000DAE701200122F0E702200222EDE7032051 +:10D6C0000322EAE704200422E7E705200522E4E735 +:10D6D00006200622E1E707200722DEE708200822CD +:10D6E000DBE709200922D8E70A200A22D5E70B2028 +:10D6F0000B22D2E76B3A0138FF3ACEE76E170000F3 +:10D7000014F3010815F3010800002640B80B0000CF +:10D71000DB050000ED020000E83303100022014B9E +:10D720001A70704714F3010810B5FAF717FBC022FE +:10D730000120054952008B5803438B50FAF74AFBEE +:10D74000FAF7F4FA10BDC0460000264010B5FAF70B +:10D7500005FBC0220120034952008B5883438B50A4 +:10D7600010BDC04600002640004870476F170000FB +:10D77000802230B5124C450AA5446D029200290062 +:10D7800004006846D3F74AFC80AB9C46E4050D4B89 +:10D79000E40D64449C4601236444237069462800D8 +:10D7A000F0F7D2FE431E9841AE234042DB051840FD +:10D7B000A0231B069C46604481239B009D4430BDF2 +:10D7C000FCFDFFFF00FEFFFF10B5183908180378B5 +:10D7D000012B02D0FFF7CCFF10BDA0200006FBE715 +:10D7E00010B58AB006930C9B084C07930D9B0194CF +:10D7F00008930E9B039003AC01A802940491059238 +:10D800000993FFF785FE0AB010BDC046001300352E +:10D8100010B5D42488B005930A9BA40506930B9BEE +:10D820000094029002AC684601940391049207931D +:10D83000FFF76EFE08B010BD00B5064B85B0009333 +:10D84000029002AB684601930391FFF761FE05B0B9 +:10D8500000BDC046000F003500B5054B85B00293F2 +:10D86000019001AB02A80393FFF752FE05B000BD83 +:10D870000005003500B5064B85B00093029002AB61 +:10D88000684601930391FFF743FE05B000BDC04613 +:10D890000002003510B5074C86B00094029002AC2F +:10D8A00068460194039104920593FFF731FE06B098 +:10D8B00010BDC0460001003500B5064B87B001938E +:10D8C000039003AB01A8029304910592FFF720FE99 +:10D8D00007B000BD0003003510B5074C86B00094BA +:10D8E000029002AC68460194039104920593FFF7FD +:10D8F0000FFE06B010BDC0460004003500B5064B53 +:10D9000087B00193039003AB01A8029304910592A1 +:10D91000FFF7FEFD07B000BD0007003500B5064B60 +:10D9200085B00093029002AB684601930391FFF724 +:10D93000EFFD05B000BDC0460016003500B5064B32 +:10D9400085B00093029002AB684601930391FFF704 +:10D95000DFFD05B000BDC046001D0035F0B55746DF +:10D960004E464546DE46E0B585B001930E9B914696 +:10D970001A0CD2B202921A0AD2B2DBB2039200930C +:10D980000022030090461C788E4A83460F00002632 +:10D9900092465D1C002C35D0002F04DB5A46AA1A93 +:10D9A000BA4200DD90E02200093A042A25D9202C51 +:10D9B00023D0009A944200D190E021005046D2F743 +:10D9C0000BFF002832D0012E3AD0012E4FDD022E5F +:10D9D0005ED0032E11D14B46002B0AD0019B9845F7 +:10D9E00000D378E04B4652464344801A1A781043DD +:10D9F000187001239C460026E0442B001C785D1C17 +:10DA0000002CC9D1009B002B63D1019B984562D2A9 +:10DA10004B46002B02D0434400221A70404605B00A +:10DA20003CBC90469946A246AB46F0BD029BA34241 +:10DA300045D0039BA3424ED150463F30012EC4D166 +:10DA400043464A460133002A0DD0019A9A4242D9F0 +:10DA5000414652464944801A0A78041122430A700A +:10DA60004A460001D054984602262B00C6E7002EF5 +:10DA7000C3D14B46002B24D0019B98452BD2534653 +:10DA80004246C01A4B468000985401262B00B5E749 +:10DA900043464A460133002A0DD0019A9A421AD9C8 +:10DAA000414652464944801A0A78841022430A703B +:10DAB0004A468001D054984603262B009EE74248F0 +:10DAC00081E701262B0099E7009900299DD08C421F +:10DAD00008D0002E99D001204042A0E7002F03DBA0 +:10DAE0005A46AA1ABA42F4DC991C5B78022E33D04B +:10DAF00023DD032E00D088E7002B12D00A00002F70 +:10DB00001EDB58460AE019000939042901D9202BE7 +:10DB1000E1D10132531E1B78002B02D0111A8F4223 +:10DB2000F1DA4B46002B47D043441A78002AD2D171 +:10DB3000019A904500D26FE7CDE7002ECBDA64E77B +:10DB400019000939042901D9202BC4D10132531EEF +:10DB50001B78002BF4D1E4E7002BBCD00A00002F87 +:10DB60001DDB5C460AE019000939042901D9202B84 +:10DB700008D10132531E1B78002BACD01000111BB2 +:10DB80008F42F0DAA346009A9342A4D1002F03DD1E +:10DB90005B46C31ABB429EDC411C0378ACE719000C +:10DBA00009391000042901D9202BECD10132531E70 +:10DBB0001B78002BF3D18EE7019B984500D22DE70F +:10DBC00089E7C0461C3403105A340310F0B5032310 +:10DBD000C646040000B50F00984603E000282ED08A +:10DBE000013401372678D2F705FD42468019437883 +:10DBF0001340012B00D120363D78D2F7FBFC424682 +:10DC0000401943781340012B00D120352078AE42D3 +:10DC1000E4D00400D2F7EEFC03230019427813404D +:10DC2000012B10D03D78D2F7E5FC03234019427850 +:10DC30001340012B05D0601B04BC9046F0BD0020B2 +:10DC4000FAE72035F7E72034ECE7C046F0B5454663 +:10DC50004E46DE465746E0B51E00137883B000906E +:10DC60008846551C222B39D15378222B00D188E1CC +:10DC70002C00002003E00B000134222B0CD0002BE1 +:10DC80002DD061785C2BF6D1002928D0A3780134FF +:10DC900001300134222BF2D1A31A181AC84B0430D8 +:10DCA0001B68984700281AD00300A54252D2C54AE3 +:10DCB000C5499346019604E01A7001350133AC4220 +:10DCC00048D92A785C2AF7D16F783A00223AD2B242 +:10DCD000532A00D978E092008A5897463260002093 +:10DCE00003B03CBC90469946A246AB46F0BD621BD1 +:10DCF000052A69DDAF783A00303AD6B2092E07D945 +:10DD0000113A052A00D828E1203A052A5CD80A32BF +:10DD100030267642B446EF781201BC446646F6B22D +:10DD2000092E58D941267642B446BC446646052E93 +:10DD300000D815E161267642B446BC446646052EFD +:10DD400042D8573FBA1847E0092202351A7001330A +:10DD5000AC42B6D800221A700823009A13604346DA +:10DD60001860601CBCE70D2202351A700133A6E76B +:10DD70000A2202351A700133A1E70C2202351A700B +:10DD800001339CE7082202351A70013397E71F70B0 +:10DD90000235013393E7624430267642B4466F7908 +:10DDA0001201BC446646F6B2092E31D941267642AC +:10DDB000B446BC446646052E00D9D7E0373FBA18B2 +:10DDC000824E97195F452AD8019E814B35601B68AA +:10DDD0009847002084E7624430267642B4462F7983 +:10DDE0001201BC446646F6B2092ED4D941267642C9 +:10DDF000B446BC446646052E00D8B4E0612676429F +:10DE0000B446BC446646052EDED8573FBA18C3E771 +:10DE10006E4E624497195F45D6D9002AD4D06D4E14 +:10DE2000AF1DB4469444DC4500D9B3E0E71B052F91 +:10DE3000CADDAF795C2FC7D1EF79752FC4D13026F9 +:10DE40007642B4462F7ABC446646F6B2092E00D814 +:10DE5000CDE041267642B446BC446646052E00D845 +:10DE6000D0E061267642B446BC446646052EABD867 +:10DE7000573F3E01B44630267642B1466F7AB944E8 +:10DE80004E46F6B2092E00D8B9E041267642B14698 +:10DE9000B9444E46052E00D8C0E061267642B14610 +:10DEA000B9444E46052E8FD8573F6744AE7A3F019E +:10DEB000B446302676426644B146F6B2092E00D802 +:10DEC000AAE0412676426644052E00D89EE06126EF +:10DED00076426644052E00D976E757267642B1464B +:10DEE000CC446744EE7A3F01B4463026764266441D +:10DEF000B146F6B2092E00D886E041267642664445 +:10DF0000052E76D9612676426644052E00D95BE758 +:10DF100057267642B146CC4467442C4EB446BC44A6 +:10DF2000DC4500D950E72C4E920232408026BF05D6 +:10DF30007602BF0DB4460C353A4380262F003F25AC +:10DF40006244764215403543244EEDB2B24249D97F +:10DF50000422DD703D009B18B1E63A00373AD7E65F +:10DF6000373FBA1838E7373FBA1815E761267642C7 +:10DF7000B446BC446646052E00D925E7573FBA187B +:10DF80001EE70F4B05201B689847031E00D1A6E62D +:10DF90002C00DFE6D5B27F2A04D801221D703D0097 +:10DFA0009B188CE63F263540BF3E35430C4EEDB204 +:10DFB000B24217D802225D703D009B187FE6C04632 +:10DFC00064910108FF0300005C3403100024FFFF8C +:10DFD000609101080028FFFF00FC0F00FFFF000018 +:10DFE000FF07000003229D703D009B1867E667460F +:10DFF0003FE737267642B146CC4467448DE74F462B +:10E00000674453E7373F34E74F4486E73726764285 +:10E01000B146CC44674465E74F4463E7373F674404 +:10E0200044E7C046F0B5DE4657464E464546E0B5A5 +:10E03000040083B0002820D080235B009846DB18C2 +:10E0400099463D4E4346E26827681A4208D1A568C2 +:10E05000002D31D133682069002802D09847E2684A +:10E06000336849460A4204D1A069002801D0984784 +:10E070003368200098473C1EE4D103B03CBC904676 +:10E080009946A246AB46F0BDAB689A46002B3CD100 +:10E0900033682869002802D09847EA6833684946FF +:10E0A0000A4204D1A869002801D0984733682800A3 +:10E0B0005D469847002D06D02B68EA689B4643468C +:10E0C0001A42E1D0EAE74146E26833680A42C2D028 +:10E0D000C7E753469868002826D153461869336825 +:10E0E000002803D098475346DA68336849460A4205 +:10E0F00005D152469069002801D0984733685046B0 +:10E100009847019B9A46002B08D053461B68019301 +:10E110005346DA6843461A42DBD0E6E74146EA68EE +:10E1200033680A42B5D0BAE7FFF77CFF5346DA6896 +:10E1300043461A42D1D0D8E760910108F0B5454670 +:10E140004E46DE465746E0B50B7883B006000D001C +:10E150009046222B00D10BE12D2B00D194E01A0028 +:10E16000303A092A00D88FE05B2B00D121E17B2BCC +:10E1700000D014E14C1C002C00D1CBE04B78002BDC +:10E1800007D10BE00134002C00D1C3E02378002B31 +:10E1900004D0202BF6D97D2B00D104E10023994631 +:10E1A000AE4B00279A46AE4B013C9B465346B246C7 +:10E1B0001E001C2033689847051E00D1A4E11C22D4 +:10E1C0000021D2F783FF002F00D1CFE04B461D6026 +:10E1D0006B60621C002A0BD06378013B1F2B04D9B3 +:10E1E00006E01378013B1F2B02D80132002AF8D138 +:10E1F00029002800434610310C30FFF727FD002886 +:10E2000003D11EE0013000281BD00378013B1F2BF7 +:10E21000F8D92B69AB6100232B6103783A2B00D02E +:10E2200055E1441C002C0CD04378013B1F2B05D931 +:10E2300073E02378013B1F2B00D96EE00134002CE2 +:10E24000F7D180235B009846DB189946854D4346FD +:10E25000FA683E681A4208D1BC68002C53D12B687A +:10E260003869002802D09847FA682B6849460A4264 +:10E2700004D1B869002801D098472B683800984726 +:10E28000371EE4D100201EE000230A2201A9280045 +:10E290000193D2F7ABFB030001988542F2D000292D +:10E2A0000CDC05D19A1C09D8002B04D0736108E05E +:10E2B0000029FBDCF8D00023736102E001235B42FC +:10E2C00073610423F36003B03CBC90469946A246B8 +:10E2D000AB46F0BDA068002800D008E120692B689B +:10E2E000002802D09847E2682B6849460A4204D1C8 +:10E2F000A069002801D098472B6820005446984711 +:10E30000002C00D195E02368E2689A4643461A4201 +:10E31000E0D0E9E700231B78FFDE04225946200005 +:10E32000D2F779FA002817D102230434EB60002CCD +:10E3300004D186E70134002C00D182E723785A1EED +:10E340001F2AF7D9A9462C2B00D132E756467D2B40 +:10E350002AD043461C6074E7052243492000D2F7C7 +:10E360005AFA00280CD1E8600534E0E72F0030E7C6 +:10E370000100130010312A000C30FFF767FCA2E700 +:10E3800004223A492000D2F746FA002800D18BE057 +:10E39000210042462800FFF7D1FE0400C7E74346AC +:10E3A000002019608FE700272023B760F360601C0E +:10E3B00089E74C1C002CADD04B78002B06D10AE02D +:10E3C0000134002CA6D02378002B04D0202BF7D9C1 +:10E3D0005D2B00D17EE000239946204B00259A4614 +:10E3E0001F4B013C9B465346B2461E001C2033681F +:10E3F0009847071E00D182E01C220021D2F766FE5A +:10E400004B46002B4ED02F607D60651C002D0BD03D +:10E410006378013B1F2B04D912E02B78013B1F2BA3 +:10E420000ED80135002DF8D14846FFF7FBFD00203E +:10E4300049E74146FA682B680A4200D110E715E720 +:10E44000042259462800D2F7E6F9002820D10223F9 +:10E450002C1DFB60002C0ED1E6E7C046649101083C +:10E46000AC35031060910108B4350310BC350310BE +:10E470000134002CD8D023785A1E1F2AF8D93D0029 +:10E480002C2BB3D056465D2B26D043461C60CBE7E1 +:10E49000052220492800D2F7BEF9002809D1F860EA +:10E4A0006C1DD7E7B946B0E701230434EB606B611C +:10E4B0003DE7042218492800D2F7ADF9002811D011 +:10E4C000424629003800FFF739FE0400C2E7434600 +:10E4D0001860B6E6002399461023F3604B46601C93 +:10E4E000B360F0E601232C1DFB607B61B2E7FFF710 +:10E4F00099FD4346E2681A4200D1EFE6F4E64B4646 +:10E50000002B91D10020DEE6002F00D099E60020FC +:10E51000D9E6C046B4350310BC350310F0B5C64685 +:10E52000394B00B504001B681C209847051E20D0FD +:10E530001C220021D2F7CAFD0023344E3360002C88 +:10E5400003D119E00134002C16D02378013B1F2B96 +:10E55000F8D904222E492000D2F75DF9002824D1F1 +:10E5600002230434EB60002C06D0280004BC904643 +:10E57000F0BD264B1860F8E780268027254C7600F2 +:10E58000BF002B68EA68984632422BD023683A4293 +:10E5900004D1A869002801D098472368280098472B +:10E5A0004346002B2ED10025DFE705221A49200023 +:10E5B000D2F731F9002802D1E8600534D3E704220C +:10E5C00016492000D2F727F9002806D02100320092 +:10E5D0002800FFF7B3FD0400C5E701230434EB6016 +:10E5E0006B61C0E7A868002806D128692368002865 +:10E5F000CDD09847EA68C9E7FFF714FDEA683242D0 +:10E60000F3D0C3E74546BCE76491010818F301085D +:10E61000AC35031060910108B4350310BC3503100C +:10E6200083680120002B08D0054A02E001309042A7 +:10E6300002D01B68002BF9D170470020FCE7C046D0 +:10E64000FFFFFF7F00280BD08068002807D000293B +:10E6500005DD00680139002801D00029F9D1704793 +:10E660000020FCE770B50D0000281BD08468002C4A +:10E6700018D0002912D0A069002805D12468002CE8 +:10E6800010D0A0690028F9D02900FFF79FFA0028D0 +:10E69000F4D1200070BD2468002C03D0A369002BA6 +:10E6A000F9D1F6E70024F4E710B5040082B0009138 +:10E6B000019200219822D2F709FD019A00992000C9 +:10E6C00000F022FA220094231432E250903BA37609 +:10E6D00002B010BDF0B5CE46474680B5017C87B08C +:10E6E0000600002923D1002B26DB180000239846C2 +:10E6F000B368002827D1172A25D84244D7B215225B +:10E700006A449446110062460139521A0F70300073 +:10E710000191029200F008FA9423F1581A4B8A886A +:10E720009B1A012B2DDD002301328A80337407B040 +:10E730000CBC90469946F0BDD8432023D24398465E +:10E74000B3680028D7D01521104C69448C460027A7 +:10E75000A1464C46E55D002D10D04D1B0139040645 +:10E760000A70120A2243000AA942F7D114007D1C44 +:10E77000044304D118374744FFB2C4E77D1C2F007F +:10E78000E7E703233374D2E7FEFF0000CC35031024 +:10E79000F0B557464E464546DE46E0B589B0E846F8 +:10E7A000009242465360037C07008946002B2AD121 +:10E7B00083680A0005AC092911D0019D00242800B6 +:10E7C0000B296CD09F220C2924D105AC2272012286 +:10E7D00007A938000391049200F0A6F9BB684246ED +:10E7E00003CA03C4424605995268380000F09CF9F8 +:10E7F0009423F9582E4B8A889B1A012B33DD002372 +:10E8000001328A803B7409B03CBC90469946A246CE +:10E81000AB46F0BD20320D29D7D0172D26D90729B8 +:10E8200001D11F2D42D04A465201D2B293461D2239 +:10E83000204D6A4494461100AA4600225546AE5C1B +:10E84000002E29D08E1B013925060870000A2843A6 +:10E85000240AB142F7D10500561C25431DD11832B8 +:10E860005A44D2B209E003233B74CCE74A01D2B246 +:10E870001D2169448C465219D2B201390A70624690 +:10E880003800521A0391049200F04EF94B460B2BBC +:10E89000AED005ACBB68A2E7561C3200CEE7172D00 +:10E8A00002D935329346C2E74022E1E7FF228CE7E6 +:10E8B000FEFF0000CC350310F0B5C64600B58168F8 +:10E8C00086B08C46002B01D1172A19D91527154C73 +:10E8D0006F4439000026A0464446A55D002D1ED099 +:10E8E0004D1B01391C060A70120A22431B0AA94259 +:10E8F000F7D11400751C1C4312D1283EF6B204E077 +:10E9000015276F443900403AD6B201390E707A1A91 +:10E91000634600F009F906B004BC9046F0BD751CD2 +:10E920002E00D9E7CC35031070B594254459114B0E +:10E93000A2889B1A012B17DD83680132A2801E007A +:10E940000022027466360CD806008C36B4420ED013 +:10E95000260008364651A3600023A281A1730374E8 +:10E9600001E00723037470BD03230374FBE7022354 +:10E970000374F8E7FEFF0000F0B54E464546DE465C +:10E980005746E0B5037C87B005001600002B0AD17E +:10E990009433C258030014339A420BD093799942AE +:10E9A0000BD00F23037407B03CBC90469946A24697 +:10E9B000AB46F0BD04230374F5E713689B468368F8 +:10E9C000022926D09088052947D00C292FD115225D +:10E9D0006A449F2391461000411E0B704B4628004D +:10E9E0005A1A5B4600F0A0F8002E0DD0290003A8AB +:10E9F00000F0D0F8049B039A9B452BD859465B1A2C +:10EA0000002A00D05A440CC69422AB58083BAB50A5 +:10EA1000C9E75A469A1A13000024172A0FD8490149 +:10EA2000891815226A44CBB291461000D4E70D290B +:10EA300014D115226A44BF2391461000CCE7002B65 +:10EA40001BD115226A4491461000173349015B1807 +:10EA5000DBB2C1E700230022D5E740080200030033 +:10EA600000241728DBD90729E9D11F28E7D115226F +:10EA70006A44FF2391461000AEE715226A4491468E +:10EA80001000002290460F4A924652464746D75DF4 +:10EA9000002F12D0C71B0138220603701B0A134334 +:10EAA000240AB842F7D10122424494461A00224374 +:10EAB00006D143461833DBB2C8E7012242449446EC +:10EAC000E046E2E7CC35031070B5837B82B00D00E1 +:10EAD000002B05D0012301240374200002B070BD77 +:10EAE000047C002CF9D19423C258030014339A42B9 +:10EAF00001D00A24F1E76E460100300000F04AF828 +:10EB00000CCE0CC5E9E7C04682B06B465A60054A98 +:10EB10000091828100228260827306CB06C002B01F +:10EB20007047C0460F0B000070B582B00091019293 +:10EB30001D00837B0400002B05D1154B82899A426E +:10EB400003D00123A37302B070BD8168436899426A +:10EB5000F7D8019E5B1AB342F3D3A942F1D30368FD +:10EB60004A1B5819002A08D0002B0DD08319010028 +:10EB70001800D2F711FB23685819002B03D032007C +:10EB80000099D2F709FBA1687118A160DBE7C046C4 +:10EB90000F0B00008B7B10B5002B0DD1084A8C8920 +:10EBA000944204D0012203608A73436010BD8B68D5 +:10EBB00043600B680360F9E7002303604360F5E7F7 +:10EBC0000F0B000070B50400AAB0006A0D0000F041 +:10EBD000FDF8012300285CD0A36B9B0761D50421BD +:10EBE0002800FFF7A1FE1822210004A8266AFFF7DB +:10EBF0005BFD052104A8FFF797FE0122002304A86E +:10EC0000FFF768FDF317320004A8FFF763FD052145 +:10EC100004A80022FFF7B0FE02A904A8FFF754FFE2 +:10EC2000002839D1029B039AA361E261002B3ED0F8 +:10EC300021000822183102A8D2F7F0F9029A039BAA +:10EC400002212800FFF7A4FDA26B1C23D20720D4C9 +:10EC5000E66B246C05212800FFF766FE002C0ED021 +:10EC6000002E0CD0042200232800FFF733FD3200D1 +:10EC700023000221280004960594FFF789FD002255 +:10EC800005212800FFF778FE02212800FFF74CFE3F +:10EC9000002318002AB070BD0023A361E361023392 +:10ECA000F7E7122200232800FFF706FE97E702236A +:10ECB000EFE7C046F0B54E46DE4657464546E0B55E +:10ECC000ADB00CAB99461CAB0C934A4640230C00EC +:10ECD000536014AB0E93202310AD07000EAE2A0034 +:10ECE000022120007360FFF747FEA37B002B0BD0AF +:10ECF000012323741833984640462DB03CBC9046FF +:10ED00009946A246AB46F0BD1922237C9046012BC2 +:10ED1000F2D0002B1CD13B6A98462368002B1AD0F6 +:10ED200008AB04939B4602AB9A4606CE06C36B46DD +:10ED300006CD06C340460023B969FA6900F04EF8D3 +:10ED400080460028D8D1BB6BDB0725D50AAD12E081 +:10ED500018239846D0E739000A9330310BAB113AAB +:10ED600068460293D2F75AF94046BA6AFB6A00F045 +:10ED7000DDF880460AAD2900082212A8D2F74EF924 +:10ED8000129A2000139B0221FFF702FD00220421AA +:10ED90002000FFF7F1FDAFE74A460AAD3E6A04AB3B +:10EDA000069503CA03C353465A4603CA03C3390030 +:10EDB000082230316846D2F731F9BA6AFB6A30006E +:10EDC00000F07CF80028D6D0804695E70730434213 +:10EDD00058410F23404298437047C046F0B5C7B032 +:10EDE0006D4600916A6014A93022040020A81E001C +:10EDF000FFF75AFC042120A8FFF796FD2E4F38009C +:10EE0000D1F702FD032103003A0020A8FFF7C0FC60 +:10EE10002B000CAA03CB03C202210C9A6B6820A81A +:10EE2000FFF7B6FC00220023022120A8FFF7B0FC68 +:10EE3000002E33D133000022022120A8FFF7A8FCC6 +:10EE40000125042120A80022FFF796FD04A920A88F +:10EE5000FFF73AFE00282DD10734614261410F23AC +:10EE60004942994306A800F089F8002814D1059B6F +:10EE700004995A1B934201D20022002106A800F0F7 +:10EE80009FF84C994D9A06A800F09AF8509B4E991D +:10EE90004F9A06A800F0A4F847B0F0BD10AB4CAAFA +:10EEA00003CA03C30B21109A4D9B20A8FFF770FCE7 +:10EEB0000025C6E71520EFE7D035031082B010B566 +:10EEC00086B008920993C31D05D0012006B010BC7E +:10EED00008BC02B0184705AB0E9C02930F9B009430 +:10EEE00001930C9A0D9B10490A98D2F7EBFC00286D +:10EEF00010D00300953313D003008633E5D0030010 +:10EF00008D330FD0973043425841042340429843F9 +:10EF10001730DBE7109B059A1C605A600020D5E78C +:10EF20000D20D3E71020D1E70906000682B010B506 +:10EF300086B008920993C31D05D0012006B010BC0D +:10EF400008BC02B018470A9C182200216846D2F774 +:10EF5000BDF869462000D2F7E5F903000020002B38 +:10EF6000ECD10722049900200A40CB08511E8A41A7 +:10EF70009B180C9A5B001360E0E7C04610314B42CF +:10EF800059410D4B494219400C4B10B59C4600238A +:10EF9000614403600400D2F723FA00236060002874 +:10EFA00006D00300863305D08A3043425841031D02 +:10EFB000180010BD0323FBE70A00FF01FFFF00005C +:10EFC00010B5436882B0040000910192002B04D177 +:10EFD000002902D0D2F732FA606002B010BDC046FC +:10EFE00070B51D00436882B0040000910192002BAF +:10EFF00008D01A00863210D08A3358425841043063 +:10F0000002B070BD2B1D0E00D2F748FA60600300FD +:10F010002E600020002BF3D0EBE70320F0E7C04682 +:10F02000044A1368002B00D1034B18181060180015 +:10F030007047C04624F3010820400008FEE7C046A0 +:10F04000F8B5C046F8BC08BC9E467047F8B5C04647 +:10F05000F8BC08BC9E46704701B40248844601BC17 +:10F06000604700BF1DFC020801B40248844601BC91 +:10F07000604700BF95F8020803000000010000008F +:10F080000100000000000000050360000400000013 +:10F090000100000000000000010000000604600004 +:10F0A00008000000BC9401089186001003020202CF +:10F0B0003D89001055890010518A0010E589001023 +:10F0C00059890010058A0010B58900107589001053 +:10F0D0007D89001089890010FD8A00109589001033 +:10F0E000A1890010A989001000000000080000009C +:10F0F0000800000000020000000000000000000006 +:10F1000000000000000000000000000000000000FF +:10F11000000000000B0000003F00000000000000A5 +:10F120003F00000000000000010000000800000097 +:10F1300012000000000000000000000000000000BD +:10F1400000000000010000000000000000000000BE +:10F1500000000000000000000000000001000000AE +:10F160000600000012000000000000000000000087 +:10F17000000000000000000001000000000000008E +:10F18000000000000000000000000000000000007F +:10F1900074666D2F64656275675F706F72742F752A +:10F1A0006172745F626173650000000074666D2FA8 +:10F1B00064656275675F706F72742F656E61626CF3 +:10F1C00065640000010000000B0000001D0000004D +:10F1D000000000000000000000000000000000002F +:10F1E000010000000000000000000000000000001E +:10F1F0000000000000000000010000000A00000004 +:10F200001D000000000000000000000000000000E1 +:10F2100000000000010000000000000000000000ED +:10F2200000000000000000000000000001000000DD +:10F23000060000001D0000000000000000000000AB +:10F2400000000000000000000100000000000000BD +:10F2500000000000000000000000000000000000AE +:10F26000010000000000000000000000000000009D +:10F27000000000000000000000000000010000008D +:10F28000000000000000000000000000000000007E +:10F29000000000000100000000000000000000006D +:10F2A000000000000000000000000000000000005E +:10F2B000010000000000000000000000000000004D +:10F2C0000000000000000000F40100001400040130 +:10F2D0000A00090508000300630100002401020080 +:10F2E000000000001E0105000000000001000000F9 +:10F2F000C00B01407F000101000000000000000081 +:10F300000F000003000000000000000000000000EB +:10F310000000000001000000C00A01407F00010160 +:10F3200000000000000000000F00000300000000CB +:10F3300000000000000000000000000001000000CC +:10F34000800A01407F000101000000000000000071 +:10F350000F0000030000000000000000000000009B +:10F3600000000000556E65787065637465642070F8 +:10F3700065726970686572616C20747970652025AA +:10F38000640D0A00002023400000001012F0050563 +:10F3900000000F0000000000000001030000010059 +:10F3A00040202340FFFFFFFF0000000300000F008C +:10F3B0000000000000000103000001008020234045 +:10F3C000FFFFFFFF0000000300000F00000000002F +:10F3D0000000010300000100C0202340FFFFFFFFE9 +:10F3E0000000030300000F00000000000000010304 +:10F3F0000000010080212340000000080E000303EC +:10F4000000000F00000000000000010300000100E8 +:10F41000C0212340000000081003000300000F007B +:10F420000000000000000103000001000022234052 +:10F43000000002080F00000300000F0000000000A1 +:10F4400000000103000001004022234000F80208F0 +:10F450000A00000500000F0000000000000001038A +:10F4600000000100534D505520300000534D5055C1 +:10F4700020310000534D505520320000534D50555F +:10F4800020330000534D505520340000534D50554B +:10F4900020350000534D505520360000534D505537 +:10F4A00020370000534D505520380000534D505523 +:10F4B00020390000534D505520313000534D5055E8 +:10F4C00020313100534D505520313200534D5055AD +:10F4D00020313300534D505520313400534D505599 +:10F4E00020313500556E7265636F676E69736564B0 +:10F4F00020534D5055000000616C6C00736F6D65BA +:10F50000000000002573202D20636F6E666967750B +:10F5100072656420616C676F726974686D6963619C +:10F520006C6C792E0000000020556E737570706F42 +:10F53000727465642064796E616D696320534D5007 +:10F540005520726567696F6E0D0A00002062617355 +:10F5500065203D20307825782C2073697A65203D20 +:10F5600020307825780D0A00094164647265737350 +:10F57000203D2030782578002C2073697A65203D65 +:10F58000203078257820627974657300656E616239 +:10F590006C65640009737562726567696F6E20251A +:10F5A000642025730D0A000064697361626C6564F0 +:10F5B00000000000534D505520736C617665206942 +:10F5C000732064697361626C65640D0A0000000059 +:10F5D0002573202D2061646472657373203D20259E +:10F5E000702C2073697A65203D2030782578206260 +:10F5F000797465732C202573207375627265676951 +:10F600006F6E7320656E61626C65640D0A000000A8 +:10F6100009737562726567696F6E2073697A652018 +:10F620003D20307825782062797465730D0A0000DA +:10F6300074666D2F6E765F636F756E746572732F6F +:10F640006F6666736574000074666D2F6E765F6317 +:10F650006F756E746572732F73697A6500000000B0 +:10F6600074666D2F6974732F6F666673657400001E +:10F6700074666D2F6974732F73697A6500000000DA +:10F6800074666D2F6974732F6D61785F6173736534 +:10F69000745F73697A65000074666D2F6974732FE7 +:10F6A0006E756D5F617373657473000074666D2FA2 +:10F6B00070732F6F666673657400000074666D2F3B +:10F6C00070732F73697A650074666D2F70732F6D78 +:10F6D00061785F61737365745F73697A65000000B8 +:10F6E00074666D2F70732F6E756D5F6173736574C3 +:10F6F00073000000424F4F540000000044697361E2 +:10F70000626C656420626F6F7420776174636864F3 +:10F710006F670D0A0000000041646A7573746564C8 +:10F72000207761746368646F672074696D65722007 +:10F73000746F202564206D730D0A000052652D73CF +:10F7400074617274207761746368646F6720746990 +:10F750006D657220627920706F6C69637920666FC5 +:10F7600072202564206D730D0A00000053746172CD +:10F7700074696E6720436F727465782D4D34206113 +:10F780007420307825580D0A000000000A0D436FE0 +:10F790007265732073796E63207375636365737329 +:10F7A0002E0D0A0000940008009C00080830000894 +:10F7B000083E00080882010808890108005601086F +:10F7C0000076010808890108088E010808760108FA +:10F7D00008820108083E00080840000840FB0210AB +:10F7E00000010000100000006000000001010000A6 +:10F7F00001000000010000004CFB021000010000AD +:10F800002000000061000000010100000100000074 +:10F810000100000058FB0210000100004000000041 +:10F820006200000001010000010000000100000072 +:10F8300068FB02100001000080000000630000006F +:10F8400001010000010000000100000078FB02102F +:10F850000001000000010000640000000101000040 +:10F8600001000000010000008CFB021001010000FB +:10F870001000000070000000010100000100000005 +:10F880000100000098FB02100101000020000000B0 +:10F8900071000000010100000100000001000000F3 +:10F8A000A4FB0210010100004000000072000000F3 +:10F8B000010100000100000001000000B8FB02107F +:10F8C0000101000080000000730000000101000041 +:10F8D0000100000001000000C8FB0210030100004D +:10F8E0001000000080000000010100000100000085 +:10F8F00001000000D4FB0210040100001000000011 +:10F9000040000000010100000100000001000000B3 +:10F91000F4FB021004010000200000004100000080 +:10F920000101000001000000010000000CFC0210B9 +:10F93000040100004000000042000000000100003F +:10F94000010000000100000028FC02100501000079 +:10F950001000000020000000010100000100000074 +:10F960000100000040FC0210050100002000000022 +:10F970002100000001010000010000000100000062 +:10F980005CFC0210050100004000000022000000A5 +:10F9900001010000010000000100000078FC0210DD +:10F9A000100100001000000020F100000100000024 +:10F9B00001000000000000008CFC0210100100009B +:10F9C0002000000021F10000010000000100000003 +:10F9D00000000000A0FC0210100100004000000028 +:10F9E00022F1000001000000010000000000000002 +:10F9F000000100000000000006000000FF00000001 +:10FA0000E9B200100000000000000000000000004B +:10FA100000000000000000000000000000000000E6 +:10FA20000001000000010000070000007F0000004E +:10FA30004175001000000000000000000000000000 +:10FA4000000000000000000006000000EC8F01082C +:10FA50000001000001010000070000007F0000001D +:10FA60006D570010000000000000000000000000C2 +:10FA70000000000000000000000000000000000086 +:10FA80000001000003010000070000007F000000EB +:10FA9000B52D001000000000000000000000000074 +:10FAA000000000000000000004000000D88F0108E2 +:10FAB0000001000004010000070000007F000000BA +:10FAC0009D70001000000000000000000000000019 +:10FAD0000000000000000000000000000000000026 +:10FAE0000001000005010000070000007F00000089 +:10FAF000414E001000000000000000000000000067 +:10FB0000000000000000000001000000E88F010874 +:10FB10000101000010010000050000007F0000004E +:10FB200081840010000000000000000000000000C0 +:10FB300000000000000000000000000000000000C5 +:10FB400054464D5F50535F534554000054464D5F3B +:10FB500050535F474554000054464D5F50535F4734 +:10FB600045545F494E464F0054464D5F50535F52D7 +:10FB7000454D4F564500000054464D5F50535F477A +:10FB800045545F535550504F5254000054464D5FFA +:10FB90004954535F5345540054464D5F4954535F95 +:10FBA0004745540054464D5F4954535F4745545FA1 +:10FBB000494E464F0000000054464D5F4954535F84 +:10FBC00052454D4F5645000054464D5F43525950E3 +:10FBD000544F000054464D5F53505F504C415446C3 +:10FBE0004F524D5F53595354454D5F524553455401 +:10FBF0000000000054464D5F53505F504C41544646 +:10FC00004F524D5F494F43544C00000054464D5FE6 +:10FC100053505F504C4154464F524D5F4E565F43D8 +:10FC20004F554E544552000054464D5F4154544583 +:10FC300053545F4745545F544F4B454E00000000FE +:10FC400054464D5F4154544553545F4745545F54A7 +:10FC50004F4B454E5F53495A4500000054464D5F97 +:10FC60004154544553545F4745545F5055424C49A5 +:10FC7000435F4B455900000054464D5F46464D31A9 +:10FC8000315F5345525649434531000054464D5F5C +:10FC900046464D31315F5345525649434532000087 +:10FCA00054464D5F46464D31315F534552564943A8 +:10FCB00045330000000000000000000000000000CC +:10FCC000000000000000000080AC00102EAD00100D +:10FCD0002EAD00102EAD00108AAC001092AC0010BA +:10FCE0002EAD00109CAC0010A2AC0010ACAC00100B +:10FCF000B6AC0010C2AC0010CEAC0010D6AC0010F8 +:10FD0000E0AC0010E8AC0010F0AC0010FAAC001051 +:10FD100004AD00100EAD001016AD00101EAD0010A9 +:10FD200024AD001074AC0010B8B500104CB6001033 +:10FD30000AB6001068B5001028B600101AB60010F8 +:10FD400069B600103DB400101DB40010F805031092 +:10FD50000006031008060310100603101040404070 +:10FD6000400000404080800A0000000B0000000CB2 +:10FD7000505341004B455900020305070B0D111369 +:10FD8000171D1F25292B2F353B3D4347494F5359FD +:10FD90006165676B6D717F83898B95979DA3A7AD17 +:10FDA000B3B5BFC1C5C7D3DFE3E5E9EFF1FB0000A1 +:10FDB0000300000005000000070000000B00000029 +:10FDC0000D000000110000001300000017000000EB +:10FDD0001D0000001F000000250000002900000099 +:10FDE0002B0000002F000000350000003B00000049 +:10FDF0003D000000430000004700000049000000F3 +:10FE00004F00000053000000590000006100000096 +:10FE100065000000670000006B0000006D0000003E +:10FE2000710000007F0000008300000089000000D6 +:10FE30008B00000095000000970000009D0000006E +:10FE4000A3000000A7000000AD000000B300000008 +:10FE5000B5000000BF000000C1000000C5000000A8 +:10FE6000C7000000D3000000DF000000E300000036 +:10FE7000E5000000E9000000EF000000F1000000D4 +:10FE8000FB00000001010000070100000D0100005F +:10FE90000F01000015010000190100001B01000006 +:10FEA0002501000033010000370100003901000086 +:10FEB0003D0100004B010000510100005B0100000A +:10FEC0005D01000061010000670100006F0100009A +:10FED000750100007B0100007F010000850100002A +:10FEE0008D0100009101000099010000A3010000B4 +:10FEF000A5010000AF010000B1010000B701000042 +:10FF0000BB010000C1010000C9010000CD010000DB +:10FF1000CF010000D3010000DF010000E701000075 +:10FF2000EB010000F3010000F7010000FD010000FB +:10FF3000090200000B0200001D0200002302000065 +:10FF40002D02000033020000390200003B020000D5 +:10FF5000410200004B020000510200005702000065 +:10FF6000590200005F020000650200006902000003 +:10FF70006B02000077020000810200008302000093 +:10FF8000870200008D02000093020000950200002D +:10FF9000A1020000A5020000AB020000B3020000B5 +:10FFA000BD020000C5020000CF020000D702000021 +:10FFB000DD020000E3020000E7020000EF020000A3 +:10FFC000F5020000F9020000010300000503000033 +:10FFD000130300001D030000290300002B03000091 +:10FFE00035030000370300003B0300003D03000021 +:10FFF0004703000055030000590300005B030000A5 +:020000041003E7 +:100000005F0300006D030000710300007303000034 +:10001000770300008B0300008F03000097030000AC +:10002000A1030000A9030000AD030000B30300001A +:10003000B9030000C7030000CB030000D103000098 +:10004000D7030000DF030000E503000099FFFFFF76 +:1000500005020000800000000505031010000000EC +:100060000000000010000000D40203102B08000064 +:1000700080000000300403100C00000001000000AC +:1000800010000000000303100803000080000000BF +:10009000DE0403101000000000000000100000004B +:1000A000D40203100B050000800000009004031030 +:1000B000100000000000000010000000D402031037 +:1000C000020100008000000029050310000000006C +:1000D0000000000010000000D40203100E06000013 +:1000E00080000000540403100C0000000100000018 +:1000F000100000002C0303104304000080000000E7 +:10010000B404031010000000000000001000000004 +:10011000D402031046090000000100006C04031023 +:10012000100000000000000010000000380503105F +:1001300006020000C0000000F904031010000000D7 +:100140000000000010000000D40203102C08000082 +:10015000C0000000240403100C0000000100000097 +:10016000100000000003031009030000C00000009D +:10017000CF04031010000000000000001000000079 +:10018000D40203100C050000C0000000840403101A +:10019000100000000000000010000000D402031056 +:1001A00003010000C00000001D0503100000000056 +:1001B0000000000010000000D40203100F06000031 +:1001C000C0000000480403100C0000000100000003 +:1001D000100000002C03031044040000C0000000C5 +:1001E000A804031010000000000000001000000030 +:1001F000D40203100702000000010000ED04031008 +:10020000100000000000000010000000D4020310E5 +:100210002D08000000010000180403100C0000006D +:100220000100000010000000000303100A0300009A +:1002300000010000C00403101000000000000000D6 +:1002400010000000D40203100D05000000010000A2 +:1002500078040310100000000000000010000000EF +:10026000D402031004010000000100001105031076 +:10027000000000000000000010000000D402031085 +:1002800010060000000100003C0403100C000000F8 +:1002900001000000100000002C03031045040000C2 +:1002A000000100009C04031010000000000000008A +:1002B00010000000D40203104709000000020000F3 +:1002C0006004031010000000000000001000000097 +:1002D00038050310020000003356011023560110A8 +:1002E0000D560110FD550110E755011000000000EA +:1002F000DF550110D7550110C1550110B15501103E +:1003000002000000000000000000000000000000EB +:100310000000000000000000000000002355011054 +:10032000235501100D550110FD540110020000006D +:1003300000000000000000000000000000000000BD +:10034000000000000000000059550110595501102F +:10035000415501103155011002000000C00003108A +:1003600003000000A0010310040000006402031059 +:1003700005000000500003100600000030010310CB +:1003800007000000F40103100800000088000310BB +:1003900009000000680103100A0000002C0203108D +:1003A00043000000F800031044000000D8010310CF +:1003B000450000009C0203100B000000A400031085 +:1003C0000C000000840103100D000000480203101F +:1003D000460000001401031047000000B80203109B +:1003E0000E000000DC0003100F000000BC01031031 +:1003F00010000000800203102B0000006C000310AE +:100400002C0000004C0103102D000000100203100E +:1004100000000000000000004145532D3235362D0C +:1004200043434D004145532D3139322D43434D0057 +:100430004145532D3132382D43434D004145532D15 +:100440003235362D47434D004145532D3139322D3C +:1004500047434D004145532D3132382D47434D0020 +:100460004145532D3235362D585453004145532DB7 +:100470003132382D585453004145532D3235362DE5 +:10048000435452004145532D3139322D43545200CB +:100490004145532D3132382D435452004145532D9F +:1004A0003235362D4F4642004145532D3139322DDC +:1004B0004F4642004145532D3132382D4F464200C0 +:1004C0004145532D3235362D4346423132380041B5 +:1004D00045532D3139322D434642313238004145A2 +:1004E000532D3132382D4346423132380041455385 +:1004F0002D3235362D434243004145532D3139329B +:100500002D434243004145532D3132382D43424360 +:10051000004145532D3235362D4543420041455368 +:100520002D3139322D454342004145532D3132386A +:100530002D454342000000000200000000000000C2 +:1005400000000000000000000000000000000000AB +:1005500091550110875501107F5501106755011005 +:100560003B560110000000000000000000000000E9 +:10057000201C0000000000004038000000000000C7 +:1005800060240000000000008070000000000000F7 +:10059000A06C000000000000C04800000000000047 +:1005A000E05400000000000000E100000000000036 +:1005B00020FD00000000000040D900000000000005 +:1005C00060C50000000000008091000000000000F5 +:1005D000A08D000000000000C0A900000000000085 +:1005E000E0B5000000000000F8050310000603104D +:1005F00008060310100603109B0C0310051C400096 +:10060000C80C031006204000F50C031007308000D2 +:10061000220D0310084080000800000007000000C1 +:100620000600000005000000000000002B8104000F +:1006300021002B81040022002B81040023002B8148 +:1006400004001F002B81040020002B8104000A00FD +:10065000551D2000000000003C0A031005000000AA +:10066000420A03104309031021000000490A031045 +:1006700008000000520A03105F0A03102500000062 +:10068000000000000000000000000000000000006A +:10069000000000006C0A031008000000750A031037 +:1006A000750A0310010000002C060310050000006D +:1006B0007F0A03107F0A031002000000890A03105A +:1006C00008000000920A0310920A031003000000C1 +:1006D00032060310050000009C0A03109C0A031058 +:1006E000040000003806031005000000A60A0310ED +:1006F000A60A0310050000003E06031005000000D6 +:10070000B00A0310B00A03100A00000044060310E8 +:1007100005000000BA0A0310BA0A03100B0000001B +:100720004A06031005000000C40A0310C40A03109F +:100730000C000000CE0A031009000000D80A0310C4 +:10074000E80A031006000000F70A03100900000081 +:10075000010B0310110B031007000000200B031006 +:10076000090000002A0B03103A0B031008000000D8 +:100770000000000000000000000000000000000079 +:1007800000000000EC09031009000000F609031046 +:10079000D40B031005000000000A0310090000003C +:1007A0000A0A0310070C031006000000140A0310C5 +:1007B000090000001E0A03103A0C03100700000095 +:1007C000280A031009000000320A03106D0C031000 +:1007D0000800000000000000000000000000000011 +:1007E000000000000000000068090310080000007D +:1007F000710903107C09031005000000890903102A +:1008000008000000920903109D0903100600000073 +:10081000AA09031008000000B3090310BE09031061 +:1008200007000000CB09031008000000D4090310E2 +:10083000DF090310080000000000000000000000B5 +:10084000000000000000000000000000490B031041 +:1008500009000000530B0310610B0310010000009E +:10086000650B0310070000006D0B03107C0B0310D9 +:10087000020000008B0B031005000000910B031019 +:10088000990B0310030000000000000000000000AE +:10089000000000000000000000000000D808031065 +:1008A0000A000000E30803100309031004250000F8 +:1008B000200903100A0000002B0903104B09031044 +:1008C0000423000000000000000000000000000001 +:1008D00000000000000000002A864886F70D010C89 +:1008E00001030070626557697468534841416E6442 +:1008F000332D4B6579547269706C654445532D43B3 +:100900004243005042452077697468205348413182 +:1009100020616E6420332D4B6579203344455300AC +:100920002A864886F70D010C01040070626557693C +:100930007468534841416E64322D4B657954726935 +:10094000706C654445532D43424300504245207727 +:10095000697468205348413120616E6420322D4B08 +:1009600065792033444553002A864886F70D0208EE +:1009700000686D616353484132323400484D414351 +:100980002D5348412D323234002A864886F70D0215 +:100990000900686D616353484132353600484D4166 +:1009A000432D5348412D323536002A864886F70DAF +:1009B000020A00686D616353484133383400484D82 +:1009C00041432D5348412D333834002A864886F759 +:1009D0000D020B00686D61635348413531320048A8 +:1009E0004D41432D5348412D353132006086480139 +:1009F00065030402040069642D73686132323400B7 +:100A00006086480165030402010069642D73686112 +:100A100032353600608648016503040202006964CD +:100A20002D73686133383400608648016503040221 +:100A3000030069642D736861353132002B0E0302A7 +:100A40000700646573434243002A864886F70D0316 +:100A500007006465732D656465332D63626300442C +:100A600045532D454445332D434243002A8648CE05 +:100A70003D030101007365637031393272310073D7 +:100A80006563703232347231002A8648CE3D0301EC +:100A900007007365637032353672310073656370B9 +:100AA000333834723100736563703532317231001E +:100AB000736563703139326B310073656370323244 +:100AC000346B3100736563703235366B31002B2423 +:100AD0000303020801010700627261696E706F6FA3 +:100AE0006C50323536723100627261696E706F6FB0 +:100AF0006C3235367231002B240303020801010BDE +:100B000000627261696E706F6F6C5033383472318D +:100B100000627261696E706F6F6C333834723100CD +:100B20002B240303020801010D00627261696E70DB +:100B30006F6F6C50353132723100627261696E7064 +:100B40006F6F6C3531327231002A864886F70D019D +:100B5000010100727361456E6372797074696F6E22 +:100B600000525341002A8648CE3D02010069642D9F +:100B700065635075626C69634B65790047656E65A6 +:100B8000726963204543206B6579002B8104010C59 +:100B90000069642D65634448004543206B657920F6 +:100BA000666F722045434448002A864886F70D0147 +:100BB000010E0073686132323457697468525341D0 +:100BC000456E6372797074696F6E0052534120777D +:100BD000697468205348412D323234002A86488691 +:100BE000F70D01010B00736861323536576974687F +:100BF000525341456E6372797074696F6E0052533F +:100C0000412077697468205348412D323536002AD7 +:100C1000864886F70D01010C00736861333834573C +:100C2000697468525341456E6372797074696F6E6E +:100C3000005253412077697468205348412D33385E +:100C400034002A864886F70D01010D00736861356E +:100C5000313257697468525341456E6372797074CA +:100C6000696F6E0052534120776974682053484180 +:100C70002D353132002A8648CE3D040301006563DC +:100C80006473612D776974682D53484132323400A2 +:100C900045434453412077697468205348413232B8 +:100CA00034002A8648CE3D04030200656364736104 +:100CB0002D776974682D53484132353600454344D9 +:100CC0005341207769746820534841323536002AF1 +:100CD0008648CE3D0403030065636473612D776924 +:100CE00074682D5348413338340045434453412000 +:100CF0007769746820534841333834002A8648CED7 +:100D00003D0403040065636473612D776974682D85 +:100D1000534841353132004543445341207769748B +:100D20006820534841353132002A864886F70D0144 +:100D3000010A005253415353412D50535300616EE9 +:100D400079506F6C69637900416E7920506F6C69DE +:100D50006379002B060105050703010069642D6B0B +:100D6000702D7365727665724175746800544C53CA +:100D700020576562205365727665722041757468EC +:100D8000656E7469636174696F6E002B06010505F9 +:100D90000703020069642D6B702D636C69656E74C6 +:100DA0004175746800544C532057656220436C6948 +:100DB000656E742041757468656E746963617469E9 +:100DC0006F6E002B060105050703030069642D6B98 +:100DD000702D636F64655369676E696E6700436F5A +:100DE0006465205369676E696E67002B060105050F +:100DF0000703040069642D6B702D656D61696C508B +:100E0000726F74656374696F6E00452D6D61696CF6 +:100E10002050726F74656374696F6E002B06010554 +:100E2000050703080069642D6B702D74696D6553A7 +:100E300074616D70696E670054696D6520537461EB +:100E40006D70696E67002B060105050703090069CF +:100E5000642D6B702D4F4353505369676E696E67F5 +:100E6000004F435350205369676E696E67002B062D +:100E700001040182E425010069642D6B702D7769FE +:100E800073756E2D66616E2D6465766963650057B6 +:100E9000692D53554E20416C6C69616E6365204627 +:100EA00069656C642041726561204E6574776F726C +:100EB0006B202846414E2900551D130069642D639F +:100EC000652D6261736963436F6E73747261696EDD +:100ED000747300426173696320436F6E737472614F +:100EE000696E747300551D0F0069642D63652D6B69 +:100EF0006579557361676500551D250069642D632B +:100F0000652D6578744B6579557361676500457823 +:100F100074656E646564204B6579205573616765FF +:100F200000551D110069642D63652D7375626A6536 +:100F30006374416C744E616D65005375626A6563DC +:100F40007420416C74204E616D6500608648018696 +:100F5000F84201010069642D6E6574736361706508 +:100F60002D6365727474797065004E657473636186 +:100F700070652043657274696669636174652054A5 +:100F800079706500551D200069642D63652D6365CA +:100F9000727469666963617465506F6C69636965D1 +:100FA0007300436572746966696361746520506F8C +:100FB0006C6963696573005504030069642D61748D +:100FC0002D636F6D6D6F6E4E616D6500436F6D6D5E +:100FD0006F6E204E616D6500434E0055040600693A +:100FE000642D61742D636F756E7472794E616D65D9 +:100FF00000436F756E747279005504070069642DA3 +:1010000061742D6C6F63616C697479004C6F6361FE +:101010006C697479004C005504080069642D617492 +:101020002D737461746500537461746500535400CA +:1010300055040A0069642D61742D6F7267616E69D1 +:101040007A6174696F6E4E616D65004F7267616E93 +:10105000697A6174696F6E004F0055040B00696412 +:101060002D61742D6F7267616E697A6174696F6E3C +:10107000616C556E69744E616D65004F72672055E5 +:101080006E6974004F55002A864886F70D010901E4 +:1010900000656D61696C4164647265737300452D10 +:1010A0006D61696C20616464726573730055040539 +:1010B0000069642D61742D73657269616C4E756D84 +:1010C0006265720053657269616C206E756D626550 +:1010D00072005504100069642D61742D706F737473 +:1010E000616C4164647265737300506F7374616CFA +:1010F0002061646472657373005504110069642D86 +:1011000061742D706F7374616C436F646500506F10 +:101110007374616C20636F64650055040400696436 +:101120002D61742D7375724E616D65005375726E0D +:10113000616D6500534E0055042A0069642D617489 +:101140002D676976656E4E616D6500476976656EDF +:10115000206E616D6500474E0055042B0069642DBB +:1011600061742D696E697469616C7300496E69748C +:1011700069616C730055042C0069642D61742D67DE +:10118000656E65726174696F6E5175616C696669CF +:1011900065720047656E65726174696F6E20717566 +:1011A000616C69666965720055040C0069642D61A3 +:1011B000742D7469746C65005469746C6500550411 +:1011C0002E0069642D61742D646E5175616C6966C1 +:1011D0006965720044697374696E677569736865DF +:1011E00064204E616D65207175616C696669657218 +:1011F000005504410069642D61742D707365756438 +:101200006F6E796D0050736575646F6E796D00094E +:1012100092268993F22C6401190069642D646F6D24 +:1012200061696E436F6D706F6E656E7400446F6DB3 +:1012300061696E20636F6D706F6E656E74004443FC +:101240000055042D0069642D61742D756E697175EA +:10125000654964656E74696669657200556E697189 +:101260007565204964656E74696669657200000081 +:1012700018130310B8120310E81203108812031099 +:1012800065636B65792E5100040000005C13031048 +:101290004F7201107772011061740110FD7301101B +:1012A0000000000000000000CF730110D773011090 +:1012B000ED73011055720110020000006813031055 +:1012C0004F720110417201108574011017740110E2 +:1012D0000000000000000000CF730110B97301107E +:1012E000A97301105572011003000000621303106E +:1012F0004F72011069720110000000000000000030 +:101300000000000000000000CF730110B97301104D +:10131000A97301105572011001000000610B031048 +:10132000B17201100D7201105D7301102D73011067 +:10133000F5720110BD720110A97201108F720110B7 +:101340007F7201101D7201107273612E4E00727354 +:10135000612E45005253412D616C74004543445346 +:10136000410045435F4448004543002D2D2D2D2D60 +:10137000454E442052534120505249564154452035 +:101380004B45592D2D2D2D2D002D2D2D2D2D42452B +:1013900047494E205253412050524956415445200E +:1013A0004B45592D2D2D2D2D002D2D2D2D2D454EFF +:1013B000442045432050524956415445204B4559FD +:1013C0002D2D2D2D2D002D2D2D2D2D424547494EF6 +:1013D0002045432050524956415445204B45592DF4 +:1013E0002D2D2D2D002D2D2D2D2D454E44205052CF +:1013F0004956415445204B45592D2D2D2D2D002D5D +:101400002D2D2D2D424547494E20505249564154CD +:1014100045204B45592D2D2D2D2D002D2D2D2D2DBC +:10142000454E4420454E4352595054454420505255 +:101430004956415445204B45592D2D2D2D2D002D1C +:101440002D2D2D2D424547494E20454E4352595092 +:101450005445442050524956415445204B45592D3E +:101460002D2D2D2D002D2D2D2D2D454E442052534B +:1014700041205055424C4943204B45592D2D2D2D8F +:101480002D002D2D2D2D2D424547494E20525341E3 +:10149000205055424C4943204B45592D2D2D2D2D83 +:1014A000002D2D2D2D2D454E44205055424C4943A5 +:1014B000204B45592D2D2D2D2D002D2D2D2D2D421F +:1014C0004547494E205055424C4943204B45592DE4 +:1014D0002D2D2D2D002A864886F70D010C010100C7 +:1014E0002A864886F70D01050D002A8648CE3D0163 +:1014F000010050726F632D547970653A20342C4589 +:101500004E43525950544544002A864886F70D01EF +:10151000050C007F7F7F7F7F7F7F7F7F7F7F7F7F47 +:101520007F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7FCB +:101530007F7F7F7F7F7F7F7F7F7F7F7F7F7F3E7FFC +:101540007F7F3F3435363738393A3B3C3D7F7F7FAC +:10155000407F7F7F000102030405060708090A0B8C +:101560000C0D0E0F101112131415161718197F7F7A +:101570007F7F7F7F1A1B1C1D1E1F202122232425F5 +:10158000262728292A2B2C2D2E2F303132337F7FEE +:101590007F7F7F00000000000100030001000100C8 +:1015A0000001000100000000010003000000000035 +:1015B00001000300010203040500000005001900FA +:1015C00009020000A60A031008001C000002000027 +:1015D0002A0B031004001800800100009C0A03106D +:1015E00007001B0080010000010B0310030017001F +:1015F00000010000920A03100C0016000001000018 +:10160000C40A031006001A0000010000D80A0310E3 +:1016100002001500E00000007F0A03100B00140018 +:10162000E0000000BA0A031001001300C00000002F +:10163000750A03100A001200C0000000B00A03106F +:10164000000000000000000000000000D9B530F3E9 +:10165000444B4AE96C5CDC26C15580FBE7FF7A41CC +:101660003075F6EE57302CFC75095A7DB6078CFFA5 +:1016700018DCCC6BCEE1F75C29168495BF7CD7BB18 +:10168000D9B530F3444B4AE96C5CDC266232CE9A21 +:10169000BD53443AC223BDE3E127DEB9AFB781FCB5 +:1016A0002F484B2CCB577ECBB9AED28B9769042FEA +:1016B000C7541D5C548EED2D134577C2C91D6114AE +:1016C0001A46F897FDC4DAC335F87E54A7564897F2 +:1016D000820E1E90F7A661B5A37A398C718D839D19 +:1016E000900A663EBCA9EEA1DB57FBA977536E1F9B +:1016F0001D481320282026D523F63B6E728D839D2E +:10170000900A663EBCA9EEA1DB57FBA92628CE2293 +:10171000DDC7A804EBD43A504A81A58A0FF991BAE3 +:10172000EF6591138727B24F8EA2BEC2A0AF05CE40 +:101730000A08723C0C158C3DC682C37B114C50FAD2 +:101740009686B73A94C9DB950239B47CD562EB3EF4 +:10175000A50E882EA6D2DC07E17DB72F7C44F016BB +:1017600054B5398B2628CE22DDC7A8041EAFD44736 +:10177000E2B287EFAA46D63634E026E8E810BD0C80 +:10178000FECA7FDBE34FF17EE7A347886B3FC1B71B +:10179000813AA6A2FF45CF68F0641C1D15533C2674 +:1017A00041038242118191772146460E282991F901 +:1017B0004F059CE16458ECFE290BB76252D5CF95DA +:1017C0008EEBB15CA4C2F920751DBE8A656504E983 +:1017D0000232883B10C37F6BAFB63ACFA72504AC6B +:1017E0006C6E161FB35654ED09712F15DF41E6508C +:1017F0007E6F5D0F286D38A3821EB98C53EC0731C4 +:1018000013004787711A1D9029A7D3AC2311B77F06 +:1018100019DAB112B45654ED09712F15DF41E650B3 +:101820007E6F5D0F286D38A3821EB98CCA94FC7739 +:101830004DACC1E7B9C7F22BA717117FB5C89A8B7A +:10184000C9F12E0AA13A25A85A5DED2DBC6398EA8C +:10185000CA4134A81016F93D8DDDCB94C54C23AC9C +:10186000457132E2893B608B31A3307823F71680D3 +:1018700063BD0928DDE5BA5EB7504098673E08DCD5 +:10188000CA94FC774DACC1E7B9C7F22BA717117FFB +:10189000B5C89A8BC9F12E0AA13A25A85A5DED2D3B +:1018A000BC6398EACA4134A81016F93D22F8B9BCC5 +:1018B0000922358B685E6A4047506D7C5F7DB99325 +:1018C0007B68D1508DD4D0E2781F3BFF8E09D0F4D5 +:1018D000EE623BB4C116D9B5709FED85936A4C9CFE +:1018E0002E32215A64D92ED8BDE4AE819208D83A5E +:1018F0000F1ECD780654F0A82F2BCAD1AE63278ACD +:10190000D84BCA5B5E485F4A49DEDCB211811F8852 +:101910005BC500A01A7BA52400F709F2FD2278CF51 +:10192000A9BFEAC0EC3263565D38DE7D6900A99C30 +:10193000829687B5DDDA5D0881D3B11D4710AC7F93 +:10194000196186411926A94C415C3E5570083370D7 +:10195000CA9C63D60ED2C9B3B38D30CB07FCC93352 +:10196000AEE6D43F8BC4E9DBB89DDDAAF3483A5814 +:101970005660AA2885C6822D2FFF8128E680A3E61F +:101980002AA1CDAE4268C69B009B4D7D7108337085 +:10199000CA9C63D60ED2C9B3B38D30CB07FCC93312 +:1019A000AEE6D43F8BC4E9DBB89DDDAA30314442BA +:1019B00034320031344445463944454132463739A2 +:1019C0004344363538313236333141354346354478 +:1019D00033454400393841410038333335444331CD +:1019E0003633424231323442363531323943393678 +:1019F0004644453933334438443732334137304134 +:101A00004144433837334436443534413742423019 +:101A10004400000000000000030000007D6CE0EACC +:101A2000B1D1A51D34F4B780027DB026AEE957C010 +:101A30000EF14FDB9D2F5ED988AA82403486BE15F9 +:101A4000D0634184A728569C6D2F2F9B8DFDDE749B +:101A50006A46690F17FCF226FEFFFFFFFFFFFFFF3C +:101A6000FFFFFFFF37EEFFFFFEFFFFFFFFFFFFFF60 +:101A7000FFFFFFFFFFFFFFFFFFFFFFFFB1B946C101 +:101A8000ECDEB8FE49302472ABE9A70FE7809CE595 +:101A9000190521641210FF82FD0AFFF40088A1439A +:101AA000EB20BF7CF69030B00EA88D181148791E3F +:101AB000A177F973D5CD246BED11106378DAC8FFE7 +:101AC000952B19073128D2B4B1C96B1436F8DE99B9 +:101AD000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF16 +:101AE000FFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFF07 +:101AF000FFFFFFFF00000000050000005CA4B7B678 +:101B00000E657E0FA97570E4E967A469A128FC3011 +:101B1000DF99F04D335B45A1A5616D55DB4BCAE202 +:101B200059BDB0C0F719E3F7D6FBCA824234BA7F79 +:101B3000ED9F087EF7B19F7671A9F0CA8461ECD25F +:101B4000E8DC0100000000000000000000000000D0 +:101B5000010000006DE5FFFFFEFFFFFFFFFFFFFF3D +:101B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85 +:101B7000B4FF552343390B27BAD8BFD7B7B0445069 +:101B8000563241F5ABB3040C850A05B4211D5C1136 +:101B9000D68032342211C256D3C1034AB9901332CF +:101BA0007FBFB46BBD0C0EB7347E00859981D544E0 +:101BB0006447075AA07543CDE6DF224CFB23F7B5F7 +:101BC000886337BD3D2A5C5C4529DD133EF0B8E0F3 +:101BD000A216FFFFFFFFFFFFFFFFFFFFFFFFFFFF5B +:101BE000010000000000000000000000FFFFFFFFF8 +:101BF000FFFFFFFFFFFFFFFFFFFFFFFF00000000F1 +:101C000000000000070000009817F8165B81F259E9 +:101C1000D928CE2DDBFC9B02070B87CE9562A05501 +:101C2000ACBBDCF97E66BE79B8D410FB8FD0479C84 +:101C3000195485A648B417FDA808110EFCFBA45D35 +:101C400065C4A32677DA3A48414136D08C5ED2BFCC +:101C50003BA048AFE6DCAEBAFEFFFFFFFFFFFFFF91 +:101C6000FFFFFFFFFFFFFFFF2FFCFFFFFEFFFFFF58 +:101C7000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF74 +:101C8000FFFFFFFFFFFFFFFF4B60D2273E3CCE3B35 +:101C9000F6B053CCB0061D65BC86987655BDEBB347 +:101CA000E7933AAAD835C65A96C298D84539A1F4CE +:101CB000A033EB2D817D0377F240A463E5E6BCF809 +:101CC00047422CE1F2D1176BF551BF376840B6CBD4 +:101CD000CE5E316B5733CE2B169E0F7C4AEBE78ED0 +:101CE0009B7F1AFEE242E34F512563FCC2CAB9F35F +:101CF000849E17A7ADFAE6BCFFFFFFFFFFFFFFFFC3 +:101D000000000000FFFFFFFFFFFFFFFFFFFFFFFFDF +:101D1000FFFFFFFF000000000000000000000000C7 +:101D200001000000FFFFFFFFEF2AECD3EDC8852A7A +:101D30009DD12E8A8D3956C65A8713508F081403A9 +:101D4000124181FE6E9C1D18192DF8E36B058E98CB +:101D5000E4E73EE2A72F31B3B70A7672385E543A11 +:101D60006C2955BF5DF20255382A5482E041F7597B +:101D7000989BA78B623B1D6E74AD20F31EC7B18E7E +:101D800037058BBE22CA87AA5F0EEA907C1D437A74 +:101D90009D817E1DCEB1600AC0B8F0B51331DAE97D +:101DA0007C149A28BD1DF4F829DC9292BF989E5DA0 +:101DB0006F2C26964ADE17367329C5CC6A19ECECCF +:101DC0007AA7B048B20D1A58DF2D37F4814D63C79A +:101DD000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF13 +:101DE000FFFFFFFFFFFFFFFFFFFFFFFF00000000FF +:101DF00000000000FFFFFFFFFEFFFFFFFFFFFFFFF0 +:101E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2 +:101E1000FFFFFFFFFFFFFFFF003F506BD41F45EFA9 +:101E2000F1342C3D88DF733507BFB13BBDC052167E +:101E30007B937EEC51391956E109F18E9189B4B842 +:101E4000F315B3995B72DAA2EE4085B6A0219A929F +:101E50001F9A1C8E61B93E955100000066BDE5C217 +:101E6000317E7EF99B426A85C1B34833DEA8FFA26A +:101E700027C11DFE2859E7EF775E4BA1BA3D4D6B98 +:101E800060AF28F821B53F053981649C42B49523A1 +:101E900066CB3E9ECDE90404B7068E85C6000000E1 +:101EA0005066D19F7694BE8840C272A286703C353F +:101EB0006107AD3F01B950C54026F45E9972EE97B7 +:101EC0002C663E2717BDAF1768449B574944F598C9 +:101ED000D91B7D2CB45F8A5C04C03B9A786A29398F +:101EE00018010000096438911EB76FBBAE479C898A +:101EF000B8C9B53BD0A509F74801CC7F6B962FBF79 +:101F000083878651FAFFFFFFFFFFFFFFFFFFFFFF01 +:101F1000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1 +:101F2000FFFFFFFFFF010000FFFFFFFFFFFFFFFFBD +:101F3000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB1 +:101F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1 +:101F5000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF91 +:101F6000FFFFFFFFFFFFFFFFFF0100000000000079 +:101F70000100030000000000800E000000020000CD +:101F80000002000001000000FF0000000800000047 +:101F90000102010129C8011041C8011045C8011002 +:101FA00049C801104DC8011009CA011021C901100A +:101FB000E1C8011075C801105DC8011069C80110A1 +:101FC00074666D2F6174746573746174696F6E5F8C +:101FD000646174612F6174746573746174696F6E88 +:101FE0005F70726F66696C655F646566696E69745F +:101FF000696F6E0074666D2F6174746573746174BB +:10200000696F6E5F646174612F766572696669637A +:102010006174696F6E5F736572766963655F75720F +:102020006C00000074666D2F617474657374617464 +:10203000696F6E5F646174612F68775F7665727334 +:10204000696F6E0074666D2F61747465737461746A +:10205000696F6E5F646174612F696D706C656D6529 +:102060006E746174696F6E5F6964000044E5F1C36A +:10207000790C5FB6721F77202C26597208FA3660E9 +:10208000C01A2FB88216B87A8CD165700000C002D1 +:102090000000C00300008002000080030000021066 +:1020A00000020006000003100003000600000610F6 +:1020B00000060006000007100007000600000312DB +:1020C00000030007000100200001000800020020BA +:1020D0000002000800030020000300080000204068 +:1020E00000002440000000400000000000002340E9 +:1020F000000030400000314000009F4000002240BE +:102100000000104000009D402020202020101010D2 +:10211000101D1D8017007500FF030602060036041F +:10212000102000007FC0000000040000000000003C +:102130000019324B647D0000000000804000080B55 +:10214000100000000000FF012002001F00800004BA +:10215000FF081018001000140018001C4044484CE0 +:1021600050000000081000000800000004000000FB +:1021700004100000001200000421000000210000F3 +:102180000016000040114002C41300138013A01376 +:1021900040138813A81320001C0000000400000056 +:1021A00040000000440000004800000080000000E3 +:1021B000000100001002000088020000000400007E +:1021C0001004000020040000400400004804000047 +:1021D000800400008404000090040000C007000098 +:1021E000C4070000C8070000CC0700000040000042 +:1021F00004100000401000004410000048100000CF +:10220000C014000000110000180200009802000035 +:1022100000140000101400002014000040140000FE +:102220004814000080140000841400009014000082 +:102230000001000004010000080100000C01000082 +:1022400000800000C4EE0110E2ED01104EEE01101E +:102250001AEE01107EEE0110FEED0110B2EE01103B +:1022600084EE0110A2EE011074ED0110E8F80110E7 +:1022700048F40110FAF30110D8F301107EF60110B2 +:1022800052F601102AF6011002F60110C4EE0110F8 +:1022900038F9011010F90110C4F50110AEF5011064 +:1022A000EAF70110D0F70110B6F7011080F701101E +:1022B0004AF7011014F70110DCF60110A4F6011022 +:1022C00088F9011060F9011060F8011002F801109E +:1022D000C0F8011098F801107EF501106CF501109E +:1022E00002F50110EAF40110A6F4011094F40110B3 +:1022F00024F50110AAF301107AF30110C4EE0110C5 +:10230000C4EE01106AF30110C4EE0110C4EE011016 +:10231000C4EE0110C4EE0110C4EE0110C4EE0110B1 +:10232000C4EE0110C4EE0110C4EE0110C4EE0110A1 +:10233000C4EE0110C4EE0110C4EE0110C4EE011091 +:10234000C4EE0110C4EE0110C4EE0110C4EE011081 +:10235000C4EE0110C4EE0110C4EE0110C4EE011071 +:10236000C4EE0110C4EE0110C4EE0110C4EE011061 +:10237000C4EE0110C4EE0110C4EE0110C4EE011051 +:10238000C4EE0110C4EE0110C4EE0110C4EE011041 +:10239000C4EE0110C4EE0110C4EE0110C4EE011031 +:1023A000C4EE0110C4EE0110C4EE0110C4EE011021 +:1023B000C4EE0110C4EE0110C4EE0110C4EE011011 +:1023C000C4EE0110C4EE0110C4EE0110C4EE011001 +:1023D000C4EE0110C4EE0110C4EE0110C4EE0110F1 +:1023E000C4EE0110C4EE0110C4EE01102EF3011072 +:1023F000EEF20110C0F2011090F2011012F0011083 +:1024000080EF0110C4EE011076EF011056EF0110BD +:10241000C4EE011046EF0110C4EE0110C4EE01102D +:10242000C4EE0110C4EE0110C4EE0110C4EE0110A0 +:10243000C4EE0110C4EE0110C4EE0110C4EE011090 +:10244000C4EE0110C4EE0110C4EE0110C4EE011080 +:10245000C4EE0110C4EE0110C4EE0110C4EE011070 +:10246000C4EE0110C4EE0110C4EE0110C4EE011060 +:10247000C4EE0110C4EE0110C4EE0110C4EE011050 +:10248000C4EE0110C4EE0110C4EE0110C4EE011040 +:10249000C4EE0110C4EE0110C4EE0110C4EE011030 +:1024A000C4EE0110C4EE0110C4EE0110C4EE011020 +:1024B000C4EE0110C4EE0110C4EE0110C4EE011010 +:1024C000C4EE0110C4EE0110C4EE0110C4EE011000 +:1024D000C4EE0110C4EE0110C4EE0110C4EE0110F0 +:1024E000C4EE011020EF0110F6EE0110C4EE011051 +:1024F000C4EE0110C4EE0110C4EE01106CEF011027 +:1025000062EF0110E4EE0110D0EE011014F10110A1 +:102510005AF00110B6FC0110A6FC011096FC011047 +:1025200086FC01104CFC0110C6FC011024FC0110BB +:102530001CFC011014FC01100CFC0110DAFB011052 +:1025400044FC0110AAFB011092FB01107AFB011060 +:1025500078FA01100AFA0110C2FB011046FB0110C3 +:102560002CFB011012FB0110F8FA011090FA011077 +:1025700060FB0110FAF90110F2F90110EAF90110FB +:10258000E2F90110B0F9011002FA0110DE020210A6 +:10259000D8020210D20202103803021032030210D5 +:1025A000E4020210BA020210AE020210A2020210ED +:1025B000260302101A030210C602021002030210C0 +:1025C000F6020210EA020210960202108A020210BB +:1025D0000E0302100601021000010210FA000210A0 +:1025E000F4000210EE0002100C0102106C02021046 +:1025F00062020210800202107602021044020210EF +:1026000058020210960102105C0102102201021011 +:102610001C020210F4010210CC0102103605021057 +:1026200086040210A2040210F20402108A030210AF +:10263000BE030210CC030210E003021002040210D9 +:10264000100402109A06021006060210E609021093 +:10265000EE050210D4050210E6090210B8050210BA +:10266000E6090210E6090210E6090210E609021066 +:10267000E6090210E6090210E6090210E609021056 +:10268000E6090210E6090210E6090210E609021046 +:10269000E6090210E6090210E6090210E609021036 +:1026A000E6090210E6090210E6090210E609021026 +:1026B000E6090210E6090210E6090210E609021016 +:1026C000E6090210E6090210E6090210E609021006 +:1026D000E6090210E6090210E6090210E6090210F6 +:1026E000E6090210E6090210E6090210E6090210E6 +:1026F000E6090210E6090210E6090210E6090210D6 +:10270000E6090210E6090210E6090210E6090210C5 +:10271000E6090210E6090210E6090210E6090210B5 +:10272000E6090210E6090210E609021090050210FF +:102730006C050210E6090210E6090210E609021013 +:10274000E6090210540502109409021074090210DF +:1027500064090210B207021036070210EC090210D9 +:10276000740F0210BE0C0210EC0E0210200B0210AF +:10277000500E0210C80B0210160C0210B2140210F8 +:102780007E0A0210FC11021090110210E8110210D2 +:10279000C00F021024110210121102103611021083 +:1027A000620C0210D2120210841202102C130210BA +:1027B000A80E02108C1002103E100210D41302104A +:1027C000E00A0210701402107A1302103A14021078 +:1027D000300F02105E140210CE10021022140210EC +:1027E000600B02103E120210D40F0210B21402103D +:1027F000B21402102E100210B2140210B214021001 +:10280000B2140210B2140210B2140210B214021068 +:10281000B2140210B2140210B2140210B214021058 +:10282000B2140210B2140210B2140210B214021048 +:10283000B2140210B2140210B2140210B214021038 +:10284000B2140210B2140210B2140210B214021028 +:10285000B2140210B2140210B2140210B214021018 +:10286000B2140210B2140210B2140210B214021008 +:10287000B2140210B2140210B2140210B2140210F8 +:10288000B2140210B2140210B2140210B2140210E8 +:10289000B2140210B2140210B2140210B2140210D8 +:1028A000B2140210B2140210B2140210B2140210C8 +:1028B000B2140210B2140210B2140210B2140210B8 +:1028C000B2140210B2140210B2140210B2140210A8 +:1028D000B2140210B2140210B2140210280D021029 +:1028E000E60D02108E0D02102A0A02107C1702104B +:1028F0003A170210AC1702109C170210BC170210F6 +:102900008C1702103E18021018180210F21702104D +:10291000CC1702103C150210BA140210F216021065 +:10292000CE160210AA1602108616021010160210F9 +:1029300016170210D4150210C4150210B415021097 +:10294000A415021062150210E4150210E01802101E +:10295000C418021018190210A818021064180210E6 +:10296000FC180210DA260210C8260210B626021041 +:10297000A42602103A250210D2220210E4220210EC +:102980001E260210142602100A260210002602102B +:10299000EE2202102227021010270210FE2602103B +:1029A000EC2602101C2302107E260210F8220210D0 +:1029B000462602103C26021032260210282602105B +:1029C00002230210E2250210C4250210A6250210DF +:1029D000882502106026021054250210542402108B +:1029E00022240210662302104A2302102E23021012 +:1029F000DE240210A62A0210F82A0210C22A0210AF +:102A0000E82A0210602A0210942A0210FC2B0210FD +:102A10002C2C02100C2C02101C2C0210B42B0210B7 +:102A2000DE2B021004320210123202102E3202107B +:102A30003C3202105C2F0210203202109C32021035 +:102A4000B8320210AA320210C63202104A32021004 +:102A5000D43202100000000000000000000000005E +:102A60000000000000000000000000000000000066 +:102A70000000000000000000000000000100000055 +:102A8000C00000001430031000000000C42B03102D +:102A9000A82B0310742B03108C2B0310442B031052 +:102AA0005C2B031002000000E00000002030031047 +:102AB00000000000702C0310502C0310142C031085 +:102AC000302C0310DC2B0310F82B03100300000044 +:102AD000000100002C30031002000000342D031010 +:102AE000102D0310CC2C0310EC2C03108C2C031095 +:102AF000AC2C0310040000008001000038300310EB +:102B0000020000004C2E0310182E0310B42D0310E9 +:102B1000E42D0310542D0310842D03100500000034 +:102B2000090200004430031000000000D02F031001 +:102B30008C2F0310042F0310482F03107C2E03103A +:102B4000C02E03101210FF82FD0AFFF40088A1437B +:102B5000EB20BF7CF69030B00EA88D181148791E7E +:102B6000A177F973D5CD246BED11106378DAC8FF26 +:102B7000952B19073128D2B4B1C96B1436F8DE99F8 +:102B8000FFFFFFFFFFFFFFFFFFFFFFFFCFD72D4B33 +:102B90004E3694EBC90721660000000000000000DB +:102BA0000000000001000000010000000000000023 +:102BB0000100000000000000000000000000000014 +:102BC00001000000FFFFFFFFFFFFFFFFFEFFFFFF11 +:102BD000FFFFFFFFFFFFFFFFFFFFFFFF211D5C1156 +:102BE000D68032342211C256D3C1034AB99013326F +:102BF0007FBFB46BBD0C0EB7347E00859981D54480 +:102C00006447075AA07543CDE6DF224CFB23F7B596 +:102C1000886337BD3D2A5C5C4529DD133EF0B8E092 +:102C2000A216FFFFFFFFFFFFFFFFFFFFFFFFFFFFFA +:102C3000C3D5A3A3BAD622ECC10F471F5DE900009C +:102C40000000000000000000000000000100000083 +:102C5000FFFFFFFFFFFFFFFFFFFFFFFF0000000080 +:102C60000000000000000000000000000100000063 +:102C7000010000000000000000000000FFFFFFFF57 +:102C8000FFFFFFFFFFFFFFFFFFFFFFFF96C298D888 +:102C90004539A1F4A033EB2D817D0377F240A46385 +:102CA000E5E6BCF847422CE1F2D1176BF551BF378E +:102CB0006840B6CBCE5E316B5733CE2B169E0F7C61 +:102CC0004AEBE78E9B7F1AFEE242E34F512563FCFD +:102CD000C2CAB9F3849E17A7ADFAE6BCFFFFFFFF97 +:102CE000FFFFFFFF00000000FFFFFFFFFE9BDFEE86 +:102CF00085FD2F01216C1ADF52051943FFFFFFFFED +:102D0000FEFFFFFFFFFFFFFF0000000001000000CB +:102D10000300000000000000FFFFFFFFFEFFFFFFB9 +:102D2000FEFFFFFFFEFFFFFFFFFFFFFF00000000B1 +:102D300001000000FFFFFFFFFFFFFFFFFFFFFFFF9E +:102D40000000000000000000000000000100000082 +:102D5000FFFFFFFFB70A7672385E543A6C2955BF01 +:102D60005DF20255382A5482E041F759989BA78BAF +:102D7000623B1D6E74AD20F31EC7B18E37058BBE4E +:102D800022CA87AA5F0EEA907C1D437A9D817E1D30 +:102D9000CEB1600AC0B8F0B51331DAE97C149A28D4 +:102DA000BD1DF4F829DC9292BF989E5D6F2C26968B +:102DB0004ADE17367329C5CC6A19ECEC7AA7B048FD +:102DC000B20D1A58DF2D37F4814D63C7FFFFFFFFA7 +:102DD000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03 +:102DE000FFFFFFFF8DD63A3395E6131385584FB793 +:102DF0004DF2E5A720D2C80B7EB29C38000000003F +:102E000000000000000000000000000000000000C2 +:102E1000000000000100000001000000FFFFFFFFB4 +:102E2000FFFFFFFF000000000100000000000000A5 +:102E30000000000000000000000000000000000092 +:102E4000000000000000000001000000FFFFFFFF85 +:102E50000000000000000000FFFFFFFFFEFFFFFF7B +:102E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF72 +:102E7000FFFFFFFFFFFFFFFFFFFFFFFF66BDE5C294 +:102E8000317E7EF99B426A85C1B34833DEA8FFA23A +:102E900027C11DFE2859E7EF775E4BA1BA3D4D6B68 +:102EA00060AF28F821B53F053981649C42B4952371 +:102EB00066CB3E9ECDE90404B7068E85C6000000B1 +:102EC0005066D19F7694BE8840C272A286703C350F +:102ED0006107AD3F01B950C54026F45E9972EE9787 +:102EE0002C663E2717BDAF1768449B574944F59899 +:102EF000D91B7D2CB45F8A5C04C03B9A786A29395F +:102F000018010000096438911EB76FBBAE479C8959 +:102F1000B8C9B53BD0A509F74801CC7F6B962FBF48 +:102F200083878651FAFFFFFFFFFFFFFFFFFFFFFFD1 +:102F3000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1 +:102F4000FFFFFFFFFF010000F79BC76EE1489044C1 +:102F500051B8637647364AC42F5AF608B7FE338015 +:102F60009469D0407C7879AE050000000000000034 +:102F70000000000000000000000000000000000051 +:102F8000000000000000000000020000010000003E +:102F90000000000000000000000000000000000031 +:102FA0000000000000000000000000000000000021 +:102FB0000000000000000000000000000000000011 +:102FC00000000000000000000000000000020000FF +:102FD000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 +:102FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 +:102FF000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 +:10300000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 +:10301000FF0100004E49535420502D313932000039 +:103020004E49535420502D32323400004E495354EF +:1030300020502D32353600004E49535420502D3348 +:10304000383400004E49535420502D3532310000A1 +:10305000E0920210FC980210C0970210D494021063 +:103060000893021000930210E0920210CCA7021005 +:1030700098A50210109F0210389A021000930210B7 +:10308000010000000000000000000000FFFFFFFF43 +:10309000FFFFFFFFFFFFFFFFFEFFFFFF010000003C +:1030A000FFFFFFFFFFFFFFFF000000000100000027 +:1030B000DEBD021006BE02102EBE021056BE021069 +:1030C00078BE021090BD0210BCBD021001234567FE +:1030D00089ABCDEFFEDCBA9876543210F0E1D2C362 +:1030E000D89E05C107D57C3617DD703039590EF7EB +:1030F000310BC0FF11155868A78FF964A44FFABEB1 +:1031000067E6096A85AE67BB72F36E3C3AF54FA578 +:103110007F520E518C68059BABD9831F19CDE05BA4 +:103120005D9DBBCBD89E05C12A299A6207D57C3606 +:103130005A01599117DD7030D8EC2F1539590EF717 +:1031400067263367310BC0FF874AB48E1115586864 +:103150000D2E0CDBA78FF9641D48B547A44FFABEAE +:1031600067E6096A08C9BCF385AE67BB3BA7CA849A +:1031700072F36E3C2BF894FE3AF54FA5F1361D5FC5 +:103180007F520E51D182E6AD8C68059B1F6C3E2BA1 +:10319000ABD9831F6BBD41FB19CDE05B79217E1359 +:1031A000C8373D8CA24D54196699E173D6D4DC8999 +:1031B000AEB7FA1D829CFF3214D59D67CF9F2F5862 +:1031C000692B6D0FA84DD47B736FE3774289C404DC +:1031D000A8859D3FC8361D6AADE61211A192D69111 +:1031E000942131222CF72BFCA35F559FC2644CC85D +:1031F0006BB8932351B1536F19773896BDEA405994 +:10320000E23E2896E3FF8EA8251E5EBE92398653C5 +:10321000FC99012BAAB8852CDC2DB70EA22CC581F8 +:1032200074C1021092C10210B2C10210D0C10210CA +:10323000F0C1021034C1021054C1021067452301CD +:10324000EFCDAB8998BADCFE10325476C3D2E1F0F0 +:10325000C1059ED8367CD5073070DD17F70E593979 +:10326000FFC00B316858151164F98FA7BEFA4FA43F +:103270006A09E667BB67AE853C6EF372A54FF53A07 +:10328000510E527F9B05688C1F83D9AB5BE0CD1933 +:10329000CBBB9D5DC1059ED8629A292A367CD50795 +:1032A0009159015A3070DD17152FECD8F70E5939A6 +:1032B00067332667FFC00B318EB44A8768581511F3 +:1032C000DB0C2E0D64F98FA747B5481DBEFA4FA43D +:1032D0006A09E667F3BCC908BB67AE8584CAA73B29 +:1032E0003C6EF372FE94F82BA54FF53A5F1D36F154 +:1032F000510E527FADE682D19B05688C2B3E6C1F30 +:103300001F83D9ABFB41BD6B5BE0CD19137E2179E7 +:103310008C3D37C819544DA273E1996689DCD4D627 +:103320001DFAB7AE32FF9C82679DD514582F9FCFF0 +:103330000F6D2B697BD44DA877E36F7304C489426A +:103340003F9D85A86A1D36C81112E6AD91D692A19F +:1033500022312194FC2BF72C9F555FA3C84C64C2EB +:103360002393B86B6F53B151963877195940EABD22 +:1033700096283EE2A88EFFE3BE5E1E255386399254 +:103380002B0199FC2C85B8AA0EB72DDC81C52CA287 +:103390007479706500000000616464726573730085 +:1033A0007265736F75726365730000007764745F94 +:1033B000656E61626C6500007365745F696D675F5F +:1033C0006F6B00007764745F74696D656F7574006E +:1033D000626F6F745F757067726164652F66697282 +:1033E0006D77617265000000A10FB90BD107DC0594 +:1033F000E903EE02F5017701FB00BC007E005E00F0 +:103400003F002F002000180010000C0008000600EC +:103410000400030002000200010001004142434495 +:1034200045464748494A4B4C4D4E4F5051525354D4 +:1034300055565758595A6162636465666768696A88 +:103440006B6C6D6E6F707172737475767778797A54 +:103450003031323334353637383900008EDD0210E2 +:10346000C8DD0210C8DD0210C8DD0210C8DD021080 +:10347000C8DD0210C8DD0210C8DD0210C8DD021070 +:10348000C8DD0210C8DD0210C8DD0210C8DD021060 +:103490008EDD0210C8DD0210C8DD0210C8DD02108A +:1034A000C8DD0210C8DD0210C8DD0210C8DD021040 +:1034B000C8DD0210C8DD0210C8DD0210C8DD021030 +:1034C000C8DD0210C8DD0210C8DD0210C8DD021020 +:1034D000C8DD0210C8DD0210C8DD0210C8DD021010 +:1034E000C8DD0210C8DD0210C8DD0210C8DD021000 +:1034F000C8DD0210C8DD0210C8DD0210C8DD0210F0 +:10350000C8DD0210C8DD0210C8DD0210C8DD0210DF +:10351000C8DD0210C8DD0210C8DD0210C8DD0210CF +:10352000C8DD0210C8DD0210C8DD0210C8DD0210BF +:10353000C8DD0210C8DD0210C8DD0210C8DD0210AF +:10354000C8DD02108EDD0210C8DD0210C8DD0210D9 +:10355000C8DD0210C8DD0210C8DD021084DD0210D3 +:10356000C8DD0210C8DD0210C8DD02107ADD0210CD +:10357000C8DD0210C8DD0210C8DD0210C8DD02106F +:10358000C8DD0210C8DD0210C8DD021070DD0210B7 +:10359000C8DD0210C8DD0210C8DD021066DD0210B1 +:1035A000C8DD021048DD0210EEDC02106E756C6C96 +:1035B0000000000066616C73650000007472756540 +:1035C0000000000030000000256C750001010204BD +:1035D0005369676E61747572653100000000000008 +:1035E000941F031000000000000000000000010014 +:1035F0000000000000000000941F03100000000005 +:1036000000000000000001000000000000000000B9 +:1036100000000000000000000000000000000000AA +:1036200000093D0000127A0000093D000000D007AB +:10363000A00F000004000000000065400000000032 +:103640000000000000000000000000003CF3021039 +:1036500014F30210ECF2021084F30210A0F3021033 +:10366000BCF30210D8F30210F4F3021010F40210AD +:103670002CF4021048F402107000000071000000E9 +:103680007200000073000000800000008000000055 +:103690007000000071000000720000007300000064 +:1036A0004200000007000000F49F010821F1000023 +:1036B00000000000000000000000000022F10000F7 +:1036C0000000000020F100000000000000000000E9 +:1036D00000000000000000000000000000000000EA +:1036E00000000000000000000000000000000000DA +:1036F00000000000000000000000000000000000CA +:1037000000000000000000000000000000000000B9 +:1037100000000000000000000000000000000000A9 +:103720000000000000000000000000000000000099 +:103730000000000000000000000000000000000089 +:103740000000000000000000000000000000000079 +:103750000000000000000000000000000000000069 +:103760000000000000000000000000000000000059 +:103770000000000000000000000000000000000049 +:103780000000000000000000000000000000000039 +:103790000000000000000000000000000000000029 +:1037A00000000000000000000000000001B3001055 +:1037B00005B3001009B30010A10500101106001098 +:1037C000CD100010C911000001000000931A000084 +:1037D00001000000D1030000010000000100000012 +:1037E00000000010741F0310409101080200000047 +:1037F00014B30108004000000000000014B30108E9 +:10380000E1D3021019D302106C91010800000000EE +:1038100000000000000000000000000000000000A8 +:103820000000000000000000000000000000000098 +:103830000000000000000000000000000000000088 +:103840000000000000000000000000000000000078 +:103850000000000000000000000000000000000068 +:103860000000000000000000000000004300000015 +:103870000000000000000000000000000000000048 +:1038800000000000000000000000000043000000F5 +:103890000000000000000000000000000000000028 +:1038A00000000000000000000000000043000000D5 +:1038B0000000000000000000000000000000000008 +:1038C00000000000000000000000000043000000B5 +:1038D00000000000000000000000000000000000E8 +:1038E0000000000000000000000000004300000095 +:1038F00000000000000000000000000000000000C8 +:103900000000000000000000000000004300000074 +:1039100000000000000000000000000000000000A7 +:103920000000000000000000000000004300000054 +:103930000000000000000000000000000000000087 +:10394000000000000000000000000000450B001017 +:1039500025060010000000006E0B00106C0B00101C +:103960006D0B00106D0B00106D0B00106D0B001037 +:103970006D0B00106D0B00106D0B00106D0B001027 +:103980006D0B0010FFFFFFFFFFFFFFFFFFFFFFFFBB +:10399000FFFF0000010041534349490000000000BF +:1039A0000000000000000000000000000000000017 +:1039B000000000000000415343494900000000009E +:1039C00000000000000000000000000000000000F7 +:1039D0000000000000000000318500100985001083 +:1039E0004378FF2B00D07047084B1A68BA23D15A8E +:1039F000126A4B005B1801219B18DB685A68136838 +:103A00000B43136013681942FCD1ECE73CF3010847 +:103A1000000430B5400B1FD0104B1D68BA23EB5A81 +:103A2000DC00E41A2B6AE2181368002BFCDA3E2251 +:103A30000B4B06211A600B4B0B4A1A60A3230B4A4F +:103A4000DB00D1500A49505053582B6AE418002328 +:103A500063605358002BFCDA30BDC0463CF30108CC +:103A600004012640080126401E1F000000002640D9 +:103A70001C050000F8B557464E464546DE46E0B503 +:103A8000BC25A44F81463B688A465A591E6AB41821 +:103A900050229B5C002B45D000F0EAF983460328B6 +:103AA00000D081E03A68116A53598C46BA21515AC4 +:103AB00063444A00521852009B181B68002B00DA1E +:103AC000B5E0002000F0CCF9934B9846984200D125 +:103AD000ADE0924B00211A680120002300F0A8F904 +:103AE0000025002804D0A2E09D4200D19FE00135CE +:103AF000002000F0B5F98A4B4045F5D19D4200D138 +:103B000095E000F0C5F9874A874B0500D358002B94 +:103B100000DA9FE0854C0121002000F091F9002897 +:103B2000F9D10CE000F0B4F9814B05001A00012135 +:103B30003000984600F0A4F900280AD07B4C2800F9 +:103B400000F066F920003CBC90469946A246AB4680 +:103B5000F8BD4B46002B01D1764CF0E72368002BD3 +:103B6000FCDB3A68BC23116AD3588C4663441B685B +:103B7000002B00DA84E043466F491B688B4261D01A +:103B800057D96E498B4200D195E000D880E06C494E +:103B90008B4200D18DE06B498B4200D187E06A49AE +:103BA0008B4269D0694C4EE000F072F95D4A5E4B81 +:103BB0000500D358002BC1DA5D4B01211A003000FB +:103BC000984600F05DF90028B8D15046FFF720FF75 +:103BD0004B46002BC0D02368002BFCDB3A68BC238B +:103BE000116AD3588C4663441B68002B73DB434631 +:103BF00051491B688B426CD062D950498B4200D12D +:103C000085E06AD94E498B427DD04E498B427CD0AB +:103C10004D498B4232D04D4C0123526893609368DA +:103C2000002BFCD15B46032B00D174E787E73F4CA8 +:103C300088E7402B37D025D9802B36D0802149000A +:103C40008B42AFD13C4C0123526893609368002BA8 +:103C5000FCD174E7364B01211A003000984600F081 +:103C60000FF9002800D055E75046FFF7D1FE4B462C +:103C7000002BB0D12F4C4EE7354CE4E7344CCBE76A +:103C8000344C5CE7002B19D0102B8BD1294CDAE790 +:103C9000A02109068B4211D02F498B4200D081E729 +:103CA000A024E403CFE72B4CCDE7204CCBE72B4CF3 +:103CB000C9E72B4CC7E7A424E403C4E70024C2E708 +:103CC000402B1AD013D9802B1BD0802149008B4266 +:103CD000A1D1194CA0E71F4CA4E7A02109068B42F3 +:103CE0000DD01D498B4296D1A024E40394E7002B0C +:103CF00005D0102B8FD10F4C8EE7164C8CE700248B +:103D00008AE70A4C88E7164C86E7144C84E7A4241B +:103D1000E40381E73CF3010801018800A0B1010838 +:103D2000F0490200000026401C050000050052007A +:103D300090B101080100500006005200010000F09F +:103D4000040000F0050000F0030000F0FF00520046 +:103D50000100520002005000090000A003005200C0 +:103D6000020052000421F0B5C6461D4B1D4A1B68D7 +:103D700000B55C6813690B43136101282ED030BF76 +:103D8000B8235B00E358002B02D004BC9046F0BD82 +:103D900000F046F8A3211448144B154AC9000768DF +:103DA00090465E581568134A0260062042465850F5 +:103DB0003E211160442210495A505A58002AFCDA18 +:103DC000B82201215200A150074A1760A322D20055 +:103DD0009E50074B1D6000F03BF8D6E720BFCFE7B1 +:103DE0003CF3010800ED00E00801264000002640F9 +:103DF000040126401E1F00001C050000024A136833 +:103E0000002BFCDB7047C04600012640000000008C +:103E100001B40248844601BC604700BF6B850010B6 +:103E200001B40248844601BC604700BF214802102B +:103E300001B40248844601BC604700BFD5E90110C7 +:103E400001B40248844601BC604700BF61EB011029 +:103E500001B40248844601BC604700BF25480210F7 +:103E600001B40248844601BC604700BF09EC011060 +:103E700001B40248844601BC604700BF318800108D +:103E800001B40248844601BC604700BF65E80110E8 +:103E900001B40248844601BC604700BF638500103E +:040000051000048360 +:00000001FF diff --git a/EULA b/EULA new file mode 100644 index 0000000..6eef47d --- /dev/null +++ b/EULA @@ -0,0 +1,55 @@ +CYPRESS (AN INFINEON COMPANY) END USER LICENSE AGREEMENT + +PLEASE READ THIS END USER LICENSE AGREEMENT ("Agreement") CAREFULLY BEFORE DOWNLOADING, INSTALLING, COPYING, OR USING THIS SOFTWARE AND ACCOMPANYING DOCUMENTATION. BY DOWNLOADING, INSTALLING, COPYING OR USING THE SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, PROMPTLY RETURN AND DO NOT USE THE SOFTWARE. IF YOU HAVE PURCHASED THIS LICENSE TO THE SOFTWARE, YOUR RIGHT TO RETURN THE SOFTWARE EXPIRES 30 DAYS AFTER YOUR PURCHASE AND APPLIES ONLY TO THE ORIGINAL PURCHASER. + +1. Definitions. + + "Software" means this software and any accompanying documentation, including any upgrades, updates, bug fixes or modified versions provided to you by Cypress. + + "Source Code" means software in human-readable form. + + "Binary Code" means the software in binary code form such as object code or an executable. + + "Development Tools" means software that is intended to be installed on a personal computer and used to create programming code for Firmware, Drivers, or Host Applications. Examples of Development Tools are Cypress's PSoC Creator software, Cypress's WICED SDKs, and Cypress's ModusToolbox software. + + "Firmware" means software that executes on a Cypress hardware product. + + "Driver" means software that enables the use of a Cypress hardware product on a particular host operating system such as GNU/Linux, Windows, MacOS, Android, and iOS. + + "Host Application" means software that executes on a device other than a Cypress hardware product in order to program, control, or communicate with a Cypress hardware product. + + "inf File" means a hardware setup information file (.inf file) created by the Software to allow a Microsoft Windows operating system to install the driver for a Cypress hardware product. + +2. License. Subject to the terms and conditions of this Agreement, Cypress Semiconductor Corporation ("Cypress") and its suppliers grant to you a non-exclusive, non-transferable license under their copyright rights: + + a. to use the Development Tools in object code form solely for the purpose of creating Firmware, Drivers, Host Applications, and inf Files for Cypress hardware products; and + + b. (i) if provided in Source Code form, to copy, modify, and compile the Firmware Source Code to create Firmware for execution on a Cypress hardware product, and (ii) to distribute Firmware in binary code form only, only when installed onto a Cypress hardware product; and + + c. (i) if provided in Source Code form, to copy, modify, and compile the Driver Source Code to create one or more Drivers to enable the use of a Cypress hardware product on a particular host operating system, and (ii) to distribute the Driver, in binary code form only, only when installed on a device that includes the Cypress hardware product that the Driver is intended to enable; and + + d. (i) if provided in Source Code form, to copy, modify, and compile the Host Application Source Code to create one or more Host Applications to program, control, or communicate with a Cypress hardware product, and (ii) to distribute Host Applications, in binary code form only, only when installed on a device that includes a Cypress hardware product that the Host Application is intended to program, control, or communicate with; and + + e. to freely distribute any inf File. + +Any distribution of Software permitted under this Agreement must be made pursuant to your standard end user license agreement used for your proprietary (closed source) software products, such end user license agreement to include, at a minimum, provisions limiting your licensors' liability and prohibiting reverse engineering of the Software, consistent with such provisions in this Agreement. + +3. Free and Open Source Software. Portions of the Software may be licensed under free and/or open source licenses such as the GNU General Public License or other licenses from third parties ("Third Party Software"). Third Party Software is subject to the applicable license agreement and not this Agreement. If you are entitled to receive the source code from Cypress for any Third Party Software included with the Software, either the source code will be included with the Software or you may obtain the source code at no charge from . The applicable license terms will accompany each source code package. To review the license terms applicable to any Third Party Software for which Cypress is not required to provide you with source code, please see the Software's installation directory on your computer. + +4. Proprietary Rights; Ownership. The Software, including all intellectual property rights therein, is and will remain the sole and exclusive property of Cypress or its suppliers. Cypress retains ownership of the Source Code and any compiled version thereof. Subject to Cypress' ownership of the underlying Software (including Source Code), you retain ownership of any modifications you make to the Source Code. You agree not to remove any Cypress copyright or other notices from the Source Code and any modifications thereof. You agree to keep the Source Code confidential. Any reproduction, modification, translation, compilation, or representation of the Source Code except as permitted in Section 2 ("License") is prohibited without the express written permission of Cypress. Except as otherwise expressly provided in this Agreement, you may not: (i) modify, adapt, or create derivative works based upon the Software; (ii) copy the Software; (iii) except and only to the extent explicitly permitted by applicable law despite this limitation, decompile, translate, reverse engineer, disassemble or otherwise reduce the Software to human-readable form; or (iv) use the Software or any sample code other than for the Purpose. You hereby covenant that you will not assert any claim that the Software, or derivative works thereof created by or for Cypress, infringe any intellectual property right owned or controlled by you + +5. No Support. Cypress may, but is not required to, provide technical support for the Software. + +6. Term and Termination. This Agreement is effective until terminated, and either party may terminate this Agreement at any time with or without cause. This Agreement and your license rights under this Agreement will terminate immediately without notice from Cypress if you fail to comply with any provision of this Agreement. Upon termination, you must destroy all copies of Software in your possession or control. The following paragraphs shall survive any termination of this Agreement: "Free and Open Source Software," "Proprietary Rights; Ownership," "Compliance With Law," "Disclaimer," "Limitation of Liability," and "General." + +7. Compliance With Law. Each party agrees to comply with all applicable laws, rules and regulations in connection with its activities under this Agreement. Without limiting the foregoing, the Software may be subject to export control laws and regulations of the United States and other countries. You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain licenses to export, re-export, or import the Software. + +8. Disclaimer. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, CYPRESS MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THE SOFTWARE, INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Cypress reserves the right to make changes to the Software without notice. Cypress does not assume any liability arising out of the application or use of Software or any product or circuit described in the Software. It is the responsibility of the user of the Software to properly design, program, and test the functionality and safety of any application made of the Software and any resulting product. Cypress does not authorize its Software or products for use in any products where a malfunction or failure of the Software or Cypress product may reasonably be expected to result in significant property damage, injury or death ("High Risk Product"). If you include any Software or Cypress product in a High Risk Product, you assume all risk of such use and agree to indemnify Cypress and its suppliers against all liability. No computing device can be absolutely secure. Therefore, despite security measures implemented in Cypress hardware or software products, Cypress does not assume any liability arising out of any security breach, such as unauthorized access to or use of a Cypress product. + +9. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL CYPRESS OR ITS SUPPLIERS, RESELLERS, OR DISTRIBUTORS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF CYPRESS OR ITS SUPPLIERS, RESELLERS, OR DISTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT SHALL CYPRESS' OR ITS SUPPLIERS', RESELLERS', OR DISTRIBUTORS' TOTAL LIABILITY TO YOU, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, EXCEED THE GREATER OF US$500 OR THE PRICE PAID BY YOU FOR THE SOFTWARE. THE FOREGOING LIMITATIONS SHALL APPLY EVEN IF THE ABOVE-STATED WARRANTY FAILS OF ITS ESSENTIAL PURPOSE. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, ALL OR PORTIONS OF THE ABOVE LIMITATION MAY NOT APPLY TO YOU. + +10. Restricted Rights. The Software is commercial computer software as that term is described in 48 C.F.R. 252.227-7014(a)(1). If the 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 shall be only those set forth in this Agreement. + +11. Personal Information. You agree that information you provide through your registration on Cypress IoT Community Forum or other Cypress websites, including contact information or other personal information, may be collected and used by Cypress consistent with its Data Privacy Policy (www.cypress.com/privacy-policy), as updated or revised from time to time, and may be provided to its third party sales representatives, distributors and other entities conducting sales activities for Cypress for sales-related and other business purposes. + +12. General. This Agreement will bind and inure to the benefit of each party's successors and assigns, provided that you may not assign or transfer this Agreement, in whole or in part, without Cypress' written consent. This Agreement shall be governed by and construed in accordance with the laws of the State of California, United States of America, as if performed wholly within the state and without giving effect to the principles of conflict of law. The parties consent to personal and exclusive jurisdiction of and venue in, the state and federal courts within Santa Clara County, California; provided however, that nothing in this Agreement will limit Cypress' right to bring legal action in any venue in order to protect or enforce its intellectual property rights. No failure of either party to exercise or enforce any of its rights under this Agreement will act as a waiver of such rights. If any portion of this Agreement is found to be void or unenforceable, the remaining provisions of this Agreement shall remain in full force and effect. This Agreement is the complete and exclusive agreement between the parties with respect to the subject matter hereof, superseding and replacing any and all prior agreements, communications, and understandings (both written and oral) regarding such subject matter. Any notice to Cypress will be deemed effective when actually received and must be sent to Cypress Semiconductor Corporation, ATTN: Chief Legal Officer, 198 Champion Court, San Jose, CA 95134 USA. diff --git a/README.md b/README.md index d45bbb8..7685c32 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,63 @@ -# trusted-firmware-m -Trusted Firmware-M is free software that provides secure world software for Arm Cortex-M processors. It forms the foundations of the Secure Processing Environment (SPE) of microcontrollers. To work with Cypress devices, Cypress has modified TF-M to support PSoC 64 devices. +# Cypress Trusted Firmware-M (TF-M) for PSoC64 + +## Overview + +Trusted Firmware-M is free software that provides secure world software for Arm Cortex-M processors. It forms the foundations +of the Secure Processing Environment (SPE) of microcontrollers. To work with Cypress devices, Cypress has modified TF-M to support PSoC 64 devices. + +This software component is licensed under a mixture of the Apache License, version 2 and the 3-Clause BSD License. Please see the individual files to determine which license applies. Source files can be found in Trusted Firmware-M [GIT](https://git.trustedfirmware.org/trusted-firmware-m.git). Specifically, take note of the following modules. +* [t_cose](https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/lib/ext/t_cose/LICENSE) +* [qcbor](https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/lib/ext/qcbor/README.md) + + +## Requirements + +* [ModusToolbox® software](https://www.cypress.com/products/modustoolbox-software-environment) v2.3 +* Board Support Package (BSP) minimum required version: 3.0.0 +* PDL version: 2.3.0 +* Programming Language: C +* Associated Parts: See "Supported Kits" section below. + +## Supported Toolchains + +* GNU Arm® Embedded Compiler v9.3.1 +* Arm compiler v6.13 +* IAR C/C++ compiler v8.42.1 + +## Supported Kits + +* [PSoC® 64 Standard Secure - AWS Wi-Fi BT Pioneer Kit (CY8CKIT-064S0S2-4343W)](https://www.cypress.com/documentation/development-kitsboards/psoc-64-standard-secure-aws-wi-fi-bt-pioneer-kit-cy8ckit) + +## Features + +The current implementation supports the following services: +* PSA Crypto +* PSA Initial Attestation +* PSA Internal Trusted Storage +* PSA Protected Storage +These services are defined by the [PSA API](https://github.com/ARM-software/psa-arch-tests/tree/master/api-specs) + +## Quick Start + +### Provisioning the kit +Refer to the [Provisioning Guide](https://www.cypress.com/file/521106/download) + +### Adding the library + +You can add a dependency file (MTB format) under the deps folder or use the Library Manager to add it in your project. + +In the Makefile of the project, ensure RTOS_AWARE is an enabled component if RTOS is used. +* COMPONENTS=RTOS_AWARE + +### Using the library + +Include the relevant PSA API header file and refer to [PSA API](https://github.com/ARM-software/psa-arch-tests/tree/master/api-specs) + +## More information +The following resources contain more information: +* [Trusted Firmware-M RELEASE.md](./RELEASE.md) +* [PSA API](https://github.com/ARM-software/psa-arch-tests/tree/master/api-specs) +* [ModusToolbox Software Environment, Quick Start Guide, Documentation, and Videos](https://www.cypress.com/products/modustoolbox-software-environment) +* [Cypress Semiconductor](http://www.cypress.com) + +© Cypress Semiconductor Corporation, 2021. diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..7153571 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,69 @@ +# Cypress Customized Trusted Firmware-M Release Notes + +## What's Included? +1. TF-M implementation with support of the following services: + * Crypto + * Initial Attestation + * Internal Trusted Storage + * Platform + * Protected Storage +2. Support for dual core PSoC® 64 device and cy8ckit-064s0s2-4343w reference board +3. PSoC® 64 reference policies and sample image signing keys +4. Helper script to facilitate device re-provisioning +5. PSoC® 64 specific regression tests +6. Detailed PSoC® 64 specific documentation + +See the [README.md](./README.md) for an additional description of the TF-M software. + +## Changelog + +### v1.3.1 +* Update to PDL v2.3.0 + +### v1.3.0 +* Update to TFM v1.3.0 from trustedfirmware.org +* Update to PDL v2.2.0 +* Update to use p64_utils v1.0.0 + +### v1.2.0 +* Update to TFM v1.2.0 from trustedfirmware.org +* Update to PDL v1.6.1 + +### v1.0.0 +* Initial release for TF-M + +## Known Issues +n/a + +## Supported Platforms +This library and its features are supported on the following Cypress platforms: +* [PSoC® 64 Standard Secure - AWS Wi-Fi BT Pioneer Kit (CY8CKIT-064S0S2-4343W)](https://www.cypress.com/documentation/development-kitsboards/psoc-64-standard-secure-aws-wi-fi-bt-pioneer-kit-cy8ckit) + +## Supported Software and Tools + +This version of TF-M was validated for compatibility with the following Software and Tools: + +| Software and Tools | Version | +| :--- | :---- | +| ModusToolbox Software Environment | 2.3.0 | +| GCC Compiler | 9.3.1 | +| ARM Compiler 6 | 6.13 | +| CMake | 3.15 | +| CMSIS-Core(M) | 5.5.0 | +| MbedTLS | 2.25.0 | +| Board Support Package (BSP) | 2.3.0 | +| PSoC 6 Peripheral Driver Library (PDL) | 2.3.0 | +| RTOS Abstraction | 1.4.0 | + +Minimum required ModusToolbox Software Environment: v2.3.0 + +## More information +Use the following links for more information, as needed: +* [Cypress Semiconductor, an Infineon Technologies Company](http://www.cypress.com) +* [Cypress Semiconductor GitHub](https://github.com/cypresssemiconductorco) +* [PSoC® 64 Secure Microcontrollers](https://www.cypress.com/products/32-bit-arm-cortex-m4-cortex-m0-psoc-64-security-line) +* [Trusted Firmware website](https://www.trustedfirmware.org) +* [TF-M project](https://www.trustedfirmware.org/projects/tf-m) + +--- +© Cypress Semiconductor Corporation, 2021. diff --git a/security/keys/TFM_NS_KEY.json b/security/keys/TFM_NS_KEY.json new file mode 100644 index 0000000..4a8c4f4 --- /dev/null +++ b/security/keys/TFM_NS_KEY.json @@ -0,0 +1,11 @@ +{ + "custom_priv_key": { + "crv": "P-256", + "d": "uR_Jq6LjMgp8DVtE7pKguttNo6L239aEcijzGOr5C70", + "kty": "EC", + "use": "sig", + "x": "_za6DQEnUxqOm0vK9Pgvt9GHBtFi1XIVrPvfQ5zq90k", + "y": "mhqW_r-kI0hWvAW_cqQmyaxlRs02bF4w-v4iV8YY-DQ", + "kid": "8" + } +} \ No newline at end of file diff --git a/security/keys/TFM_NS_KEY_PRIV.pem b/security/keys/TFM_NS_KEY_PRIV.pem new file mode 100644 index 0000000..e1f8e15 --- /dev/null +++ b/security/keys/TFM_NS_KEY_PRIV.pem @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQguR/Jq6LjMgp8DVtE +7pKguttNo6L239aEcijzGOr5C72hRANCAAT/NroNASdTGo6bS8r0+C+30YcG0WLV +chWs+99DnOr3SZoalv6/pCNIVrwFv3KkJsmsZUbNNmxeMPr+IlfGGPg0 +-----END PRIVATE KEY----- diff --git a/security/keys/TFM_S_KEY.json b/security/keys/TFM_S_KEY.json new file mode 100644 index 0000000..44940c8 --- /dev/null +++ b/security/keys/TFM_S_KEY.json @@ -0,0 +1,11 @@ +{ + "custom_priv_key": { + "crv": "P-256", + "d": "2zqwPP8bQUIEngCuNdpBtmcM-YwNMXqPcDYft6YaSio", + "kty": "EC", + "use": "sig", + "x": "qRDosvLFLGzZO9qpzLoVXIqL9PNcHabuix7aMpmTnCY", + "y": "-Dv0N4xICZUnKRLNDrjVjC9xrVxH8-VVPAZpysm-_u8", + "kid": "6" + } +} \ No newline at end of file diff --git a/security/keys/TFM_S_KEY_PRIV.pem b/security/keys/TFM_S_KEY_PRIV.pem new file mode 100644 index 0000000..925b8ad --- /dev/null +++ b/security/keys/TFM_S_KEY_PRIV.pem @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg2zqwPP8bQUIEngCu +NdpBtmcM+YwNMXqPcDYft6YaSiqhRANCAASpEOiy8sUsbNk72qnMuhVciov081wd +pu6LHtoymZOcJvg79DeMSAmVJykSzQ641Ywvca1cR/PlVTwGacrJvv7v +-----END PRIVATE KEY----- diff --git a/security/keys/readme.rst b/security/keys/readme.rst new file mode 100644 index 0000000..6a54769 --- /dev/null +++ b/security/keys/readme.rst @@ -0,0 +1,31 @@ +################## +Image signing keys +################## + +- TFM_S_KEY.json - private OEM key for signing CM0P image +- TFM_S_KEY_PRIV.pem - private OEM key for signing CM0P image in PEM format +- TFM_NS_KEY.json - private OEM key for signing CM4 image +- TFM_NS_KEY_PRIV.pem - private OEM key for signing CM4 image in PEM format + +The keys included in the repository are for reference and development only. +DO NOT USE THESE KEYS IN ANY ACTUAL DEPLOYMENT! + +Use cysecuretools to generate new key pairs defined by the policy file, +for example: + +.. code-block:: bash + + cd platform/ext/target/cypress/psoc64/security + cysecuretools -t cy8ckit-064s0s2-4343w init + cysecuretools -t cy8ckit-064s0s2-4343w -p policy/policy_multi_CM0_CM4_tfm.json create-keys + + +Signing keys have to be provisioned to the board: + +.. code-block:: bash + + cysecuretools -t cy8ckit-064s0s2-4343w -p policy/policy_multi_CM0_CM4_tfm.json re-provision-device + + +Please refer to cysecuretools documentation and cypress_psoc64_spec.rst for +more details. diff --git a/security/policy/policy_multi_CM0_CM4_tfm.json b/security/policy/policy_multi_CM0_CM4_tfm.json new file mode 100755 index 0000000..956d0d6 --- /dev/null +++ b/security/policy/policy_multi_CM0_CM4_tfm.json @@ -0,0 +1,250 @@ +{ + "policy": { + "platform": "psoc64", + "version": 1.0 + }, + "debug" : + { + "m0p" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5 + }, + "m4" : { + "permission" : "allowed", + "control" : "firmware", + "key" : 5 + }, + "system" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5, + "flashw": true, + "flashr": true + }, + "rma" : { + "permission" : "allowed", + "destroy_fuses" : [ + { + "start" : 888, + "size" : 136 + }, + { + "start" : 648, + "size" : 104 + } + ], + "destroy_flash" : [ + { + "start" : 270254080, + "size" : 49152 + }, + { + "start" : 268763136, + "size" : 1163264 + } + ], + "key" : 5 + } + }, + "wounding" : + { + }, + "boot_upgrade" : + { + "title": "upgrade_policy", + "firmware": [ + { + "boot_auth": [ + 5 + ], + "bootloader_keys": [ + { "kid": 5, "key": "../keys/oem_state.json" } + ], + "id": 0, + "launch": 1, + "acq_win": 100, + "wdt_timeout": 4000, + "wdt_enable": true, + "monotonic": 0, + "smif_id": 0, + "clock_flags": 578, + "protect_flags": 1, + "upgrade": false, + "upgrade_mode": "swap", + "resources": [ + { + "type": "FLASH_PC1_SPM", + "address": 270336000, + "size": 65536 + }, + { + "type": "SRAM_SPM_PRIV", + "address": 135135232, + "size": 65536 + }, + { + "type": "SRAM_DAP", + "address": 135184384, + "size": 16384 + }, + { + "type": "STATUS_PARTITION", + "address": 270303232, + "size": 32768 + }, + { + "type": "SCRATCH", + "address": 405274624, + "size": 524288 + } + ] + }, + { + "boot_auth": [ + 6 + ], + "boot_keys": [ + { "kid": 6, "key": "../keys/TFM_S_KEY.json" } + ], + "id": 1, + "monotonic": 0, + "smif_id": 0, + "acq_win": 100, + "wdt_timeout": 5000, + "wdt_enable": true, + "set_img_ok": true, + "multi_image": 1, + "upgrade": true, + "version": "0.1", + "rollback_counter": 0, + "encrypt": false, + "encrypt_key": "../keys/image-aes-128.key", + "encrypt_key_id": 1, + "encrypt_peer": "../keys/dev_pub_key.pem", + "upgrade_auth": [ + 6 + ], + "upgrade_keys": [ + { "kid": 6, "key": "../keys/TFM_S_KEY.json" } + ], + "resources": [ + { + "type": "BOOT", + "address": 268435456, + "size": 327680 + }, + { + "type": "UPGRADE", + "address": 269926400, + "size": 327680 + } + ] + }, + { + "boot_auth": [ + 8 + ], + "boot_keys": [ + { "kid": 8, "key": "../keys/TFM_NS_KEY.json" } + ], + "id": 16, + "monotonic": 8, + "smif_id": 1, + "smif_sector_size": 262144, + "multi_image": 2, + "upgrade": true, + "version": "0.1", + "rollback_counter": 0, + "encrypt": false, + "encrypt_key": "../keys/image-aes-128.key", + "encrypt_key_id": 1, + "encrypt_peer": "../keys/dev_pub_key.pem", + "upgrade_auth": [ + 8 + ], + "upgrade_keys": [ + { "kid": 8, "key": "../keys/TFM_NS_KEY.json" } + ], + "resources": [ + { + "type": "BOOT", + "address": 268763136, + "size": 1163264 + }, + { + "type": "UPGRADE", + "address": 402801664, + "size": 1163264 + } + ] + } + ], + "reprogram": [ + { + "start": 270336000, + "size": 65536 + } + ], + "reprovision": { + "boot_loader": true, + "keys_and_policies": true + } + }, + "cy_bootloader": + { + "mode": "debug" + }, + "provisioning": + { + "packet_dir": "../packets", + "chain_of_trust": [] + }, + "pre_build": { + "oem_public_key": "../keys/oem_state.json", + "oem_private_key": "../keys/oem_state.json", + "hsm_public_key": "../keys/hsm_state.json", + "hsm_private_key": "../keys/hsm_state.json", + "provision_group_private_key": false, + "group_private_key": "../keys/grp_priv_key.json", + "provision_device_private_key": false, + "device_private_key": "../keys/dev_priv_key.json", + "cy_auth": "../packets/cy_auth_2m_s0_sample.jwt" + }, + "custom_data_sections": ["tfm"], + "tfm": + { + "attestation_data": + { + "verification_service_url": "www.trustedfirmware.org", + "attestation_profile_definition": "PSA_IOT_PROFILE_1", + "hw_version": "060456527282910010", + "implementation_id": [170, 170, 170, 170, 170, 170, 170, 170, 187, 187, 187, 187, 187, 187, 187, 187, + 204, 204, 204, 204, 204, 204, 204, 204, 221, 221, 221, 221, 221, 221, 221, 221] + }, + "its": + { + "offset": 1818624, + "size": 16384, + "num_assets": 8, + "max_asset_size": 2048 + }, + "ps": + { + "offset": 1835008, + "size": 24576, + "num_assets": 10, + "max_asset_size": 2008 + }, + "nv_counters": + { + "offset": 1866752, + "size": 1024 + }, + "debug_port": + { + "uart_base" : 1080360960, + "enabled" : true + } + } +} diff --git a/security/policy/policy_multi_CM0_CM4_tfm_dev_certs.json b/security/policy/policy_multi_CM0_CM4_tfm_dev_certs.json new file mode 100755 index 0000000..11ece5b --- /dev/null +++ b/security/policy/policy_multi_CM0_CM4_tfm_dev_certs.json @@ -0,0 +1,250 @@ +{ + "policy": { + "platform": "psoc64", + "version": 1.0 + }, + "debug" : + { + "m0p" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5 + }, + "m4" : { + "permission" : "allowed", + "control" : "firmware", + "key" : 5 + }, + "system" : { + "permission" : "enabled", + "control" : "firmware", + "key" : 5, + "flashw": true, + "flashr": true + }, + "rma" : { + "permission" : "allowed", + "destroy_fuses" : [ + { + "start" : 888, + "size" : 136 + }, + { + "start" : 648, + "size" : 104 + } + ], + "destroy_flash" : [ + { + "start" : 270254080, + "size" : 49152 + }, + { + "start" : 268763136, + "size" : 1163264 + } + ], + "key" : 5 + } + }, + "wounding" : + { + }, + "boot_upgrade" : + { + "title": "upgrade_policy", + "firmware": [ + { + "boot_auth": [ + 5 + ], + "bootloader_keys": [ + { "kid": 5, "key": "../keys/oem_state.json" } + ], + "id": 0, + "launch": 1, + "acq_win": 100, + "wdt_timeout": 4000, + "wdt_enable": true, + "monotonic": 0, + "smif_id": 0, + "clock_flags": 578, + "protect_flags": 1, + "upgrade": false, + "upgrade_mode": "swap", + "resources": [ + { + "type": "FLASH_PC1_SPM", + "address": 270336000, + "size": 65536 + }, + { + "type": "SRAM_SPM_PRIV", + "address": 135135232, + "size": 65536 + }, + { + "type": "SRAM_DAP", + "address": 135184384, + "size": 16384 + }, + { + "type": "STATUS_PARTITION", + "address": 270303232, + "size": 32768 + }, + { + "type": "SCRATCH", + "address": 405274624, + "size": 524288 + } + ] + }, + { + "boot_auth": [ + 6 + ], + "boot_keys": [ + { "kid": 6, "key": "../keys/TFM_S_KEY.json" } + ], + "id": 1, + "monotonic": 0, + "smif_id": 0, + "acq_win": 100, + "wdt_timeout": 5000, + "wdt_enable": true, + "set_img_ok": true, + "multi_image": 1, + "upgrade": true, + "version": "0.1", + "rollback_counter": 0, + "encrypt": false, + "encrypt_key": "../keys/image-aes-128.key", + "encrypt_key_id": 1, + "encrypt_peer": "../keys/dev_pub_key.pem", + "upgrade_auth": [ + 6 + ], + "upgrade_keys": [ + { "kid": 6, "key": "../keys/TFM_S_KEY.json" } + ], + "resources": [ + { + "type": "BOOT", + "address": 268435456, + "size": 327680 + }, + { + "type": "UPGRADE", + "address": 269926400, + "size": 327680 + } + ] + }, + { + "boot_auth": [ + 8 + ], + "boot_keys": [ + { "kid": 8, "key": "../keys/TFM_NS_KEY.json" } + ], + "id": 16, + "monotonic": 8, + "smif_id": 1, + "smif_sector_size": 262144, + "multi_image": 2, + "upgrade": true, + "version": "0.1", + "rollback_counter": 0, + "encrypt": false, + "encrypt_key": "../keys/image-aes-128.key", + "encrypt_key_id": 1, + "encrypt_peer": "../keys/dev_pub_key.pem", + "upgrade_auth": [ + 8 + ], + "upgrade_keys": [ + { "kid": 8, "key": "../keys/TFM_NS_KEY.json" } + ], + "resources": [ + { + "type": "BOOT", + "address": 268763136, + "size": 1163264 + }, + { + "type": "UPGRADE", + "address": 402801664, + "size": 1163264 + } + ] + } + ], + "reprogram": [ + { + "start": 270336000, + "size": 65536 + } + ], + "reprovision": { + "boot_loader": true, + "keys_and_policies": true + } + }, + "cy_bootloader": + { + "mode": "debug" + }, + "provisioning": + { + "packet_dir": "../packets", + "chain_of_trust": ["../certificates/device_cert.pem", "../certificates/rootCA.pem"] + }, + "pre_build": { + "oem_public_key": "../keys/oem_state.json", + "oem_private_key": "../keys/oem_state.json", + "hsm_public_key": "../keys/hsm_state.json", + "hsm_private_key": "../keys/hsm_state.json", + "provision_group_private_key": false, + "group_private_key": "../keys/grp_priv_key.json", + "provision_device_private_key": false, + "device_private_key": "../keys/dev_priv_key.json", + "cy_auth": "../packets/cy_auth_2m_s0_sample.jwt" + }, + "custom_data_sections": ["tfm"], + "tfm": + { + "attestation_data": + { + "verification_service_url": "www.trustedfirmware.org", + "attestation_profile_definition": "PSA_IOT_PROFILE_1", + "hw_version": "060456527282910010", + "implementation_id": [170, 170, 170, 170, 170, 170, 170, 170, 187, 187, 187, 187, 187, 187, 187, 187, + 204, 204, 204, 204, 204, 204, 204, 204, 221, 221, 221, 221, 221, 221, 221, 221] + }, + "its": + { + "offset": 1818624, + "size": 16384, + "num_assets": 8, + "max_asset_size": 2048 + }, + "ps": + { + "offset": 1835008, + "size": 24576, + "num_assets": 10, + "max_asset_size": 2008 + }, + "nv_counters": + { + "offset": 1866752, + "size": 1024 + }, + "debug_port": + { + "uart_base" : 1080360960, + "enabled" : true + } + } +} diff --git a/security/reprov_helper.py b/security/reprov_helper.py new file mode 100755 index 0000000..60168bb --- /dev/null +++ b/security/reprov_helper.py @@ -0,0 +1,305 @@ +#!/usr/bin/python3 + +""" +Copyright (c) 2020 Cypress Semiconductor Corporation + +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 platform +import sys, argparse +import subprocess +import json +from time import sleep + +from cysecuretools import CySecureTools +from cysecuretools.execute.provisioning_lib.cyprov_pem import PemKey +from OpenSSL import crypto, SSL +from cysecuretools.execute.programmer.programmer import ProgrammingTool +from cysecuretools.execute.programmer.base import AP +from cysecuretools.core.target_director import Target +from cysecuretools.execute.programmer.pyocd_wrapper import ResetType + +# Examples +# minimal parameters for default values: +# ./reprov_helper.py +# +# non-interactive: +# ./reprov_helper.py -d cy8ckit-064s0s2-4343w \ +# -p policy/policy_multi_CM0_CM4_tfm_dev_certs.json \ +# -[existing-keys|new-keys] -s -y + + +def myargs(argv): + parser = argparse.ArgumentParser(add_help=False) + parser.add_argument('-h', '--help', + dest='show_help', + action='help', + help='Print this help message and exit') + + parser.add_argument('-p', '--policy', + dest='policy_file', + action='store', + type=str, + help="Device policy file", + required=False) + + parser.add_argument('-d', '--device', + dest='device', + action='store', + type=str, + help="Device manufacturing part number", + required=False) + + parser.add_argument('-s', '--serial', + dest='serial_number', + action='store', + type=str, + help="Device unique serial number", + required=False) + + parser.add_argument('-new-keys', + dest='new_keys', + action='store_true', + help="Create a new set keys if defined", + required=False) + + parser.add_argument('-existing-keys', + dest='existing_keys', + action='store_true', + help="Force to use existing set keys if defined", + required=False) + + parser.add_argument('-y', + dest='force_reprov', + action='store_true', + help="Force reprovisioning", + required=False) + + options = parser.parse_args(argv) + return options + + +def create_app_keys(overwrite=None): + cytools.create_keys(overwrite) + + +def read_device_pub_key(): + # Read Device Key and save + print('Reading public key from device') + key=cytools.read_public_key(1, "jwk") + print("key: {}".format(key)) + if not key: + print('Error: Cannot read device public key.') + return 1 + + pub_key_json = 'keys/device_pub_key.json' + + with open(pub_key_json, 'w') as json_file: + json.dump(key, json_file) + + # Change from JWK to PEM + pub_key_pem = 'keys/device_pub_key.pem' + if os.path.exists(pub_key_json) and os.stat(pub_key_json).st_size > 0: + pem = PemKey(pub_key_json) + pem.save(pub_key_pem, private_key=False) + else: + print('Failed to read device public key') + return 1 + print('Device public key has been read successfully.') + return 0 + + +def generate_device_cert(dev_serial_num, + dev_pub_key_path="keys/device_pub_key.pem", + ca_priv_key_path="certificates/rootCA.key", + ca_cert_path="certificates/rootCA.pem"): + + if True: + # read device public key from previously read from the device + dev_pub_key = crypto.load_publickey(crypto.FILETYPE_PEM, + open(dev_pub_key_path, 'r').read()) + else: + # for development only, use public key from self generated private key + dev_priv_key = crypto.load_privatekey(crypto.FILETYPE_ASN1, + open("keys/device_priv_key.der", + 'rb').read()) + dev_pub_key = crypto.load_publickey(crypto.FILETYPE_PEM, + crypto.dump_publickey(crypto.FILETYPE_PEM, + dev_priv_key)) + ca_privatekey = crypto.load_privatekey(crypto.FILETYPE_PEM, + open(ca_priv_key_path, 'r').read()) + ca_cert = crypto.load_certificate(crypto.FILETYPE_PEM, + open(ca_cert_path, 'r').read()) + + # create cert signed by ca_cert + cert = crypto.X509() + cert.set_subject(ca_cert.get_subject()) + cert.get_subject().CN = cytools.target_name.upper() + '-' + str(dev_serial_num) + cert.set_serial_number(int(dev_serial_num)) + cert.gmtime_adj_notBefore(0) + cert.gmtime_adj_notAfter(10*365*24*60*60) + cert.set_issuer(ca_cert.get_subject()) + cert.set_pubkey(dev_pub_key) + cert.sign(ca_privatekey, 'sha256') + + open("certificates/device_cert.pem", "wb")\ + .write(crypto.dump_certificate(crypto.FILETYPE_PEM, cert)) + open("certificates/device_cert.der", "wb")\ + .write(crypto.dump_certificate(crypto.FILETYPE_ASN1, cert)) + print('Device certificate generated successfully.') + return 0 + + +def create_provisioning_packet(): + cytools.create_provisioning_packet() + + +def re_provision_device(device, policy): + cytools.re_provision_device() + + +def erase_flash(addr, size): + tool = ProgrammingTool.create(cytools.PROGRAMMING_TOOL) + tool.connect(target_name=cytools.target_name, ap='cm0') + tool.set_ap(AP.CM0) + print('Erasing address {hex(addr)}, size {hex(size)} ...') + tool.erase(addr, size) + print('Erasing complete\n') + tool.reset(ResetType.HW) + sleep(3) + tool.disconnect() + return 0 + + +def exec_shell_command(cmd): + if not isinstance(cmd, list) or not cmd: + raise Exception("Command must be in a non-empty list") + + output = [] + print("Executing command: {}".format(' '.join(cmd))) + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, + stderr=subprocess.STDOUT) + for line in iter(p.stdout.readline, b''): + output.append(line.decode('utf-8')) + print("{}".format(line.decode('utf-8')), end='') + p.stdout.close() + ret = p.wait() + print("Command completed (ret={})".format(ret)) + return ret, ''.join(output) + + +def main(argv): + + create_signing_keys = False + + options = myargs(argv) + print("options: {}\r\n".format(options)) + + if not options.policy_file: + options.policy_file = 'policy_multi_CM0_CM4_tfm_dev_certs.json' + options.policy_file = os.path.join('policy', + options.policy_file) + answer = \ + input('Policy file name was not provided, use default {}? (Y/n): ' + .format(options.policy_file)) + if answer == 'N' or answer == 'n': + print("Please specify policy as a parameter: `-p `") + exit(1) + if not os.path.isfile(options.policy_file): + print("Policy file {} doesn't exit.".format(options.policy_file)) + exit(1) + + if not options.device: + options.device = "cy8ckit-064s0s2-4343w" + answer = input("\r\nDevice is not provided, use default {}? (Y/n): " + .format(options.device)) + if answer == 'N' or answer == 'n': + print("Please specify device as a parameter: `-d '") + exit(1) + + # Create cysecuretools object + global cytools + cytools = CySecureTools(options.device, options.policy_file) + + if not options.serial_number: + dev_serial_num = \ + input("\r\nSelect unique device serial number for {} (digits only):\n" + .format(cytools.target_name.upper())) + if not dev_serial_num.isnumeric(): + print('Error: device serial number not number') + exit(1) + else: + dev_serial_num = options.serial_number + + # signing keys + if not options.new_keys and not options.existing_keys: + answer = \ + input('\r\nDo you want to create a new set of keys (y/N): ') + if answer == 'Y' or answer == 'y': + print('Will create new keys.') + create_signing_keys = True + else: + # TBD: check if the keys exist (open json, read keys) + print('Will use existing keys.') + else: + if options.new_keys: + create_signing_keys = True + else: + create_signing_keys = False + + print("\r\n") + print("##################################################################") + print("Current configuration:") + print("Policy file: {}".format(options.policy_file)) + print("Device: {}".format(options.device)) + print("Serial Number: {}".format(dev_serial_num)) + print("Create new signing keys: {}".format(create_signing_keys)) + print("##################################################################") + print("\r\n") + print("!!! Make sure the board is in the DAPLink mode (Mode LED blinks at 2Hz) !!!") + print("\r\n") + + if not options.force_reprov: + answer = input('Reprovision the device. Are you sure? (y/N): ') + if answer is not 'y' and answer is not 'Y': + print('Reprovision skipped.') + exit(1) + + if create_signing_keys == True: + print('Creating new signing keys.') + create_app_keys(overwrite=True) + + # invalidate SPE image in Flash so it won't run. + ret = erase_flash(0x10000000, 0x1000) + if ret != 0: + exit(1) + + ret = read_device_pub_key() + if ret != 0: + exit(1) + + ret = generate_device_cert(dev_serial_num) + if ret != 0: + exit(1) + + create_provisioning_packet() + + re_provision_device(options.device, options.policy_file) + + exit(0) + + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/version.xml b/version.xml new file mode 100644 index 0000000..112bf50 --- /dev/null +++ b/version.xml @@ -0,0 +1 @@ +1.3.1.1441