diff --git a/CMakeLists.txt b/CMakeLists.txt index 89b9454ff0..47da622914 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,8 +45,10 @@ if(NOT MSVC) endif() endif(NOT MSVC) +include(${PROJECT_SOURCE_DIR}/cmake/build_tools.cmake) if(UNIX AND (NOT APPLE) AND (NOT ANDROID) AND (NOT WITH_TIMVX)) - include(${PROJECT_SOURCE_DIR}/cmake/patchelf.cmake) + download_patchelf() + set(PATCHELF_EXE ${THIRD_PARTY_PATH}/patchelf/bin/patchelf) endif() @@ -423,9 +425,17 @@ if(ENABLE_ENCRYPTION) endif() if(ENABLE_PADDLE2ONNX) + set(BUILD_PADDLE2ONNX ON) add_definitions(-DENABLE_PADDLE2ONNX) - include(${PROJECT_SOURCE_DIR}/cmake/paddle2onnx.cmake) - list(APPEND DEPEND_LIBS external_paddle2onnx) + if(BUILD_PADDLE2ONNX) + download_protobuf() + include(${PROJECT_SOURCE_DIR}/cmake/build_paddle2onnx.cmake) + list(APPEND ALL_DEPLOY_SRCS ${PADDLE2ONNX_ALL_SRCS}) + list(APPEND DEPEND_LIBS p2o_paddle_proto onnx) + else() + include(${PROJECT_SOURCE_DIR}/cmake/paddle2onnx.cmake) + list(APPEND DEPEND_LIBS external_paddle2onnx) + endif() endif(ENABLE_PADDLE2ONNX) if(WITH_CAPI) diff --git a/FastDeploy.cmake.in b/FastDeploy.cmake.in index ff0d82e6c5..0e20fb68c8 100644 --- a/FastDeploy.cmake.in +++ b/FastDeploy.cmake.in @@ -30,6 +30,7 @@ set(ENABLE_OPENVINO_BACKEND @ENABLE_OPENVINO_BACKEND@) set(ENABLE_POROS_BACKEND @ENABLE_POROS_BACKEND@) set(ENABLE_TRT_BACKEND @ENABLE_TRT_BACKEND@) set(ENABLE_PADDLE2ONNX @ENABLE_PADDLE2ONNX@) +set(BUILD_PADDLE2ONNX @BUILD_PADDLE2ONNX@) set(ENABLE_VISION @ENABLE_VISION@) set(ENABLE_FLYCV @ENABLE_FLYCV@) @@ -346,8 +347,10 @@ if(ENABLE_PADDLE2ONNX) if(ANDROID) message(FATAL_ERROR "Not support fastdeploy-paddle2onnx APIs with Android now!") endif() - find_library(PADDLE2ONNX_LIB paddle2onnx ${CMAKE_CURRENT_LIST_DIR}/third_libs/install/paddle2onnx/lib NO_DEFAULT_PATH) - list(APPEND FASTDEPLOY_LIBS ${PADDLE2ONNX_LIB}) + if(NOT BUILD_PADDLE2ONNX) + find_library(PADDLE2ONNX_LIB paddle2onnx ${CMAKE_CURRENT_LIST_DIR}/third_libs/install/paddle2onnx/lib NO_DEFAULT_PATH) + list(APPEND FASTDEPLOY_LIBS ${PADDLE2ONNX_LIB}) + endif() endif() if(WITH_KUNLUNXIN) diff --git a/cmake/build_paddle2onnx.cmake b/cmake/build_paddle2onnx.cmake new file mode 100644 index 0000000000..c7cc152467 --- /dev/null +++ b/cmake/build_paddle2onnx.cmake @@ -0,0 +1,41 @@ +add_definitions(-DMAX_ONNX_OPSET_VERSION=16) +add_definitions(-DPADDLE2ONNX_LIB) + +# Third dependency: onnx +if(NOT TARGET onnx_proto) + if(NOT ONNX_NAMESPACE) + set(ONNX_NAMESPACE "paddle2onnx") + endif() + add_definitions("-DONNX_NAMESPACE=${ONNX_NAMESPACE}") + + set(MSVC_STATIC_CRT ON) + if(ONNX_CUSTOM_PROTOC_PATH) + if(WIN32) + if(MSVC_STATIC_CRT) + # MT + set(ONNX_USE_MSVC_STATIC_RUNTIME ON) + else() + # MD + set(ONNX_USE_MSVC_STATIC_RUNTIME OFF) + endif() + set(ONNX_CUSTOM_PROTOC_PATH "${ONNX_CUSTOM_PROTOC_PATH};$ENV{PATH}") + else() + set(ONNX_CUSTOM_PROTOC_PATH "${ONNX_CUSTOM_PROTOC_PATH}:$ENV{PATH}") + endif() + set(ENV{PATH} ${ONNX_CUSTOM_PROTOC_PATH}) + endif() + + set(CMAKE_POSITION_INDEPENDENT_CODE ON) + add_subdirectory(${PROJECT_SOURCE_DIR}/third_party/onnx) +endif() + +include_directories(${PROJECT_SOURCE_DIR}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}/third_party/onnx) + +include_directories(${PROJECT_SOURCE_DIR}/third_party/optimizer) +add_subdirectory(${PROJECT_SOURCE_DIR}/paddle2onnx/proto) + +file(GLOB_RECURSE PADDLE2ONNX_ALL_SRCS ${PROJECT_SOURCE_DIR}/paddle2onnx/*.cc ${PROJECT_SOURCE_DIR}/third_party/optimizer/onnxoptimizer/*.cc) +list(REMOVE_ITEM PADDLE2ONNX_ALL_SRCS ${PROJECT_SOURCE_DIR}/paddle2onnx/cpp2py_export.cc ${PROJECT_SOURCE_DIR}/third_party/optimizer/onnxoptimizer/cpp2py_export.cc) + diff --git a/cmake/build_tools.cmake b/cmake/build_tools.cmake new file mode 100644 index 0000000000..2a8613c973 --- /dev/null +++ b/cmake/build_tools.cmake @@ -0,0 +1,57 @@ +# Copyright (c) 2022 PaddlePaddle Authors. 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. + +function(download_patchelf) + if(UNIX AND (NOT APPLE) AND (NOT ANDROID)) + set(PATCHELF_EXE "patchelf") + if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "aarch64") + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/patchelf-0.15.0-aarch64.tar.gz) + download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/patchelf-0.15.0-aarch64.tar.gz ${THIRD_PARTY_PATH}/patchelf) + else() + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/patchelf-0.15.0-x86_64.tar.gz) + download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/patchelf-0.15.0-x86_64.tar.gz ${THIRD_PARTY_PATH}/patchelf) + endif() + endif() +endfunction() + +function(download_protobuf) + if(WIN32) + if(NOT CMAKE_CL_64) + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-win-x86-3.16.0.zip) + else() + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-win-x64-3.16.0.zip) + endif() + set(ORIGIN_ENV_PATH "$ENV{PATH}") + download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/protobuf-win-3.16.0.tgz ${THIRD_PARTY_PATH}/protobuf) + set(ENV{PATH} "${THIRD_PARTY_PATH}\\protobuf\\bin;${ORIGIN_ENV_PATH}") + elseif(APPLE) + if(CURRENT_OSX_ARCH MATCHES "arm64") + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-osx-arm64-3.16.0.tgz) + else() + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-osx-x86_64-3.16.0.tgz) + endif() + set(ORIGIN_ENV_PATH "$ENV{PATH}") + download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/protobuf-osx-3.16.0.tgz ${THIRD_PARTY_PATH}/protobuf) + set(ENV{PATH} "${THIRD_PARTY_PATH}/protobuf/bin/:${ORIGIN_ENV_PATH}") + else() + if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "aarch64") + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-linux-aarch64-3.16.0.tgz) + else() + set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/protobuf-linux-x64-3.16.0.tgz) + endif() + set(ORIGIN_ENV_PATH "$ENV{PATH}") + download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/protobuf-linux-3.16.0.tgz ${THIRD_PARTY_PATH}/protobuf) + set(ENV{PATH} "${THIRD_PARTY_PATH}/protobuf/bin/:${ORIGIN_ENV_PATH}") + endif() +endfunction() diff --git a/cmake/paddle_inference.cmake b/cmake/paddle_inference.cmake index fc9cbd8e12..5c125fcc53 100755 --- a/cmake/paddle_inference.cmake +++ b/cmake/paddle_inference.cmake @@ -134,6 +134,7 @@ else() endif(PADDLEINFERENCE_DIRECTORY) if(UNIX AND (NOT APPLE) AND (NOT ANDROID)) + message("?????????????? ${PATCHELF_EXE}") add_custom_target(patchelf_paddle_inference ALL COMMAND bash -c "PATCHELF_EXE=${PATCHELF_EXE} python ${PROJECT_SOURCE_DIR}/scripts/patch_paddle_inference.py ${PADDLEINFERENCE_INSTALL_DIR}/paddle/lib/libpaddle_inference.so" DEPENDS ${LIBRARY_NAME}) endif() diff --git a/cmake/patchelf.cmake b/cmake/patchelf.cmake deleted file mode 100644 index b4b35ba350..0000000000 --- a/cmake/patchelf.cmake +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright (c) 2022 PaddlePaddle Authors. 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. - -if(UNIX AND (NOT APPLE) AND (NOT ANDROID)) - set(PATCHELF_EXE "patchelf") - if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "aarch64") - set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/patchelf-0.15.0-aarch64.tar.gz) - download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/patchelf-0.15.0-aarch64.tar.gz ${THIRD_PARTY_PATH}/patchelf) - set(PATCHELF_EXE ${THIRD_PARTY_PATH}/patchelf/bin/patchelf) - else() - set(PATCHELF_URL https://bj.bcebos.com/fastdeploy/third_libs/patchelf-0.15.0-x86_64.tar.gz) - download_and_decompress(${PATCHELF_URL} ${CMAKE_CURRENT_BINARY_DIR}/patchelf-0.15.0-x86_64.tar.gz ${THIRD_PARTY_PATH}/patchelf) - set(PATCHELF_EXE ${THIRD_PARTY_PATH}/patchelf/bin/patchelf) - endif() -endif() diff --git a/examples/runtime/cpp/infer_paddle_paddle_inference.cc b/examples/runtime/cpp/infer_paddle_paddle_inference.cc index 454534f930..d271d7a6f9 100644 --- a/examples/runtime/cpp/infer_paddle_paddle_inference.cc +++ b/examples/runtime/cpp/infer_paddle_paddle_inference.cc @@ -27,7 +27,6 @@ int main(int argc, char* argv[]) { // https://baidu-paddle.github.io/fastdeploy-api/cpp/html/structfastdeploy_1_1RuntimeOption.html fd::RuntimeOption runtime_option; runtime_option.SetModelPath(model_file, params_file); - runtime_option.UsePaddleInferBackend(); runtime_option.UseCpu(); // If need to configure Paddle Inference backend for more option, we can configure runtime_option.paddle_infer_option diff --git a/paddle2onnx/CMakeLists.txt b/paddle2onnx/CMakeLists.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/paddle2onnx/__init__.py b/paddle2onnx/__init__.py new file mode 100755 index 0000000000..7d726e8b74 --- /dev/null +++ b/paddle2onnx/__init__.py @@ -0,0 +1,65 @@ +# Copyright (c) 2022 PaddlePaddle Authors. 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. + +from paddle2onnx.utils import logging +from . import command +from .convert import dygraph2onnx +from .convert import program2onnx +from .version import version +from .version import git_version + +__version__ = version +__commit_id__ = git_version + + +def run_convert(model, input_shape_dict=None, scope=None, opset_version=9): + logging.warning( + "[Deprecated] `paddle2onnx.run_convert` will be deprecated in the future version, the recommended usage is `paddle2onnx.export`" + ) + from paddle2onnx.legacy import run_convert + return run_convert(model, input_shape_dict, scope, opset_version) + + +def export(model_file, + params_file="", + save_file=None, + opset_version=11, + auto_upgrade_opset=True, + verbose=True, + enable_onnx_checker=True, + enable_experimental_op=True, + enable_optimize=True, + custom_op_info=None, + deploy_backend="onnxruntime", + calibration_file="", + external_file="", + export_fp16_model=False): + import paddle2onnx.paddle2onnx_cpp2py_export as c_p2o + deploy_backend = deploy_backend.lower() + if custom_op_info is None: + onnx_model_str = c_p2o.export( + model_file, params_file, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, {}, + deploy_backend, calibration_file, external_file, export_fp16_model) + else: + onnx_model_str = c_p2o.export( + model_file, params_file, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, + custom_op_info, deploy_backend, calibration_file, external_file, + export_fp16_model) + if save_file is not None: + with open(save_file, "wb") as f: + f.write(onnx_model_str) + else: + return onnx_model_str diff --git a/paddle2onnx/command.py b/paddle2onnx/command.py new file mode 100755 index 0000000000..f72b60ffc5 --- /dev/null +++ b/paddle2onnx/command.py @@ -0,0 +1,273 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import +from six import text_type as _text_type +import argparse +import ast +import sys +import os +from paddle2onnx.utils import logging + + +def str2list(v): + if len(v) == 0: + return None + v = v.replace(" ", "") + v = eval(v) + return v + + +def arg_parser(): + parser = argparse.ArgumentParser() + parser.add_argument( + "--model_dir", + "-m", + type=_text_type, + default=None, + help="PaddlePaddle model directory, if params stored in single file, you need define '--model_filename' and 'params_filename'." + ) + parser.add_argument( + "--model_filename", + "-mf", + type=_text_type, + default=None, + help="PaddlePaddle model's network file name, which under directory seted by --model_dir" + ) + parser.add_argument( + "--params_filename", + "-pf", + type=_text_type, + default=None, + help="PaddlePaddle model's param file name(param files combined in single file), which under directory seted by --model_dir." + ) + parser.add_argument( + "--save_file", + "-s", + type=_text_type, + default=None, + help="file path to save onnx model") + parser.add_argument( + "--opset_version", + "-ov", + type=int, + default=9, + help="set onnx opset version to export") + parser.add_argument( + "--input_shape_dict", + "-isd", + type=_text_type, + default="None", + help="define input shapes, e.g --input_shape_dict=\"{'image':[1, 3, 608, 608]}\" or" \ + "--input_shape_dict=\"{'image':[1, 3, 608, 608], 'im_shape': [1, 2], 'scale_factor': [1, 2]}\"") + parser.add_argument( + "--enable_dev_version", + type=ast.literal_eval, + default=True, + help="whether to use new version of Paddle2ONNX which is under developing, default True" + ) + parser.add_argument( + "--deploy_backend", + "-d", + type=_text_type, + default="onnxruntime", + choices=["onnxruntime", "tensorrt", "rknn", "others"], + help="Quantize model deploy backend, default onnxruntime.") + parser.add_argument( + "--save_calibration_file", + type=_text_type, + default="calibration.cache", + help="The calibration cache for TensorRT deploy, default calibration.cache." + ) + parser.add_argument( + "--enable_onnx_checker", + type=ast.literal_eval, + default=True, + help="whether check onnx model validity, default True") + parser.add_argument( + "--enable_paddle_fallback", + type=ast.literal_eval, + default=False, + help="whether use PaddleFallback for custom op, default is False") + parser.add_argument( + "--version", + "-v", + action="store_true", + default=False, + help="get version of paddle2onnx") + parser.add_argument( + "--output_names", + "-on", + type=str2list, + default=None, + help="define output names, e.g --output_names=\"[\"output1\"]\" or \ + --output_names=\"[\"output1\", \"output2\", \"output3\"]\" or \ + --output_names=\"{\"Paddleoutput\":\"Onnxoutput\"}\"") + parser.add_argument( + "--enable_auto_update_opset", + type=ast.literal_eval, + default=True, + help="whether enable auto_update_opset, default is True") + parser.add_argument( + "--external_filename", + type=_text_type, + default=None, + help="The filename of external_data when the model is bigger than 2G.") + parser.add_argument( + "--export_fp16_model", + type=ast.literal_eval, + default=False, + help="Whether export FP16 model for ORT-GPU, default False") + return parser + + +def c_paddle_to_onnx(model_file, + params_file="", + save_file=None, + opset_version=7, + auto_upgrade_opset=True, + verbose=True, + enable_onnx_checker=True, + enable_experimental_op=True, + enable_optimize=True, + deploy_backend="onnxruntime", + calibration_file="", + external_file="", + export_fp16_model=False): + import paddle2onnx.paddle2onnx_cpp2py_export as c_p2o + onnx_model_str = c_p2o.export( + model_file, params_file, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, {}, + deploy_backend, calibration_file, external_file, export_fp16_model) + if save_file is not None: + with open(save_file, "wb") as f: + f.write(onnx_model_str) + else: + return onnx_model_str + + +def program2onnx(model_dir, + save_file, + model_filename=None, + params_filename=None, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + input_shape_dict=None, + output_names=None, + auto_update_opset=True): + logging.warning( + "[Deprecated] `paddle2onnx.command.program2onnx` will be deprecated in the future version, the recommended usage is `paddle2onnx.export`" + ) + from paddle2onnx.legacy.command import program2onnx + return program2onnx(model_dir, save_file, model_filename, params_filename, + opset_version, enable_onnx_checker, + operator_export_type, input_shape_dict, output_names, + auto_update_opset) + + +def main(): + if len(sys.argv) < 2: + logging.info("Use \"paddle2onnx -h\" to print the help information") + logging.info( + "For more information, please follow our github repo below:") + logging.info("Github: https://github.com/PaddlePaddle/paddle2onnx.git") + return + + parser = arg_parser() + args = parser.parse_args() + + if args.version: + import paddle2onnx + logging.info("paddle2onnx-{} with python>=3.6, paddlepaddle>=2.0.0". + format(paddle2onnx.__version__)) + return + + assert args.model_dir is not None, "--model_dir should be defined while translating paddle model to onnx" + assert args.save_file is not None, "--save_file should be defined while translating paddle model to onnx" + + input_shape_dict = eval(args.input_shape_dict) + + operator_export_type = "ONNX" + if args.enable_paddle_fallback: + logging.warning( + "[Deprecated] The flag `--enable_paddle_fallback` will be deprecated, and only works while `--enable_dev_version False` now." + ) + operator_export_type = "PaddleFallback" + + if args.output_names is not None and args.enable_dev_version: + logging.warning( + "[Deprecated] The flag `--output_names` is deprecated, if you need to modify the output name, please refer to this tool https://github.com/jiangjiajun/PaddleUtils/tree/main/onnx " + ) + if not isinstance(args.output_names, (list, dict)): + raise TypeError( + "The output_names should be 'list' or 'dict', but received type is %s." + % type(args.output_names)) + + if input_shape_dict is not None and args.enable_dev_version: + logging.warning( + "[Deprecated] The flag `--input_shape_dict` is deprecated, if you need to modify the input shape of PaddlePaddle model, please refer to this tool https://github.com/jiangjiajun/PaddleUtils/tree/main/paddle " + ) + + if args.enable_dev_version: + model_file = os.path.join(args.model_dir, args.model_filename) + if args.params_filename is None: + params_file = "" + else: + params_file = os.path.join(args.model_dir, args.params_filename) + + if args.external_filename is None: + args.external_filename = "external_data" + + base_path = os.path.dirname(args.save_file) + if base_path and not os.path.exists(base_path): + os.mkdir(base_path) + external_file = os.path.join(base_path, args.external_filename) + + calibration_file = args.save_calibration_file + c_paddle_to_onnx( + model_file=model_file, + params_file=params_file, + save_file=args.save_file, + opset_version=args.opset_version, + auto_upgrade_opset=args.enable_auto_update_opset, + verbose=True, + enable_onnx_checker=args.enable_onnx_checker, + enable_experimental_op=True, + enable_optimize=True, + deploy_backend=args.deploy_backend, + calibration_file=calibration_file, + external_file=external_file, + export_fp16_model=args.export_fp16_model) + logging.info("===============Make PaddlePaddle Better!================") + logging.info("A little survey: https://iwenjuan.baidu.com/?code=r8hu2s") + return + + program2onnx( + args.model_dir, + args.save_file, + args.model_filename, + args.params_filename, + opset_version=args.opset_version, + enable_onnx_checker=args.enable_onnx_checker, + operator_export_type=operator_export_type, + input_shape_dict=input_shape_dict, + output_names=args.output_names, + auto_update_opset=args.enable_auto_update_opset) + logging.info("===============Make PaddlePaddle Better!================") + logging.info("A little survey: https://iwenjuan.baidu.com/?code=r8hu2s") + + +if __name__ == "__main__": + main() diff --git a/paddle2onnx/convert.py b/paddle2onnx/convert.py new file mode 100755 index 0000000000..50c8db2da3 --- /dev/null +++ b/paddle2onnx/convert.py @@ -0,0 +1,83 @@ +# Copyright (c) 2022 PaddlePaddle Authors. 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. + +from paddle2onnx.utils import logging + + +def export_onnx(paddle_graph, + save_file, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + verbose=False, + auto_update_opset=True, + output_names=None): + from paddle2onnx.legacy.convert import export_onnx + return export_onnx(paddle_graph, save_file, opset_version, opset_version, + enable_onnx_checker, operator_export_type, verbose, + auto_update_opset, output_names) + + +def dygraph2onnx(layer, save_file, input_spec=None, opset_version=9, **configs): + if "enable_dev_version" in configs and not configs["enable_dev_version"]: + from paddle2onnx.legacy.convert import dygraph2onnx + return dygraph2onnx(layer, save_file, input_spec, opset_version, + **configs) + + import os + import paddle2onnx + import paddle + dirname = os.path.split(save_file)[0] + paddle_model_dir = os.path.join(dirname, + "paddle_model_static_onnx_temp_dir") + model_file = os.path.join(paddle_model_dir, "model.pdmodel") + params_file = os.path.join(paddle_model_dir, "model.pdiparams") + + if os.path.exists(paddle_model_dir): + if os.path.isfile(paddle_model_dir): + logging.info("File {} exists, will remove it.".format( + paddle_model_dir)) + os.remove(paddle_model_dir) + if os.path.isfile(model_file): + os.remove(model_file) + if os.path.isfile(params_file): + os.remove(params_file) + paddle.jit.save(layer, os.path.join(paddle_model_dir, "model"), input_spec) + logging.info("Static PaddlePaddle model saved in {}.".format( + paddle_model_dir)) + if not os.path.isfile(params_file): + params_file = "" + + if save_file is None: + return paddle2onnx.export(model_file, params_file, save_file, + opset_version) + else: + paddle2onnx.export(model_file, params_file, save_file, opset_version) + logging.info("ONNX model saved in {}.".format(save_file)) + + +def program2onnx(program, + scope, + save_file, + feed_var_names=None, + target_vars=None, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + auto_update_opset=True, + **configs): + from paddle2onnx.legacy.convert import program2onnx + return program2onnx(program, scope, save_file, feed_var_names, target_vars, + opset_version, enable_onnx_checker, + operator_export_type, auto_update_opset, **configs) diff --git a/paddle2onnx/convert_to_fp16.py b/paddle2onnx/convert_to_fp16.py new file mode 100755 index 0000000000..b0321f5ae1 --- /dev/null +++ b/paddle2onnx/convert_to_fp16.py @@ -0,0 +1,38 @@ +# Copyright (c) 2022 PaddlePaddle Authors. 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. +from __future__ import absolute_import + +import argparse +import sys +from paddle2onnx.utils import logging + + +def parse_arguments(): + parser = argparse.ArgumentParser() + parser.add_argument( + '--input_model_path', + required=True, + help='The path of input onnx model file.') + parser.add_argument( + '--output_model_path', + required=True, + help='The file path to write optimized onnx model file.') + return parser.parse_args() + + +if __name__ == '__main__': + args = parse_arguments() + import paddle2onnx.paddle2onnx_cpp2py_export as c_p2o + c_p2o.convert_to_fp16(args.input_model_path, args.output_model_path) + logging.info("FP16 model saved in {}.".format(args.output_model_path)) diff --git a/paddle2onnx/converter.cc b/paddle2onnx/converter.cc new file mode 100644 index 0000000000..53e5d4817e --- /dev/null +++ b/paddle2onnx/converter.cc @@ -0,0 +1,287 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/converter.h" + +#include +#include +#include +#include + +#include "paddle2onnx/mapper/exporter.h" +#include "paddle2onnx/optimizer/convert_fp32_to_fp16.h" + +namespace paddle2onnx { + +PADDLE2ONNX_DECL bool IsExportable(const char* model, const char* params, + int32_t opset_version, + bool auto_upgrade_opset, bool verbose, + bool enable_onnx_checker, + bool enable_experimental_op, + bool enable_optimize, CustomOp* ops, + int op_count, const char* deploy_backend) { + auto parser = PaddleParser(); + if (!parser.Init(model, params)) { + return false; + } + paddle2onnx::ModelExporter me; + std::set unsupported_ops; + if (!me.CheckIfOpSupported(parser, &unsupported_ops, + enable_experimental_op)) { + return false; + } + + // Add custom operator information + if (ops != nullptr && op_count > 0) { + for (int i = 0; i < op_count; ++i) { + std::string op_name(ops[i].op_name, strlen(ops[i].op_name)); + std::string export_op_name(ops[i].export_op_name, + strlen(ops[i].export_op_name)); + if (export_op_name == "paddle2onnx_null") { + export_op_name = op_name; + } + me.custom_ops[op_name] = export_op_name; + } + } + + if (me.GetMinOpset(parser, false) < 0) { + return false; + } + std::string calibration_str; + std::string onnx_model = + me.Run(parser, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, + deploy_backend, &calibration_str); + if (onnx_model.empty()) { + P2OLogger(verbose) << "The exported ONNX model is invalid!" << std::endl; + return false; + } + if (parser.is_quantized_model && "tensorrt" == std::string(deploy_backend) && + calibration_str.empty()) { + P2OLogger(verbose) << "Can not generate calibration cache for TensorRT " + "deploy backend when export quantize model." + << std::endl; + return false; + } + return true; +} + +PADDLE2ONNX_DECL bool IsExportable(const void* model_buffer, int model_size, + const void* params_buffer, int params_size, + int32_t opset_version, + bool auto_upgrade_opset, bool verbose, + bool enable_onnx_checker, + bool enable_experimental_op, + bool enable_optimize, CustomOp* ops, + int op_count, const char* deploy_backend) { + auto parser = PaddleParser(); + if (!parser.Init(model_buffer, model_size, params_buffer, params_size)) { + return false; + } + paddle2onnx::ModelExporter me; + std::set unsupported_ops; + if (!me.CheckIfOpSupported(parser, &unsupported_ops, + enable_experimental_op)) { + return false; + } + + // Add custom operator information + if (ops != nullptr && op_count > 0) { + for (int i = 0; i < op_count; ++i) { + std::string op_name(ops[i].op_name, strlen(ops[i].op_name)); + std::string export_op_name(ops[i].export_op_name, + strlen(ops[i].export_op_name)); + if (export_op_name == "paddle2onnx_null") { + export_op_name = op_name; + } + me.custom_ops[op_name] = export_op_name; + } + } + + if (me.GetMinOpset(parser, false) < 0) { + return false; + } + std::string calibration_str; + std::string onnx_model = + me.Run(parser, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, + deploy_backend, &calibration_str); + if (onnx_model.empty()) { + P2OLogger(verbose) << "The exported ONNX model is invalid!" << std::endl; + return false; + } + if (parser.is_quantized_model && "tensorrt" == std::string(deploy_backend) && + calibration_str.empty()) { + P2OLogger(verbose) << "Can not generate calibration cache for TensorRT " + "deploy backend when export quantize model." + << std::endl; + return false; + } + return true; +} + +PADDLE2ONNX_DECL bool Export( + const char* model, const char* params, char** out, int* out_size, + int32_t opset_version, bool auto_upgrade_opset, bool verbose, + bool enable_onnx_checker, bool enable_experimental_op, bool enable_optimize, + CustomOp* ops, int op_count, const char* deploy_backend, + char** calibration_cache, int* calibration_size, const char* external_file, + bool* save_external, bool export_fp16_model) { + auto parser = PaddleParser(); + P2OLogger(verbose) << "Start to parsing Paddle model..." << std::endl; + if (!parser.Init(model, params)) { + P2OLogger(verbose) << "Paddle model parsing failed." << std::endl; + return false; + } + paddle2onnx::ModelExporter me; + + // Add custom operator information + if (ops != nullptr && op_count > 0) { + for (int i = 0; i < op_count; ++i) { + std::string op_name(ops[i].op_name, strlen(ops[i].op_name)); + std::string export_op_name(ops[i].export_op_name, + strlen(ops[i].export_op_name)); + if (export_op_name == "paddle2onnx_null") { + export_op_name = op_name; + } + me.custom_ops[op_name] = export_op_name; + } + } + + std::string calibration_str; + std::string result = me.Run( + parser, opset_version, auto_upgrade_opset, verbose, enable_onnx_checker, + enable_experimental_op, enable_optimize, deploy_backend, &calibration_str, + external_file, save_external, export_fp16_model); + if (result.empty()) { + P2OLogger(verbose) << "The exported ONNX model is invalid!" << std::endl; + return false; + } + if (parser.is_quantized_model && "tensorrt" == std::string(deploy_backend) && + calibration_str.empty()) { + P2OLogger(verbose) << "Can not generate calibration cache for TensorRT " + "deploy backend when export quantize model." + << std::endl; + return false; + } + *out_size = result.size(); + *out = new char[*out_size](); + memcpy(*out, result.data(), *out_size); + if (calibration_str.size()) { + *calibration_size = calibration_str.size(); + *calibration_cache = new char[*calibration_size](); + memcpy(*calibration_cache, calibration_str.data(), *calibration_size); + } + return true; +} + +PADDLE2ONNX_DECL bool Export( + const void* model_buffer, int64_t model_size, const void* params_buffer, + int64_t params_size, char** out, int* out_size, int32_t opset_version, + bool auto_upgrade_opset, bool verbose, bool enable_onnx_checker, + bool enable_experimental_op, bool enable_optimize, CustomOp* ops, + int op_count, const char* deploy_backend, char** calibration_cache, + int* calibration_size, const char* external_file, bool* save_external, + bool export_fp16_model) { + auto parser = PaddleParser(); + P2OLogger(verbose) << "Start to parsing Paddle model..." << std::endl; + if (!parser.Init(model_buffer, model_size, params_buffer, params_size)) { + P2OLogger(verbose) << "Paddle model parsing failed." << std::endl; + return false; + } + paddle2onnx::ModelExporter me; + + // Add custom operator information + if (ops != nullptr && op_count > 0) { + for (int i = 0; i < op_count; ++i) { + std::string op_name(ops[i].op_name, strlen(ops[i].op_name)); + std::string export_op_name(ops[i].export_op_name, + strlen(ops[i].export_op_name)); + if (export_op_name == "paddle2onnx_null") { + export_op_name = op_name; + } + me.custom_ops[op_name] = export_op_name; + } + } + std::string calibration_str; + std::string result = me.Run( + parser, opset_version, auto_upgrade_opset, verbose, enable_onnx_checker, + enable_experimental_op, enable_optimize, deploy_backend, &calibration_str, + external_file, save_external, export_fp16_model); + if (result.empty()) { + P2OLogger(verbose) << "The exported ONNX model is invalid!" << std::endl; + return false; + } + + if (parser.is_quantized_model && "tensorrt" == std::string(deploy_backend) && + calibration_str.empty()) { + P2OLogger(verbose) << "Can not generate calibration cache for TensorRT " + "deploy backend when export quantize model." + << std::endl; + return false; + } + *out_size = result.size(); + *out = new char[*out_size](); + memcpy(*out, result.data(), *out_size); + if (calibration_str.size()) { + *calibration_size = calibration_str.size(); + *calibration_cache = new char[*calibration_size](); + memcpy(*calibration_cache, calibration_str.data(), *calibration_size); + } + return true; +} + +PADDLE2ONNX_DECL bool ConvertFP32ToFP16(const char* onnx_model, int model_size, + char** out_model, int* out_model_size) { + std::string onnx_proto(onnx_model, onnx_model + model_size); + ONNX_NAMESPACE::ModelProto model; + model.ParseFromString(onnx_proto); + + P2OLogger(true) << "Convert FP32 ONNX model to FP16." << std::endl; + ConvertFp32ToFp16 convert; + convert.Convert(&model); + // save external data file for big model + std::string external_data_file; + if (model.ByteSizeLong() > INT_MAX) { + external_data_file = "external_data"; + } + paddle2onnx::ModelExporter me; + if (external_data_file.size()) { + me.SaveExternalData(model.mutable_graph(), external_data_file); + } + // check model + me.ONNXChecker(model, true); + + std::string result; + if (!model.SerializeToString(&result)) { + P2OLogger(true) + << "Error happenedd while optimizing the exported ONNX model." + << std::endl; + return false; + } + + *out_model_size = result.size(); + *out_model = new char[*out_model_size](); + memcpy(*out_model, result.data(), *out_model_size); + return true; +} + +ModelTensorInfo::~ModelTensorInfo() { + if (shape != nullptr) { + delete[] shape; + shape = nullptr; + rank = 0; + } +} +} // namespace paddle2onnx diff --git a/paddle2onnx/converter.h b/paddle2onnx/converter.h new file mode 100755 index 0000000000..0fbed1c986 --- /dev/null +++ b/paddle2onnx/converter.h @@ -0,0 +1,130 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include + +#if defined(_WIN32) +#ifdef PADDLE2ONNX_LIB +#define PADDLE2ONNX_DECL __declspec(dllexport) +#else +#define PADDLE2ONNX_DECL __declspec(dllimport) +#endif // PADDLE2ONNX_LIB +#else +#define PADDLE2ONNX_DECL __attribute__((visibility("default"))) +#endif // _WIN32 + +namespace paddle2onnx { + +struct PADDLE2ONNX_DECL CustomOp { + char op_name[100] = "null"; + // if export_op_name set as "paddle2onnx_null" + // it will automaticly change to `op_name` + char export_op_name[100] = "paddle2onnx_null"; +}; + +PADDLE2ONNX_DECL bool IsExportable( + const char* model, const char* params, int32_t opset_version = 11, + bool auto_upgrade_opset = true, bool verbose = false, + bool enable_onnx_checker = true, bool enable_experimental_op = false, + bool enable_optimize = true, CustomOp* ops = nullptr, int op_count = 0, + const char* deploy_backend = "onnxruntime"); + +PADDLE2ONNX_DECL bool IsExportable( + const void* model_buffer, int model_size, const void* params_buffer, + int params_size, int32_t opset_version = 11, bool auto_upgrade_opset = true, + bool verbose = false, bool enable_onnx_checker = true, + bool enable_experimental_op = false, bool enable_optimize = true, + CustomOp* ops = nullptr, int op_count = 0, + const char* deploy_backend = "onnxruntime"); + +PADDLE2ONNX_DECL bool Export( + const char* model, const char* params, char** out, int* out_size, + int32_t opset_version = 11, bool auto_upgrade_opset = true, + bool verbose = false, bool enable_onnx_checker = true, + bool enable_experimental_op = false, bool enable_optimize = true, + CustomOp* ops = nullptr, int op_count = 0, + const char* deploy_backend = "onnxruntime", + char** calibration_cache = nullptr, int* calibration_size = 0, + const char* external_file = "", bool* save_external = nullptr, + bool export_fp16_model = false); + +PADDLE2ONNX_DECL bool Export( + const void* model_buffer, int64_t model_size, const void* params_buffer, + int64_t params_size, char** out, int* out_size, int32_t opset_version = 11, + bool auto_upgrade_opset = true, bool verbose = false, + bool enable_onnx_checker = true, bool enable_experimental_op = false, + bool enable_optimize = true, CustomOp* ops = nullptr, int op_count = 0, + const char* deploy_backend = "onnxruntime", + char** calibration_cache = nullptr, int* calibration_size = 0, + const char* external_file = "", bool* save_external = nullptr, + bool export_fp16_model = false); + +// Following are inside usage, will remove it maybe +struct PADDLE2ONNX_DECL ModelTensorInfo { + char name[100] = ""; + int64_t* shape = nullptr; + int32_t rank = 0; + // 0: float32 + // 1: double + // 2: uint8 + // 3: int8 + // 4: int32 + // 5: int64 + // 6: float16 + int32_t dtype = 0; + ~ModelTensorInfo(); +}; + +struct PADDLE2ONNX_DECL NMSParameters { + int64_t background_label = -1; + int64_t keep_top_k = 300; + float nms_eta = 1.0; + float nms_threshold = 0.7; + float score_threshold = 0.01; + int64_t nms_top_k = 10000; + bool normalized = true; +}; + +struct PADDLE2ONNX_DECL OnnxReader { + OnnxReader(const char* model_buffer, int buffer_size); + // suppose the maximum number of inputs/outputs is 100 + // suppose the longest string of inputs/outputs is 200 + // suppose the biggest rank will be less than 10 + ModelTensorInfo inputs[100]; + ModelTensorInfo outputs[100]; + int num_inputs; + int num_outputs; +}; + +PADDLE2ONNX_DECL bool RemoveMultiClassNMS(const char* onnx_model, + int model_size, char** out_model, + int* out_model_size); + +PADDLE2ONNX_DECL bool ConvertFP32ToFP16(const char* onnx_model, int model_size, + char** out_model, int* out_model_size); + +struct PADDLE2ONNX_DECL PaddleReader { + PaddleReader(const char* model_buffer, int buffer_size); + // suppose the maximum number of inputs/outputs is 100 + // suppose the longest string of inputs/outputs is 200 + ModelTensorInfo inputs[100]; + ModelTensorInfo outputs[100]; + int num_inputs; + int num_outputs; + bool has_nms = false; + bool is_quantize_model = false; + NMSParameters nms_params; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/cpp2py_export.cc b/paddle2onnx/cpp2py_export.cc new file mode 100644 index 0000000000..0537d3c567 --- /dev/null +++ b/paddle2onnx/cpp2py_export.cc @@ -0,0 +1,128 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include +#include + +#include +#include + +#include "paddle2onnx/converter.h" +#include "paddle2onnx/mapper/exporter.h" +#include "paddle2onnx/optimizer/paddle2onnx_optimizer.h" + +namespace paddle2onnx { + +typedef std::map CustomOpInfo; +PYBIND11_MODULE(paddle2onnx_cpp2py_export, m) { + m.doc() = "Paddle2ONNX: export PaddlePaddle to ONNX"; + m.def("export", [](const std::string& model_filename, + const std::string& params_filename, int opset_version = 9, + bool auto_upgrade_opset = true, bool verbose = true, + bool enable_onnx_checker = true, + bool enable_experimental_op = true, + bool enable_optimize = true, + const CustomOpInfo& info = CustomOpInfo(), + const std::string& deploy_backend = "onnxruntime", + const std::string& calibration_file = "", + const std::string& external_file = "", + const bool& export_fp16_model = false) { + P2OLogger(verbose) << "Start to parse PaddlePaddle model..." << std::endl; + P2OLogger(verbose) << "Model file path: " << model_filename << std::endl; + P2OLogger(verbose) << "Paramters file path: " << params_filename + << std::endl; + if (info.size() == 0) { + char* out = nullptr; + int size = 0; + char* calibration_cache = nullptr; + int cache_size = 0; + bool save_external; + if (!Export(model_filename.c_str(), params_filename.c_str(), &out, &size, + opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize, + nullptr, 0, deploy_backend.c_str(), &calibration_cache, + &cache_size, external_file.c_str(), &save_external, + export_fp16_model)) { + P2OLogger(verbose) << "Paddle model convert failed." << std::endl; + return pybind11::bytes(""); + } + if (cache_size) { + std::string calibration_cache_str(calibration_cache, + calibration_cache + cache_size); + std::ofstream cache_file; + cache_file.open(calibration_file, std::ios::out); + cache_file << calibration_cache_str; + delete calibration_cache; + calibration_cache = nullptr; + P2OLogger(verbose) << "TensorRT calibration cache path: " + << calibration_file << std::endl; + } + std::string onnx_proto(out, out + size); + delete out; + out = nullptr; + return pybind11::bytes(onnx_proto); + } + + std::vector ops; + ops.resize(info.size()); + int index = 0; + for (auto& item : info) { + strcpy(ops[index].op_name, item.first.c_str()); + strcpy(ops[index].export_op_name, item.second.c_str()); + index += 1; + } + char* out = nullptr; + int size = 0; + char* calibration_cache = nullptr; + int cache_size = 0; + bool save_external; + if (!Export(model_filename.c_str(), params_filename.c_str(), &out, &size, + opset_version, auto_upgrade_opset, verbose, enable_onnx_checker, + enable_experimental_op, enable_optimize, ops.data(), + info.size(), deploy_backend.c_str(), &calibration_cache, + &cache_size, external_file.c_str(), &save_external, + export_fp16_model)) { + P2OLogger(verbose) << "Paddle model convert failed." << std::endl; + return pybind11::bytes(""); + } + if (cache_size) { + std::string calibration_cache_str(calibration_cache, + calibration_cache + cache_size); + std::ofstream cache_file; + cache_file.open(calibration_file, std::ios::out); + cache_file << calibration_cache_str; + delete calibration_cache; + calibration_cache = nullptr; + P2OLogger(verbose) << "TensorRT calibration cache path: " + << calibration_file << std::endl; + } + std::string onnx_proto(out, out + size); + delete out; + out = nullptr; + return pybind11::bytes(onnx_proto); + }); + m.def( + "optimize", + [](const std::string& model_path, const std::string& optimized_model_path, + const std::map>& shape_infos) { + ONNX_NAMESPACE::optimization::OptimizePaddle2ONNX( + model_path, optimized_model_path, shape_infos); + }); + m.def("convert_to_fp16", [](const std::string& fp32_model_path, + const std::string& fp16_model_path) { + paddle2onnx::optimization::Paddle2ONNXFP32ToFP16(fp32_model_path, + fp16_model_path); + }); +} +} // namespace paddle2onnx diff --git a/paddle2onnx/legacy/__init__.py b/paddle2onnx/legacy/__init__.py new file mode 100755 index 0000000000..12737e8595 --- /dev/null +++ b/paddle2onnx/legacy/__init__.py @@ -0,0 +1,128 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. +from __future__ import absolute_import + +__version__ = "0.9.6" + +import paddle +from .convert import dygraph2onnx, program2onnx +from .op_mapper import register_op_mapper +from typing import TypeVar +from paddle2onnx.utils import logging +from paddle2onnx.legacy.op_mapper import OpMapper +from . import command + +OP_WITHOUT_KERNEL_SET = { + 'feed', 'fetch', 'recurrent', 'go', 'rnn_memory_helper_grad', + 'conditional_block', 'while', 'send', 'recv', 'listen_and_serv', + 'fl_listen_and_serv', 'ncclInit', 'select', 'checkpoint_notify', + 'gen_bkcl_id', 'c_gen_bkcl_id', 'gen_nccl_id', 'c_gen_nccl_id', + 'c_comm_init', 'c_sync_calc_stream', 'c_sync_comm_stream', + 'queue_generator', 'dequeue', 'enqueue', 'heter_listen_and_serv', + 'c_wait_comm', 'c_wait_compute', 'c_gen_hccl_id', 'c_comm_init_hccl', + 'copy_cross_scope' +} + + +def process_old_ops_desc(model): + for i in range(len(model.blocks[0].ops)): + if model.blocks[0].ops[i].type == "matmul": + if not model.blocks[0].ops[i].has_attr("head_number"): + model.blocks[0].ops[i]._set_attr("head_number", 1) + elif model.blocks[0].ops[i].type == "yolo_box": + if not model.blocks[0].ops[i].has_attr("iou_aware"): + model.blocks[0].ops[i]._set_attr("iou_aware", False) + if not model.blocks[0].ops[i].has_attr("iou_aware_factor"): + model.blocks[0].ops[i]._set_attr("iou_aware_factor", 0.5) + + +def get_all_registered_ops(save_file=None): + ops = list(OpMapper.OPSETS.keys()) + logging.warning("The number of all registered OPs is: {}".format(len(ops))) + if save_file is None: + return + with open(save_file, "w") as f: + logging.warning("All registered OPs will be written to the file: {}". + format(save_file)) + f.write("Total OPs num: {} \n".format(len(ops))) + for index in range(len(ops)): + op = ops[index] + f.write(str(index + 1) + ". " + op + "\n") + return + + +def run_convert(model, input_shape_dict=None, scope=None, opset_version=9): + paddle_version = paddle.__version__ + if isinstance(model, paddle.static.Program): + process_old_ops_desc(model) + if input_shape_dict is not None: + model_version = model.desc._version() + major_ver = model_version // 1000000 + minor_ver = (model_version - major_ver * 1000000) // 1000 + patch_ver = model_version - major_ver * 1000000 - minor_ver * 1000 + model_version = "{}.{}.{}".format(major_ver, minor_ver, patch_ver) + if model_version != paddle_version: + logging.warning( + "The model is saved by paddlepaddle v{}, but now your paddlepaddle is version of {}, this difference may cause error, it is recommend you reinstall a same version of paddlepaddle for this model". + format(model_version, paddle_version)) + for k, v in input_shape_dict.items(): + model.blocks[0].var(k).desc.set_shape(v) + for i in range(len(model.blocks[0].ops)): + if model.blocks[0].ops[i].type in OP_WITHOUT_KERNEL_SET: + continue + model.blocks[0].ops[i].desc.infer_shape(model.blocks[0].desc) + if scope is None: + scope = paddle.static.global_scope() + input_names = list() + output_vars = list() + for i in range(len(model.blocks[0].ops)): + if model.blocks[0].ops[i].type == "feed": + input_names.append(model.blocks[0].ops[i].output("Out")[0]) + if model.blocks[0].ops[i].type == "fetch": + output_vars.append(model.blocks[0].var(model.blocks[0].ops[i] + .input("X")[0])) + return program2onnx( + model, + scope, + save_file=None, + feed_var_names=input_names, + target_vars=output_vars, + opset_version=opset_version, + enable_onnx_checker=True) + elif isinstance(model, paddle.jit.TranslatedLayer): + process_old_ops_desc(model.program()) + model_version = model.program().desc._version() + major_ver = model_version // 1000000 + minor_ver = (model_version - major_ver * 1000000) // 1000 + patch_ver = model_version - major_ver * 1000000 - minor_ver * 1000 + model_version = "{}.{}.{}".format(major_ver, minor_ver, patch_ver) + if model_version != paddle_version: + logging.warning( + "The model is saved by paddlepaddle v{}, but now your paddlepaddle is version of {}, this difference may cause error, it is recommend you reinstall a same version of paddlepaddle for this model". + format(model_version, paddle_version)) + + if input_shape_dict is not None: + for k, v in input_shape_dict.items(): + model.program().blocks[0].var(k).desc.set_shape(v) + for i in range(len(model.program().blocks[0].ops)): + if model.program().blocks[0].ops[ + i].type in OP_WITHOUT_KERNEL_SET: + continue + model.program().blocks[0].ops[i].desc.infer_shape(model.program( + ).blocks[0].desc) + return dygraph2onnx(model, save_file=None, opset_version=opset_version) + else: + raise Exception( + "Only support model loaded from paddle.static.load_inference_model() or paddle.jit.load()" + ) diff --git a/paddle2onnx/legacy/command.py b/paddle2onnx/legacy/command.py new file mode 100755 index 0000000000..eb67b6d9fe --- /dev/null +++ b/paddle2onnx/legacy/command.py @@ -0,0 +1,287 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import +from six import text_type as _text_type +import argparse +import ast +import sys +import os +import paddle.fluid as fluid +from paddle2onnx.utils import logging + + +def str2list(v): + if len(v) == 0: + return None + v = v.replace(" ", "") + v = eval(v) + return v + + +def arg_parser(): + parser = argparse.ArgumentParser() + parser.add_argument( + "--model_dir", + "-m", + type=_text_type, + default=None, + help="PaddlePaddle model directory, if params stored in single file, you need define '--model_filename' and 'params_filename'." + ) + parser.add_argument( + "--model_filename", + "-mf", + type=_text_type, + default=None, + help="PaddlePaddle model's network file name, which under directory seted by --model_dir" + ) + parser.add_argument( + "--params_filename", + "-pf", + type=_text_type, + default=None, + help="PaddlePaddle model's param file name(param files combined in single file), which under directory seted by --model_dir." + ) + parser.add_argument( + "--save_file", + "-s", + type=_text_type, + default=None, + help="file path to save onnx model") + parser.add_argument( + "--opset_version", + "-ov", + type=int, + default=9, + help="set onnx opset version to export") + parser.add_argument( + "--input_shape_dict", + "-isd", + type=_text_type, + default="None", + help="define input shapes, e.g --input_shape_dict=\"{'image':[1, 3, 608, 608]}\" or" \ + "--input_shape_dict=\"{'image':[1, 3, 608, 608], 'im_shape': [1, 2], 'scale_factor': [1, 2]}\"") + parser.add_argument( + "--enable_dev_version", + type=ast.literal_eval, + default=False, + help="whether to use new version of Paddle2ONNX which is under developing, default False" + ) + parser.add_argument( + "--enable_onnx_checker", + type=ast.literal_eval, + default=True, + help="whether check onnx model validity, default True") + parser.add_argument( + "--enable_paddle_fallback", + type=ast.literal_eval, + default=False, + help="whether use PaddleFallback for custom op, default is False") + parser.add_argument( + "--version", + "-v", + action="store_true", + default=False, + help="get version of paddle2onnx") + parser.add_argument( + "--output_names", + "-on", + type=str2list, + default=None, + help="define output names, e.g --output_names=\"[\"output1\"]\" or \ + --output_names=\"[\"output1\", \"output2\", \"output3\"]\" or \ + --output_names=\"{\"Paddleoutput\":\"Onnxoutput\"}\"") + parser.add_argument( + "--enable_auto_update_opset", + type=ast.literal_eval, + default=True, + help="whether enable auto_update_opset, default is True") + return parser + + +def c_paddle_to_onnx(model_file, + params_file="", + save_file=None, + opset_version=7, + auto_upgrade_opset=True, + verbose=True, + enable_onnx_checker=True, + enable_experimental_op=True, + enable_optimize=True): + import paddle2onnx.paddle2onnx_cpp2py_export as c_p2o + onnx_model_str = c_p2o.export( + model_file, params_file, opset_version, auto_upgrade_opset, verbose, + enable_onnx_checker, enable_experimental_op, enable_optimize) + if save_file is not None: + with open(save_file, "wb") as f: + f.write(onnx_model_str) + else: + return onnx_model_str + + +def program2onnx(model_dir, + save_file, + model_filename=None, + params_filename=None, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + input_shape_dict=None, + output_names=None, + auto_update_opset=True): + try: + import paddle + except: + logging.error( + "paddlepaddle not installed, use \"pip install paddlepaddle\"") + + v0, v1, v2 = paddle.__version__.split('.') + if v0 == '0' and v1 == '0' and v2 == '0': + logging.warning("You are use develop version of paddlepaddle") + elif int(v0) <= 1 and int(v1) < 8: + raise ImportError("paddlepaddle>=1.8.0 is required") + + import paddle2onnx as p2o + # convert model save with 'paddle.fluid.io.save_inference_model' + if hasattr(paddle, 'enable_static'): + paddle.enable_static() + exe = fluid.Executor(fluid.CPUPlace()) + if model_filename is None and params_filename is None: + [program, feed_var_names, fetch_vars] = fluid.io.load_inference_model( + model_dir, exe) + else: + [program, feed_var_names, fetch_vars] = fluid.io.load_inference_model( + model_dir, + exe, + model_filename=model_filename, + params_filename=params_filename) + + OP_WITHOUT_KERNEL_SET = { + 'feed', 'fetch', 'recurrent', 'go', 'rnn_memory_helper_grad', + 'conditional_block', 'while', 'send', 'recv', 'listen_and_serv', + 'fl_listen_and_serv', 'ncclInit', 'select', 'checkpoint_notify', + 'gen_bkcl_id', 'c_gen_bkcl_id', 'gen_nccl_id', 'c_gen_nccl_id', + 'c_comm_init', 'c_sync_calc_stream', 'c_sync_comm_stream', + 'queue_generator', 'dequeue', 'enqueue', 'heter_listen_and_serv', + 'c_wait_comm', 'c_wait_compute', 'c_gen_hccl_id', 'c_comm_init_hccl', + 'copy_cross_scope' + } + if input_shape_dict is not None: + import paddle2onnx + paddle2onnx.legacy.process_old_ops_desc(program) + paddle_version = paddle.__version__ + model_version = program.desc._version() + major_ver = model_version // 1000000 + minor_ver = (model_version - major_ver * 1000000) // 1000 + patch_ver = model_version - major_ver * 1000000 - minor_ver * 1000 + model_version = "{}.{}.{}".format(major_ver, minor_ver, patch_ver) + if model_version != paddle_version: + logging.warning( + "The model is saved by paddlepaddle v{}, but now your paddlepaddle is version of {}, this difference may cause error, it is recommend you reinstall a same version of paddlepaddle for this model". + format(model_version, paddle_version)) + + for k, v in input_shape_dict.items(): + program.blocks[0].var(k).desc.set_shape(v) + for i in range(len(program.blocks[0].ops)): + if program.blocks[0].ops[i].type in OP_WITHOUT_KERNEL_SET: + continue + program.blocks[0].ops[i].desc.infer_shape(program.blocks[0].desc) + p2o.program2onnx( + program, + fluid.global_scope(), + save_file, + feed_var_names=feed_var_names, + target_vars=fetch_vars, + opset_version=opset_version, + enable_onnx_checker=enable_onnx_checker, + operator_export_type=operator_export_type, + auto_update_opset=auto_update_opset, + output_names=output_names) + + +def main(): + if len(sys.argv) < 2: + logging.info("Use \"paddle2onnx -h\" to print the help information") + logging.info( + "For more information, please follow our github repo below:") + logging.info("Github: https://github.com/PaddlePaddle/paddle2onnx.git") + return + + parser = arg_parser() + args = parser.parse_args() + + if args.version: + import paddle2onnx + logging.info("paddle2onnx-{} with python>=2.7, paddlepaddle>=1.8.0". + format(paddle2onnx.__version__)) + return + + assert args.model_dir is not None, "--model_dir should be defined while translating paddle model to onnx" + assert args.save_file is not None, "--save_file should be defined while translating paddle model to onnx" + + input_shape_dict = eval(args.input_shape_dict) + + operator_export_type = "ONNX" + if args.enable_paddle_fallback: + operator_export_type = "PaddleFallback" + + if args.output_names is not None: + if not isinstance(args.output_names, (list, dict)): + raise TypeError( + "The output_names should be 'list' or 'dict', but received type is %s." + % type(args.output_names)) + + if args.enable_dev_version: + if args.enable_paddle_fallback: + logging.warn( + "--enable_paddle_fallback is deprecated while --enable_dev_version=True." + ) + if args.output_names is not None: + logging.warn( + "--output_names is deprecated while --enable_dev_version=True.") + if input_shape_dict is not None: + logging.warn( + "--input_shape_dict is deprecated while --enable_dev_version=True." + ) + model_file = os.path.join(args.model_dir, args.model_filename) + if args.params_filename is None: + params_file = "" + else: + params_file = os.path.join(args.model_dir, args.params_filename) + return c_paddle_to_onnx( + model_file=model_file, + params_file=params_file, + save_file=args.save_file, + opset_version=args.opset_version, + auto_upgrade_opset=args.enable_auto_update_opset, + verbose=True, + enable_onnx_checker=args.enable_onnx_checker, + enable_experimental_op=True, + enable_optimize=True) + + program2onnx( + args.model_dir, + args.save_file, + args.model_filename, + args.params_filename, + opset_version=args.opset_version, + enable_onnx_checker=args.enable_onnx_checker, + operator_export_type=operator_export_type, + input_shape_dict=input_shape_dict, + output_names=args.output_names, + auto_update_opset=args.enable_auto_update_opset) + + +if __name__ == "__main__": + main() diff --git a/paddle2onnx/legacy/constant/__init__.py b/paddle2onnx/legacy/constant/__init__.py new file mode 100644 index 0000000000..4361cadef1 --- /dev/null +++ b/paddle2onnx/legacy/constant/__init__.py @@ -0,0 +1,15 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. +from .constant import PRODUCER +from .constant import NodeDomain diff --git a/paddle2onnx/legacy/constant/constant.py b/paddle2onnx/legacy/constant/constant.py new file mode 100644 index 0000000000..b8e4fa4fe6 --- /dev/null +++ b/paddle2onnx/legacy/constant/constant.py @@ -0,0 +1,24 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +PRODUCER = 'PaddlePaddle' + +ONNX_HELPER_VERSION = '1.7.0' + + +class NodeDomain(): + ONNX = 'onnx' + PADDLE = 'paddle' + CUSTOM = 'custom' + RAW = 'raw' diff --git a/paddle2onnx/legacy/constant/dtypes.py b/paddle2onnx/legacy/constant/dtypes.py new file mode 100644 index 0000000000..74fc6fe063 --- /dev/null +++ b/paddle2onnx/legacy/constant/dtypes.py @@ -0,0 +1,84 @@ +# Copyright (c) 2019 PaddlePaddle Authors. 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. + +import numpy as np +import paddle.fluid.core as core +from onnx import helper +from onnx import TensorProto + +ONNX = TensorProto + +DTYPE_PADDLE_ONNX_MAP = { + TensorProto.FLOAT16: core.VarDesc.VarType.FP16, + TensorProto.FLOAT: core.VarDesc.VarType.FP32, + TensorProto.DOUBLE: core.VarDesc.VarType.FP64, + TensorProto.INT16: core.VarDesc.VarType.INT16, + TensorProto.INT32: core.VarDesc.VarType.INT32, + TensorProto.INT64: core.VarDesc.VarType.INT64, + TensorProto.BOOL: core.VarDesc.VarType.BOOL, + TensorProto.UINT8: core.VarDesc.VarType.UINT8, + core.VarDesc.VarType.FP16: TensorProto.FLOAT16, + core.VarDesc.VarType.FP32: TensorProto.FLOAT, + core.VarDesc.VarType.FP64: TensorProto.DOUBLE, + core.VarDesc.VarType.INT16: TensorProto.INT16, + core.VarDesc.VarType.INT32: TensorProto.INT32, + core.VarDesc.VarType.INT64: TensorProto.INT64, + core.VarDesc.VarType.BOOL: TensorProto.BOOL, + core.VarDesc.VarType.UINT8: TensorProto.UINT8, +} + +DTYPE_PADDLE_NUMPY_MAP = { + np.float32: core.VarDesc.VarType.FP32, + np.float64: core.VarDesc.VarType.FP64, + np.int16: core.VarDesc.VarType.INT16, + np.int32: core.VarDesc.VarType.INT32, + np.int64: core.VarDesc.VarType.INT64, + np.bool_: core.VarDesc.VarType.BOOL, + core.VarDesc.VarType.FP32: np.float32, + core.VarDesc.VarType.FP64: np.float64, + core.VarDesc.VarType.INT16: np.int16, + core.VarDesc.VarType.INT32: np.int32, + core.VarDesc.VarType.INT64: np.int64, + core.VarDesc.VarType.BOOL: np.bool_ +} + +DTYPE_PADDLE_STR_MAP = { + core.VarDesc.VarType.FP32: 'float32', + core.VarDesc.VarType.FP64: 'float64', + core.VarDesc.VarType.INT16: 'int16', + core.VarDesc.VarType.INT32: 'int32', + core.VarDesc.VarType.INT64: 'int64', + core.VarDesc.VarType.BOOL: 'bool', + 'float32': core.VarDesc.VarType.FP32, + 'float64': core.VarDesc.VarType.FP64, + 'int16': core.VarDesc.VarType.INT16, + 'int32': core.VarDesc.VarType.INT32, + 'int64': core.VarDesc.VarType.INT64, + 'bool': core.VarDesc.VarType.BOOL +} + +DTYPE_ONNX_STR_MAP = { + TensorProto.FLOAT: 'float32', + TensorProto.DOUBLE: 'float64', + TensorProto.INT16: 'int16', + TensorProto.INT32: 'int32', + TensorProto.INT64: 'int64', + TensorProto.BOOL: 'bool', + 'float32': TensorProto.FLOAT, + 'float64': TensorProto.DOUBLE, + 'int16': TensorProto.INT16, + 'int32': TensorProto.INT32, + 'int64': TensorProto.INT64, + 'bool': TensorProto.BOOL, +} diff --git a/paddle2onnx/legacy/constant/op_mapping_status.py b/paddle2onnx/legacy/constant/op_mapping_status.py new file mode 100644 index 0000000000..0f9e074cda --- /dev/null +++ b/paddle2onnx/legacy/constant/op_mapping_status.py @@ -0,0 +1,19 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +OP_MAPPING_WAITTING = 0 +OP_MAPPING_NO_REGISTER = 1 +OP_MAPPING_NO_VERSION = 2 +OP_MAPPING_SUCCESSED = 3 +OP_MAPPING_FAILED = 4 diff --git a/paddle2onnx/legacy/convert.py b/paddle2onnx/legacy/convert.py new file mode 100755 index 0000000000..86e7d4f6c5 --- /dev/null +++ b/paddle2onnx/legacy/convert.py @@ -0,0 +1,206 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import six +import paddle +import numpy as np +from paddle.fluid.framework import Variable +from paddle2onnx.utils import check_model, logging +from paddle2onnx.legacy.graph import PaddleGraph, ONNXGraph +from paddle2onnx.legacy.passes import PassManager + + +def export_onnx(paddle_graph, + save_file, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + verbose=False, + auto_update_opset=True, + output_names=None): + onnx_graph = ONNXGraph.build(paddle_graph, opset_version, + operator_export_type, verbose, + auto_update_opset) + onnx_graph = PassManager.run_pass( + onnx_graph, ['dumplicate_names_pass', 'inplace_node_pass']) + onnx_proto = onnx_graph.export_proto(enable_onnx_checker, output_names) + + if save_file is None: + return onnx_proto + + path, _ = os.path.split(save_file) + if path != '' and not os.path.isdir(path): + os.makedirs(path) + with open(save_file, 'wb') as f: + f.write(onnx_proto.SerializeToString()) + logging.info("ONNX model saved in {}".format(save_file)) + + +def program2onnx(program, + scope, + save_file, + feed_var_names=None, + target_vars=None, + opset_version=9, + enable_onnx_checker=False, + operator_export_type="ONNX", + auto_update_opset=True, + **configs): + from paddle import fluid + if hasattr(paddle, 'enable_static'): + paddle.enable_static() + if isinstance(program, paddle.fluid.framework.Program): + if feed_var_names is not None: + if isinstance(feed_var_names, six.string_types): + feed_var_names = [feed_var_names] + else: + if not (bool(feed_var_names) and all( + isinstance(name, six.string_types) + for name in feed_var_names)): + raise TypeError("'feed_var_names' should be a list of str.") + + if target_vars is not None: + if isinstance(target_vars, Variable): + target_vars = [target_vars] + else: + if not (bool(target_vars) and + all(isinstance(var, Variable) for var in target_vars)): + raise TypeError( + "'target_vars' should be a list of variable.") + + paddle_graph = PaddleGraph.build_from_program(program, feed_var_names, + target_vars, scope) + output_names = None + if 'output_names' in configs: + output_names = configs['output_names'] + if output_names is not None and not isinstance(output_names, + (list, dict)): + raise TypeError( + "The output_names should be 'list' or dict, but received type is %s." + % type(output_names)) + return export_onnx( + paddle_graph, + save_file, + opset_version, + enable_onnx_checker, + operator_export_type, + auto_update_opset=auto_update_opset, + output_names=output_names) + else: + raise TypeError( + "the input 'program' should be 'Program', but received type is %s." + % type(program)) + + +def dygraph2onnx(layer, save_file, input_spec=None, opset_version=9, **configs): + from paddle.nn import Layer + from paddle.fluid import core + from paddle.fluid.framework import Variable + from paddle.fluid.dygraph.dygraph_to_static import program_translator + from paddle.fluid import dygraph + if not isinstance(layer, Layer): + raise TypeError( + "the input 'layer' should be 'Layer', 'TranslatedLayer', but received type is %s." + % type(layer)) + + inner_input_spec = None + if input_spec is not None: + if not isinstance(input_spec, list): + raise TypeError( + "The input input_spec should be 'list', but received type is %s." + % type(input_spec)) + inner_input_spec = [] + for var in input_spec: + if isinstance(var, paddle.static.InputSpec): + inner_input_spec.append(var) + elif isinstance(var, (core.VarBase, Variable)): + inner_input_spec.append( + paddle.static.InputSpec.from_tensor(var)) + else: + raise TypeError( + "The element in input_spec list should be 'Variable' or `paddle.static.InputSpec`, but received element's type is %s." + % type(var)) + + output_spec = None + if 'output_spec' in configs: + output_spec = configs['output_spec'] + if not isinstance(output_spec, list): + raise TypeError( + "The output_spec should be 'list', but received type is %s." % + type(output_spec)) + for var in output_spec: + if not isinstance(var, (core.VarBase, Variable)): + raise TypeError( + "The element in output_spec list should be 'Variable', but received element's type is %s." + % type(var)) + + verbose = False + if 'verbose' in configs: + if isinstance(configs['verbose'], bool): + verbose = configs['verbose'] + else: + raise TypeError( + "The verbose should be 'bool', but received type is %s." % + type(configs['verbose'])) + + enable_onnx_checker = False + if 'enable_onnx_checker' in configs: + if isinstance(configs['enable_onnx_checker'], bool): + enable_onnx_checker = configs['enable_onnx_checker'] + else: + raise TypeError( + "The 'enable_onnx_checker' should be 'bool', but received type is %s." + % type(configs['enable_onnx_checker'])) + + operator_export_type = "ONNX" + enable_paddle_fallback = False + if 'enable_paddle_fallback' in configs: + if isinstance(configs['enable_paddle_fallback'], bool): + enable_paddle_fallback = configs['enable_paddle_fallback'] + if enable_paddle_fallback: + operator_export_type = "PaddleFallback" + else: + raise TypeError( + "The 'enable_paddle_fallback' should be 'bool', but received type is %s." + % type(configs['enable_paddle_fallback'])) + + paddle_graph = PaddleGraph.build_from_dygraph(layer, inner_input_spec, + output_spec) + + if 'get_paddle_graph' in configs: + return paddle_graph + + auto_update_opset = True + if 'auto_update_opset' in configs: + if isinstance(configs['auto_update_opset'], bool): + auto_update_opset = configs['auto_update_opset'] + else: + raise TypeError( + "The auto_update_opset should be 'bool', but received type is %s." + % type(configs['auto_update_opset'])) + + output_names = None + if 'output_names' in configs: + output_names = configs['output_names'] + if not isinstance(output_names, (list, dict)): + raise TypeError( + "The output_names should be 'list' or dict, but received type is %s." + % type(output_names)) + + return export_onnx(paddle_graph, save_file, opset_version, + enable_onnx_checker, operator_export_type, verbose, + auto_update_opset, output_names) diff --git a/paddle2onnx/legacy/graph/__init__.py b/paddle2onnx/legacy/graph/__init__.py new file mode 100644 index 0000000000..fb87f22543 --- /dev/null +++ b/paddle2onnx/legacy/graph/__init__.py @@ -0,0 +1,17 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from .graph import Graph, Node +from .paddle_graph import PaddleGraph, PaddleNode +from .onnx_graph import ONNXGraph, ONNXNode diff --git a/paddle2onnx/legacy/graph/dygraph_helper.py b/paddle2onnx/legacy/graph/dygraph_helper.py new file mode 100755 index 0000000000..1d4b6accbf --- /dev/null +++ b/paddle2onnx/legacy/graph/dygraph_helper.py @@ -0,0 +1,271 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import numpy as np +import inspect +import six +import paddle +from paddle.fluid.io import _get_valid_program +from paddle.fluid.dygraph.dygraph_to_static.program_translator import ProgramTranslator, StaticFunction +from paddle.fluid.layers.utils import flatten, pack_sequence_as +from collections import OrderedDict +from paddle.fluid import dygraph +from paddle.fluid.dygraph.jit import declarative +from paddle.fluid import core +from paddle.fluid import layers +from paddle.nn import Layer +from paddle.fluid.framework import Block, ParamBase, Program, Variable, Parameter, program_guard +from paddle.fluid.dygraph.layers import Layer + +from paddle2onnx.utils import logging +from paddle2onnx.legacy.graph.graph_helper import prepend_feed_ops, append_fetch_ops + + +def _get_input_var_names(inputs, input_spec): + name_none_error = "The %s's name is None. " \ + "When using jit.save, please set InputSepc's name in " \ + "to_static(input_spec=[]) and jit.save(input_spec=[]) " \ + "and make sure they are consistent." + name_no_exists_error = "The tensor `%s` does not exists. " \ + "Please make sure the name of InputSpec or example Tensor " \ + "in input_spec is the same as the name of InputSpec in " \ + "`to_static` decorated on the Layer.forward method." + result_list = [] + input_var_names = [ + var.name for var in flatten(inputs) if isinstance(var, Variable) + ] + if input_spec is None: + # no prune + return input_var_names + else: + # fileter out non-tensor type spec infos. + input_spec = [ + spec for spec in input_spec + if isinstance(spec, paddle.static.InputSpec) + ] + + if len(input_spec) == len(input_var_names): + # no prune + result_list = input_var_names + # if input spec name not in input_var_names, only raise warning + for spec in input_spec: + if spec.name is None: + warnings.warn(name_none_error % spec) + elif spec.name not in input_var_names: + warnings.warn(name_no_exists_error % spec.name) + else: + # do nothing + pass + else: + # prune + for spec in input_spec: + if spec.name is None: + # name is None, the input_spec only can be InputSpec + raise ValueError(name_none_error % spec) + elif spec.name not in input_var_names: + # the input_spec can be `InputSpec` or `VarBase` + raise ValueError(name_no_exists_error % spec.name) + else: + result_list.append(spec.name) + + return result_list + + +def _get_output_vars(outputs, output_spec): + name_no_exists_error = "The tensor `%s` does not exists. " \ + "Please make sure the name of example Tensor " \ + "in configs.output_spec is the output tensor of " \ + "Layer.forward method." + result_list = [] + output_vars_dict = OrderedDict() + for var in flatten(outputs): + if isinstance(var, Variable): + output_vars_dict[var.name] = var + if output_spec is None: + result_list = output_vars_dict.values() + elif output_spec is not None and len(output_spec) == len(output_vars_dict): + result_list = output_vars_dict.values() + for var in output_spec: + if var.name not in output_vars_dict: + warnings.warn(name_no_exists_error % var.name) + else: + for var in output_spec: + if var.name not in output_vars_dict: + raise ValueError(name_no_exists_error % var.name) + else: + result_list.append(output_vars_dict[var.name]) + return result_list + + +@dygraph.base.switch_to_static_graph +def get_program(layer, input_spec, output_spec, **configs): + paddle.jit.set_verbosity(0) + prog_translator = ProgramTranslator() + if not prog_translator.enable_to_static: + raise RuntimeError( + "The Paddle2onnx doesn't work when setting ProgramTranslator.enable to False." + ) + + if not isinstance(layer, Layer): + raise TypeError( + "The input of paddle2onnx should be 'Layer', but received input type is %s." + % type(layer)) + + if isinstance(layer, paddle.DataParallel): + inner_layer = layer._layers + else: + inner_layer = layer + + # avoid change user given input_spec + inner_input_spec = None + if input_spec is not None: + for attr_func in dir(inner_layer): + static_func = getattr(inner_layer, attr_func, None) + if isinstance(static_func, + StaticFunction) and 'forward' != attr_func: + raise ValueError( + "If there are static functions other than 'forward' that need to be saved, the input 'input_spec' should be None, but received the type of 'input_spec' is %s." + % type(input_spec)) + + if not isinstance(input_spec, (list, tuple)): + raise TypeError( + "The input input_spec should be 'list', but received input_spec's type is %s." + % type(input_spec)) + inner_input_spec = [] + for var in flatten(input_spec): + if isinstance(var, paddle.static.InputSpec): + inner_input_spec.append(var) + elif isinstance(var, (core.VarBase, core.eager.Tensor, Variable)): + inner_input_spec.append( + paddle.static.InputSpec.from_tensor(var)) + else: + # NOTE(Aurelius84): Support non-Tensor type in `input_spec`. + inner_input_spec.append(var) + + extra_var_info = dict() + functions = dir(inner_layer) + for attr_func in functions: + static_func = getattr(inner_layer, attr_func, None) + if isinstance(static_func, StaticFunction): + concrete_program = static_func.concrete_program_specify_input_spec( + inner_input_spec) + elif 'forward' == attr_func: + # transform in jit.save, if input_spec is incomplete, declarative will throw error + # inner_input_spec is list[InputSpec], it should be packed with same structure + # as original input_spec here. + if inner_input_spec: + inner_input_spec = pack_sequence_as(input_spec, + inner_input_spec) + static_forward = declarative( + inner_layer.forward, input_spec=inner_input_spec) + concrete_program = static_forward.concrete_program + # the input_spec has been used in declarative, which is equal to + # @declarative with input_spec and jit.save without input_spec, + # avoid needless warning + inner_input_spec = None + else: + continue + + input_var_names = _get_input_var_names(concrete_program.inputs, + inner_input_spec) + + # NOTE(chenweihang): [ Get output variables ] + # the rule is like [ Get input variables name ]. For output var, + # we only support VarBase spec, and actually, we only need the + # var name of output, and we don't recommended to use output_spec + output_vars = _get_output_vars(concrete_program.outputs, output_spec) + + feeded_var_names = input_var_names + target_vars = output_vars + main_program = concrete_program.main_program.clone() + export_for_deployment = True + + if isinstance(feeded_var_names, six.string_types): + feeded_var_names = [feeded_var_names] + elif export_for_deployment: + if len(feeded_var_names) > 0: + # TODO(paddle-dev): polish these code blocks + if not (bool(feeded_var_names) and all( + isinstance(name, six.string_types) + for name in feeded_var_names)): + raise ValueError("'feed_var_names' should be a list of str.") + + if isinstance(target_vars, Variable): + target_vars = [target_vars] + elif export_for_deployment: + if not (bool(target_vars) and + all(isinstance(var, Variable) for var in target_vars)): + raise ValueError("'target_vars' should be a list of Variable.") + + main_program = _get_valid_program(main_program) + + # remind user to set auc_states to zeros if the program contains auc op + all_ops = main_program.global_block().ops + for op in all_ops: + # clear device of Op + device_attr_name = core.op_proto_and_checker_maker.kOpDeviceAttrName() + op._set_attr(device_attr_name, "") + if op.type == 'auc': + warnings.warn( + "please ensure that you have set the auc states to zeros before saving inference model" + ) + break + + with program_guard(main_program): + uniq_target_vars = [] + for i, var in enumerate(target_vars): + uniq_target_vars.append(var) + target_vars = uniq_target_vars + target_var_name_list = [var.name for var in target_vars] + + origin_program = main_program.clone() + + main_program = main_program.clone() + global_block = main_program.global_block() + need_to_remove_op_index = [] + for i, op in enumerate(global_block.ops): + op.desc.set_is_target(False) + if op.type == "feed" or op.type == "fetch": + need_to_remove_op_index.append(i) + + for index in need_to_remove_op_index[::-1]: + global_block._remove_op(index) + + main_program.desc.flush() + + main_program = main_program._prune_with_input( + feeded_var_names=feeded_var_names, targets=target_vars) + main_program = main_program._inference_optimize(prune_read_op=True) + fetch_var_names = [v.name for v in target_vars] + + for target_v in target_vars: + if not main_program.global_block().has_var(target_v.name): + main_program.global_block().create_var( + name=target_v.name, + shape=target_v.shape, + dtype=target_v.dtype, + persistable=target_v.persistable) + + prepend_feed_ops(main_program, feeded_var_names) + append_fetch_ops(main_program, fetch_var_names) + + main_program.desc._set_version() + paddle.fluid.core.save_op_version_info(main_program.desc) + + main_program._copy_dist_param_info_from(origin_program) + + return main_program, feeded_var_names, target_vars diff --git a/paddle2onnx/legacy/graph/graph.py b/paddle2onnx/legacy/graph/graph.py new file mode 100755 index 0000000000..a490e3d750 --- /dev/null +++ b/paddle2onnx/legacy/graph/graph.py @@ -0,0 +1,287 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import copy +import six +import collections +from paddle2onnx.legacy.constant import NodeDomain + + +class Node(object): + def __init__(self, + op_type, + inputs, + outputs, + attrs, + layer_name, + domain=NodeDomain.RAW): + self.domain = domain + self.type = op_type + self.attrs = attrs + self.layer_name = layer_name + self.set_inputs(inputs) + self.set_outputs(outputs) + + def __hash__(self): + return hash(self.layer_name) + + def __eq__(self, other): + if self.layer_name == other.layer_name: + return True + return False + + def __str__(self): + node_str = '' + attrs = '' + for key, value in self.attrs.items(): + attrs += ', ' + key + '=' + str(value) + node_str += " {} = {}::{}(inputs={}{}) \n".format( + self.outputs, self.domain, self.type, self.inputs, attrs) + return node_str + + def input(self, idx=None): + if idx is None: + return self.inputs + return self.inputs[idx] + + def output(self, idx=None): + if idx is None: + return self.outputs + return self.outputs[idx] + + def attr(self, name): + if name in self.attrs: + return self.attrs[name] + return None + + def set_inputs(self, inputs): + if isinstance(inputs, list): + self.inputs = [ + ipt.layer_name if isinstance(ipt, Node) else ipt + for ipt in inputs + ] + elif isinstance(inputs, six.string_types): + self.inputs = [inputs] + elif isinstance(inputs, Node): + self.inputs = [inputs.layer_name] + else: + raise TypeError( + 'Inputs of node must be type: list, Node, or String but got {}'. + format(type(inputs))) + + def set_outputs(self, outputs): + if isinstance(outputs, list): + self.outputs = [ + opt.layer_name if isinstance(opt, Node) else opt + for opt in outputs + ] + elif isinstance(outputs, six.string_types): + self.outputs = [outputs] + elif isinstance(outputs, Node): + self.outputs = [outputs.layer_name] + else: + raise TypeError( + 'Outputs of node must be type: list, Node, or String but got {}'. + format(type(outputs))) + + +class Graph(object): + def __init__(self): + self.parameters = {} + self.node_map = collections.OrderedDict() + self.input_nodes = list() + self.output_nodes = list() + self.op_type_count = dict() + + def __hash__(self): + return hash(self.id) + + def __eq__(self, other): + if self.id == other.id: + return True + return False + + def __str__(self): + graph_str = 'graph { \n' + for node in self.input_nodes: + graph_str += " input: {} \n".format(node.layer_name) + for node in self.output_nodes: + graph_str += " output: {} \n \n".format(node.layer_name) + for name, node in self.node_map.items(): + graph_str += node.__str__() + graph_str += ' }' + return graph_str + + def set_output_nodes(self, node_list): + if isinstance(node_list, list): + self.output_nodes = node_list + else: + raise TypeError( + 'output_nodes of Graph must be type: list, but got {}'.format( + type(node_list))) + + def set_node_map(self, node_map): + if isinstance(node_map, dict): + self.node_map = node_map + self.generate_topo_sort() + else: + raise TypeError('node_map of Graph must be type: list, but got {}'. + format(type(node_map))) + + def set_input_nodes(self, node_list): + if isinstance(node_list, list): + self.input_nodes = node_list + else: + raise TypeError( + 'input_nodes of Graph must be type: list, but got {}'.format( + type(node_list))) + + def set_parameters(self, parameters): + if isinstance(parameters, dict): + self.parameters = parameters + else: + raise TypeError( + 'parameters of Graph must be type: dict, but got {}'.format( + type(parameters))) + + def generate_node_name(self, op_type): + if op_type in self.op_type_count: + self.op_type_count[op_type] += 1 + else: + self.op_type_count[op_type] = 1 + # layer_name need follow https://github.com/onnx/onnx/blob/master/docs/OpConventions.md + layer_name = op_type + '_' + str(self.op_type_count[op_type] - 1) + return layer_name + + def insert_node(self, node): + if node.type not in ['feed', 'fetch']: + self.node_map[node.layer_name] = node + + def make_node(self, + op_type, + inputs=None, + outputs=None, + attrs=None, + layer_name=None, + domain=None, + **kw): + if layer_name is None: + layer_name = self.generate_node_name(op_type) + + if attrs is None: + attrs = kw + attrs.update(kw) + + if inputs is None: + inputs = [] + if outputs is None: + outputs = [layer_name] + node = Node(op_type, layer_name, inputs, outputs, attrs, domain) + self.insert_node(node) + return node + + def update_node(self, + node, + op_type=None, + inputs=None, + outputs=None, + attrs=None, + block=None, + move_to_end=True, + domain=None, + **kw): + if op_type is not None: + node.type = op_type + if inputs is not None: + node.set_inputs(inputs) + if outputs is not None: + node.set_outputs(outputs) + if attrs is None: + attrs = kw + attrs.update(kw) + node.attrs = attrs + if domain is not None: + node.domain = domain + if move_to_end: + self.node_map.pop(node.layer_name) + self.node_map[node.layer_name] = node + return node + + def get_node(self, name, copy=False): + if name not in self.node_map: + raise TypeError('Node with name:{} not in graph'.format(name)) + if copy: + node = copy.copy(self.node_map[name]) + else: + node = self.node_map[name] + return node + + def remove_node_by_name(self, name): + if name in self.node_map: + node = self.node_map.pop(name) + return node + raise TypeError('Node with name:{} not in graph'.format(name)) + + def remove_node(self, node): + if isinstance(node, Node): + node = self.remove_node_by_name(node.layer_name) + return node + else: + node = self.remove_node_by_name(node) + return node + + def get_output_nodes_of_node(self, node): + if node in self.edge_map: + return self.edge_map[node] + elif self.get_node(node.layer_name, copy=False): + return [] + else: + raise KeyError('Node with layer_name {} not in graph.egde_map'. + format(node.layer_name)) + + def get_adjacency_map(self): + adjacency_map = {} + for layer_name, current_node in self.node_map.items(): + inputs = current_node.inputs + for ipt in inputs: + for layer_name, node in self.node_map.items(): + if current_node == node: + continue + outputs = node.outputs + if ipt in outputs: + if node not in adjacency_map: + adjacency_map[node] = set([current_node]) + else: + adjacency_map[node].add(current_node) + return adjacency_map + + def get_topo_sort_list(self): + topo_sort_list = list() + adjacency_map = self.get_adjacency_map() + for layer_name, node in self.node_map.items(): + if node not in adjacency_map: + topo_sort_list.append(node) + idx = 0 + while idx < len(topo_sort_list): + current_node = topo_sort_list[idx] + for input_node, output_nodes in adjacency_map.items(): + if current_node in output_nodes: + adjacency_map[input_node].remove(current_node) + if len(adjacency_map[input_node]) == 0: + topo_sort_list.append(input_node) + idx += 1 + return topo_sort_list[::-1] diff --git a/paddle2onnx/legacy/graph/graph_helper.py b/paddle2onnx/legacy/graph/graph_helper.py new file mode 100644 index 0000000000..a62594b5cc --- /dev/null +++ b/paddle2onnx/legacy/graph/graph_helper.py @@ -0,0 +1,83 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import paddle +import numpy as np +from paddle.fluid import core +from paddle.fluid.framework import Variable, program_guard +from paddle2onnx.utils import logging + + +def prepend_feed_ops(inference_program, + feed_target_names, + feed_holder_name='feed'): + if len(feed_target_names) == 0: + return + global_block = inference_program.global_block() + feed_var = global_block.create_var( + name=feed_holder_name, + type=core.VarDesc.VarType.FEED_MINIBATCH, + persistable=True) + for i, name in enumerate(feed_target_names): + if not global_block.has_var(name): + raise ValueError( + "The feed_var_names[{i}]: '{name}' doesn't exist in pruned inference program. " + "Please check whether '{name}' is a valid feed_var name, or remove it from feed_var_names " + "if '{name}' is not involved in the fetch_vars calculation.". + format( + i=i, name=name)) + out = global_block.var(name) + global_block._prepend_op( + type='feed', + inputs={'X': [feed_var]}, + outputs={'Out': [out]}, + attrs={'col': i}) + + +def append_fetch_ops(inference_program, + fetch_target_names, + fetch_holder_name='fetch'): + global_block = inference_program.global_block() + fetch_var = global_block.create_var( + name=fetch_holder_name, + type=core.VarDesc.VarType.FETCH_LIST, + persistable=True) + for i, name in enumerate(fetch_target_names): + global_block.append_op( + type='fetch', + inputs={'X': [name]}, + outputs={'Out': [fetch_var]}, + attrs={'col': i}) + + +def get_program(program, feed_var_names, fetch_vars): + global_block = program.global_block() + need_to_remove_op_index = [] + for i, op in enumerate(global_block.ops): + op.desc.set_is_target(False) + if op.type == "feed" or op.type == "fetch": + need_to_remove_op_index.append(i) + for index in need_to_remove_op_index[::-1]: + global_block._remove_op(index) + program.desc.flush() + program = program._prune_with_input( + feeded_var_names=feed_var_names, targets=fetch_vars) + program = program._inference_optimize(prune_read_op=True) + fetch_var_names = [v.name for v in fetch_vars] + prepend_feed_ops(program, feed_var_names) + append_fetch_ops(program, fetch_var_names) + return program diff --git a/paddle2onnx/legacy/graph/onnx_graph.py b/paddle2onnx/legacy/graph/onnx_graph.py new file mode 100755 index 0000000000..ac7ae9f597 --- /dev/null +++ b/paddle2onnx/legacy/graph/onnx_graph.py @@ -0,0 +1,333 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import copy +import collections +import numpy as np +from paddle2onnx.legacy.graph import Node, Graph +from paddle2onnx.legacy.constant import NodeDomain, PRODUCER, dtypes +from paddle2onnx.legacy.op_mapper import OpMapper +from onnx import helper +from paddle2onnx.utils import check_model, logging + + +class ONNXNode(Node): + def __init__(self, op_type, inputs, outputs, attrs, layer_name, domain): + super(ONNXNode, self).__init__(op_type, inputs, outputs, attrs, + layer_name, domain) + self.domain = domain + self.onnx_node = self.make_onnx_node() + + def make_onnx_constant_node(self): + dtype = self.attr('dtype') + value = self.attr('value') + if isinstance(value, list): + dims = (len(value), ) + elif value is None: + dims = () + value = [] + else: + dims = () + value = [value] + + if 'dims' in self.attrs: + dims = self.attrs['dims'] + + tensor = helper.make_tensor( + name=self.layer_name, data_type=dtype, dims=dims, vals=value) + + onnx_node = helper.make_node( + self.type, inputs=self.inputs, outputs=self.outputs, value=tensor) + + return onnx_node + + def make_onnx_node(self): + if self.type in ['Constant', 'ConstantOfShape']: + onnx_node = self.make_onnx_constant_node() + else: + onnx_node = helper.make_node( + self.type, + inputs=self.inputs, + outputs=self.outputs, + name=self.layer_name, + domain=self.domain, + **self.attrs) + return onnx_node + + +class ONNXGraph(Graph): + def __init__(self, + paddle_graph, + opset_version, + operator_export_type="ONNX", + block=None, + auto_update_opset=True): + super(ONNXGraph, self).__init__() + self.opset_version = opset_version + self.operator_export_type = operator_export_type + self.ctx = paddle_graph + self.custom = [] + if auto_update_opset: + self.update_opset_version() + + def __str__(self): + graph_str = 'graph { \n' + for node in self.input_nodes: + graph_str += " input: {} \n".format(node) + for node in self.output_nodes: + graph_str += " output: {} \n \n".format(node) + for name, node in self.node_map.items(): + graph_str += node.__str__() + graph_str += ' }' + return graph_str + + def make_node(self, + op_type, + inputs=[], + outputs=[], + attrs=None, + layer_name=None, + domain=None, + **kw): + if layer_name is None: + layer_name = self.generate_node_name(op_type) + + if domain is not None: + if domain not in self.custom: + self.custom.append(domain) + + if attrs is None: + attrs = kw + attrs.update(kw) + + if inputs is None: + inputs = [] + + real_outputs = None + if outputs is None: + real_outputs = [layer_name] + elif isinstance(outputs, int): + real_outputs = [] + for i in range(outputs): + real_outputs.append(self.generate_node_name(op_type)) + elif isinstance(outputs, list): + real_outputs = [] + if len(outputs) == 0: + real_outputs = [layer_name] + else: + for opt in outputs: + if isinstance(opt, Node): + real_outputs.append(opt.layer_name) + elif isinstance(opt, int): + real_outputs.append(self.generate_node_name(op_type)) + else: + real_outputs.append(opt) + else: + real_outputs = outputs + + node = ONNXNode(op_type, inputs, real_outputs, attrs, layer_name, + domain) + + self.insert_node(node) + if len(node.outputs) == 1: + return node.outputs[0] + else: + return node.outputs + + def update_node(self, + node, + op_type=None, + inputs=None, + outputs=None, + attrs=None, + **kw): + if op_type is None: + op_type = node.type + if inputs is None: + inputs = node.inputs + if outputs is None: + outputs = node.outputs + if attrs is None: + attrs = node.attrs + attrs.update(kw) + + node = ONNXNode(op_type, inputs, outputs, attrs, node.layer_name, + node.domain) + self.insert_node(node) + return node + + def build_parameters(self, parameters): + # build weight nodes + for name, param in parameters.items(): + weight = param['data'] + if weight is not np.ndarray: + weight = np.array(weight) + tensor = helper.make_tensor( + name=name, + dims=param['shape'], + data_type=dtypes.DTYPE_PADDLE_ONNX_MAP[param['dtype']], + vals=weight.flatten().tolist()) + node = helper.make_node( + 'Constant', inputs=[], outputs=[name], value=tensor) + self.parameters[name] = node + + def build_input_nodes(self, input_nodes): + # build input nodes + for ipt in input_nodes: + self.add_input_node(ipt.layer_name, + ipt.attr('shape'), ipt.attr('dtype')) + + def build_output_nodes(self, output_nodes): + # build output nodes + for opt in output_nodes: + self.add_output_node(opt.layer_name, + opt.attr('shape'), opt.attr('dtype')) + + def update_opset_version(self): + node_map = self.ctx.node_map + self.opset_version = OpMapper.get_recommend_opset_version( + node_map, self.opset_version) + + def build_op_nodes(self, node_map): + OpMapper.check_support_status(node_map, self.opset_version) + # build op nodes + for name, node in list(node_map.items()): + OpMapper.mapping(self, node, self.operator_export_type) + + def make_value_info(self, name, shape, dtype): + tensor_info = helper.make_tensor_value_info( + name=name, + shape=shape, + elem_type=dtypes.DTYPE_PADDLE_ONNX_MAP[dtype]) + return tensor_info + + def add_input_node(self, name, shape, dtype): + vi = self.make_value_info(name, shape, dtype) + self.input_nodes.append(vi) + + def add_output_node(self, name, shape, dtype): + vi = self.make_value_info(name, shape, dtype) + self.output_nodes.append(vi) + + def find_index(self, node_inout, name): + for i in range(len(node_inout)): + if node_inout[i] == name: + return i + return -1 + + def change_output_names(self, onnx_proto, output_names): + logging.info("The output of the ONNX model is set to: {}".format( + output_names)) + if isinstance(output_names, list): + assert len(output_names) == len( + onnx_proto.graph.output + ), "The provided output names are inconsistent with the output number of the onnx model when output_names is list" + origin_output_names = [] + for i in range(len(onnx_proto.graph.output)): + origin_output_names.append(onnx_proto.graph.output[i].name) + onnx_proto.graph.output[i].name = output_names[i] + + for i in range(len(onnx_proto.graph.node)): + node = onnx_proto.graph.node[i] + # Prevent changed names from being changed again + output_visited_node = [] + input_visited_node = [] + for j in range(len(origin_output_names)): + if origin_output_names[j] in node.output: + index = self.find_index(node.output, + origin_output_names[j]) + if index in output_visited_node: + continue + output_visited_node.append(index) + onnx_proto.graph.node[i].output[index] = output_names[j] + if origin_output_names[j] in node.input: + index = self.find_index(node.input, + origin_output_names[j]) + if index in input_visited_node: + continue + input_visited_node.append(index) + onnx_proto.graph.node[i].input[index] = output_names[j] + if isinstance(output_names, dict): + for i in range(len(onnx_proto.graph.output)): + for key, value in output_names.items(): + if onnx_proto.graph.output[i].name == key: + onnx_proto.graph.output[i].name = value + break + + for i in range(len(onnx_proto.graph.node)): + node = onnx_proto.graph.node[i] + # Prevent changed names from being changed again + output_visited_node = [] + input_visited_node = [] + for key, value in output_names.items(): + if key in node.output: + index = self.find_index(node.output, key) + if index in output_visited_node: + continue + output_visited_node.append(index) + onnx_proto.graph.node[i].output[index] = value + if key in node.input: + index = self.find_index(node.input, key) + if index in input_visited_node: + continue + input_visited_node.append(index) + onnx_proto.graph.node[i].input[index] = value + + return onnx_proto + + def export_proto(self, enable_onnx_checker=False, output_names=None): + + op_nodes = [node.onnx_node for node in self.node_map.values()] + weight_nodes = [node for node in self.parameters.values()] + + onnx_graph = helper.make_graph( + nodes=weight_nodes + op_nodes, + name='paddle-onnx', + initializer=[], + inputs=self.input_nodes, + outputs=self.output_nodes) + + opset_imports = [helper.make_opsetid("", self.opset_version)] + for custom_domain in self.custom: + opset_imports.append(helper.make_opsetid(custom_domain, 1)) + onnx_proto = helper.make_model( + onnx_graph, producer_name=PRODUCER, opset_imports=opset_imports) + if output_names is not None: + onnx_proto = self.change_output_names(onnx_proto, output_names) + + if enable_onnx_checker: + check_model(onnx_proto) + + return onnx_proto + + @staticmethod + def build(paddle_graph, + opset_version, + operator_export_type="ONNX", + verbose=False, + auto_update_opset=True): + onnx_graph = ONNXGraph( + paddle_graph, + opset_version=opset_version, + operator_export_type=operator_export_type, + auto_update_opset=auto_update_opset) + onnx_graph.build_parameters(paddle_graph.parameters) + onnx_graph.build_input_nodes(paddle_graph.input_nodes) + onnx_graph.build_output_nodes(paddle_graph.output_nodes) + onnx_graph.build_op_nodes(paddle_graph.node_map) + + return onnx_graph diff --git a/paddle2onnx/legacy/graph/paddle_graph.py b/paddle2onnx/legacy/graph/paddle_graph.py new file mode 100755 index 0000000000..7e2f2be7c4 --- /dev/null +++ b/paddle2onnx/legacy/graph/paddle_graph.py @@ -0,0 +1,303 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import os +import copy +import collections +import numpy as np +import paddle +from paddle import fluid +from paddle.fluid import dygraph +from paddle.fluid.framework import Operator +from paddle2onnx.legacy.graph import Node, Graph +from paddle2onnx.legacy.constant import NodeDomain +from paddle2onnx.utils import logging + + +class PaddleNode(Node): + def __init__(self, paddle_op, inputs, outputs, attrs, layer_name, block): + super(PaddleNode, self).__init__(paddle_op.type, inputs, outputs, attrs, + layer_name, NodeDomain.PADDLE) + self.paddle_op = paddle_op + self.block = block + + def __str__(self): + node_str = '' + attrs = '' + for key, value in self.attrs.items(): + if key == 'op_callstack': + continue + attrs += ', ' + key + '=' + str(value) + node_str += " {} = {}::{}(inputs={}{}) \n".format( + self.outputs, self.domain, self.type, self.inputs, attrs) + return node_str + + @property + def input_names(self): + return [name for name in self.inputs.keys()] + + @property + def output_names(self): + return [name for name in self.outputs.keys()] + + def input(self, name, idx=None): + if name not in self.inputs: + return None + if idx is None: + return self.inputs[name] + if len(self.inputs[name]) <= idx: + return None + return self.inputs[name][idx] + + def output(self, name, idx=None): + if idx is None: + return self.outputs[name] + return self.outputs[name][idx] + + def output_shape(self, name, idx): + return self.block.var(self.output(name, idx)).shape + + def input_shape(self, name, idx): + return self.block.var(self.input(name, idx)).shape + + def input_var(self, name, idx): + return self.block.var(self.input(name, idx)) + + def input_dtype(self, name, idx): + return self.block.var(self.input(name, idx)).dtype + + def output_dtype(self, name, idx): + return self.block.var(self.output(name, idx)).dtype + + def attr(self, name, default=None): + if name in self.attrs: + return self.attrs[name] + return default + + def set_inputs(self, inputs): + if isinstance(inputs, dict): + # input of node in paddle, which stored by dict + self.inputs = inputs + else: + raise TypeError('Inputs of node must be type: dict, but got {}'. + format(type(inputs))) + + def set_outputs(self, outputs): + if isinstance(outputs, dict): + # output of node in paddle, which stored by dict + self.outputs = outputs + else: + raise TypeError('Outputs of node must be type: dict, but got {}'. + format(type(outputs))) + + +class PaddleGraph(Graph): + def __init__(self, program, parameters, feed_var_names, fetch_vars): + super(PaddleGraph, self).__init__() + self.build_graph(program, parameters, feed_var_names, fetch_vars) + + def make_node(self, + op, + inputs=None, + outputs=None, + attrs=None, + block=None, + layer_name=None, + **kw): + if layer_name is None: + layer_name = self.generate_node_name(op.type) + + if attrs is None: + attrs = kw + attrs.update(kw) + + if inputs is None: + inputs = {} + if outputs is None: + outputs = {'Out': layer_name} + node = PaddleNode(op, inputs, outputs, attrs, layer_name, block) + self.insert_node(node) + return node + + def add_input_node(self, inputs, block=None): + for ipt in inputs: + # parse feed_names + layer_name = ipt + var = block.var(ipt) + attrs = {} + attrs['shape'] = var.shape + attrs['dtype'] = var.dtype + node = Node('feed', [], [layer_name], attrs, layer_name) + self.input_nodes.append(node) + + def add_output_node(self, outputs, block=None): + from paddle.fluid.framework import Variable + for opt in outputs: + # parse fetch_target_vars + layer_name = opt.name + attrs = {} + attrs['shape'] = opt.shape + attrs['dtype'] = opt.dtype + node = Node('fetch', [layer_name], [], attrs, layer_name) + self.output_nodes.append(node) + + def get_adjacency_map(self): + adjacency_map = {} + for layer_name, current_node in self.node_map.items(): + inputs = current_node.inputs.values() + inputs = [x for j in inputs for x in j] + for ipt in inputs: + for layer_name, node in self.node_map.items(): + if current_node == node: + continue + outputs = node.outputs.values() + outputs = [x for j in outputs for x in j] + if ipt in outputs: + if node not in adjacency_map: + adjacency_map[node] = set([current_node]) + else: + adjacency_map[node].add(current_node) + return adjacency_map + + def build_graph(self, + program, + parameters, + feed_var_names=None, + target_vars=None): + self.program = program + self.set_parameters(parameters) + self.add_input_node(feed_var_names, program.global_block()) + self.add_output_node(target_vars, program.global_block()) + for block in program.blocks: + for i, op in enumerate(block.ops): + if op.type in ['feed', 'fetch']: + continue + else: + inputs = {} + outputs = {} + for ipt in op.input_names: + inputs[ipt] = op.input(ipt) + for opt in op.output_names: + outputs[opt] = op.output(opt) + node = self.make_node(op, inputs, outputs, + op.all_attrs(), block) + + @staticmethod + def build_from_program(program, + feed_var_names=None, + fetch_vars=None, + scope=None): + parameters_dict = {} + vars = program.global_block().vars + for name in vars: + var = program.global_block().var(name) + if name.endswith('feed') or name.endswith('fetch'): + continue + if not var.persistable: + continue + parameters_dict[name] = { + 'data': np.array(scope.var(name).get_tensor()), + 'dtype': var.dtype, + 'shape': var.shape + } + + graph = PaddleGraph(program, parameters_dict, feed_var_names, + fetch_vars) + return graph + + @staticmethod + def build_from_dygraph(layer, input_spec=None, output_spec=None): + from paddle.nn import Layer + from paddle.fluid import core + from paddle.fluid.framework import Variable + from paddle2onnx.legacy.graph import dygraph_helper as dg_helper + if isinstance(layer, dygraph.TranslatedLayer): + program = layer.program() + parameters_dict = {} + pruned_vars = program.global_block().vars + for param in layer.parameters(): + if param.name.endswith('feed') or param.name.endswith('fetch'): + continue + if not param.persistable: + continue + if param.name in pruned_vars: + parameters_dict[param.name] = { + 'data': np.array(param.value().get_tensor()), + 'dtype': param.dtype, + 'shape': param.shape + } + for param in layer.buffers(): + if param.name.endswith('feed') or param.name.endswith('fetch'): + continue + if not param.value().get_tensor()._is_initialized(): + continue + if param.name in pruned_vars: + parameters_dict[param.name] = { + 'data': np.array(param.value().get_tensor()), + 'dtype': param.dtype, + 'shape': param.shape + } + if input_spec is not None: + logging.warning( + "Although input_spec is specified, TranslatedLayer is not support prune. An Complete network will be exported." + ) + input_spec = layer._input_spec() + if output_spec is not None: + logging.warning( + "Although output_spec is specified, TranslatedLayer is not support prune. An Complete network will be exported." + ) + feed_var_names = [ipt.name for ipt in layer._input_spec()] + fetch_vars = [ + program.global_block().var(opt.name) + for opt in layer._output_spec() + ] + graph = PaddleGraph(program, parameters_dict, feed_var_names, + fetch_vars) + return graph + elif isinstance(layer, Layer): + program, feed_var_names, fetch_vars = dg_helper.get_program( + layer, input_spec, output_spec) + parameters_dict = {} + pruned_vars = program.global_block().vars + for param in layer.parameters(): + if param.name.endswith('feed') or param.name.endswith('fetch'): + continue + if not param.persistable: + continue + if param.name in pruned_vars: + parameters_dict[param.name] = { + 'data': np.array(param.value().get_tensor()), + 'dtype': param.dtype, + 'shape': param.shape + } + for param in layer.buffers(): + if param.name.endswith('feed') or param.name.endswith('fetch'): + continue + if not param.value().get_tensor()._is_initialized(): + continue + if param.name in pruned_vars: + parameters_dict[param.name] = { + 'data': np.array(param.value().get_tensor()), + 'dtype': param.dtype, + 'shape': param.shape + } + graph = PaddleGraph(program, parameters_dict, feed_var_names, + fetch_vars) + return graph + else: + raise TypeError( + "The input Layer should be 'Layer' or 'TranslatedLayer', but received type is %s." + % type(layer)) diff --git a/paddle2onnx/legacy/op_mapper/__init__.py b/paddle2onnx/legacy/op_mapper/__init__.py new file mode 100644 index 0000000000..78792e8f2d --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/__init__.py @@ -0,0 +1,39 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +from .op_mapper import OpMapper, register_op_mapper, CustomPaddleOp, register_custom_paddle_op + +from . import nn +from . import math +from . import activation +from . import tensor +from . import logic +from . import search + +from .detection import yolo_box +from .detection import multiclass_nms +from .detection import prior_box +from .detection import density_prior_box +from .detection import box_coder +from .sequence import im2sequence + +from .custom_paddle_op import deformable_conv +from .custom_paddle_op import anchor_generator +from .custom_paddle_op import generate_proposals +from .custom_paddle_op import collect_fpn_proposals +from .custom_paddle_op import distribute_fpn_proposals +from .custom_paddle_op import box_clip +from .custom_paddle_op import grid_sampler diff --git a/paddle2onnx/legacy/op_mapper/activation.py b/paddle2onnx/legacy/op_mapper/activation.py new file mode 100755 index 0000000000..bda17016ee --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/activation.py @@ -0,0 +1,269 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import math +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper +import paddle + + +@op_mapper( + ['relu', 'tanh', 'log', 'sigmoid', 'sqrt'], + mapper_dict={ + 'relu': 'Relu', + 'tanh': 'Tanh', + 'log': 'Log', + 'sigmoid': 'Sigmoid', + 'sqrt': 'Sqrt', + }) +class ActivationOps(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + onnx_type = kw['mapper_dict'][node.type] + onnx_node = graph.make_node( + onnx_type, inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('silu') +class Silu(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x = node.input('X')[0] + out = graph.make_node('Sigmoid', inputs=[x]) + graph.make_node('Mul', inputs=[x, out], outputs=node.output('Out')) + +@op_mapper('leaky_relu') +class LeakyRelu(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'LeakyRelu', + inputs=[node.input('X')[0]], + outputs=node.output('Out'), + alpha=node.attr('alpha')) + + +@op_mapper('softplus') +class Softplus(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + beta = node.attr('beta') + threshold = node.attr('threshold') + if np.isclose(beta, 1.0, 1e-06, 1e-06) and \ + np.isclose(threshold, 20.0, 1e-06, 1e-06): + onnx_node = graph.make_node( + 'Softplus', + inputs=[node.input('X')[0]], + outputs=node.output('Out')) + else: + raise Exception("[ERROR] Operator softplus " \ + "only supported while beta==1.0 and threshold==20.0") + + +@op_mapper('prelu') +class PRelu(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + slope_shape = node.input_shape('Alpha', 0) + input_shape = node.input_shape('X', 0) + + slope_node = node.input('Alpha')[0] + if len(input_shape) != len(slope_shape): + assert len( + slope_shape) == 1, "Slope shape is not expected for prelu" + broadcast_shape = [-1] + [1] * (len(input_shape) - 2) + broadcast_shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=broadcast_shape) + slope_node = graph.make_node( + 'Reshape', inputs=[node.input('Alpha')[0], broadcast_shape]) + x = node.input('X')[0] + x_dtype = node.input_dtype('X', 0) + slope_dtype = node.input_dtype('Alpha', 0) + if slope_dtype != paddle.float32: + slope_node = graph.make_node( + 'Cast', inputs=[slope_node], to=dtypes.ONNX.FLOAT) + if x_dtype != paddle.float32: + x = graph.make_node('Cast', inputs=[x], to=dtypes.ONNX.FLOAT) + onnx_node = graph.make_node('PRelu', inputs=[x, slope_node]) + graph.make_node( + 'Cast', + inputs=[onnx_node], + outputs=node.output('Out'), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + onnx_node = graph.make_node( + 'PRelu', inputs=[x, slope_node], outputs=node.output('Out')) + + +@op_mapper('relu6') +class Relu6(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + mapper_helper.clip_helper(graph, node, + node.input('X', 0), + node.attr('threshold'), 0.0, + node.output('Out', 0)) + + +@op_mapper('gelu') +class Gelu(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + input = node.input('X', 0) + x_dtype = node.input_dtype('X', 0) + # onnxruntime only support float32 Erf + if x_dtype != paddle.float32: + input = graph.make_node( + 'Cast', inputs=[input], to=dtypes.ONNX.FLOAT) + sqrt2 = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[1.4142135623730951]) + zero_point_five = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[0.5]) + one = graph.make_node('Constant', dtype=dtypes.ONNX.FLOAT, value=[1]) + x = graph.make_node('Div', inputs=[input, sqrt2]) + x = graph.make_node('Erf', inputs=x) + x = graph.make_node('Add', inputs=[x, one]) + x = graph.make_node('Mul', inputs=[input, x]) + if x_dtype != paddle.float32: + mul_node = graph.make_node('Mul', inputs=[x, zero_point_five]) + graph.make_node( + 'Cast', + inputs=[mul_node], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + outputs=node.output('Out')) + else: + graph.make_node( + 'Mul', inputs=[x, zero_point_five], outputs=node.output('Out')) + + +@op_mapper('selu') +class Selu(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + graph.make_node( + 'Selu', + inputs=node.input('X'), + alpha=node.attr('alpha'), + gamma=node.attr('scale'), + outputs=node.output('Out')) + + +@op_mapper('hard_sigmoid') +class HardSigmoid(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + slope = node.attr('slope') + offset = node.attr('offset') + graph.make_node( + 'HardSigmoid', + inputs=node.input('X'), + outputs=node.output('Out'), + alpha=slope, + beta=offset) + + +@op_mapper('swish') +class Swish(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x = node.input('X')[0] + if math.fabs(node.attr("beta") - 1.0) > 1e-05: + beta_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': [node.attr('beta')]}) + x = graph.make_node( + 'Mul', inputs=[x, beta_node]) + sigmoid_node = graph.make_node('Sigmoid', inputs=[x]) + graph.make_node( + 'Mul', + inputs=[x, sigmoid_node], + outputs=node.output('Out')) + + +@op_mapper('mish') +class Mish(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + inputs = node.input('X', 0) + dtype = node.input_dtype("X", 0) + if dtype != paddle.float32: + inputs = graph.make_node( + 'Cast', inputs=[inputs], to=dtypes.ONNX.FLOAT) + dtype = paddle.float32 + threshold = node.attr('threshold') + assert np.fabs( + threshold - 20 + ) < 1e-4, "In mish OP, the threshold only supports 20, no other values are supported" + softplus_node = graph.make_node('Softplus', inputs=[inputs]) + tanh_node = graph.make_node('Tanh', inputs=[softplus_node]) + if node.input_dtype("X", 0) != paddle.float32: + mul_node = graph.make_node('Mul', inputs=[inputs, tanh_node]) + inputs = graph.make_node( + 'Cast', + inputs=[mul_node], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype("X", 0)], + outputs=node.output('Out')) + else: + graph.make_node( + 'Mul', inputs=[inputs, tanh_node], outputs=node.output('Out')) + + +@op_mapper('hard_swish') +class HardSwish(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + scale_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': node.attr('scale')}) + offset_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': node.attr('offset')}) + + node0 = graph.make_node('Add', inputs=[node.input('X')[0], offset_node]) + node1 = mapper_helper.clip_helper(graph, node, node0, + node.attr('threshold'), 0.0) + node2 = graph.make_node('Mul', inputs=[node.input('X')[0], node1]) + node3 = graph.make_node( + 'Div', inputs=[node2, scale_node], outputs=node.output('Out')) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/__init__.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/__init__.py new file mode 100644 index 0000000000..847ddc47ac --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/__init__.py @@ -0,0 +1,13 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/anchor_generator.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/anchor_generator.py new file mode 100755 index 0000000000..3f7517a798 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/anchor_generator.py @@ -0,0 +1,97 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + +class AnchorGenerator(CustomPaddleOp): + def __init__(self, node, **kw): + super(AnchorGenerator, self).__init__(node) + #self.x_shape = node.input_shape('Input', 0) + self.anchor_sizes = node.attr('anchor_sizes') + self.aspect_ratios = node.attr('aspect_ratios') + self.offset = node.attr('offset') + self.strides = node.attr('stride') + self.variances = node.attr('variances') + self.shapes = self.compute_shapes() + + def compute_shapes(self): + shapes = list() + for r in range(len(self.aspect_ratios)): + ar = self.aspect_ratios[r] + for s in range(len(self.anchor_sizes)): + anchor_size = self.anchor_sizes[s] + area = self.strides[0] * self.strides[1] + area_ratios = area / ar + base_w = np.floor(np.sqrt(area_ratios) + 0.5) + base_h = np.floor(base_w * ar + 0.5) + scale_w = anchor_size / self.strides[0] + scale_h = anchor_size / self.strides[1] + w = scale_w * base_w + h = scale_h * base_h + shapes.append([ + -0.5 * (w - 1), -0.5 * (h - 1), 0.5 * (w - 1), 0.5 * (h - 1) + ]) + return shapes + + def forward(self): + input_feature = self.input('Input', 0) + input_shape = paddle.shape(input_feature) + n, c, h, w = paddle.tensor.split(input_shape, num_or_sections=4) + x_ctr = paddle.arange(start=0, end=w, step=1, dtype=input_feature.dtype) + y_ctr = paddle.arange(start=0, end=h, step=1, dtype=input_feature.dtype) + x_ctr = x_ctr * self.strides[0] + self.offset * (self.strides[0] - 1) + y_ctr = y_ctr * self.strides[1] + self.offset * (self.strides[1] - 1) + tensor_one = paddle.ones(shape=[1], dtype='int64') + tensor_len_shape = paddle.full( + shape=[1], fill_value=len(self.shapes), dtype='int64') + x_ctr = paddle.reshape(x_ctr, shape=(1, -1)) + y_ctr = paddle.reshape(y_ctr, shape=(1, -1)) + x_ctr = paddle.tile(x_ctr, repeat_times=(h, tensor_one)) + y_ctr = paddle.tile(y_ctr, repeat_times=(w, tensor_one)) + y_ctr = paddle.transpose(y_ctr, perm=[1, 0]) + centers = paddle.stack([x_ctr, y_ctr], axis=-1) + centers = paddle.tensor.unsqueeze(centers, axis=[2]) + centers = paddle.tile(centers, repeat_times=(1, 1, len(self.shapes), 2)) + shape_tensor = paddle.assign(np.array(self.shapes).astype('float32')) + anchors = centers + shape_tensor + variance_tensor = paddle.assign( + np.asarray(self.variances).astype('float32')) + vars = paddle.reshape(variance_tensor, shape=[1, 1, 1, -1]) + vars = paddle.tile( + vars, repeat_times=(h, w, tensor_len_shape, tensor_one)) + return {'Anchors': [anchors], 'Variances': [vars]} + +@op_mapper('anchor_generator') +class Anchors_generator: + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'anchor_generator', + inputs=node.input('Input'), + outputs=node.output('Anchors') + node.output('Variances'), + anchor_sizes = node.attr('anchor_sizes'), + aspect_ratios = node.attr('aspect_ratios'), + offset = node.attr('offset'), + strides = node.attr('stride'), + variances = node.attr('variances'), + domain = 'custom') + +register_custom_paddle_op('anchor_generator', AnchorGenerator) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/box_clip.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/box_clip.py new file mode 100755 index 0000000000..e201c63483 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/box_clip.py @@ -0,0 +1,56 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + +class BoxClip(CustomPaddleOp): + def __init__(self, node, **kw): + super(BoxClip, self).__init__(node) + + def forward(self): + input = self.input('Input', 0) + im_info = self.input('ImInfo', 0) + im_info = paddle.reshape(im_info, shape=[3]) + h, w, s = paddle.tensor.split(im_info, axis=0, num_or_sections=3) + tensor_one = paddle.full(shape=[1], dtype='float32', fill_value=1.0) + tensor_zero = paddle.full(shape=[1], dtype='float32', fill_value=0.0) + h = paddle.subtract(h, tensor_one) + w = paddle.subtract(w, tensor_one) + xmin, ymin, xmax, ymax = paddle.tensor.split( + input, axis=-1, num_or_sections=4) + xmin = paddle.maximum(paddle.minimum(xmin, w), tensor_zero) + ymin = paddle.maximum(paddle.minimum(ymin, h), tensor_zero) + xmax = paddle.maximum(paddle.minimum(xmax, w), tensor_zero) + ymax = paddle.maximum(paddle.minimum(ymax, h), tensor_zero) + cliped_box = paddle.concat([xmin, ymin, xmax, ymax], axis=-1) + + return {'Output': [cliped_box]} + +@op_mapper('box_clip') +class Boxclip: + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'box_clip', + inputs=node.input('Input')+node.input('ImInfo'), + outputs=node.output('Output'), + domain = 'custom') +register_custom_paddle_op('box_clip', BoxClip) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/collect_fpn_proposals.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/collect_fpn_proposals.py new file mode 100755 index 0000000000..1911939800 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/collect_fpn_proposals.py @@ -0,0 +1,55 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +class CollectFpnProposals(CustomPaddleOp): + def __init__(self, node, **kw): + super(CollectFpnProposals, self).__init__(node) + self.post_nms_top_n = node.attr('post_nms_topN') + + def forward(self): + multi_level_rois = self.input('MultiLevelRois') + multi_level_scores = self.input('MultiLevelScores') + multi_level_rois = paddle.concat(multi_level_rois, axis=0) + multi_level_scores = paddle.concat(multi_level_scores, axis=0) + proposal_num = paddle.shape(multi_level_scores)[0] + post_nms_top_n_tensor = paddle.assign( + np.array([self.post_nms_top_n]).astype('int32')) + k_candidate = paddle.concat([proposal_num, post_nms_top_n_tensor]) + k = paddle.min(k_candidate) + scores, index = paddle.topk(multi_level_scores, k=k, axis=0) + rois = paddle.gather(multi_level_rois, index, axis=0) + return {"FpnRois": [rois]} + +@op_mapper('collect_fpn_proposals') +class Collectfpnproposals: + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'collect_fpn_proposals', + inputs=node.input('MultiLevelRois')+ node.input('MultiLevelScores'), + outputs=node.output('FpnRois'), + post_nms_top_n = node.attr('post_nms_topN'), + domain = 'custom') + +register_custom_paddle_op('collect_fpn_proposals', CollectFpnProposals) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/deformable_conv.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/deformable_conv.py new file mode 100755 index 0000000000..0042cd758d --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/deformable_conv.py @@ -0,0 +1,296 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx import utils +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +class DeformConv2d(CustomPaddleOp): + def check_attribute(self, node): + utils.compare_attr_between_dims( + node.attr('strides'), (0, 1), 'strides', 'equal') + utils.compare_attr_between_dims( + node.attr('paddings'), (0, 1), 'paddings', 'equal') + utils.compare_attr_between_dims( + node.input_shape('Offset', 0), (2, 3), 'Offset', 'equal') + utils.compare_attr( + node.attr('deformable_groups'), 1, 'deformable_groups', 'equal') + + def __init__(self, node, **kw): + super(DeformConv2d, self).__init__(node) + self.check_attribute(node) + self.in_channel = node.input_shape('Input', 0)[1] + self.offset_channel = node.input_shape('Offset', 0)[1] + self.stride = node.attr('strides')[0] + self.padding = node.attr('paddings') + if len(self.padding) == 2: + self.padding += self.padding + self.groups = node.attr('groups') + self.dilation = node.attr('dilations')[0] + self.padded_x_h = node.input_shape('Input', 0)[2] + self.padded_x_w = node.input_shape('Input', 0)[3] + if self.padded_x_h > 0: + self.padded_x_h = self.padded_x_h + self.padding[0] + self.padding[1] + if self.padded_x_w > 0: + self.padded_x_w = self.padded_x_w + self.padding[2] + self.padding[3] + + self.kernel_size = node.input_shape('Filter', 0)[2] + self.N = self.kernel_size**2 + self.num_filters = node.input_shape('Filter', 0)[0] + + def forward(self): + input = self.input('Input', 0) + weight = self.input('Filter', 0) + mask = self.input('Mask', 0) + offset = self.input('Offset', 0) + + input = layers.pad2d(input, self.padding) + input_shape = paddle.shape(input) + if self.padded_x_h < 0 or self.padded_x_w < 0: + self.padded_x_h = input_shape[2] + self.padded_x_w = input_shape[3] + + offset_x = paddle.strided_slice( + offset, + axes=[1], + starts=[0], + ends=[self.offset_channel], + strides=[2]) + offset_y = paddle.strided_slice( + offset, + axes=[1], + starts=[1], + ends=[self.offset_channel], + strides=[2]) + offset = paddle.concat([offset_x, offset_y], axis=1) + offset_shape = paddle.shape(offset) + offset_h = offset_shape[2] + offset_w = offset_shape[3] + + coordinate = self.get_offset_coordinate(offset, 'float32', offset_shape) + + coordinate = coordinate.transpose((0, 2, 3, 1)) + coord_lt, coord_rb, coord_lb, coord_rt = self.get_bilinear_corner_coordinate( + coordinate, self.padded_x_h, self.padded_x_w) + + # clip coordinate + coordinate = paddle.concat( + [ + paddle.clip(coordinate[:, :, :, :self.N], 0, + self.padded_x_h - 1), + paddle.clip(coordinate[:, :, :, self.N:], 0, + self.padded_x_w - 1) + ], + axis=-1) + + cof_lt, cof_rb, cof_lb, cof_rt = self.get_bilinear_coefficient( + coord_lt, coord_rb, coord_lb, coord_rt, coordinate) + + feature_lt = self.get_feature_by_coordinate(input, coord_lt, offset_h, + offset_w, self.padded_x_w) + feature_rb = self.get_feature_by_coordinate(input, coord_rb, offset_h, + offset_w, self.padded_x_w) + feature_lb = self.get_feature_by_coordinate(input, coord_lb, offset_h, + offset_w, self.padded_x_w) + feature_rt = self.get_feature_by_coordinate(input, coord_rt, offset_h, + offset_w, self.padded_x_w) + + feature_after_deformation = paddle.unsqueeze(cof_lt, 1) * feature_lt + \ + paddle.unsqueeze(cof_rb, 1) * feature_rb + \ + paddle.unsqueeze(cof_lb, 1) * feature_lb + \ + paddle.unsqueeze(cof_rt, 1) * feature_rt + + # modulation + if mask is not None: + mask = paddle.transpose(mask, (0, 2, 3, 1)) + mask = paddle.unsqueeze(mask, 1) + mask = paddle.tile(mask, [1, self.in_channel, 1, 1, 1]) + feature_after_deformation *= mask + + feature_after_deformation = self.reshape_feature( + feature_after_deformation, offset_h, offset_w) + + out = paddle.nn.functional.conv2d( + feature_after_deformation, + weight, + stride=self.kernel_size, + groups=self.groups) + + return {'Output': [out]} + + def get_offset_coordinate(self, offset, dtype, offset_shape): + kernel_grid_origin_x = paddle.arange( + 0, + self.kernel_size + (self.kernel_size - 1) * (self.dilation - 1), + step=self.dilation, + dtype=dtype) + kernel_grid_origin_x = kernel_grid_origin_x.unsqueeze(1) + kernel_grid_origin_x = paddle.tile(kernel_grid_origin_x, + [1, self.kernel_size]) + kernel_grid_origin_y = paddle.arange( + 0, + self.kernel_size + (self.kernel_size - 1) * (self.dilation - 1), + step=self.dilation, + dtype=dtype) + kernel_grid_origin_y = kernel_grid_origin_y.unsqueeze(0) + kernel_grid_origin_y = paddle.tile(kernel_grid_origin_y, + [self.kernel_size, 1]) + kernel_grid_origin_x = paddle.reshape(kernel_grid_origin_x, [-1]) + kernel_grid_origin_y = paddle.reshape(kernel_grid_origin_y, [-1]) + kernel_grid_origin = paddle.concat( + [kernel_grid_origin_x, kernel_grid_origin_y], -1) + kernel_grid_origin = paddle.reshape(kernel_grid_origin, + (1, 2 * self.N, 1, 1)) + + kernel_offset_x = paddle.arange( + 0, offset_shape[2] * self.stride, step=self.stride, dtype=dtype) + kernel_offset_x = kernel_offset_x.unsqueeze(1) + kernel_offset_x = paddle.expand(kernel_offset_x, offset_shape[2:]) + kernel_offset_y = paddle.arange( + 0, offset_shape[3] * self.stride, step=self.stride, dtype=dtype) + kernel_offset_y = kernel_offset_y.unsqueeze(0) + kernel_offset_y = paddle.expand(kernel_offset_y, offset_shape[2:]) + kernel_offset_x = kernel_offset_x.unsqueeze([0, 1]) + kernel_offset_x = paddle.tile(kernel_offset_x, (1, self.N, 1, 1)) + kernel_offset_y = kernel_offset_y.unsqueeze([0, 1]) + kernel_offset_y = paddle.tile(kernel_offset_y, (1, self.N, 1, 1)) + + kernel_offset = paddle.concat([kernel_offset_x, kernel_offset_y], 1) + offset = offset + paddle.cast(kernel_offset, 'float32') + paddle.cast( + kernel_grid_origin, 'float32') + + return offset + + def get_bilinear_corner_coordinate(self, coord, padded_h, padded_w): + coord_lt = coord.floor() + coord_rb = coord_lt + 1 + coord_lt = paddle.cast( + paddle.concat( + [ + paddle.clip(coord_lt[:, :, :, :self.N], 0, padded_h - 1), + paddle.clip(coord_lt[:, :, :, self.N:], 0, padded_w - 1) + ], + axis=-1), + dtype='int64') + coord_rb = paddle.cast( + paddle.concat( + [ + paddle.clip(coord_rb[:, :, :, :self.N], 0, padded_h - 1), + paddle.clip(coord_rb[:, :, :, self.N:], 0, padded_w - 1) + ], + axis=-1), + dtype='int64') + coord_lb = paddle.concat( + [coord_lt[:, :, :, :self.N], coord_rb[:, :, :, self.N:]], axis=-1) + coord_rt = paddle.concat( + [coord_rb[:, :, :, :self.N], coord_lt[:, :, :, self.N:]], axis=-1) + + return coord_lt, coord_rb, coord_lb, coord_rt + + def get_bilinear_coefficient(self, coord_lt, coord_rb, coord_lb, coord_rt, + p): + cof_lt = (1 + (paddle.cast( + coord_lt[:, :, :, :self.N], dtype='float32') - p[:, :, :, :self.N]) + ) * (1 + paddle.cast( + coord_lt[:, :, :, self.N:], dtype='float32') - + p[:, :, :, self.N:]) + cof_rb = (1 - (paddle.cast( + coord_rb[:, :, :, :self.N], dtype='float32') - p[:, :, :, :self.N]) + ) * (1 - (paddle.cast( + coord_rb[:, :, :, self.N:], dtype='float32') - + p[:, :, :, self.N:])) + cof_lb = (1 + (paddle.cast( + coord_lb[:, :, :, :self.N], dtype='float32') - p[:, :, :, :self.N]) + ) * (1 - (paddle.cast( + coord_lb[:, :, :, self.N:], dtype='float32') - + p[:, :, :, self.N:])) + cof_rt = (1 - (paddle.cast( + coord_rt[:, :, :, :self.N], dtype='float32') - p[:, :, :, :self.N]) + ) * (1 + paddle.cast( + coord_rt[:, :, :, self.N:], dtype='float32') - + p[:, :, :, self.N:]) + + return cof_lt, cof_rb, cof_lb, cof_rt + + def get_feature_by_coordinate(self, x, coord, offset_h, offset_w, + padded_x_w): + x = paddle.reshape(x, [0, 0, -1]) + index = paddle.cast( + coord[:, :, :, :self.N] * padded_x_w, + dtype='int64') + coord[:, :, :, self.N:] # offset_x*w + offset_y + index = paddle.unsqueeze(index, 1) + index = paddle.tile(index, [1, self.in_channel, 1, 1, 1]) + index = paddle.reshape(index, (0, 0, -1)) + x_range = list(range(3)) + dim = 2 + x_range[0] = dim + x_range[dim] = 0 + x_swaped = paddle.transpose(x, perm=x_range) + index_range = list(range(3)) + index_range[0] = dim + index_range[dim] = 0 + index_swaped = paddle.transpose(index, perm=index_range) + x_shape = layers.shape(x_swaped) + index_shape = layers.shape(index_swaped) + prod = paddle.prod(x_shape[1:], keepdim=True) + x_swaped_flattend = paddle.reshape(x_swaped, [-1]) + index_swaped_flattend = paddle.reshape(index_swaped, [-1]) + index_swaped_flattend *= prod + bias = paddle.arange(start=0, end=prod, step=1, dtype='float32') + bias = paddle.tile(bias, index_shape[0]) + index_swaped_flattend += bias + gathered = paddle.gather(x_swaped_flattend, index_swaped_flattend) + gathered = paddle.reshape(gathered, layers.shape(index_swaped)) + x_offset = paddle.transpose(gathered, perm=x_range) + x_offset = paddle.reshape( + x_offset, (-1, self.in_channel, offset_h, offset_w, self.N)) + return x_offset + + def reshape_feature(self, x_offset, offset_h, offset_w): + x_offset = paddle.concat( + [ + paddle.reshape(x_offset[:, :, :, :, s:s + self.kernel_size], ( + -1, self.in_channel, offset_h, offset_w * self.kernel_size)) + for s in range(0, self.N, self.kernel_size) + ], + axis=-1) + x_offset = paddle.reshape(x_offset, (-1, self.in_channel, + offset_h * self.kernel_size, + offset_w * self.kernel_size)) + return x_offset + +@op_mapper('deformable_conv') +class Deformconv2d: + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'deformable_conv', + inputs=node.input('Input')+node.input('Filter')+node.input('Mask')+node.input('Offset'), + outputs=node.output('Output'), + stride = node.attr('strides'), + padding = node.attr('paddings'), + groups = node.attr('groups'), + dilation = node.attr('dilations'), + deformable_groups = node.attr('deformable_groups'), + domain = 'custom') + +register_custom_paddle_op('deformable_conv', DeformConv2d) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/distribute_fpn_proposals.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/distribute_fpn_proposals.py new file mode 100755 index 0000000000..eaefd0d4f0 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/distribute_fpn_proposals.py @@ -0,0 +1,100 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +class DistributeFpnProposals(CustomPaddleOp): + def __init__(self, node, **kw): + super(DistributeFpnProposals, self).__init__(node) + self.max_level = node.attr('max_level') + self.min_level = node.attr('min_level') + self.refer_level = node.attr('refer_level') + self.refer_scale = node.attr('refer_scale') + self.pixel_offset = node.attr('pixel_offset') + + def bbox_area(self, boxes): + offset = 1 if self.pixel_offset else 0 + xmin, ymin, xmax, ymax = paddle.tensor.split( + boxes, axis=1, num_or_sections=4) + width = xmax - xmin + offset + height = ymax - ymin + offset + areas = width * height + return areas + + def forward(self): + fpn_rois = self.input('FpnRois', 0) + areas = self.bbox_area(fpn_rois) + scale = paddle.sqrt(areas) + num_level = self.max_level - self.min_level + 1 + target_level = paddle.log(scale / self.refer_scale + 1e-06) / np.log(2) + target_level = paddle.floor(self.refer_level + target_level) + target_level = paddle.clip( + target_level, min=self.min_level, max=self.max_level) + + rois = list() + rois_idx_order = list() + rois_num_per_level = list() + + for level in range(self.min_level, self.max_level + 1): + level_tensor = paddle.full_like(target_level, fill_value=level) + res = paddle.equal(target_level, level_tensor) + res = paddle.squeeze(res, axis=1) + res = paddle.cast(res, dtype='int32') + index = paddle.nonzero(res) + roi = paddle.gather(fpn_rois, index, axis=0) + rois.append(roi) + rois_idx_order.append(index) + rois_num_per_level.append(paddle.shape(roi)[0]) + rois_idx_order = paddle.concat(rois_idx_order, axis=0) + size = paddle.shape(rois_idx_order)[0] + _, rois_idx_restore = paddle.topk( + rois_idx_order, axis=0, sorted=True, largest=False, k=size) + + rois_idx_restore = paddle.cast(rois_idx_restore, dtype='int32') + if len(self.input('RoisNum')) > 0: + # trick: to keep rois num + rois_num_per_level[0] += self.input('RoisNum', 0) * 0 + return { + 'MultiFpnRois': rois, + 'RestoreIndex': [rois_idx_restore], + 'MultiLevelRoIsNum': rois_num_per_level + } + else: + return {'MultiFpnRois': rois, 'RestoreIndex': [rois_idx_restore]} + + +@op_mapper('distribute_fpn_proposals') +class Distributefpnproposals: + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'distribute_fpn_proposals', + inputs=node.input('FpnRois'), + outputs=node.output('MultiFpnRois') + node.output('RestoreIndex'), + max_level=node.attr('max_level'), + min_level=node.attr('min_level'), + refer_level=node.attr('refer_level'), + refer_scale=node.attr('refer_scale'), + domain='custom') + + +register_custom_paddle_op('distribute_fpn_proposals', DistributeFpnProposals) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/generate_proposals.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/generate_proposals.py new file mode 100755 index 0000000000..f1ae448d42 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/generate_proposals.py @@ -0,0 +1,223 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +import math +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + +BBOX_CLIP_DEFAULT = math.log(1000.0 / 16.0) + + +class GenerateProposals(CustomPaddleOp): + def __init__(self, node, **kw): + paddle.enable_static() + super(GenerateProposals, self).__init__(node) + self.eta = node.attr('eta') + self.min_size = node.attr('min_size') + self.nms_thresh = node.attr('nms_thresh') + self.post_nms_topN = node.attr('post_nms_topN') + self.pre_nms_topN = node.attr('pre_nms_topN') + self.type = node.type + if self.type == 'generate_proposals_v2': + self.pixel_offset = node.attr('pixel_offset') + else: + self.pixel_offset = True + + def filter_boxes(self, boxes, im_w, im_h, im_s, min_size): + min_size = max(min_size, 1.0) + xmin, ymin, xmax, ymax = paddle.tensor.split( + boxes, axis=1, num_or_sections=4) + x_ctr = (xmax + xmin) / 2 + 0.5 + y_ctr = (ymax + ymin) / 2 + 0.5 + ws = (xmax - xmin) / im_s + 1 + hs = (ymax - ymin) / im_s + 1 + + min_size = np.asarray([min_size], dtype='float32') + min_size = paddle.assign(min_size) + valid_flag_ws = paddle.greater_equal(ws, min_size) + valid_flag_hs = paddle.greater_equal(hs, min_size) + valid_flag_x = paddle.less_equal(x_ctr, im_w) + valid_flag_y = paddle.less_equal(y_ctr, im_h) + valid_flag = paddle.logical_and(valid_flag_ws, valid_flag_hs) + valid_flag = paddle.logical_and(valid_flag, valid_flag_x) + valid_flag = paddle.logical_and(valid_flag, valid_flag_y) + valid_flag = paddle.squeeze(valid_flag, axis=1) + valid_inds = paddle.nonzero(valid_flag) + + return valid_inds + + def filter_boxes_v2(self, boxes, im_w, im_h, min_size, pixel_offset=True): + min_size = max(min_size, 1.0) + xmin, ymin, xmax, ymax = paddle.tensor.split( + boxes, axis=1, num_or_sections=4) + + offset = 1 if pixel_offset else 0 + ws = (xmax - xmin) + offset + hs = (ymax - ymin) + offset + + min_size = np.asarray([min_size], dtype='float32') + min_size = paddle.assign(min_size) + valid_flag_ws = paddle.greater_equal(ws, min_size) + valid_flag_hs = paddle.greater_equal(hs, min_size) + valid_flag = paddle.logical_and(valid_flag_ws, valid_flag_hs) + if pixel_offset: + x_ctr = xmin + ws / 2 + y_ctr = ymin + hs / 2 + valid_flag_x = paddle.less_equal(x_ctr, im_w) + valid_flag_y = paddle.less_equal(y_ctr, im_h) + valid_flag = paddle.logical_and(valid_flag, valid_flag_x) + valid_flag = paddle.logical_and(valid_flag, valid_flag_y) + + valid_flag = paddle.squeeze(valid_flag, axis=1) + valid_inds = paddle.nonzero(valid_flag) + return valid_inds + + def clip_tiled_boxes(self, im_w, im_h, input_boxes, pixel_offset=True): + offset = 1 if pixel_offset else 0 + xmin, ymin, xmax, ymax = paddle.tensor.split( + input_boxes, axis=1, num_or_sections=4) + xmin = paddle.clip(xmin, max=im_w - offset, min=0) + ymin = paddle.clip(ymin, max=im_h - offset, min=0) + xmax = paddle.clip(xmax, max=im_w - offset, min=0) + ymax = paddle.clip(ymax, max=im_h - offset, min=0) + input_boxes = paddle.concat([xmin, ymin, xmax, ymax], axis=1) + return input_boxes + + def box_encode(self, anchors, bbox_deltas, variances, pixel_offset=True): + offset = 1 if pixel_offset else 0 + anchor_xmin, anchor_ymin, anchor_xmax, anchor_ymax = paddle.tensor.split( + anchors, axis=1, num_or_sections=4) + anchor_width = anchor_xmax - anchor_xmin + offset + anchor_height = anchor_ymax - anchor_ymin + offset + anchor_center_x = anchor_xmin + 0.5 * anchor_width + anchor_center_y = anchor_ymin + 0.5 * anchor_height + var_center_x, var_center_y, var_width, var_height = paddle.tensor.split( + variances, axis=1, num_or_sections=4) + delta_center_x, delta_center_y, delta_width, delta_height = paddle.tensor.split( + bbox_deltas, axis=1, num_or_sections=4) + + bbox_center_x = var_center_x * delta_center_x * anchor_width + anchor_center_x + bbox_center_y = var_center_y * delta_center_y * anchor_height + anchor_center_y + bbox_width = paddle.exp( + paddle.clip( + var_width * delta_width, max=BBOX_CLIP_DEFAULT)) * anchor_width + bbox_height = paddle.exp( + paddle.clip( + var_height * delta_height, + max=BBOX_CLIP_DEFAULT)) * anchor_height + + proposal_xmin = bbox_center_x - bbox_width / 2 + proposal_ymin = bbox_center_y - bbox_height / 2 + proposal_xmax = bbox_center_x + bbox_width / 2 - offset + proposal_ymax = bbox_center_y + bbox_height / 2 - offset + proposal = paddle.concat( + [proposal_xmin, proposal_ymin, proposal_xmax, proposal_ymax], + axis=1) + return proposal + + def proposal_for_single_sample(self, anchors, bbox_deltas, im_info, scores, + variances): + proposal_num = paddle.shape(scores)[0] + pre_nms_top_n_tensor = paddle.assign( + np.asarray( + [self.pre_nms_topN], dtype='int32')) + k_candidate = paddle.concat([proposal_num, pre_nms_top_n_tensor]) + k = paddle.min(k_candidate) + scores, index = paddle.topk(scores, k=k, axis=0) + bbox_deltas = paddle.gather(bbox_deltas, index, axis=0) + anchors = paddle.gather(anchors, index, axis=0) + variances = paddle.gather(variances, index, axis=0) + + proposal = self.box_encode(anchors, bbox_deltas, variances, + self.pixel_offset) + if self.type == "generate_proposals_v2": + im_h, im_w = paddle.tensor.split(im_info, axis=1, num_or_sections=2) + else: + im_h, im_w, im_s = paddle.tensor.split( + im_info, axis=1, num_or_sections=3) + proposal = self.clip_tiled_boxes(im_w, im_h, proposal, + self.pixel_offset) + + if self.type == "generate_proposals_v2": + keep = self.filter_boxes_v2(proposal, im_w, im_h, self.min_size, + self.pixel_offset) + else: + keep = self.filter_boxes(proposal, im_w, im_h, im_s, self.min_size) + + tail_proposal = paddle.zeros(shape=[1, 4], dtype=proposal.dtype) + proposal_num = paddle.shape(proposal)[0] + tail_keep = paddle.reshape(proposal_num, shape=[1, 1]) + tail_keep = paddle.cast(tail_keep, dtype=keep.dtype) + tail_scores = paddle.zeros(shape=[1, 1], dtype=scores.dtype) + # proposal = paddle.concat([proposal, tail_proposal]) + # keep = paddle.concat([keep, tail_keep]) + # scores = paddle.concat([scores, tail_scores]) + + bbox_sel = paddle.gather(proposal, keep, axis=0) + scores_sel = paddle.gather(scores, keep, axis=0) + proposal = paddle.unsqueeze(bbox_sel, axis=0) + scores = paddle.transpose(scores_sel, perm=[1, 0]) + scores = paddle.unsqueeze(scores, axis=0) + out = layers.multiclass_nms( + proposal, + scores, + background_label=-1, + nms_top_k=self.pre_nms_topN, + score_threshold=-10000., + keep_top_k=self.post_nms_topN, + nms_threshold=self.nms_thresh, + normalized=False if self.pixel_offset else True, + nms_eta=self.eta) + label, scores, proposal = paddle.tensor.split( + out, axis=1, num_or_sections=[1, 1, 4]) + return scores, proposal + + def forward(self): + anchors = self.input('Anchors', 0) + bboxdeltas = self.input('BboxDeltas', 0) + if self.type == 'generate_proposals_v2': + iminfo = self.input('ImShape', 0) + else: + iminfo = self.input('ImInfo', 0) + scores = self.input('Scores', 0) + variances = self.input('Variances', 0) + + bboxdeltas = paddle.transpose(bboxdeltas, perm=[0, 2, 3, 1]) + bboxdeltas = paddle.reshape(bboxdeltas, [-1, 4]) + scores = paddle.transpose(scores, perm=[0, 2, 3, 1]) + scores = paddle.reshape(scores, [-1, 1]) + anchors = paddle.reshape(anchors, [-1, 4]) + variances = paddle.reshape(variances, [-1, 4]) + + new_scores, proposals = self.proposal_for_single_sample( + anchors, bboxdeltas, iminfo, scores, variances) + if len(self.node.outputs) == 3: + rois_num = paddle.shape(new_scores)[0] + return { + 'RpnRoiProbs': [new_scores], + 'RpnRois': [proposals], + 'RpnRoisNum': [rois_num] + } + else: + return {'RpnRoiProbs': [new_scores], 'RpnRois': [proposals]} + + +register_custom_paddle_op('generate_proposals', GenerateProposals) +register_custom_paddle_op('generate_proposals_v2', GenerateProposals) diff --git a/paddle2onnx/legacy/op_mapper/custom_paddle_op/grid_sampler.py b/paddle2onnx/legacy/op_mapper/custom_paddle_op/grid_sampler.py new file mode 100755 index 0000000000..4191cbb53b --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/custom_paddle_op/grid_sampler.py @@ -0,0 +1,151 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import paddle +from paddle.fluid import layers +from paddle2onnx.legacy.op_mapper import CustomPaddleOp, register_custom_paddle_op +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +class GridSampler(CustomPaddleOp): + def __init__(self, node, **kw): + super(GridSampler, self).__init__(node) + self.padding_mode = node.attr('padding_mode') + self.mode = node.attr('mode') + self.align_corners = node.attr('align_corners') + + def paddle_bilinear_grid_sample(self, im, grid, align_corners=False): + # this code reference: https://mmcv.readthedocs.io/en/latest/_modules/mmcv/ops/point_sample.html + im_shape = paddle.shape(im) + n, c, h, w = paddle.split(im_shape, num_or_sections=4) + grid_shape = paddle.shape(grid) + gn, gh, gw, _ = paddle.split(grid_shape, num_or_sections=4) + + # n, c, h, w = im.shape + # gn, gh, gw, _ = grid.shape + # assert n == gn + + x = grid[:, :, :, 0] + y = grid[:, :, :, 1] + + if align_corners: + x = ((x + 1) / 2) * (w - 1) + y = ((y + 1) / 2) * (h - 1) + else: + x = ((x + 1) * w - 1) / 2 + y = ((y + 1) * h - 1) / 2 + + x = paddle.reshape(x, [n, -1]) + y = paddle.reshape(y, [n, -1]) + + x0 = paddle.floor(x).astype('int64') + y0 = paddle.floor(y).astype('int64') + x1 = x0 + 1 + y1 = y0 + 1 + + x1_cast = x1.astype(grid.dtype) + x0_cast = x0.astype(grid.dtype) + y1_cast = y1.astype(grid.dtype) + y0_cast = y0.astype(grid.dtype) + wa = paddle.unsqueeze(((x1_cast - x) * (y1_cast - y)), 1) + wb = paddle.unsqueeze(((x1_cast - x) * (y - y0_cast)), 1) + wc = paddle.unsqueeze(((x - x0_cast) * (y1_cast - y)), 1) + wd = paddle.unsqueeze(((x - x0_cast) * (y - y0_cast)), 1) + + # Apply default for grid_sample function zero padding + im_padded = paddle.nn.functional.pad(im, + pad=[1, 1, 1, 1], + mode='constant', + value=0) + if im_padded.dtype != im.dtype: + im_padded = paddle.cast(im_padded, im.dtype) + padded_h = h + 2 + padded_w = w + 2 + # save points positions after padding + x0, x1, y0, y1 = x0 + 1, x1 + 1, y0 + 1, y1 + 1 + + # Clip coordinates to padded image size + tensor_zero = paddle.full(shape=[1], dtype='int64', fill_value=0.0) + tensor_padded_w = paddle.full( + shape=[1], dtype='int64', fill_value=padded_w - 1) + tensor_padded_h = paddle.full( + shape=[1], dtype='int64', fill_value=padded_h - 1) + x0 = paddle.where(x0 < 0, tensor_zero, x0) + x0 = paddle.where(x0 > padded_w - 1, tensor_padded_w, x0) + x1 = paddle.where(x1 < 0, tensor_zero, x1) + x1 = paddle.where(x1 > padded_w - 1, tensor_padded_w, x1) + y0 = paddle.where(y0 < 0, tensor_zero, y0) + y0 = paddle.where(y0 > padded_h - 1, tensor_padded_h, y0) + y1 = paddle.where(y1 < 0, tensor_zero, y1) + y1 = paddle.where(y1 > padded_h - 1, tensor_padded_h, y1) + im_padded = paddle.reshape(im_padded, [n, c, -1]) + + x0_y0 = paddle.expand( + paddle.unsqueeze((x0 + y0 * padded_w), 1), [-1, c, -1]) + x0_y1 = paddle.expand( + paddle.unsqueeze((x0 + y1 * padded_w), 1), [-1, c, -1]) + x1_y0 = paddle.expand( + paddle.unsqueeze((x1 + y0 * padded_w), 1), [-1, c, -1]) + x1_y1 = paddle.expand( + paddle.unsqueeze((x1 + y1 * padded_w), 1), [-1, c, -1]) + + Ia = self.paddle_gather(im_padded, 2, x0_y0) + Ib = self.paddle_gather(im_padded, 2, x0_y1) + Ic = self.paddle_gather(im_padded, 2, x1_y0) + Id = self.paddle_gather(im_padded, 2, x1_y1) + + return paddle.reshape((Ia * wa + Ib * wb + Ic * wc + Id * wd), + [n, c, gh, gw]) + + def paddle_gather(self, x, dim, index): + # index_shape = index.shape + index_shape = paddle.shape(index) + x_shape = paddle.shape(x) + index_flatten = index.flatten() + if dim < 0: + dim = len(x.shape) + dim + nd_index = [] + for k in range(len(x.shape)): + if k == dim: + nd_index.append(index_flatten) + else: + reshape_shape = [1] * len(x.shape) + x_shape_k = x_shape[k] + # x_shape_k = x.shape[k] + reshape_shape[k] = x_shape_k + x_arange = paddle.arange(x_shape_k, dtype=index.dtype) + x_arange = x_arange.reshape(reshape_shape) + dim_index = paddle.expand(x_arange, index_shape).flatten() + nd_index.append(dim_index) + ind2 = paddle.transpose(paddle.stack(nd_index), [1, 0]).astype("int64") + paddle_out = paddle.gather_nd(x, ind2).reshape(index_shape) + return paddle_out + + def forward(self): + input = self.input('X', 0) + grid = self.input('Grid', 0) + if self.mode != 'bilinear' or self.padding_mode != 'zeros': + raise Exception( + "grid_sample only is supported with mode should be 'bilinear' and padding_mode should be 'zeros'" + ) + res = self.paddle_bilinear_grid_sample( + input, grid, align_corners=self.align_corners) + return {'Output': [res]} + + +register_custom_paddle_op('grid_sampler', GridSampler) diff --git a/paddle2onnx/legacy/op_mapper/detection/__init__.py b/paddle2onnx/legacy/op_mapper/detection/__init__.py new file mode 100644 index 0000000000..847ddc47ac --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/__init__.py @@ -0,0 +1,13 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. diff --git a/paddle2onnx/legacy/op_mapper/detection/box_coder.py b/paddle2onnx/legacy/op_mapper/detection/box_coder.py new file mode 100755 index 0000000000..6e8df722bc --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/box_coder.py @@ -0,0 +1,363 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +@op_mapper('box_coder') +class BoxCoder(): + """ + we use the decode the prior box to target box, + we just use the decode mode to transform this op. + """ + support_opset_verison_range = (7, 12) + + @classmethod + def opset_7(cls, graph, node, **kw): + input_names = node.input_names + + t_size = node.input_shape('TargetBox', 0) + p_size = node.input_shape('PriorBox', 0) + + # get the outout_name + result_name = node.output('OutputBox', 0) + # n is size of batch, m is boxes num of targe_boxes + n = t_size[0] + m = t_size[0] + + axis = int(node.attr('axis')) + + #norm + norm = bool(node.attr('box_normalized')) + + name_slice_x1 = node.output('OutputBox')[0] + "@x1" + name_slice_y1 = node.output('OutputBox')[0] + "@y1" + name_slice_x2 = node.output('OutputBox')[0] + "@x2" + name_slice_y2 = node.output('OutputBox')[0] + "@y2" + + #make onnx tensor to save the intermeidate reslut + name_slice_indices = [ + [node.output('OutputBox')[0] + "@slice_" + str(i)] + for i in range(1, 3) + ] + node_slice_indices = [None for i in range(1, 3)] + + # create the range(0, 4) const data to slice + for i in range(1, 3): + tmp_node = graph.make_node( + 'Constant', + inputs=[], + outputs=name_slice_indices[i - 1], + dtype=dtypes.ONNX.FLOAT, + dims=(), + value=[i]) + # make node split data + name_box_split = [ + name_slice_x1, name_slice_y1, name_slice_x2, name_slice_y2 + ] + split_shape = list(p_size) + split_shape[-1] = 1 + + node_split_prior_node = graph.make_node( + 'Split', + inputs=node.input('PriorBox'), + outputs=name_box_split, + axis=1) + + # make node get centor node for decode + final_outputs_vars = [] + if not norm: + name_centor_w_tmp = [node.output('OutputBox')[0] + "@centor_w_tmp"] + name_centor_h_tmp = [node.output('OutputBox')[0] + "@centor_h_tmp"] + node_centor_w_tmp = None + node_centor_h_tmp = None + name_centor_tmp_list = [name_centor_w_tmp, name_centor_h_tmp] + node_centor_tmp_list = [node_centor_w_tmp, node_centor_h_tmp] + + count = 2 + for (name, op_node) in zip(name_centor_tmp_list, + node_centor_tmp_list): + tmp_node = graph.make_node('Add', + inputs=[node.output('OutputBox')[0] + "@slice_" + str(1)]\ + + [name_box_split[count]], + outputs=name) + count = count + 1 + if not norm: + inputs_sub = [[name_centor_w_tmp[0], name_box_split[0]], + [name_centor_h_tmp[0], name_box_split[1]]] + else: + inputs_sub = [[name_box_split[2], name_box_split[0]], + [name_box_split[3], name_box_split[1]]] + outputs_sub = [result_name + "@pb_w", result_name + "@pb_h"] + for i in range(0, 2): + tmp_node = graph.make_node( + 'Sub', inputs=inputs_sub[i], outputs=[outputs_sub[i]]) + # according to prior_box height and weight to get centor x, y + name_half_value = [result_name + "@half_value"] + node_half_value = graph.make_node( + 'Constant', + inputs=[], + outputs=name_half_value, + dtype=dtypes.ONNX.FLOAT, + dims=(), + value=[0.5]) + outputs_half_wh = [[result_name + "@pb_w_half"], + [result_name + "@pb_h_half"]] + inputs_half_wh = [[result_name + "@pb_w", name_half_value[0]], + [result_name + "@pb_h", name_half_value[0]]] + + for i in range(0, 2): + tmp_node = graph.make_node( + 'Mul', inputs=inputs_half_wh[i], outputs=outputs_half_wh[i]) + + inputs_centor_xy = [[outputs_half_wh[0][0], name_slice_x1], + [outputs_half_wh[1][0], name_slice_y1]] + + outputs_centor_xy = [[result_name + "@pb_x"], [result_name + "@pb_y"]] + + # final calc the centor x ,y + for i in range(0, 2): + tmp_node = graph.make_node( + 'Add', inputs=inputs_centor_xy[i], outputs=outputs_centor_xy[i]) + # reshape the data + shape = (1, split_shape[0]) if axis == 0 else (split_shape[0], 1) + + # need to reshape the data + inputs_transpose_pb = [ + [result_name + "@pb_w"], + [result_name + "@pb_h"], + [result_name + "@pb_x"], + [result_name + "@pb_y"], + ] + outputs_transpose_pb = [ + [result_name + "@pb_w_transpose"], + [result_name + "@pb_h_transpose"], + [result_name + "@pb_x_transpose"], + [result_name + "@pb_y_transpose"], + ] + if axis == 0: + name_reshape_pb = [result_name + "@pb_transpose"] + # reshape the data + for i in range(0, 4): + tmp_node = graph.make_node( + 'Transpose', + inputs=inputs_transpose_pb[i], + outputs=outputs_transpose_pb[i]) + # decoder the box according to the target_box and variacne + name_variance_raw = [result_name + "@variance_raw"] + name_variance_unsqueeze = [result_name + "@variance_unsqueeze"] + shape = [] + # make node to extend the data + var_split_axis = 0 + var_split_inputs_name = [] + if 'PriorBoxVar' in input_names and len(node.input('PriorBoxVar')) > 0: + if axis == 1: + raise Exception( + "The op box_coder has variable do not support aixs broadcast" + ) + axes = [] + var_split_inputs_name = [result_name + "@variance_split"] + tmp_node = graph.make_node( + 'Transpose', + inputs=node.input('PriorBoxVar'), + outputs=var_split_inputs_name) + var_split_axis = 0 + else: + variances = [1.0, 1.0, 1.0, 1.0] + if 'variance' in node.attrs and len(node.attr('variance')) > 0: + variances = [float(var) for var in node.attr('variance')] + node_variance_create = graph.make_node( + 'Constant', + inputs=[], + outputs=name_variance_raw, + dtype=dtypes.ONNX.FLOAT, + dims=[len(variances)], + value=variances) + var_split_axis = 0 + var_split_inputs_name = name_variance_raw + + # decode the result + outputs_split_variance = [ + result_name + "@variance_split" + str(i) for i in range(0, 4) + ] + outputs_split_targebox = [ + result_name + "@targebox_split" + str(i) for i in range(0, 4) + ] + node_split_var = graph.make_node( + 'Split', + inputs=var_split_inputs_name, + outputs=outputs_split_variance, + axis=var_split_axis) + node_split_target = graph.make_node( + 'Split', + inputs=node.input('TargetBox'), + outputs=outputs_split_targebox, + axis=2) + + outputs_squeeze_targebox = [ + result_name + "@targebox_squeeze" + str(i) for i in range(0, 4) + ] + for (input_name, output_name) in zip(outputs_split_targebox, + outputs_squeeze_targebox): + tmp_node = mapper_helper.squeeze_helper(graph, input_name, [2], + [output_name]) + + output_shape_step1 = list(t_size)[:-1] + + inputs_tb_step1 = [ + [outputs_squeeze_targebox[0], outputs_split_variance[0]], + [outputs_squeeze_targebox[1], outputs_split_variance[1]], + [outputs_squeeze_targebox[2], outputs_split_variance[2]], + [outputs_squeeze_targebox[3], outputs_split_variance[3]] + ] + outputs_tb_step1 = [[result_name + "@decode_x_step1"], + [result_name + "@decode_y_step1"], + [result_name + "@decode_w_step1"], + [result_name + "@decode_h_step1"]] + + for input_step1, output_step_1 in zip(inputs_tb_step1, + outputs_tb_step1): + tmp_node = graph.make_node( + 'Mul', inputs=input_step1, outputs=output_step_1) + if axis == 0: + inputs_tbxy_step2 = [[ + outputs_tb_step1[0][0], outputs_transpose_pb[0][0] + ], [outputs_tb_step1[1][0], outputs_transpose_pb[1][0]]] + else: + inputs_tbxy_step2 = [[ + outputs_tb_step1[0][0], inputs_transpose_pb[0][0] + ], [outputs_tb_step1[1][0], inputs_transpose_pb[1][0]]] + + outputs_tbxy_step2 = [[result_name + "@decode_x_step2"], + [result_name + "@decode_y_step2"]] + + for input_step2, output_step_2 in zip(inputs_tbxy_step2, + outputs_tbxy_step2): + tmp_node = graph.make_node( + 'Mul', inputs=input_step2, outputs=output_step_2) + if axis == 0: + inputs_tbxy_step3 = [[ + outputs_tbxy_step2[0][0], outputs_transpose_pb[2][0] + ], [outputs_tbxy_step2[1][0], outputs_transpose_pb[3][0]]] + else: + inputs_tbxy_step3 = [[ + outputs_tbxy_step2[0][0], inputs_transpose_pb[2][0] + ], [outputs_tbxy_step2[1][0], inputs_transpose_pb[3][0]]] + + outputs_tbxy_step3 = [[result_name + "@decode_x_step3"], + [result_name + "@decode_y_step3"]] + + for input_step3, output_step_3 in zip(inputs_tbxy_step3, + outputs_tbxy_step3): + tmp_node = graph.make_node( + 'Add', inputs=input_step3, outputs=output_step_3) + + # deal with width & height + inputs_tbwh_step2 = [outputs_tb_step1[2], outputs_tb_step1[3]] + outputs_tbwh_step2 = [[result_name + "@decode_w_step2"], + [result_name + "@decode_h_step2"]] + + for input_name, output_name in zip(inputs_tbwh_step2, + outputs_tbwh_step2): + tmp_node = graph.make_node( + 'Exp', inputs=input_name, outputs=output_name) + + if axis == 0: + inputs_tbwh_step3 = [[ + outputs_tbwh_step2[0][0], outputs_transpose_pb[0][0] + ], [outputs_tbwh_step2[1][0], outputs_transpose_pb[1][0]]] + else: + inputs_tbwh_step3 = [[ + outputs_tbwh_step2[0][0], inputs_transpose_pb[0][0] + ], [outputs_tbwh_step2[1][0], inputs_transpose_pb[1][0]]] + + outputs_tbwh_step3 = [[result_name + "@decode_w_step3"], + [result_name + "@decode_h_step3"]] + + for input_name, output_name in zip(inputs_tbwh_step3, + outputs_tbwh_step3): + tmp_node = graph.make_node( + 'Mul', inputs=input_name, outputs=output_name) + + # final step to calc the result, and concat the result to output + # return the output box, [(x1, y1), (x2, y2)] + + inputs_half_tbwh_step4 = [[ + outputs_tbwh_step3[0][0], result_name + "@slice_2" + ], [outputs_tbwh_step3[1][0], result_name + "@slice_2"]] + + outputs_half_tbwh_step4 = [[result_name + "@decode_half_w_step4"], + [result_name + "@decode_half_h_step4"]] + for inputs_name, outputs_name in zip(inputs_half_tbwh_step4, + outputs_half_tbwh_step4): + tmp_node = graph.make_node( + 'Div', inputs=inputs_name, outputs=outputs_name) + inputs_output_point1 = [[ + outputs_tbxy_step3[0][0], outputs_half_tbwh_step4[0][0] + ], [outputs_tbxy_step3[1][0], outputs_half_tbwh_step4[1][0]]] + + outputs_output_point1 = [[result_name + "@ouput_x1"], + [result_name + "@output_y1"]] + for input_name, output_name in zip(inputs_output_point1, + outputs_output_point1): + tmp_node = graph.make_node( + 'Sub', inputs=input_name, outputs=output_name) + + inputs_output_point2 = [[ + outputs_tbxy_step3[0][0], outputs_half_tbwh_step4[0][0] + ], [outputs_tbxy_step3[1][0], outputs_half_tbwh_step4[1][0]]] + + outputs_output_point2 = [[result_name + "@ouput_x2"], + [result_name + "@output_y2"]] + + for input_name, output_name in zip(inputs_output_point2, + outputs_output_point2): + tmp_node = graph.make_node( + 'Add', inputs=input_name, outputs=output_name) + if not norm: + inputs_unnorm_point2 = [[ + outputs_output_point2[0][0], result_name + "@slice_1" + ], [outputs_output_point2[1][0], result_name + "@slice_1"]] + outputs_unnorm_point2 = [[result_name + "@ouput_unnorm_x2"], + [result_name + "@ouput_unnorm_y2"]] + + for input_name, output_name in zip(inputs_unnorm_point2, + outputs_unnorm_point2): + tmp_node = graph.make_node( + 'Sub', inputs=input_name, outputs=output_name) + outputs_output_point2 = outputs_unnorm_point2 + + outputs_output_point1.extend(outputs_output_point2) + ouputs_points_unsqueeze = [[result_name + "@points_unsqueeze_x1"], + [result_name + "points_unsqueeze_y1"], + [result_name + "points_unsqueeze_x2"], + [result_name + "points_unsqueeze_y2"]] + + for input_name, output_name in zip(outputs_output_point1, + ouputs_points_unsqueeze): + tmp_node = mapper_helper.unsqueeze_helper( + graph, input_name, [len(output_shape_step1)], output_name) + outputs_points_unsqueeze_list = [ + output[0] for output in ouputs_points_unsqueeze + ] + node_point_final = graph.make_node( + 'Concat', + inputs=outputs_points_unsqueeze_list, + outputs=node.output('OutputBox'), + axis=len(output_shape_step1)) diff --git a/paddle2onnx/legacy/op_mapper/detection/density_prior_box.py b/paddle2onnx/legacy/op_mapper/detection/density_prior_box.py new file mode 100644 index 0000000000..f9ecc61b11 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/density_prior_box.py @@ -0,0 +1,125 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import math +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.utils import require_fixed_shape + + +@op_mapper('density_prior_box') +class DensityPriorBox(): + """ + In this function, use the attribute to get the prior box, because we do not use + the image data and feature map, wo could the python code to create the varaible, + and to create the onnx tensor as output. + """ + support_opset_verison_range = (1, 12) + + @classmethod + def opset_9(cls, graph, node, **kw): + clip = bool(node.attr('clip')) + densities = node.attr('densities') + fixed_ratios = node.attr('fixed_ratios') + fixed_sizes = node.attr('fixed_sizes') + flatten_to_2d = bool(node.attr('flatten_to_2d')) + offset = node.attr('offset') + step_h = node.attr('step_h') + step_w = node.attr('step_w') + variances = node.attr('variances') + + input_shape = node.input_shape('Input', 0) + image_shape = node.input_shape('Image', 0) + + img_width = image_shape[3] + img_height = image_shape[2] + feature_width = input_shape[3] + feature_height = input_shape[2] + + assert img_width > 0 and img_height > 0, require_fixed_shape( + cls.__name__) + + if step_w == 0.0 or step_h == 0.0: + step_w = float(img_width / feature_width) + step_h = float(img_height / feature_height) + + num_priors = 0 + if len(fixed_sizes) > 0 and len(densities) > 0: + for density in densities: + if len(fixed_ratios) > 0: + num_priors += len(fixed_ratios) * (pow(density, 2)) + + out_dim = (feature_height, feature_width, num_priors, 4) + out_boxes = np.zeros(out_dim).astype('float32') + out_var = np.zeros(out_dim).astype('float32') + step_average = int((step_w + step_h) * 0.5) + + for h in range(feature_height): + for w in range(feature_width): + c_x = (w + offset) * step_w + c_y = (h + offset) * step_h + idx = 0 + + for density, fixed_size in zip(densities, fixed_sizes): + if (len(fixed_ratios) > 0): + for ar in fixed_ratios: + shift = int(step_average / density) + box_width_ratio = fixed_size * math.sqrt(ar) + box_height_ratio = fixed_size / math.sqrt(ar) + for di in range(density): + for dj in range(density): + c_x_temp = c_x - step_average / 2.0 + shift / 2.0 + dj * shift + c_y_temp = c_y - step_average / 2.0 + shift / 2.0 + di * shift + out_boxes[h, w, idx, :] = [ + max((c_x_temp - box_width_ratio / 2.0) / + img_width, 0), + max((c_y_temp - box_height_ratio / 2.0) + / img_height, 0), + min((c_x_temp + box_width_ratio / 2.0) / + img_width, 1), + min((c_y_temp + box_height_ratio / 2.0) + / img_height, 1) + ] + idx += 1 + + if clip: + out_boxes = np.clip(out_boxes, 0.0, 1.0) + # set the variance. + out_var = np.tile(variances, + (feature_height, feature_width, num_priors, 1)) + + if flatten_to_2d: + out_boxes = out_boxes.reshape((-1, 4)) + out_var = out_var.reshape((-1, 4)) + + #make node that + + node_boxes = graph.make_node( + 'Constant', + inputs=[], + outputs=node.output('Boxes'), + dtype=dtypes.ONNX.FLOAT, + dims=out_boxes.shape, + value=out_boxes.flatten().tolist()) + + node_vars = graph.make_node( + 'Constant', + inputs=[], + outputs=node.output('Variances'), + dtype=dtypes.ONNX.FLOAT, + dims=out_var.shape, + value=out_var.flatten().tolist()) diff --git a/paddle2onnx/legacy/op_mapper/detection/multiclass_nms.py b/paddle2onnx/legacy/op_mapper/detection/multiclass_nms.py new file mode 100755 index 0000000000..9e57ff8fc5 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/multiclass_nms.py @@ -0,0 +1,343 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +import numpy as np +from paddle2onnx.utils import logging +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper + + +@op_mapper( + ['multiclass_nms', 'multiclass_nms2', 'matrix_nms', 'multiclass_nms3']) +class MultiClassNMS(): + support_opset_verision_range = (10, 16) + """ + Convert the paddle multiclass_nms to onnx op. + This op is get the select boxes from origin boxes. + """ + + @classmethod + def opset_10(cls, graph, node, **kw): + if node.input_shape("BBoxes", 0)[0] != 1: + logging.warning( + "Due to the operator:{}, the converted ONNX model will only supports input[batch_size] == 1.". + format(node.type)) + scores = node.input('Scores', 0) + bboxes = node.input('BBoxes', 0) + num_class = node.input_shape('Scores', 0)[1] + if len(node.input_shape('Scores', 0)) == 2: + # inputs: scores & bboxes is lod tensor + scores = graph.make_node('Transpose', inputs=[scores], perm=[1, 0]) + scores = mapper_helper.unsqueeze_helper(graph, scores, [0]) + if graph.opset_version < 13: + scores_list = graph.make_node( + 'Split', + inputs=scores, + outputs=num_class, + axis=1, + split=[1] * num_class) + else: + split_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[1] * num_class) + scores_list = graph.make_node( + "Split", + inputs=[scores] + [split_const], + outputs=num_class, + axis=1) + + bboxes = graph.make_node('Transpose', inputs=bboxes, perm=[1, 0, 2]) + if graph.opset_version < 13: + bboxes_list = graph.make_node( + 'Split', + inputs=bboxes, + outputs=num_class, + axis=0, + split=[1] * num_class) + else: + split_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[1] * num_class) + bboxes_list = graph.make_node( + "Split", + inputs=[bboxes] + [split_const], + outputs=num_class, + axis=0) + bbox_ids = [] + if not isinstance(scores_list, list): + scores_list = [scores_list] + if not isinstance(bboxes_list, list): + bboxes_list = [bboxes_list] + for i in range(num_class): + bbox_id = cls.nms(graph, + node, + scores_list[i], + bboxes_list[i], + class_id=i) + bbox_ids.append(bbox_id) + bbox_ids = graph.make_node('Concat', inputs=bbox_ids, axis=0) + const_shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[1, -1, 4]) + bboxes = graph.make_node('Reshape', inputs=[bboxes, const_shape]) + cls.keep_top_k( + graph, node, bbox_ids, scores, bboxes, is_lod_input=True) + else: + bbox_ids = cls.nms(graph, node, scores, bboxes) + cls.keep_top_k(graph, node, bbox_ids, scores, bboxes) + + @classmethod + def nms(cls, graph, node, scores, bboxes, class_id=None): + normalized = node.attr('normalized') + nms_top_k = node.attr('nms_top_k') + if node.type == 'matrix_nms': + iou_threshold = 0.5 + logging.warning( + "Operator:{} is not supported completely, so we use traditional" + " NMS (nms_theshold={}) to instead it, which introduce some difference.". + format(node.type, str(iou_threshold))) + else: + iou_threshold = node.attr('nms_threshold') + if nms_top_k == -1: + nms_top_k = 100000 + + #convert the paddle attribute to onnx tensor + score_threshold = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.FLOAT, + value=[float(node.attr('score_threshold'))]) + iou_threshold = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[float(iou_threshold)]) + nms_top_k = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[np.int64(nms_top_k)]) + + # the paddle data format is x1,y1,x2,y2 + kwargs = {'center_point_box': 0} + + if normalized: + select_bbox_indices = graph.make_node( + 'NonMaxSuppression', + inputs=[ + bboxes, scores, nms_top_k, iou_threshold, score_threshold + ]) + elif not normalized: + value_one = graph.make_node( + 'Constant', dims=[1], dtype=dtypes.ONNX.FLOAT, value=1.0) + if graph.opset_version < 13: + new_bboxes = graph.make_node( + 'Split', + inputs=[bboxes], + outputs=4, + axis=2, + split=[1, 1, 1, 1]) + else: + split_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[1, 1, 1, 1]) + new_bboxes = graph.make_node( + "Split", inputs=[bboxes] + [split_const], outputs=4, axis=2) + new_xmax = graph.make_node('Add', inputs=[new_bboxes[2], value_one]) + new_ymax = graph.make_node('Add', inputs=[new_bboxes[3], value_one]) + new_bboxes = graph.make_node( + 'Concat', + inputs=[new_bboxes[0], new_bboxes[1], new_xmax, new_ymax], + axis=2) + select_bbox_indices = graph.make_node( + 'NonMaxSuppression', + inputs=[ + new_bboxes, scores, nms_top_k, iou_threshold, + score_threshold + ]) + + if class_id is not None and class_id != 0: + class_id = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0, class_id, 0]) + class_id = mapper_helper.unsqueeze_helper(graph, class_id, [0]) + select_bbox_indices = graph.make_node( + 'Add', inputs=[select_bbox_indices, class_id]) + + return select_bbox_indices + + @classmethod + def keep_top_k(cls, + graph, + node, + select_bbox_indices, + scores, + bboxes, + is_lod_input=False): + # step 1 nodes select the nms class + # create some const value to use + background = node.attr('background_label') + const_values = [] + for value in [0, 1, 2, -1]: + const_value = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[value]) + const_values.append(const_value) + + # In this code block, we will deocde the raw score data, reshape N * C * M to 1 * N*C*M + # and the same time, decode the select indices to 1 * D, gather the select_indices + class_id = graph.make_node( + 'Gather', inputs=[select_bbox_indices, const_values[1]], axis=1) + + squeezed_class_id = mapper_helper.squeeze_helper(graph, class_id, [1]) + + bbox_id = graph.make_node( + 'Gather', inputs=[select_bbox_indices, const_values[2]], axis=1) + + if background == 0: + nonzero = graph.make_node('NonZero', inputs=[squeezed_class_id]) + else: + filter_cls_id = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT32, value=[background]) + cast = graph.make_node( + 'Cast', inputs=[squeezed_class_id], to=dtypes.ONNX.INT32) + filter_index = graph.make_node('Sub', inputs=[cast, filter_cls_id]) + nonzero = graph.make_node('NonZero', inputs=[filter_index]) + + class_id = graph.make_node('Gather', inputs=[class_id, nonzero], axis=0) + class_id = graph.make_node( + 'Cast', inputs=[class_id], to=dtypes.ONNX.INT64) + + bbox_id = graph.make_node('Gather', inputs=[bbox_id, nonzero], axis=0) + bbox_id = graph.make_node( + 'Cast', inputs=[bbox_id], to=dtypes.ONNX.INT64) + + # get the shape of scores + shape_scores = graph.make_node('Shape', inputs=scores) + + # gather the index: 2 shape of scores + class_num = graph.make_node( + 'Gather', inputs=[shape_scores, const_values[2]], axis=0) + + # reshape scores N * C * M to (N*C*M) * 1 + scores = graph.make_node('Reshape', inputs=[scores, const_values[-1]]) + + # mul class * M + mul_classnum_boxnum = graph.make_node( + 'Mul', inputs=[class_id, class_num]) + + # add class * M * index + add_class_indices = graph.make_node( + 'Add', inputs=[mul_classnum_boxnum, bbox_id]) + + # Squeeze the indices to 1 dim + score_indices = mapper_helper.squeeze_helper(graph, add_class_indices, + [0, 2]) + + # gather the data from flatten scores + scores = graph.make_node( + 'Gather', inputs=[scores, score_indices], axis=0) + + keep_top_k = node.attr('keep_top_k') + keep_top_k = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + dims=[1, 1], + value=[node.attr('keep_top_k')]) + + # get min(topK, num_select) + shape_select_num = graph.make_node('Shape', inputs=[scores]) + const_zero = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0]) + gather_select_num = graph.make_node( + 'Gather', inputs=[shape_select_num, const_zero], axis=0) + unsqueeze_select_num = mapper_helper.unsqueeze_helper( + graph, gather_select_num, [0]) + + concat_topK_select_num = graph.make_node( + 'Concat', inputs=[unsqueeze_select_num, keep_top_k], axis=0) + cast_concat_topK_select_num = graph.make_node( + 'Cast', inputs=[concat_topK_select_num], to=6) + keep_top_k = graph.make_node( + 'ReduceMin', inputs=[cast_concat_topK_select_num], keepdims=0) + # unsqueeze the indices to 1D tensor + keep_top_k = mapper_helper.unsqueeze_helper(graph, keep_top_k, [0]) + + # cast the indices to INT64 + keep_top_k = graph.make_node('Cast', inputs=[keep_top_k], to=7) + + # select topk scores indices + keep_topk_scores, keep_topk_indices = graph.make_node( + 'TopK', inputs=[scores, keep_top_k], outputs=2) + + # gather topk label, scores, boxes + gather_topk_scores = graph.make_node( + 'Gather', inputs=[scores, keep_topk_indices], axis=0) + + gather_topk_class = graph.make_node( + 'Gather', inputs=[class_id, keep_topk_indices], axis=1) + + # gather the boxes need to gather the boxes id, then get boxes + if is_lod_input: + gather_topk_boxes_id = graph.make_node( + 'Gather', [add_class_indices, keep_topk_indices], axis=1) + else: + gather_topk_boxes_id = graph.make_node( + 'Gather', [bbox_id, keep_topk_indices], axis=1) + + # squeeze the gather_topk_boxes_id to 1 dim + squeeze_topk_boxes_id = mapper_helper.squeeze_helper( + graph, gather_topk_boxes_id, [0, 2]) + + gather_select_boxes = graph.make_node( + 'Gather', inputs=[bboxes, squeeze_topk_boxes_id], axis=1) + + # concat the final result + # before concat need to cast the class to float + cast_topk_class = graph.make_node( + 'Cast', inputs=[gather_topk_class], to=1) + + unsqueeze_topk_scores = mapper_helper.unsqueeze_helper( + graph, gather_topk_scores, [0, 2]) + + inputs_concat_final_results = [ + cast_topk_class, unsqueeze_topk_scores, gather_select_boxes + ] + + sort_by_socre_results = graph.make_node( + 'Concat', inputs=inputs_concat_final_results, axis=2) + + # sort by class_id + squeeze_cast_topk_class = mapper_helper.squeeze_helper( + graph, cast_topk_class, [0, 2]) + + neg_squeeze_cast_topk_class = graph.make_node( + 'Neg', inputs=[squeeze_cast_topk_class]) + + data, indices = graph.make_node( + 'TopK', inputs=[neg_squeeze_cast_topk_class, keep_top_k], outputs=2) + + concat_final_results = graph.make_node( + 'Gather', inputs=[sort_by_socre_results, indices], axis=1) + + concat_final_results = mapper_helper.squeeze_helper( + graph, concat_final_results, [0], node.output('Out')) + + if node.type in ['multiclass_nms2', 'matrix_nms', 'multiclass_nms3']: + final_indices = mapper_helper.squeeze_helper(graph, bbox_id, [0], + node.output('Index')) + if node.type in ['matrix_nms', 'multiclass_nms3']: + select_bboxes_shape = graph.make_node('Shape', inputs=[indices]) + select_bboxes_shape1 = graph.make_node( + 'Cast', inputs=[select_bboxes_shape], to=dtypes.ONNX.INT32) + indices = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0]) + rois_num = None + if 'NmsRoisNum' in node.outputs: + rois_num = node.output('NmsRoisNum') + elif 'RoisNum' in node.outputs: + rois_num = node.output('RoisNum') + if rois_num is not None: + graph.make_node( + "Gather", + inputs=[select_bboxes_shape1, indices], + outputs=rois_num) diff --git a/paddle2onnx/legacy/op_mapper/detection/prior_box.py b/paddle2onnx/legacy/op_mapper/detection/prior_box.py new file mode 100644 index 0000000000..82cb404527 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/prior_box.py @@ -0,0 +1,176 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import math +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.utils import require_fixed_shape + + +def expand_aspect_rations(input_aspect_ratior, flip): + expsilon = 1e-6 + output_ratios = [1.0] + for input_ratio in input_aspect_ratior: + already_exis = False + for output_ratio in output_ratios: + if abs(input_ratio - output_ratio) < expsilon: + already_exis = True + break + if already_exis == False: + output_ratios.append(input_ratio) + if flip: + output_ratios.append(1.0 / input_ratio) + return output_ratios + + +@op_mapper('prior_box') +class PriorBox(): + """ + In this function, use the attribute to get the prior box, because we do not use + the image data and feature map, wo could the python code to create the varaible, + and to create the onnx tensor as output. + """ + support_opset_verison_range = (1, 12) + + @classmethod + def opset_9(cls, graph, node, **kw): + flip = bool(node.attr('flip')) + clip = bool(node.attr('clip')) + min_max_aspect_ratios_order = bool( + node.attr('min_max_aspect_ratios_order')) + min_sizes = [float(size) for size in node.attr('min_sizes')] + max_sizes = [float(size) for size in node.attr('max_sizes')] + if isinstance(node.attr('aspect_ratios'), list): + aspect_ratios = [ + float(ratio) for ratio in node.attr('aspect_ratios') + ] + else: + aspect_ratios = [float(node.attr('aspect_ratios'))] + variances = [float(var) for var in node.attr('variances')] + # set min_max_aspect_ratios_order = false + output_ratios = expand_aspect_rations(aspect_ratios, flip) + + step_w = float(node.attr('step_w')) + step_h = float(node.attr('step_h')) + offset = float(node.attr('offset')) + + input_shape = node.input_shape('Input', 0) + image_shape = node.input_shape('Image', 0) + + img_width = image_shape[3] + img_height = image_shape[2] + feature_width = input_shape[3] + feature_height = input_shape[2] + assert img_width > 0 and img_height > 0, require_fixed_shape( + cls.__name__) + + step_width = 1.0 + step_height = 1.0 + + if step_w == 0.0 or step_h == 0.0: + step_w = float(img_width / feature_width) + step_h = float(img_height / feature_height) + + num_priors = len(output_ratios) * len(min_sizes) + if len(max_sizes) > 0: + num_priors += len(max_sizes) + out_dim = (feature_height, feature_width, num_priors, 4) + out_boxes = np.zeros(out_dim).astype('float32') + out_var = np.zeros(out_dim).astype('float32') + + idx = 0 + for h in range(feature_height): + for w in range(feature_width): + c_x = (w + offset) * step_w + c_y = (h + offset) * step_h + idx = 0 + for s in range(len(min_sizes)): + min_size = min_sizes[s] + if not min_max_aspect_ratios_order: + # rest of priors + for r in range(len(output_ratios)): + ar = output_ratios[r] + c_w = min_size * math.sqrt(ar) / 2 + c_h = (min_size / math.sqrt(ar)) / 2 + out_boxes[h, w, idx, :] = [(c_x - c_w) / img_width, + (c_y - c_h) / img_height, + (c_x + c_w) / img_width, + (c_y + c_h) / img_height] + idx += 1 + + if len(max_sizes) > 0: + max_size = max_sizes[s] + # second prior: aspect_ratio = 1, + c_w = c_h = math.sqrt(min_size * max_size) / 2 + out_boxes[h, w, idx, :] = [(c_x - c_w) / img_width, + (c_y - c_h) / img_height, + (c_x + c_w) / img_width, + (c_y + c_h) / img_height] + idx += 1 + else: + c_w = c_h = min_size / 2. + out_boxes[h, w, idx, :] = [ + (c_x - c_w) / img_width, (c_y - c_h) / img_height, + (c_x + c_w) / img_width, (c_y + c_h) / img_height + ] + idx += 1 + if len(max_sizes) > 0: + max_size = max_sizes[s] + # second prior: aspect_ratio = 1, + c_w = c_h = math.sqrt(min_size * max_size) / 2 + out_boxes[h, w, idx, :] = [(c_x - c_w) / img_width, + (c_y - c_h) / img_height, + (c_x + c_w) / img_width, + (c_y + c_h) / img_height] + idx += 1 + + # rest of priors + for r in range(len(output_ratios)): + ar = output_ratios[r] + if abs(ar - 1.) < 1e-6: + continue + c_w = min_size * math.sqrt(ar) / 2 + c_h = (min_size / math.sqrt(ar)) / 2 + out_boxes[h, w, idx, :] = [(c_x - c_w) / img_width, + (c_y - c_h) / img_height, + (c_x + c_w) / img_width, + (c_y + c_h) / img_height] + idx += 1 + + if clip: + out_boxes = np.clip(out_boxes, 0.0, 1.0) + # set the variance. + out_var = np.tile(variances, + (feature_height, feature_width, num_priors, 1)) + + #make node that + + node_boxes = graph.make_node( + 'Constant', + inputs=[], + outputs=node.output('Boxes'), + dtype=dtypes.ONNX.FLOAT, + dims=out_boxes.shape, + value=out_boxes.flatten().tolist()) + + node_vars = graph.make_node( + 'Constant', + inputs=[], + outputs=node.output('Variances'), + dtype=dtypes.ONNX.FLOAT, + dims=out_var.shape, + value=out_var.flatten().tolist()) diff --git a/paddle2onnx/legacy/op_mapper/detection/yolo_box.py b/paddle2onnx/legacy/op_mapper/detection/yolo_box.py new file mode 100755 index 0000000000..023dabc81e --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/detection/yolo_box.py @@ -0,0 +1,506 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import sys +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper +from onnx import TensorProto +import paddle + +MAX_FLOAT32 = 3.402823466E+38 + + +@op_mapper('yolo_box') +class YOLOBox(): + support_opset_verison_range = (9, 12) + + node_pred_box_x1_decode = None + node_pred_box_y1_decode = None + node_pred_box_x2_decode = None + node_pred_box_y2_decode = None + node_pred_box_x2_sub_w = None + node_pred_box_y2_sub_h = None + + @classmethod + def opset_9(cls, graph, node, **kw): + model_name = node.output('Boxes', 0) + input_shape = node.input_shape('X', 0) + mapper_helper.is_static_shape(input_shape) + image_size = node.input('ImgSize') + input_height = input_shape[2] + input_width = input_shape[3] + class_num = node.attr('class_num') + anchors = node.attr('anchors') + num_anchors = int(len(anchors)) // 2 + scale_x_y = node.attr('scale_x_y') + downsample_ratio = node.attr('downsample_ratio') + input_size = input_height * downsample_ratio + conf_thresh = node.attr('conf_thresh') + conf_thresh_mat = [conf_thresh + ] * num_anchors * input_height * input_width + + cls.score_shape = [ + 1, input_height * input_width * int(num_anchors), class_num + ] + + im_outputs = [] + + x_shape = [1, num_anchors, 5 + class_num, input_height, input_width] + node_x_shape = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': x_shape}) + + node_x_reshape = graph.make_node( + 'Reshape', inputs=[node.input('X')[0], node_x_shape]) + node_x_transpose = graph.make_node( + 'Transpose', inputs=[node_x_reshape], perm=[0, 1, 3, 4, 2]) + + range_x = [] + range_y = [] + for i in range(0, input_width): + range_x.append(i) + for j in range(0, input_height): + range_y.append(j) + + node_range_x = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + 'value': range_x, + }) + + node_range_y = graph.make_node( + 'Constant', + inputs=[], + attrs={ + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + 'value': range_y, + }) + + range_x_new_shape = [1, input_width] + range_y_new_shape = [input_height, 1] + + node_range_x_new_shape = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.ONNX.INT64, + value=range_x_new_shape) + node_range_y_new_shape = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.ONNX.INT64, + value=range_y_new_shape) + + node_range_x_reshape = graph.make_node( + 'Reshape', inputs=[node_range_x, node_range_x_new_shape]) + node_range_y_reshape = graph.make_node( + 'Reshape', inputs=[node_range_y, node_range_y_new_shape]) + + node_grid_x = graph.make_node( + "Tile", inputs=[node_range_x_reshape, node_range_y_new_shape]) + + node_grid_y = graph.make_node( + "Tile", inputs=[node_range_y_reshape, node_range_x_new_shape]) + + node_box_x = model_name + "@box_x" + node_box_y = model_name + "@box_y" + node_box_w = model_name + "@box_w" + node_box_h = model_name + "@box_h" + node_conf = model_name + "@conf" + node_prob = model_name + "@prob" + output = [ + node_box_x, node_box_y, node_box_w, node_box_h, node_conf, node_prob + ] + node_split_input = mapper_helper.split_helper( + graph, [node_x_transpose], + output, + -1, [1, 1, 1, 1, 1, class_num], + dtype=node.input_dtype('X', 0)) + + node_box_x_sigmoid = graph.make_node("Sigmoid", inputs=[node_box_x]) + + node_box_y_sigmoid = graph.make_node("Sigmoid", inputs=[node_box_y]) + + if scale_x_y is not None: + bias_x_y = -0.5 * (scale_x_y - 1.0) + scale_x_y_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': + dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + 'value': scale_x_y + }) + + bias_x_y_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': + dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + 'value': bias_x_y + }) + node_box_x_sigmoid = graph.make_node( + "Mul", inputs=[node_box_x_sigmoid, scale_x_y_node]) + node_box_x_sigmoid = graph.make_node( + "Add", inputs=[node_box_x_sigmoid, bias_x_y_node]) + node_box_y_sigmoid = graph.make_node( + "Mul", inputs=[node_box_y_sigmoid, scale_x_y_node]) + node_box_y_sigmoid = graph.make_node( + "Add", inputs=[node_box_y_sigmoid, bias_x_y_node]) + node_box_x_squeeze = mapper_helper.squeeze_helper( + graph, node_box_x_sigmoid, [4]) + + node_box_y_squeeze = mapper_helper.squeeze_helper( + graph, node_box_y_sigmoid, [4]) + + node_box_x_add_grid = graph.make_node( + "Add", inputs=[node_grid_x, node_box_x_squeeze]) + + node_box_y_add_grid = graph.make_node( + "Add", inputs=[node_grid_y, node_box_y_squeeze]) + + node_input_h = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[input_height]) + + node_input_w = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[input_width]) + + node_box_x_encode = graph.make_node( + 'Div', inputs=[node_box_x_add_grid, node_input_w]) + + node_box_y_encode = graph.make_node( + 'Div', inputs=[node_box_y_add_grid, node_input_h]) + + node_anchor_tensor = graph.make_node( + "Constant", + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=anchors) + + anchor_shape = [int(num_anchors), 2] + node_anchor_shape = graph.make_node( + "Constant", inputs=[], dtype=dtypes.ONNX.INT64, value=anchor_shape) + + node_anchor_tensor_reshape = graph.make_node( + "Reshape", inputs=[node_anchor_tensor, node_anchor_shape]) + + node_input_size = graph.make_node( + "Constant", + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[input_size]) + + node_anchors_div_input_size = graph.make_node( + "Div", inputs=[node_anchor_tensor_reshape, node_input_size]) + + node_anchor_w = model_name + "@anchor_w" + node_anchor_h = model_name + "@anchor_h" + + node_anchor_split = mapper_helper.split_helper( + graph, + inputs=node_anchors_div_input_size, + axis=1, + split=[1, 1], + outputs=[node_anchor_w, node_anchor_h], + dtype=node.input_dtype('X', 0)) + + new_anchor_shape = [1, int(num_anchors), 1, 1] + node_new_anchor_shape = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.ONNX.INT64, + value=new_anchor_shape) + + node_anchor_w_reshape = graph.make_node( + 'Reshape', inputs=[node_anchor_w, node_new_anchor_shape]) + + node_anchor_h_reshape = graph.make_node( + 'Reshape', inputs=[node_anchor_h, node_new_anchor_shape]) + + node_box_w_squeeze = mapper_helper.squeeze_helper(graph, node_box_w, + [4]) + node_box_h_squeeze = mapper_helper.squeeze_helper(graph, node_box_h, + [4]) + + node_box_w_exp = graph.make_node("Exp", inputs=[node_box_w_squeeze]) + node_box_h_exp = graph.make_node("Exp", inputs=[node_box_h_squeeze]) + + node_box_w_encode = graph.make_node( + 'Mul', inputs=[node_box_w_exp, node_anchor_w_reshape]) + + node_box_h_encode = graph.make_node( + 'Mul', inputs=[node_box_h_exp, node_anchor_h_reshape]) + + node_conf_sigmoid = graph.make_node('Sigmoid', inputs=[node_conf]) + + node_conf_thresh = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=conf_thresh_mat) + + conf_shape = [1, int(num_anchors), input_height, input_width, 1] + node_conf_shape = graph.make_node( + 'Constant', inputs=[], dtype=dtypes.ONNX.INT64, value=conf_shape) + + node_conf_thresh_reshape = graph.make_node( + 'Reshape', inputs=[node_conf_thresh, node_conf_shape]) + + node_conf_sub = graph.make_node( + 'Sub', inputs=[node_conf_sigmoid, node_conf_thresh_reshape]) + + node_conf_clip = mapper_helper.clip_helper(graph, node, node_conf_sub, + float(MAX_FLOAT32), 0.0) + + node_zeros = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[0]) + + node_conf_clip_bool = graph.make_node( + 'Greater', inputs=[node_conf_clip, node_zeros]) + + node_conf_clip_cast = graph.make_node( + 'Cast', + inputs=[node_conf_clip_bool], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + + node_conf_set_zero = graph.make_node( + 'Mul', inputs=[node_conf_sigmoid, node_conf_clip_cast]) + + node_prob_sigmoid = graph.make_node('Sigmoid', inputs=[node_prob]) + + new_shape = [1, int(num_anchors), input_height, input_width, 1] + node_new_shape = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.ONNX.INT64, + dims=[len(new_shape)], + value=new_shape) + + node_conf_new_shape = graph.make_node( + 'Reshape', inputs=[node_conf_set_zero, node_new_shape]) + + cls.node_score = graph.make_node( + 'Mul', inputs=[node_prob_sigmoid, node_conf_new_shape]) + + node_conf_bool = graph.make_node( + 'Greater', inputs=[node_conf_new_shape, node_zeros]) + + node_box_x_new_shape = graph.make_node( + 'Reshape', inputs=[node_box_x_encode, node_new_shape]) + + node_box_y_new_shape = graph.make_node( + 'Reshape', inputs=[node_box_y_encode, node_new_shape]) + + node_box_w_new_shape = graph.make_node( + 'Reshape', inputs=[node_box_w_encode, node_new_shape]) + + node_box_h_new_shape = graph.make_node( + 'Reshape', inputs=[node_box_h_encode, node_new_shape]) + + node_pred_box = graph.make_node( + 'Concat', + inputs=[node_box_x_new_shape, node_box_y_new_shape, \ + node_box_w_new_shape, node_box_h_new_shape], + axis=4) + + node_conf_cast = graph.make_node( + 'Cast', + inputs=[node_conf_bool], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + + node_pred_box_mul_conf = graph.make_node( + 'Mul', inputs=[node_pred_box, node_conf_cast]) + + box_shape = [1, int(num_anchors) * input_height * input_width, 4] + node_box_shape = graph.make_node( + 'Constant', inputs=[], dtype=dtypes.ONNX.INT64, value=box_shape) + + node_pred_box_new_shape = graph.make_node( + 'Reshape', inputs=[node_pred_box_mul_conf, node_box_shape]) + + node_pred_box_x = model_name + "@_pred_box_x" + node_pred_box_y = model_name + "@_pred_box_y" + node_pred_box_w = model_name + "@_pred_box_w" + node_pred_box_h = model_name + "@_pred_box_h" + if node.input_dtype('X', 0) == paddle.float64: + node_pred_box_new_shape = graph.make_node( + 'Cast', inputs=[node_pred_box_new_shape], to=TensorProto.FLOAT) + node_pred_box_split = mapper_helper.split_helper( + graph, + inputs=node_pred_box_new_shape, + axis=2, + split=[1, 1, 1, 1], + outputs=[ + node_pred_box_x, node_pred_box_y, node_pred_box_w, + node_pred_box_h + ], + dtype=node.input_dtype('X', 0)) + + if node.input_dtype('X', 0) == paddle.float64: + node_pred_box_x = graph.make_node( + 'Cast', + inputs=[node_pred_box_x], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + node_pred_box_y = graph.make_node( + 'Cast', + inputs=[node_pred_box_y], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + node_pred_box_w = graph.make_node( + 'Cast', + inputs=[node_pred_box_w], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + node_pred_box_h = graph.make_node( + 'Cast', + inputs=[node_pred_box_h], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + node_number_two = graph.make_node( + "Constant", + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[2]) + + node_half_w = graph.make_node( + "Div", inputs=[node_pred_box_w, node_number_two]) + + node_half_h = graph.make_node( + "Div", inputs=[node_pred_box_h, node_number_two]) + + node_pred_box_x1 = graph.make_node( + 'Sub', inputs=[node_pred_box_x, node_half_w]) + + node_pred_box_y1 = graph.make_node( + 'Sub', inputs=[node_pred_box_y, node_half_h]) + + node_pred_box_x2 = graph.make_node( + 'Add', inputs=[node_pred_box_x, node_half_w]) + + node_pred_box_y2 = graph.make_node( + 'Add', inputs=[node_pred_box_y, node_half_h]) + + node_sqeeze_image_size = mapper_helper.squeeze_helper( + graph, image_size[0], [0]) + + node_img_height = model_name + "@img_height" + node_img_width = model_name + "@img_width" + node_image_size_split = mapper_helper.split_helper( + graph, [node_sqeeze_image_size], [node_img_height, node_img_width], + -1, [1, 1], + dtype=node.input_dtype('X', 0)) + + node_img_width_cast = graph.make_node( + 'Cast', + inputs=[node_img_width], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + + node_img_height_cast = graph.make_node( + 'Cast', + inputs=[node_img_height], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)]) + + cls.node_pred_box_x1_decode = graph.make_node( + 'Mul', + inputs=[node_pred_box_x1, node_img_width_cast]) #boxes[box_idx] + + cls.node_pred_box_y1_decode = graph.make_node( + 'Mul', inputs=[node_pred_box_y1, + node_img_height_cast]) #boxes[box_idx + 1] + + cls.node_pred_box_x2_decode = graph.make_node( + 'Mul', + inputs=[node_pred_box_x2, node_img_width_cast]) #boxes[box_idx + 2] + + cls.node_pred_box_y2_decode = graph.make_node( + 'Mul', inputs=[node_pred_box_y2, + node_img_height_cast]) #boxes[box_idx + 3] + + if node.attr('clip_bbox'): + node_number_one = graph.make_node( + 'Constant', + inputs=[], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + value=[1]) + + node_new_img_height = graph.make_node( + 'Sub', inputs=[node_img_height_cast, node_number_one]) + + node_new_img_width = graph.make_node( + 'Sub', inputs=[node_img_width_cast, node_number_one]) + + cls.node_pred_box_x2_sub_w = graph.make_node( + 'Sub', + inputs=[cls.node_pred_box_x2_decode, node_new_img_width]) + + cls.node_pred_box_y2_sub_h = graph.make_node( + 'Sub', + inputs=[cls.node_pred_box_y2_decode, node_new_img_height]) + + node_pred_box_x1_clip = mapper_helper.clip_helper( + graph, node, cls.node_pred_box_x1_decode, + float(MAX_FLOAT32), 0.0) + node_pred_box_y1_clip = mapper_helper.clip_helper( + graph, node, cls.node_pred_box_y1_decode, + float(MAX_FLOAT32), 0.0) + node_pred_box_x2_clip = mapper_helper.clip_helper( + graph, node, cls.node_pred_box_x2_sub_w, + float(MAX_FLOAT32), 0.0) + node_pred_box_y2_clip = mapper_helper.clip_helper( + graph, node, cls.node_pred_box_y2_sub_h, + float(MAX_FLOAT32), 0.0) + node_pred_box_x2_res = graph.make_node( + 'Sub', + inputs=[cls.node_pred_box_x2_decode, node_pred_box_x2_clip]) + + node_pred_box_y2_res = graph.make_node( + 'Sub', + inputs=[cls.node_pred_box_y2_decode, node_pred_box_y2_clip]) + + node_pred_box_result = graph.make_node( + 'Concat', + inputs=[ + node_pred_box_x1_clip, node_pred_box_y1_clip, + node_pred_box_x2_res, node_pred_box_y2_res + ], + outputs=node.output('Boxes'), + axis=-1) + else: + node_pred_box_result = graph.make_node( + 'Concat', + inputs=[ + cls.node_pred_box_x1_decode, cls.node_pred_box_y1_decode, + cls.node_pred_box_x2_decode, cls.node_pred_box_y2_decode + ], + outputs=node.output('Boxes'), + axis=-1) + node_score_shape = graph.make_node( + "Constant", + inputs=[], + dtype=dtypes.ONNX.INT64, + value=cls.score_shape) + + node_score_new_shape = graph.make_node( + 'Reshape', + inputs=[cls.node_score, node_score_shape], + outputs=node.output('Scores')) diff --git a/paddle2onnx/legacy/op_mapper/logic.py b/paddle2onnx/legacy/op_mapper/logic.py new file mode 100755 index 0000000000..6e2c198fa3 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/logic.py @@ -0,0 +1,280 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +import paddle +from paddle2onnx.utils import logging +from paddle2onnx.legacy.op_mapper import mapper_helper + + +@op_mapper('greater_equal') +class GreaterOrEqual(): + support_opset_version_range = (12, 15) + + @classmethod + def opset_12(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'GreaterOrEqual', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('equal') +class Equal(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + if node.input_dtype('X', 0) in [paddle.float32, paddle.float64]: + warning_info = "Operator 'Equal' only support input with dtype of int/bool, now the dtype of input is {}, this may cause wrong results, it is more recommend converting this model with opset version >= 11.".format( + node.input_dtype('X', 0)) + logging.warning(warning_info) + x_node = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.INT32) + y_node = graph.make_node( + 'Cast', inputs=node.input('Y'), to=dtypes.ONNX.INT32) + onnx_node = graph.make_node( + 'Equal', inputs=[x_node, y_node], outputs=node.output('Out')) + else: + onnx_node = graph.make_node( + 'Equal', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + @classmethod + def opset_11(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'Equal', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('not_equal') +class NotEqual(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + equal_val = None + if node.input_dtype('X', 0) in [paddle.float32, paddle.float64]: + warning_info = "Operator 'not_equal' only support input with dtype of int/bool, now the dtype of input is {}, this may cause wrong results, it is more recommend converting this model with opset version >= 11.".format( + node.input_dtype('X', 0)) + logging.warning(warning_info) + x_node = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.INT32) + y_node = graph.make_node( + 'Cast', inputs=node.input('Y'), to=dtypes.ONNX.INT32) + equal_val = graph.make_node( + 'Equal', inputs=[x_node, y_node], outputs=node.output('Out')) + else: + equal_val = graph.make_node( + 'Equal', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + k_node = graph.make_node( + 'Cast', inputs=[equal_val], to=dtypes.ONNX.INT64) + const = graph.make_node('Constant', dtype=dtypes.ONNX.INT64, value=1) + sub_ = graph.make_node('Sub', inputs=[const, k_node]) + graph.make_node( + 'Cast', + inputs=[sub_], + outputs=node.output('Out'), + to=dtypes.ONNX.BOOL) + + @classmethod + def opset_11(cls, graph, node, **kw): + equal_val = graph.make_node( + 'Equal', inputs=[node.input('X', 0), node.input('Y', 0)]) + k_node = graph.make_node( + 'Cast', inputs=[equal_val], to=dtypes.ONNX.INT64) + const = graph.make_node('Constant', dtype=dtypes.ONNX.INT64, value=1) + sub_ = graph.make_node('Sub', inputs=[const, k_node]) + graph.make_node( + 'Cast', + inputs=[sub_], + outputs=node.output('Out'), + to=dtypes.ONNX.BOOL) + + +@op_mapper('greater_than') +class GreaterThan(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + if node.input_dtype('X', 0) in [paddle.int32, paddle.int64]: + warning_info = "Operator 'greater_than' only support input with dtype of float/double, now the dtype of input is {}, this may cause wrong results, it is more recommend converting this model with opset version >= 11.".format( + node.input_dtype('X', 0)) + logging.warning(warning_info) + x_node = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.INT32) + y_node = graph.make_node( + 'Cast', inputs=node.input('Y'), to=dtypes.ONNX.INT32) + graph.make_node( + 'Greater', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + else: + graph.make_node( + 'Greater', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + @classmethod + def opset_11(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'Greater', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('logical_and') +class LogicalAnd(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'And', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('logical_not') +class LogicalNot(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Not', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('logical_or') +class LogicalOr(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Or', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('logical_xor') +class LogicalXOr(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Xor', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('less_equal') +class LessOrEqual(): + support_opset_version_range = (12, 15) + + @classmethod + def opset_12(cls, graph, node, **kw): + onnx_node = graph.make_node( + 'LessOrEqual', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + +@op_mapper('less_than') +class Less_than(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + if node.input_dtype('X', 0) in [paddle.int32, paddle.int64]: + warning_info = "Operator 'less_than' only support input with dtype of float/double, now the dtype of input is {}, this may cause wrong results, it is more recommend converting this model with opset version >= 11.".format( + node.input_dtype('X', 0)) + logging.warning(warning_info) + x_node = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.INT32) + y_node = graph.make_node( + 'Cast', inputs=node.input('Y'), to=dtypes.ONNX.INT32) + graph.make_node( + 'Less', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + else: + graph.make_node( + 'Less', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out')) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Less', + inputs=[node.input('X', 0), node.input('Y', 0)], + outputs=node.output('Out'), ) + + +@op_mapper('isfinite_v2') +class Isfinite(): + support_opset_version_range = (10, 15) + + @classmethod + def opset_10(cls, graph, node, **kw): + is_inf = graph.make_node('IsInf', inputs=node.input('X', 0)) + is_nan = graph.make_node('IsNaN', inputs=node.input('X', 0)) + finite = graph.make_node('Or', inputs=[is_inf, is_nan]) + graph.make_node('Not', inputs=[finite], outputs=node.output('Out')) + + +@op_mapper('isinf_v2') +class IsInf(): + support_opset_version_range = (10, 15) + + @classmethod + def opset_10(cls, graph, node, **kw): + graph.make_node( + 'IsInf', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('isnan_v2') +class IsNaN(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'IsNaN', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('isnan') +class IsNaN(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + isnan = graph.make_node('IsNaN', inputs=node.input('X')) + cast_node = graph.make_node( + 'Cast', inputs=isnan, attrs={'to': dtypes.ONNX.FLOAT}) + reduce_node = graph.make_node( + 'ReduceMax', inputs=[cast_node], keepdims=False) + mapper_helper.unsqueeze_helper(graph, reduce_node, [0], + node.output('Out')) diff --git a/paddle2onnx/legacy/op_mapper/mapper_helper.py b/paddle2onnx/legacy/op_mapper/mapper_helper.py new file mode 100755 index 0000000000..9850be9012 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/mapper_helper.py @@ -0,0 +1,432 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +import paddle.fluid.core as core +import six +import copy +from paddle2onnx.legacy.constant import dtypes +import paddle +from onnx import TensorProto + + +def is_static_shape(shape): + if len(shape) > 1 and shape[1:].count(-1) > 0: + raise Exception( + "Converting this model to ONNX need with static input shape," \ + " please fix input shape of this model, see doc Q2 in" \ + " https://github.com/PaddlePaddle/paddle2onnx/blob/develop/docs/en/FAQ.md." + ) + + +def shape_helper(graph, input, dim=None): + if dim is None: + shape_node = graph.make_node('Shape', inputs=[input]) + return shape_node + full_shape = graph.make_node('Shape', inputs=[input]) + shape_node = slice_helper(graph, full_shape, [0], [dim], [dim + 1]) + return shape_node + + +def unsqueeze_helper(graph, input, axes, outputs=None): + inputs = [] + if not isinstance(input, list): + input = [input] + inputs.append(input[0]) + if not isinstance(axes, list): + axes = [axes] + if outputs is not None and isinstance(outputs, six.string_types): + outputs = [outputs] + + if graph.opset_version < 13: + unsqueeze_node = graph.make_node( + "Unsqueeze", inputs=inputs, outputs=outputs, axes=axes) + return unsqueeze_node + else: + axes_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=axes) + inputs = inputs + [axes_node] + unsqueeze_node = graph.make_node( + "Unsqueeze", inputs=inputs, outputs=outputs) + return unsqueeze_node + + +def split_helper(graph, input, axis=0, split=None, outputs=None): + assert outputs is not None, "outputs can not be None in split_helper." + inputs = [] + if not isinstance(input, list): + input = [input] + inputs.append(input[0]) + if split is not None and not isinstance(split, list): + split = [split] + if split is None: + split_node = graph.make_node( + "Split", inputs=inputs, outputs=outputs, axis=axis) + return split_node + if graph.opset_version < 13: + split_node = graph.make_node( + "Split", inputs=inputs, outputs=outputs, axis=axis, split=split) + return split_node + else: + split = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=split) + inputs = inputs + [split] + split_node = graph.make_node( + "Split", inputs=inputs, axis=axis, outputs=outputs) + return split_node + + +def slice_helper(graph, + input, + axes, + starts, + ends, + outputs=None, + dtype=dtypes.ONNX.INT64): + inputs = [] + if not isinstance(input, list): + input = [input] + inputs.append(input[0]) + if axes is not None and not isinstance(axes, list): + axes = [axes] + if starts is not None and not isinstance(starts, (list, six.string_types)): + starts = [starts] + if ends is not None and not isinstance(ends, (list, six.string_types)): + ends = [ends] + + if graph.opset_version < 10: + attrs = { + 'starts': starts, + 'ends': ends, + } + if axes not in [None, []]: + attrs['axes'] = axes + slice_node = graph.make_node( + "Slice", inputs=inputs, outputs=outputs, attrs=attrs) + return slice_node + else: + if not isinstance(starts, six.string_types): + starts = graph.make_node('Constant', dtype=dtype, value=starts) + if not isinstance(ends, six.string_types): + ends = graph.make_node('Constant', dtype=dtype, value=ends) + inputs = inputs + [starts, ends] + if axes not in [None, []]: + axes_node = graph.make_node('Constant', dtype=dtype, value=axes) + inputs.append(axes_node) + slice_node = graph.make_node("Slice", inputs=inputs, outputs=outputs) + return slice_node + + +def squeeze_helper(graph, input, axes=None, outputs=None): + inputs = [] + if not isinstance(input, list): + input = [input] + inputs.append(input[0]) + if axes is not None and not isinstance(axes, list): + axes = [axes] + if graph.opset_version < 13: + squeeze_node = graph.make_node( + "Squeeze", inputs=inputs, axes=axes, outputs=outputs) + return squeeze_node + else: + if axes is not None: + axes_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=axes) + inputs.append(axes_node) + squeeze_node = graph.make_node( + "Squeeze", inputs=inputs, outputs=outputs) + return squeeze_node + + +def unsqueeze_helper(graph, input, axes, outputs=None): + inputs = [] + if isinstance(input, list): + input = input[0] + inputs.append(input) + if not isinstance(axes, list): + axes = [axes] + if graph.opset_version < 13: + unsqueeze_node = graph.make_node( + 'Unsqueeze', inputs=inputs, axes=axes, outputs=outputs) + else: + axes_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': axes}) + inputs.append(axes_node) + unsqueeze_node = graph.make_node( + 'Unsqueeze', inputs=inputs, outputs=outputs) + return unsqueeze_node + + +def split_helper(graph, inputs, outputs, axis, split, dtype=paddle.float32): + if not isinstance(inputs, (list, tuple)): + inputs = [inputs] + + if not isinstance(outputs, int) and not isinstance(outputs, (list, tuple)): + outputs = [outputs] + + if dtype == paddle.float64: + cast_inputs = [] + for i in range(len(inputs)): + one = graph.make_node( + 'Cast', inputs=[inputs[i]], to=TensorProto.FLOAT) + cast_inputs.append(one) + if graph.opset_version < 13: + split_node = graph.make_node( + "Split", + inputs=cast_inputs, + outputs=outputs, + axis=axis, + split=split) + else: + split_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=split) + split_node = graph.make_node( + "Split", + inputs=cast_inputs + [split_const], + outputs=outputs, + axis=axis) + casted_output = [] + for i in range(len(outputs)): + one = graph.make_node( + 'Cast', + inputs=[split_node[i]], + outputs=[outputs[i]], + to=TensorProto.DOUBLE) + casted_output.append(one) + return casted_output + else: + if graph.opset_version < 13: + split_node = graph.make_node( + "Split", inputs=inputs, outputs=outputs, axis=axis, split=split) + else: + split_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=split) + split_node = graph.make_node( + "Split", + inputs=inputs + [split_const], + outputs=outputs, + axis=axis) + return split_node + + +def constant_helper(graph, dtype, value, shape=None, outputs=[]): + constant = graph.make_node( + 'Constant', + inputs=[], + outputs=outputs, + attrs={ + 'dims': shape, + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[dtype], + 'value': value + }) + return constant + + +def clip_helper(graph, node, input, max, min, output=[]): + x_dtype = node.input_dtype('X', 0) + if (isinstance(min, six.string_types) or + isinstance(max, six.string_types)) and graph.opset_version < 11: + raise Exception( + "min or max of Clip is Tensor, please try with higher onnx opset_version." + ) + if graph.opset_version < 11: + if x_dtype != paddle.float32: + input = graph.make_node( + 'Cast', inputs=[input], to=dtypes.ONNX.FLOAT) + clip = graph.make_node('Clip', inputs=input, max=max, min=min) + clip = graph.make_node( + 'Cast', + inputs=[clip], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + outputs=output) + else: + clip = graph.make_node( + 'Clip', inputs=input, max=max, min=min, outputs=output) + else: + if x_dtype != paddle.float32: + input = graph.make_node( + 'Cast', inputs=[input], to=dtypes.ONNX.FLOAT) + + if not isinstance(min, six.string_types): + min = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[paddle.float32], + 'value': min + }) + else: + if node.input_dtype('Min', 0) != paddle.float32: + min = graph.make_node( + 'Cast', + inputs=min, + attrs={'to': dtypes.DTYPE_PADDLE_ONNX_MAP[paddle.float32]}) + min = graph.make_node('Squeeze', min) + + if not isinstance(max, six.string_types): + max = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[paddle.float32], + 'value': max + }) + else: + if node.input_dtype('Max', 0) != paddle.float32: + max = graph.make_node( + 'Cast', + inputs=max, + attrs={'to': dtypes.DTYPE_PADDLE_ONNX_MAP[paddle.float32]}) + max = graph.make_node('Squeeze', max) + if x_dtype != paddle.float32: + clip_pre = graph.make_node('Clip', inputs=[input, min, max]) + clip = graph.make_node( + 'Cast', + inputs=[clip_pre], + outputs=output, + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + clip = graph.make_node( + 'Clip', inputs=[input, min, max], outputs=output) + return clip + + +def dtype_alignment(graph, nodes, node_dtypes, to=None): + assert len(nodes) == len( + node_dtypes), "Length of nodes and node_dtypes should be equal." + dtype_order = [ + core.VarDesc.VarType.BOOL, + core.VarDesc.VarType.INT16, + core.VarDesc.VarType.INT32, + core.VarDesc.VarType.INT64, + core.VarDesc.VarType.FP16, + core.VarDesc.VarType.FP32, + core.VarDesc.VarType.FP64, + ] + max_index = -1 + for dtype in node_dtypes: + index = dtype_order.index(dtype) + if index > max_index: + max_index = index + + if max_index < 0: + return nodes + + casted_nodes = list() + cast_dtype = dtype_order[max_index] + cast_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[cast_dtype] + for i, dtype in enumerate(node_dtypes): + index = dtype_order.index(dtype) + if to is not None: + cast_dtype = to + condition = dtypes.DTYPE_PADDLE_ONNX_MAP[index] != cast_dtype + else: + condition = index != max_index + if condition: + cast_node = graph.make_node( + 'Cast', inputs=[nodes[i]], to=cast_dtype) + casted_nodes.append(cast_node) + else: + casted_nodes.append(nodes[i]) + return casted_nodes + + +def cast(graph, input, origin_dtype, target_dtype): + if not isinstance(origin_dtype, six.string_types): + origin_dtype = dtypes.DTYPE_PADDLE_STR_MAP[origin_dtype] + if origin_dtype != target_dtype: + cast_node = graph.make_node( + 'Cast', inputs=input, to=dtypes.DTYPE_ONNX_STR_MAP[target_dtype]) + return cast_node + return input + + +def shape_alignment(graph, nodes, node_shapes): + assert len(nodes) == len( + node_shapes), "Length of nodes and node_shapes should be equal." + max_dim = -1 + for shape in node_shapes: + dim = len(shape) + if dim > max_dim: + max_dim = dim + + if max_dim < 0: + return nodes + + assert max_dim == 1 or max_dim == 0, "max_dim is only supported when max_dim is 1 or 0." + max_dim = 1 if max_dim == 0 else max_dim + unsqueeze_nodes = list() + for i, shape in enumerate(node_shapes): + dim = len(shape) + if dim != max_dim: + unsqueeze_node = nodes[i] + for j in range(max_dim - dim): + unsqueeze_node = unsqueeze_helper(graph, unsqueeze_node, [0]) + unsqueeze_nodes.append(unsqueeze_node) + else: + unsqueeze_nodes.append(nodes[i]) + return unsqueeze_nodes + + +def get_tensor_list_node(graph, node, name, dtype=None): + node_list = node.input(name) + node_dtypes = [node.input_dtype(name, i) for i in range(len(node_list))] + node_list = dtype_alignment(graph, node_list, node_dtypes, dtype) + + node_shapes = [node.input_shape(name, i) for i in range(len(node_list))] + node_list = shape_alignment(graph, node_list, node_shapes) + node = graph.make_node("Concat", inputs=node_list, axis=0) + return node + + +def get_value_from_parameters(graph, input_node): + assert input_node in graph.parameters, "{} is not in graph.parameters".format( + input_node) + data = graph.parameters[input_node].attribute[0].t.int32_data + if data is None or len(data) < 1: + data = graph.parameters[input_node].attribute[0].t.int64_data + value = [val for _, val in enumerate(data)] + return value + + +# return value +# arg1: attr_value +# arg2: attr_value is tensor or not +def get_node_attr_value(graph, + node, + attr_name=None, + attr_tensor_name=None, + attr_tensor_list_name=None, + return_list=False, + dtype=None): + attr_tensor = node.input(attr_tensor_name) + attr_tensor_list = node.input(attr_tensor_list_name) + if attr_tensor is not None and len(attr_tensor) > 0: + value = node.input(attr_tensor_name)[0] + if return_list: + try: + value = get_value_from_parameters(graph, value) + return value, False # value, is_tensor + except Exception: + return value, True + else: + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype( + attr_tensor_name, 0)] + if input_dtype != dtype: + value = graph.make_node('Cast', inputs=[value], to=dtype) + return value, True + elif attr_tensor_list is not None and len(attr_tensor_list) > 0: + value = get_tensor_list_node(graph, node, attr_tensor_list_name, dtype) + return value, True + else: + value = node.attr(attr_name) + return value, False diff --git a/paddle2onnx/legacy/op_mapper/math.py b/paddle2onnx/legacy/op_mapper/math.py new file mode 100755 index 0000000000..ff94f93ff9 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/math.py @@ -0,0 +1,1273 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper +import paddle + + +@op_mapper('matmul') +class MatMul(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + x = node.input('X', idx=0) + y = node.input('Y', idx=0) + if node.attr('transpose_X'): + perm = list(range(len(node.input_shape('X', 0)))) + perm[-1], perm[-2] = perm[-2], perm[-1] + if node.input_dtype('X', 0) == paddle.float64: + x = graph.make_node('Cast', inputs=x, to=dtypes.ONNX.FLOAT) + x = graph.make_node('Transpose', inputs=[x], perm=perm) + if node.attr('transpose_Y'): + perm = list(range(len(node.input_shape('Y', 0)))) + perm[-1], perm[-2] = perm[-2], perm[-1] + if node.input_dtype('Y', 0) == paddle.float64: + y = graph.make_node('Cast', inputs=y, to=dtypes.ONNX.FLOAT) + y = graph.make_node('Transpose', inputs=[y], perm=perm) + if node.attr('alpha') == 1.0: + if node.input_dtype('X', 0) == paddle.float64: + output_node = graph.make_node('MatMul', inputs=[x, y]) + graph.make_node( + 'Cast', + inputs=output_node, + to=dtypes.ONNX.DOUBLE, + outputs=node.output('Out')) + else: + graph.make_node( + 'MatMul', inputs=[x, y], outputs=node.output('Out')) + else: + if node.input_dtype('X', 0) == paddle.float64: + output_node = graph.make_node('MatMul', inputs=[x, y]) + matmul = graph.make_node( + 'Cast', inputs=output_node, to=dtypes.ONNX.DOUBLE) + scale = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.DOUBLE, + value=node.attr('alpha')) + else: + matmul = graph.make_node('MatMul', inputs=[x, y]) + scale = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.FLOAT, + value=node.attr('alpha')) + + onnx_node = graph.make_node( + 'Mul', inputs=[matmul, scale], outputs=node.output('Out')) + + +@op_mapper('matmul_v2') +class MatMul(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + x = node.input('X', idx=0) + y = node.input('Y', idx=0) + out = node.output('Out') + ## TODO(wangjunjie06): The current addition of cast op is only for onnxruntime optimization, after onnxruntime is repaired, remove this logic + if node.attr('trans_x'): + perm = list(range(len(node.input_shape('X', 0)))) + perm[-1], perm[-2] = perm[-2], perm[-1] + if node.input_dtype('X', 0) == paddle.float64: + x = graph.make_node('Cast', inputs=x, to=dtypes.ONNX.FLOAT) + x = graph.make_node('Transpose', inputs=[x], perm=perm) + if node.attr('trans_y'): + perm = list(range(len(node.input_shape('Y', 0)))) + perm[-1], perm[-2] = perm[-2], perm[-1] + if node.input_dtype('Y', 0) == paddle.float64: + y = graph.make_node('Cast', inputs=y, to=dtypes.ONNX.FLOAT) + y = graph.make_node('Transpose', inputs=[y], perm=perm) + if node.input_dtype('X', 0) == paddle.float64: + output_node = graph.make_node('MatMul', inputs=[x, y]) + graph.make_node( + 'Cast', inputs=output_node, to=dtypes.ONNX.DOUBLE, outputs=out) + else: + graph.make_node('MatMul', inputs=[x, y], outputs=out) + + +@op_mapper('exp') +class Exp(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Exp', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('abs') +class Abs: + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Abs', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('erf') +class Erf(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + x_dtype = node.input_dtype('X', 0) + x = node.input('X', 0) + # onnxruntime only support float32 Erf + if x_dtype != paddle.float32: + x = graph.make_node('Cast', inputs=x, to=dtypes.ONNX.FLOAT) + erf_node = graph.make_node('Erf', inputs=[x]) + graph.make_node( + 'Cast', + inputs=[erf_node], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + outputs=node.output('Out')) + else: + graph.make_node('Erf', inputs=[x], outputs=node.output('Out')) + + +@op_mapper('acos') +class Acos(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Acos', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('asin') +class Asin(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Asin', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('sinh') +class Sinh(): + supports_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Sinh', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('sin') +class Sin(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Sin', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('atan') +class Atan(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Atan', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('tan') +class Tan(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Tan', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('ceil') +class Ceil(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + graph.make_node( + 'Ceil', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('cos') +class Cos(): + supports_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Cos', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('cosh') +class Cosh(): + supports_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Cosh', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('log2') +class Log2(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + _ln2 = 0.693147180559945309 + dtype = dtypes.ONNX.FLOAT + if node.input_dtype('X', 0) == paddle.float64: + dtype = dtypes.ONNX.DOUBLE + _ln2 = graph.make_node('Constant', dtype=dtype, value=_ln2) + lnx = graph.make_node('Log', inputs=node.input('X')) + graph.make_node('Div', inputs=[lnx, _ln2], outputs=node.output('Out')) + + +@op_mapper('logsumexp') +class LogSumExp(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + + if node.attr('reduce_all'): + if not node.attr('keepdim'): + reduce_node = graph.make_node( + 'ReduceLogSumExp', + inputs=node.input('X'), + keepdims=node.attr('keepdim')) + mapper_helper.unsqueeze_helper(graph, reduce_node, [0], + node.output('Out')) + else: + graph.make_node( + 'ReduceLogSumExp', + inputs=node.input('X'), + keepdims=node.attr('keepdim'), + outputs=node.output('Out')) + else: + graph.make_node( + 'ReduceLogSumExp', + inputs=node.input('X'), + keepdims=node.attr('keepdim'), + axes=node.attr('axis'), + outputs=node.output('Out')) + + +@op_mapper( + [ + 'elementwise_add', 'elementwise_sub', 'elementwise_div', + 'elementwise_mul', 'elementwise_min', 'elementwise_max', + 'elementwise_pow' + ], + mapper_dict={ + 'elementwise_add': 'Add', + 'elementwise_sub': 'Sub', + 'elementwise_div': 'Div', + 'elementwise_mul': 'Mul', + 'elementwise_min': 'Min', + 'elementwise_max': 'Max', + 'elementwise_pow': 'Pow' + }) +class ElementwiseOps(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x_shape = node.input_shape('X', 0) + y_shape = node.input_shape('Y', 0) + if node.type in ["elementwise_min", "elementwise_max"]: + assert False, "{} op is not supported when opset version < 8".format( + node.type) + + op_type = kw['mapper_dict'][node.type] + axis = node.attr('axis') + x = node.input('X', 0) + y = node.input('Y', 0) + + if axis == -1 or axis == (len(x_shape) - 1 + ) or len(x_shape) == len(y_shape): + onnx_node = graph.make_node( + op_type, inputs=[x, y], outputs=node.output('Out')) + else: + broadcast_shape = [1] * len(x_shape) + broadcast_shape[axis:axis + len(y_shape)] = y_shape + broadcast_shape_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=list(broadcast_shape)) + y_node = graph.make_node( + 'Reshape', inputs=[y, broadcast_shape_node]) + onnx_node = graph.make_node( + op_type, inputs=[x, y_node], outputs=node.output('Out')) + + @classmethod + def opset_8(cls, graph, node, **kw): + op_type = kw['mapper_dict'][node.type] + x = node.input('X', 0) + y = node.input('Y', 0) + axis = node.attr('axis') + x_shape = node.input_shape('X', 0) + y_shape = node.input_shape('Y', 0) + if axis == -1 or axis == (len(x_shape) - 1 + ) or len(x_shape) == len(y_shape): + onnx_node = graph.make_node( + op_type, inputs=[x, y], outputs=node.output('Out')) + else: + broadcast_shape = [1] * len(x_shape) + broadcast_shape[axis:axis + len(y_shape)] = y_shape + broadcast_shape_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=list(broadcast_shape)) + y_node = graph.make_node( + 'Reshape', inputs=[y, broadcast_shape_node]) + onnx_node = graph.make_node( + op_type, inputs=[x, y_node], outputs=node.output('Out')) + + +@op_mapper('elementwise_mod') +class ElementWiseMod(): + support_opset_version_range = (10, 15) + + @classmethod + def opset_10(cls, graph, node, **kw): + x_shape = node.input_shape('X', 0) + y_shape = node.input_shape('Y', 0) + axis = node.attr('axis') + x = node.input('X', 0) + y = node.input('Y', 0) + + if node.input_dtype('Y', 0) == paddle.int32 or node.input_dtype( + 'Y', 0) == paddle.int64: + onnx_node = graph.make_node( + "Mod", inputs=[x, y], outputs=node.output('Out')) + return + + fmod = 1 + + abs_x_node = graph.make_node("Abs", inputs=[x]) + abs_y_node = graph.make_node("Abs", inputs=[y]) + + dtype = dtypes.ONNX.FLOAT + val_0 = [0.0] + val_1 = [-1.0] + if node.input_dtype('Y', 0) == paddle.float64: + dtype = dtypes.ONNX.DOUBLE + if node.input_dtype('Y', 0) == paddle.int32: + dtype = dtypes.ONNX.INT32 + val_0 = [0] + val_1 = [-1] + if node.input_dtype('Y', 0) == paddle.int64: + dtype = dtypes.ONNX.INT64 + val_0 = [0] + val_1 = [-1] + zero_node = graph.make_node('Constant', dtype=dtype, value=val_0) + one_node = graph.make_node('Constant', dtype=dtype, value=val_1) + + mod_node = graph.make_node( + "Mod", inputs=[abs_x_node, abs_y_node], fmod=fmod) + + minus_node = graph.make_node("Mul", inputs=[mod_node, one_node]) + + condition_dtype = graph.make_node("Less", inputs=[x, zero_node]) + condition = graph.make_node( + 'Cast', inputs=[condition_dtype], to=dtypes.ONNX.BOOL) + + mod_res = graph.make_node( + "Where", inputs=[condition, minus_node, mod_node]) + + add_node = graph.make_node("Add", inputs=[mod_res, y]) + + mod_y_mul_node = graph.make_node("Mul", inputs=[mod_res, y]) + condition_dtype_1 = graph.make_node( + "Less", inputs=[mod_y_mul_node, zero_node]) + condition_1 = graph.make_node( + 'Cast', inputs=[condition_dtype_1], to=dtypes.ONNX.BOOL) + + graph.make_node( + "Where", + inputs=[condition_1, add_node, mod_res], + outputs=node.output('Out')) + + +@op_mapper('elementwise_floordiv') +class ElementWiseFloorDiv(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x = node.input('X', 0) + y = node.input('Y', 0) + axis = node.attr('axis') + x_shape = node.input_shape('X', 0) + y_shape = node.input_shape('Y', 0) + x_dtype = node.input_dtype('X', 0) + y_dtype = node.input_dtype('Y', 0) + x_dtype = dtypes.DTYPE_PADDLE_STR_MAP[x_dtype] + y_dtype = dtypes.DTYPE_PADDLE_STR_MAP[y_dtype] + is_int = False + if x_dtype.count('int') > 0 and y_dtype.count('int') > 0: + is_int = True + if axis == -1 or axis == (len(x_shape) - 1 + ) or len(x_shape) == len(y_shape): + if is_int: + graph.make_node( + 'Div', inputs=[x, y], outputs=node.output('Out')) + else: + div_node = graph.make_node('Div', inputs=[x, y]) + graph.make_node( + 'Floor', inputs=[div_node], outputs=node.output('Out')) + else: + broadcast_shape = [1] * len(x_shape) + broadcast_shape[axis:axis + len(y_shape)] = y_shape + broadcast_shape_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=list(broadcast_shape)) + y_node = graph.make_node( + 'Reshape', inputs=[y, broadcast_shape_node]) + if is_int: + div_node = graph.make_node( + 'Div', inputs=[x, y_node], outputs=node.output('Out')) + else: + div_node = graph.make_node('Div', inputs=[x, y_node]) + graph.make_node( + 'Floor', inputs=[div_node], outputs=node.output('Out')) + + +@op_mapper('pow') +class Pow(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x = node.input('X', 0) + x_dtype = node.input_dtype('X', 0) + factor = node.attr('factor') + # Pow-7 Only support input type as float and double + if x_dtype == paddle.int32 or x_dtype == paddle.int64: + x = graph.make_node('Cast', inputs=[x], to=dtypes.ONNX.FLOAT) + factor_node = graph.make_node( + 'Constant', + inputs=[], + dims=[1], + dtype=dtypes.ONNX.FLOAT, + value=factor) + else: + factor_node = graph.make_node( + 'Constant', + inputs=[], + dims=[1], + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + value=factor) + if x_dtype == paddle.int32 or x_dtype == paddle.int64: + pow_node = graph.make_node('Pow', inputs=[x, factor_node]) + graph.make_node( + 'Cast', + inputs=[pow_node], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + outputs=node.output('Out')) + else: + graph.make_node( + 'Pow', inputs=[x, factor_node], outputs=node.output('Out')) + + @classmethod + def opset_12(cls, graph, node, **kw): + x = node.input('X', 0) + factor = node.attr('factor') + factor_node = graph.make_node( + 'Constant', + inputs=[], + dims=[1], + dtype=dtypes.ONNX.FLOAT, + value=factor) + pow_node = graph.make_node( + 'Pow', inputs=[x, factor_node], outputs=node.output('Out')) + + +@op_mapper('square') +class Square(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + x = node.input('X', 0) + onnx_node = graph.make_node( + 'Mul', inputs=[x, x], outputs=node.output('Out')) + + +@op_mapper('cumsum') +class CumSum(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + + axis = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=node.attr('axis')) + graph.make_node( + 'CumSum', + inputs=[node.input('X', 0), axis], + outputs=node.output('Out')) + + +@op_mapper('mul') +class Mul(): + support_opset_version_range = (5, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + x = node.input('X', 0) + y = node.input('Y', 0) + out = node.output('Out', 0) + x_num_col_dims = node.attr('x_num_col_dims') + y_num_col_dims = node.attr('y_num_col_dims') + flatten_x = graph.make_node( + 'Flatten', inputs=node.input('X'), attrs={'axis': x_num_col_dims}) + flatten_y = graph.make_node( + 'Flatten', inputs=node.input('Y'), attrs={'axis': y_num_col_dims}) + mul_node = graph.make_node('MatMul', inputs=[flatten_x, flatten_y]) + + x_shape = graph.make_node('Shape', inputs=[x]) + l_shape = mapper_helper.slice_helper( + graph, x_shape, axes=[0], starts=[0], ends=[x_num_col_dims]) + y_shape = graph.make_node('Shape', inputs=[y]) + y_rank = len(node.input_shape('Y', 0)) + r_shape = mapper_helper.slice_helper( + graph, y_shape, axes=[0], starts=[y_num_col_dims], ends=[y_rank]) + + out_shape = graph.make_node('Concat', inputs=[l_shape, r_shape], axis=0) + graph.make_node('Reshape', [mul_node, out_shape], node.output('Out')) + + +@op_mapper('affine_channel') +class AffineChannel(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + if "data_layout" in node.attrs.keys(): + assert node.attrs['data_layout'] == 'NCHW' or node.attrs['data_layout'] == "AnyLayout", \ + "The affine_channel data format should be 'NCHW', but received data format " \ + "is %s." % node.attrs['data_layout'] + x = node.input('X', 0) + bias = node.input('Bias', 0) + scale = node.input('Scale', 0) + scale = mapper_helper.unsqueeze_helper(graph, scale, [0, 2, 3]) + bias = mapper_helper.unsqueeze_helper(graph, bias, [0, 2, 3]) + x = graph.make_node('Mul', inputs=[x, scale]) + x = graph.make_node('Add', inputs=[x, bias], outputs=node.output('Out')) + + +@op_mapper('bmm') +class BMM(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + x = node.input('X', 0) + y = node.input('Y', 0) + mul_node = graph.make_node( + 'MatMul', inputs=[x, y], outputs=node.output('Out')) + + +@op_mapper('p_norm') +class PNorm(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + x = node.input('X', 0) + axis = node.attr('axis') + if isinstance(axis, (int, float)): + axis = [axis] + p = node.attr('porder') + keepdim = node.attr('keepdim') + dtype = dtypes.ONNX.FLOAT + if node.input_dtype('X', 0) == paddle.float64: + dtype = dtypes.ONNX.DOUBLE + + pnode = graph.make_node('Constant', dtype=dtype, value=[p]) + + abs_node = graph.make_node('Abs', inputs=[x]) + pow_node = graph.make_node('Pow', inputs=[abs_node, pnode]) + reduce_sum = graph.make_node( + 'ReduceSum', inputs=[pow_node], axes=axis, keepdims=keepdim) + pnode1 = graph.make_node('Constant', dtype=dtype, value=[1.0 / p]) + graph.make_node( + 'Pow', inputs=[reduce_sum, pnode1], outputs=node.output('Out')) + + @classmethod + def opset_13(cls, graph, node, **kw): + x = node.input('X', 0) + axis = node.attr('axis') + if isinstance(axis, (int, float)): + axis = [axis] + p = node.attr('porder') + keepdim = node.attr('keepdim') + pnode = graph.make_node('Constant', dtype=dtypes.ONNX.FLOAT, value=[p]) + abs_node = graph.make_node('Abs', inputs=[x]) + pow_node = graph.make_node('Pow', inputs=[abs_node, pnode]) + axes = graph.make_node('Constant', dtype=dtypes.ONNX.INT64, value=axis) + reduce_sum = graph.make_node( + 'ReduceSum', inputs=[pow_node, axes], keepdims=keepdim) + pnode1 = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[1.0 / p]) + graph.make_node( + 'Pow', inputs=[reduce_sum, pnode1], outputs=node.output('Out')) + + +@op_mapper('sum') +class Sum(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Sum', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('floor') +class Floor(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Floor', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('log10') +class Log10(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + _ln10 = 2.30258509299404568401 + dtype = dtypes.ONNX.FLOAT + if node.input_dtype('X', 0) == paddle.float64: + dtype = dtypes.ONNX.DOUBLE + _ln10 = graph.make_node('Constant', dtype=dtype, value=_ln10) + lnx = graph.make_node('Log', inputs=node.input('X')) + graph.make_node('Div', inputs=[lnx, _ln10], outputs=node.output('Out')) + + +@op_mapper('log1p') +class Log1p(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + dtype = dtypes.ONNX.FLOAT + if node.input_dtype('X', 0) == paddle.float64: + dtype = dtypes.ONNX.DOUBLE + one = graph.make_node('Constant', attrs={'dtype': dtype, 'value': [1]}) + add_node = graph.make_node('Add', inputs=[node.input('X', 0), one]) + graph.make_node('Log', inputs=add_node, outputs=node.output('Out')) + + +@op_mapper( + ['reduce_all', 'reduce_any'], + mapper_dict={'reduce_all': 'ReduceMin', + 'reduce_any': 'ReduceMax'}) +class ReduceAll(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + op_type = kw['mapper_dict'][node.type] + input_dtype = node.block.vars[node.input('X', 0)].dtype + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[input_dtype] + all_node = graph.make_node( + 'Cast', inputs=[node.input('X', 0)], to=dtypes.ONNX.INT32) + + attrs = {'keepdims': node.attr('keep_dim'), } + if not node.attr('reduce_all'): + attrs['axes'] = node.attr('dim') + output_node = graph.make_node(op_type, inputs=[all_node], attrs=attrs) + + if node.attr('reduce_all') and not node.attr('keep_dim'): + output_node = mapper_helper.unsqueeze_helper(graph, output_node, + [0]) + graph.make_node( + 'Cast', + inputs=[output_node], + to=input_dtype, + outputs=node.output('Out')) + + +@op_mapper( + ['reduce_mean', 'reduce_sum', 'reduce_min', 'reduce_max', 'reduce_prod'], + mapper_dict={ + 'reduce_mean': 'ReduceMean', + 'reduce_sum': 'ReduceSum', + 'reduce_min': 'ReduceMin', + 'reduce_max': 'ReduceMax', + 'reduce_prod': 'ReduceProd' + }) +class ReduceMean(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + op_type = kw['mapper_dict'][node.type] + + output_shape = node.output_shape('Out', 0) + reduce_all = node.attr("reduce_all") + axes = node.attr("dim") + if reduce_all: + axes = list(range(len(node.input_shape("X", 0)))) + if len(axes) == len(node.input_shape("X", 0)): + reduce_all = True + keepdims = node.attr('keep_dim') + if keepdims: + cls.create_reduce_node(graph, op_type, + node.input("X"), node.output("Out"), axes, 1) + else: + if reduce_all: + shape = graph.make_node( + "Constant", dtype=dtypes.ONNX.INT64, value=[-1]) + flatten_node = graph.make_node( + "Reshape", inputs=[node.input("X")[0], shape]) + cls.create_reduce_node(graph, op_type, [flatten_node], + node.output("Out"), [0], 1) + else: + cls.create_reduce_node(graph, op_type, + node.input("X"), + node.output("Out"), axes, 0) + + @classmethod + def create_reduce_node(cls, graph, op_type, inputs, outputs, axes, + keepdims): + if graph.opset_version >= 13 and op_type == "ReduceSum": + axes = graph.make_node( + "Constant", dtype=dtypes.ONNX.INT64, value=axes) + output = graph.make_node( + "ReduceSum", + inputs=inputs + [axes], + outputs=outputs, + keepdims=keepdims) + else: + output = graph.make_node( + op_type, + inputs=inputs, + outputs=outputs, + axes=axes, + keepdims=keepdims) + + +@op_mapper('mean') +class Mean(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + shape = graph.make_node("Constant", dtype=dtypes.ONNX.INT64, value=[-1]) + flatten_node = graph.make_node( + "Reshape", inputs=[node.input("X")[0], shape]) + mean_node = graph.make_node( + 'ReduceMean', + inputs=flatten_node, + outputs=node.output("Out"), + keepdims=1) + + +@op_mapper('arg_max') +class ArgMax(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + if node.attr('dtype') and node.attr('dtype') == 2: + arg_node = graph.make_node( + 'ArgMax', + inputs=node.input('X'), + attrs={ + 'axis': node.attr('axis'), + 'keepdims': node.attr('keepdims') + }) + graph.make_node( + 'Cast', + inputs=arg_node, + attrs={'to': dtypes.ONNX.INT32}, + outputs=node.output('Out')) + else: + graph.make_node( + 'ArgMax', + inputs=node.input('X'), + outputs=node.output('Out'), + attrs={ + 'axis': node.attr('axis'), + 'keepdims': node.attr('keepdims') + }) + + +@op_mapper('arg_min') +class ArgMin(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + if node.attr('flatten'): + flatten = graph.make_node('Flatten', inputs=node.input('X'), axis=0) + squeeze_node = graph.make_node('Squeeze', inputs=flatten) + graph.make_node( + 'ArgMin', inputs=squeeze_node, outputs=node.output('Out')) + else: + if node.attr('keepdims'): + graph.make_node( + 'ArgMin', + inputs=node.input('X'), + outputs=node.output('Out'), + axis=node.attr('axis'), + keepdims=1) + else: + graph.make_node( + 'ArgMin', + inputs=node.input('X'), + outputs=node.output('Out'), + axis=node.attr('axis'), + keepdims=0) + + +@op_mapper('brelu') +class Hardtanh(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + mapper_helper.clip_helper(graph, node, + node.input('X', 0), + node.attr('t_max'), + node.attr('t_min'), node.output('Out', 0)) + + +@op_mapper('mv') +class Mv(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'MatMul', + inputs=[node.input('X', 0), node.input('Vec', 0)], + outputs=node.output('Out')) + + +@op_mapper('dot') +class Dot(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + mul_node = graph.make_node( + 'Mul', inputs=[node.input('X', 0), node.input('Y', 0)]) + graph.make_node( + 'ReduceSum', + inputs=[mul_node], + axes=[len(node.input_shape('X', 0)) - 1], + outputs=node.output('Out')) + + @classmethod + def opset_13(cls, graph, node, **kw): + mul_node = graph.make_node( + 'Mul', inputs=[node.input('X', 0), node.input('Y', 0)]) + one = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=[len(node.input_shape('X', 0)) - 1]) + graph.make_node( + 'ReduceSum', inputs=[mul_node, one], outputs=node.output('Out')) + + +@op_mapper('dist') +class Dist(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + sub_node = graph.make_node( + 'Sub', inputs=[node.input('X', 0), node.input('Y', 0)]) + abs_node = graph.make_node('Abs', inputs=sub_node) + if node.attr('p') == 0: + assert graph.opset_version >= 9, "When p is 0, onnx opset should be (onnx_opset>=9)." + sign_node = graph.make_node('Sign', inputs=abs_node) + sum_node = graph.make_node( + 'ReduceSum', inputs=sign_node, keepdims=0) + mapper_helper.unsqueeze_helper(graph, sum_node, [0], + node.output('Out')) + elif node.attr('p') == float('inf'): + max_node = graph.make_node('ReduceMax', inputs=abs_node, keepdims=0) + mapper_helper.unsqueeze_helper(graph, max_node, [0], + node.output('Out')) + elif node.attr('p') == float('-inf'): + min_node = graph.make_node('ReduceMin', inputs=abs_node, keepdims=0) + mapper_helper.unsqueeze_helper(graph, min_node, [0], + node.output('Out')) + else: + x_dtype = node.input_dtype('X', 0) + p = graph.make_node( + 'Constant', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype], + value=node.attr('p')) + pow_node = graph.make_node( + 'Pow', + inputs=[abs_node, p], ) + sum_node = graph.make_node('ReduceSum', inputs=pow_node, keepdims=0) + sum_node = mapper_helper.unsqueeze_helper(graph, sum_node, [0]) + p_1 = graph.make_node('Reciprocal', inputs=p) + graph.make_node( + 'Pow', inputs=[sum_node, p_1], outputs=node.output('Out')) + + +@op_mapper('round') +class Round(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + graph.make_node( + 'Round', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('rsqrt') +class Rsqrt(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + sqrt_node = graph.make_node('Sqrt', inputs=node.input('X')) + graph.make_node( + 'Reciprocal', inputs=sqrt_node, outputs=node.output('Out')) + + +@op_mapper('sign') +class Sign(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Sign', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('scale') +class Scale(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + scale = node.attr('scale') + bias = node.attr('bias') + if len(node.input('ScaleTensor')) == 0 and np.fabs( + scale - 1.0) < 1e-06 and np.fabs(bias - 0.0) < 1e-06: + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + else: + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)] + if input_dtype in [ + dtypes.ONNX.INT16, dtypes.ONNX.INT32, dtypes.ONNX.INT64 + ]: + outputs = None + data_type = dtypes.ONNX.FLOAT + cast_node = graph.make_node( + 'Cast', inputs=node.input('X'), attrs={'to': data_type}) + else: + outputs = node.output('Out') + data_type = input_dtype + cast_node = node.input('X')[0] + + if len(node.input('ScaleTensor')) > 0: + scale_node = node.input('ScaleTensor')[0] + scale_type = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype( + 'ScaleTensor', 0)] + if scale_type != data_type: + scale_node = graph.make_node( + 'Cast', inputs=[scale_node], attrs={'to': data_type}) + else: + scale_node = graph.make_node( + 'Constant', attrs={'dtype': data_type, + 'value': [scale]}) + bias_node = graph.make_node( + 'Constant', attrs={'dtype': data_type, + 'value': [bias]}) + + if node.attr('bias_after_scale'): + node1 = graph.make_node('Mul', inputs=[cast_node, scale_node]) + node2 = graph.make_node( + 'Add', inputs=[node1, bias_node], outputs=outputs) + else: + node1 = graph.make_node('Add', inputs=[cast_node, bias_node]) + node2 = graph.make_node( + 'Mul', inputs=[node1, scale_node], outputs=outputs) + + if input_dtype in [ + dtypes.ONNX.INT16, dtypes.ONNX.INT32, dtypes.ONNX.INT64 + ]: + cast_node = graph.make_node( + 'Cast', + inputs=node2, + outputs=node.output('Out'), + attrs={'to': input_dtype}) + + +@op_mapper('softmax') +class Softmax(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + axis = node.attr('axis') + shape = node.output_shape('Out', 0) + if axis is None: + axis = -1 + if axis < 0: + axis += len(shape) + if axis == len(shape) - 1: + node = graph.make_node( + 'Softmax', + inputs=node.input('X'), + outputs=node.output('Out'), + attrs={'axis': axis}) + else: + perm = [i for i in range(len(shape))] + perm[-1] = axis + perm[axis] = len(shape) - 1 + transpose_node = graph.make_node( + 'Transpose', inputs=node.input('X'), attrs={'perm': perm}) + softmax_node = graph.make_node( + 'Softmax', inputs=[transpose_node], axis=-1) + transpose_node1 = graph.make_node( + 'Transpose', + inputs=[softmax_node], + outputs=node.output('Out'), + attrs={'perm': perm}) + + @classmethod + def opset_13(cls, graph, node, **kw): + graph.make_node( + 'Softmax', + inputs=node.input('X'), + axis=node.attr('axis'), + outputs=node.output('Out')) + + +@op_mapper('unfold') +class Unfold(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + + strides = node.attr('strides') + stride_h = strides[0] + stride_w = strides[1] + + paddings = node.attr('paddings') + padding_h_1 = paddings[0] + padding_w_1 = paddings[1] + padding_h_2 = paddings[2] + padding_w_2 = paddings[3] + + dilations = node.attr('dilations') + dilation_h = dilations[0] + dilation_w = dilations[1] + + kernel_sizes = node.attr('kernel_sizes') + kernel_h = kernel_sizes[0] + kernel_w = kernel_sizes[1] + + input_w = mapper_helper.shape_helper(graph, node.input('X', 0), 3) + blocks_row_indices_node = cls._get_im2col_indices_along_dim( + graph, node, 2, kernel_h, dilation_h, padding_h_1, padding_h_2, + stride_h) + blocks_col_indices_node = cls._get_im2col_indices_along_dim( + graph, node, 3, kernel_w, dilation_w, padding_w_1, padding_w_2, + stride_w) + + output_shape = cls._get_im2col_output_shape(graph, node, kernel_h, + kernel_w) + padded_input = cls._get_im2col_padded_input( + graph, node, padding_h_1, padding_h_2, padding_w_1, padding_w_2) + + output = graph.make_node( + 'Gather', inputs=[padded_input, blocks_row_indices_node], axis=2) + + output = graph.make_node( + 'Gather', inputs=[output, blocks_col_indices_node], axis=4) + output = graph.make_node( + 'Transpose', inputs=[output], perm=[0, 1, 2, 4, 3, 5]) + + graph.make_node( + 'Reshape', inputs=[output, output_shape], outputs=node.output('Y')) + + @classmethod + def _get_im2col_indices_along_dim(cls, graph, node, index, kernel_size_d, + dilation_d, padding_d_1, padding_d_2, + stride_d): + input_shape = node.input_shape('X', 0) + if input_shape[index] == -1: + input_d_node = mapper_helper.shape_helper(graph, + node.input('X', 0), index) + + padding_d_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=[padding_d_1 + padding_d_2]) + blocks_d_node = graph.make_node( + 'Add', inputs=[input_d_node, padding_d_node]) + + dilation_kernel_size_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=[dilation_d * (kernel_size_d - 1)]) + blocks_d_node = graph.make_node( + 'Sub', inputs=[blocks_d_node, dilation_kernel_size_node]) + + zero_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0]) + stride_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[stride_d]) + blocks_d_indices_node = graph.make_node( + 'Range', inputs=[zero_node, blocks_d_node, stride_node]) + else: + end = input_shape[ + index] + padding_d_1 + padding_d_2 - dilation_d * (kernel_size_d + - 1) + stride = stride_d + blocks_d_indices = np.arange(0, end, stride) + blocks_d_indices_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=blocks_d_indices.flatten().tolist()) + + kernel_grid = np.arange(0, kernel_size_d * dilation_d, dilation_d) + kernel_grid_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=kernel_grid.flatten().tolist()) + + shape_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[-1, 1]) + kernel_mask_node = graph.make_node( + 'Reshape', inputs=[kernel_grid_node, shape_node]) + + block_mask_node = graph.make_node( + 'Add', inputs=[blocks_d_indices_node, kernel_mask_node]) + return block_mask_node + + @classmethod + def _get_im2col_output_shape(cls, graph, node, kernel_h, kernel_w): + batch_dim = mapper_helper.shape_helper(graph, node.input('X', 0), 0) + channel_dim = mapper_helper.shape_helper(graph, node.input('X', 0), 1) + + constant_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[kernel_h * kernel_w]) + channel_unfolded = graph.make_node( + 'Mul', inputs=[channel_dim, constant_node]) + + concat_const_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[-1]) + result_node = graph.make_node( + 'Concat', + inputs=[batch_dim, channel_unfolded, concat_const_node], + axis=0) + + return result_node + + @classmethod + def _get_im2col_padded_input(cls, graph, node, padding_h_1, padding_h_2, + padding_w_1, padding_w_2): + pad_const_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=[ + 0, 0, padding_h_1, padding_w_1, 0, 0, padding_h_2, padding_w_2 + ]) + result_node = graph.make_node( + 'Pad', inputs=[node.input('X', 0), pad_const_node]) + return result_node + + +@op_mapper('softmax_with_cross_entropy') +class SoftmaxCrossEntropyLoss(): + support_opset_version_range = (12, 15) + + @classmethod + def opset_12(cls, graph, node, **kw): + if node.attr('soft_label'): + raise Exception( + "SoftmaxCrossEntropyLoss in onnx not support soft label.") + scores = node.input('Logits', 0) + labels = node.input('Label', 0) + # Whether return_softmax is True or False, the model will have two outputs + outputs = [node.output('Loss', 0), node.output('Softmax', 0)] + + shape = node.input_shape('Logits', 0) + if len(shape) < 2: + raise Exception( + "SoftmaxCrossEntropyLoss in onnx not support 1D logits.") + axis = node.attr('axis') + if axis < 0: + axis += len(shape) + if axis == 1: + squeeze_node = mapper_helper.squeeze_helper(graph, labels, [axis]) + loss_node, softmax_node = graph.make_node( + 'SoftmaxCrossEntropyLoss', + inputs=[scores, squeeze_node], + outputs=2, + ignore_index=node.attr('ignore_index'), + reduction='none') + loss_node = mapper_helper.unsqueeze_helper(graph, loss_node, + [axis], outputs[0]) + # onnx output is log(softmax), but paddle output is softmax + graph.make_node('Exp', inputs=[softmax_node], outputs=outputs[1]) + else: + perm = [i for i in range(len(shape))] + perm[1] = axis + perm[axis] = 1 + transpose_scores = graph.make_node( + 'Transpose', inputs=[scores], perm=perm) + transpose_labels = graph.make_node( + 'Transpose', inputs=[labels], perm=perm) + squeeze_labels = mapper_helper.squeeze_helper( + graph, transpose_labels, [1]) + + loss_node, softmax_node = graph.make_node( + 'SoftmaxCrossEntropyLoss', + inputs=[transpose_scores, squeeze_labels], + ignore_index=node.attr('ignore_index'), + outputs=2, + reduction='none') + output_node = mapper_helper.unsqueeze_helper(graph, loss_node, [1]) + graph.make_node( + 'Transpose', inputs=output_node, outputs=outputs[0], perm=perm) + softmax_node = graph.make_node( + 'Transpose', inputs=softmax_node, perm=perm) + # onnx output is log(softmax), but paddle output is softmax + graph.make_node('Exp', inputs=[softmax_node], outputs=outputs[1]) diff --git a/paddle2onnx/legacy/op_mapper/nn.py b/paddle2onnx/legacy/op_mapper/nn.py new file mode 100755 index 0000000000..37e2f1fabc --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/nn.py @@ -0,0 +1,952 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +import math +import collections +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper +from paddle2onnx import utils +import paddle + + +@op_mapper(['conv2d', 'depthwise_conv2d', 'conv3d']) +class Conv(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + kernel_shape = node.input_shape('Filter', 0) + dilations = node.attr('dilations') + kernel_shape = kernel_shape[2:] + strides = node.attr('strides') + group = node.attr('groups') + pads = node.attr('paddings') + assert node.attrs['data_format'] == 'NCHW' or node.attrs['data_format'] == 'NCDHW' or node.attrs['data_format'] == "AnyLayout", \ + "The conv data format should be 'NCHW' or 'NCDHW', but received data format " \ + "is %s." % node.attrs['data_format'] + # onnx padding is [x1_begin, x2_begin...x1_end, x2_end, ...] + if len(pads) == 2 or len(pads) == 3: + pads = pads + pads + elif len(pads) == 4: + pads = [pads[i] for i in [0, 2, 1, 3]] + elif len(pads) == 6: + pads = [pads[i] for i in [0, 2, 4, 1, 3, 5]] + attrs = { + 'dilations': dilations, + 'kernel_shape': kernel_shape, + 'strides': strides, + 'group': group + } + auto_pad = node.attr('padding_algorithm') + if auto_pad == 'SAME': + attrs['auto_pad'] = 'SAME_UPPER' + elif auto_pad == 'VALID': + attrs['auto_pad'] = 'VALID' + else: + attrs['pads'] = pads + graph.make_node( + 'Conv', + inputs=node.input('Input') + node.input('Filter'), + outputs=node.output('Output'), + attrs=attrs) + + +@op_mapper( + ['conv2d_transpose', 'depthwise_conv2d_transpose', 'conv3d_transpose']) +class ConvTranspose(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + output_padding = node.attr('output_padding') + kernel_shape = node.input_shape('Filter', 0) + dilations = node.attr('dilations') + kernel_shape = kernel_shape[2:] + strides = node.attr('strides') + group = node.attr('groups') + pads = node.attr('paddings') + assert node.attrs['data_format'] == 'NCHW' or node.attrs['data_format'] == 'NCDHW', \ + "The conv data format should be 'NCHW' or 'NCDHW', but received data format " \ + "is %s." % node.attrs['data_format'] + + if len(pads) == 2 or len(pads) == 3: + pads = pads + pads + elif len(pads) == 4: + pads = [pads[i] for i in [0, 2, 1, 3]] + elif len(pads) == 6: + pads = [pads[i] for i in [0, 2, 4, 1, 3, 5]] + + attrs = { + 'dilations': dilations, + 'kernel_shape': kernel_shape, + 'strides': strides, + 'group': group + } + auto_pad = node.attr('padding_algorithm') + if auto_pad == 'SAME': + attrs['auto_pad'] = 'SAME_UPPER' + elif auto_pad == 'VALID': + attrs['auto_pad'] = 'VALID' + else: + attrs['pads'] = pads + if output_padding and len(output_padding) > 0: + attrs['output_padding'] = output_padding + graph.make_node( + 'ConvTranspose', + inputs=node.input('Input') + node.input('Filter'), + outputs=node.output('Output'), + attrs=attrs) + + +@op_mapper('pool2d') +class Pool(): + support_opset_version_range = (1, 12) + pool_type = { + 'max': ('MaxPool', 'GlobalMaxPool'), + 'avg': ('AveragePool', 'GlobalAveragePool') + } + + @classmethod + def is_same_span(cls, in_size, out_size): + spans = [] + for i in range(out_size): + start = math.floor(i * (in_size / out_size)) + end = math.ceil((i + 1) * (in_size / out_size)) + spans.append(end - start) + if len(set(spans)) == 1: + return True + return False + + @classmethod + def opset_1(cls, graph, node, **kw): + assert node.attrs['data_format'] == 'NCHW' or node.attrs['data_format'] == "AnyLayout", \ + "The conv data format should be 'NCHW', but received data format " \ + "is %s." % node.attrs['data_format'] + x_dtype = node.input_dtype('X', 0) + need_dtype_convert = False + input_name = node.input('X', 0) + if x_dtype != paddle.float32: + need_dtype_convert = True + input_name = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.FLOAT) + + if node.attr('global_pooling') or (node.attr('adaptive') and + node.attr('ksize') == [1, 1]): + if need_dtype_convert: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][1], + inputs=[input_name]) + graph.make_node( + 'Cast', + inputs=[onnx_node], + outputs=node.output('Out'), + to=dtypes.ONNX.DOUBLE) + else: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][1], + inputs=[input_name], + outputs=node.output('Out')) + elif node.attr('adaptive'): + # if pool is adaptive, check if input shape of pool is fixed. + if node.input_shape('X', 0)[2:].count(-1) > 0: + raise Exception( + "Converting this model to ONNX need with static input shape," \ + " please fix input shape of this model, see doc Q2 in" \ + " https://github.com/PaddlePaddle/paddle2onnx/blob/develop/docs/en/FAQ.md." + ) + input_h, input_w = node.input_shape('X', 0)[2:] + output_h, output_w = node.output_shape('Out', 0)[2:] + stride_h = int(input_h / output_h) + stride_w = int(input_w / output_w) + + kernel_h = input_h - (output_h - 1) * stride_h + kernel_w = input_w - (output_w - 1) * stride_w + + #check if kernel_size is fixed. + if not cls.is_same_span(input_h, output_h) or not cls.is_same_span( + input_w, output_w): + raise Exception( + "Cannot convert adaptive pool with input_size: {}, output_size: {}" + .format( + node.input_shape('X', 0), node.output_shape('Out', 0))) + else: + attrs = { + 'kernel_shape': (kernel_h, kernel_w), + 'strides': (stride_h, stride_w), + } + if node.attr('ceil_mode') and graph.opset_version < 10: + raise Exception( + "Cannot convert pool with ceil_model == True to ONNX Opset version < 10." + ) + elif graph.opset_version > 10: + attrs['ceil_mode'] = node.attr('ceil_mode') + auto_pad = node.attr('padding_algorithm') + if auto_pad == 'SAME': + attrs['auto_pad'] = 'SAME_UPPER' + elif auto_pad == 'VALID': + attrs['auto_pad'] = 'VALID' + if node.attr('pooling_type') == 'avg': + attrs['count_include_pad'] = not node.attr('exclusive') + if need_dtype_convert: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=[input_name], + attrs=attrs) + graph.make_node( + 'Cast', + inputs=[onnx_node], + outputs=node.output('Out'), + to=dtypes.ONNX.DOUBLE) + else: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=[input_name], + outputs=node.output('Out'), + attrs=attrs) + else: + input_shape = node.input_shape('X', 0) + k_size = node.attr('ksize') + pads = node.attr('paddings') + strides = node.attr('strides') + + if len(pads) == 2: + pads = pads + pads + elif len(pads) == 4: + pads = [pads[i] for i in [0, 2, 1, 3]] + + if input_shape[2] > 0 and input_shape[2] + pads[0] < k_size[0]: + k_size[0] = input_shape[2] + pads[0] + if input_shape[3] > 0 and input_shape[3] + pads[1] < k_size[1]: + k_size[1] = input_shape[3] + pads[1] + + input_x = [input_name] + if max(k_size) <= max(pads): + onnx_paddings = [0, 0, pads[0], pads[1], 0, 0, pads[2], pads[3]] + attrs_pad = {'mode': 'constant', } + if graph.opset_version >= 11: + pads_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.ONNX.INT64, + 'value': onnx_paddings + }) + value_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': 0.0}) + input_x = input_x + [pads_node, value_node] + else: + attrs_pad['pads'] = onnx_paddings + attrs_pad['value'] = 0.0 + input_x = graph.make_node( + 'Pad', inputs=input_x, attrs=attrs_pad) + pads = [0, 0, 0, 0] + + attrs = { + 'kernel_shape': k_size, + 'strides': strides, + } + auto_pad = node.attr('padding_algorithm') + if auto_pad == 'SAME': + attrs['auto_pad'] = 'SAME_UPPER' + elif auto_pad == 'VALID': + attrs['auto_pad'] = 'VALID' + else: + attrs['pads'] = pads + if node.attr('ceil_mode') and graph.opset_version < 10: + raise Exception( + "Cannot convert pool with ceil_model == True to ONNX Opset version < 10" + ) + elif graph.opset_version >= 10: + attrs['ceil_mode'] = node.attr('ceil_mode') + + if node.attr('pooling_type') == 'avg': + attrs['count_include_pad'] = not node.attr('exclusive') + if need_dtype_convert: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=input_x, + attrs=attrs) + graph.make_node( + 'Cast', + inputs=[onnx_node], + outputs=node.output('Out'), + to=dtypes.ONNX.DOUBLE) + else: + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=input_x, + outputs=node.output('Out'), + attrs=attrs) + + +@op_mapper('pool3d') +class Pool3D(): + support_opset_version_range = (1, 12) + pool_type = { + 'max': ('MaxPool', 'GlobalMaxPool'), + 'avg': ('AveragePool', 'GlobalAveragePool') + } + + @classmethod + def is_same_span(cls, in_size, out_size): + spans = [] + for i in range(out_size): + start = math.floor(i * (in_size / out_size)) + end = math.ceil((i + 1) * (in_size / out_size)) + spans.append(end - start) + if len(set(spans)) == 1: + return True + return False + + @classmethod + def opset_1(cls, graph, node, **kw): + assert node.attrs['data_format'] == 'NCDHW' or node.attrs['data_format'] == "AnyLayout", \ + "The conv data format should be 'NCDHW', but received data format " \ + "is %s." % node.attrs['data_format'] + + if node.attr('global_pooling') or (node.attr('adaptive') and + node.attr('ksize') == [1, 1, 1]): + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][1], + inputs=node.input('X'), + outputs=node.output('Out')) + elif node.attr('adaptive'): + # if pool is adaptive, check if input shape of pool is fixed. + if node.input_shape('X', 0)[2:].count(-1) > 0: + raise Exception( + "Converting this model to ONNX need with static input shape," \ + " please fix input shape of this model, see doc Q2 in" \ + " https://github.com/PaddlePaddle/paddle2onnx/blob/develop/docs/en/FAQ.md." + ) + input_d, input_h, input_w = node.input_shape('X', 0)[2:] + output_d, output_h, output_w = node.output_shape('Out', 0)[2:] + stride_d = int(input_d / output_d) + stride_h = int(input_h / output_h) + stride_w = int(input_w / output_w) + + kernel_d = input_d - (output_d - 1) * stride_d + kernel_h = input_h - (output_h - 1) * stride_h + kernel_w = input_w - (output_w - 1) * stride_w + + #check if kernel_size is fixed. + if not cls.is_same_span(input_h, output_h) or not cls.is_same_span( + input_w, output_w) or not cls.is_same_span(input_d, + output_d): + raise Exception( + "Cannot convert adaptive pool with input_size: {}, output_size: {}" + .format( + node.input_shape('X', 0), node.output_shape('Out', 0))) + else: + attrs = { + 'kernel_shape': (kernel_d, kernel_h, kernel_w), + 'strides': (stride_d, stride_h, stride_w), + } + if node.attr('ceil_mode') and graph.opset_version < 10: + raise Exception( + "Cannot convert pool with ceil_model == True to ONNX Opset version < 10." + ) + elif graph.opset_version > 10: + attrs['ceil_mode'] = node.attr('ceil_mode') + auto_pad = node.attr('padding_algorithm') + if auto_pad == 'SAME': + attrs['auto_pad'] = 'SAME_UPPER' + elif auto_pad == 'VALID': + attrs['auto_pad'] = 'VALID' + if node.attr('pooling_type') == 'avg': + attrs['count_include_pad'] = not node.attr('exclusive') + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=node.input('X'), + outputs=node.output('Out'), + attrs=attrs) + else: + input_shape = node.input_shape('X', 0) + k_size = node.attr('ksize') + paddings = node.attr('paddings') + if input_shape[2] > 0 and input_shape[2] + paddings[0] < k_size[0]: + k_size[0] = input_shape[2] + paddings[0] + if input_shape[3] > 0 and input_shape[3] + paddings[1] < k_size[1]: + k_size[1] = input_shape[3] + paddings[1] + if input_shape[4] > 0 and input_shape[4] + paddings[2] < k_size[2]: + k_size[2] = input_shape[4] + paddings[2] + attrs = { + 'kernel_shape': k_size, + 'strides': node.attr('strides'), + 'pads': node.attr('paddings') + node.attr('paddings'), + } + if node.attr('ceil_mode') and graph.opset_version < 10: + raise Exception( + "Cannot convert pool with ceil_model == True to ONNX Opset version < 10" + ) + elif graph.opset_version >= 10: + attrs['ceil_mode'] = node.attr('ceil_mode') + + if node.attr('pooling_type') == 'avg': + attrs['count_include_pad'] = not node.attr('exclusive') + onnx_node = graph.make_node( + cls.pool_type[node.attr('pooling_type')][0], + inputs=node.input('X'), + outputs=node.output('Out'), + attrs=attrs) + + +@op_mapper('elu') +class ELU(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'Elu', + inputs=node.input('X'), + outputs=node.output('Out'), + alpha=node.attr('alpha')) + + +@op_mapper('softsign') +class SoftSign(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Softsign', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('hard_shrink') +class Hardshrink(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + node = graph.make_node( + 'Shrink', + inputs=node.input('X'), + outputs=node.output('Out'), + lambd=node.attr('threshold')) + + +@op_mapper('logsigmoid') +class LogSigmoid(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + sigmoid_node = graph.make_node('Sigmoid', inputs=node.input('X')) + graph.make_node('Log', inputs=sigmoid_node, outputs=node.output('Out')) + + +@op_mapper('norm') +class Norm(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + node = graph.make_node( + 'LpNormalization', + inputs=node.input('X'), + outputs=node.output('Out'), + axis=node.attr('axis')) + + +@op_mapper('softshrink') +class SoftShrink(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Shrink', + inputs=node.input('X'), + bias=node.attr('lambda'), + lambd=node.attr('lambda'), + outputs=node.output('Out')) + + +@op_mapper('tanh_shrink') +class TanhShrink(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + tanh_node = graph.make_node( + 'Tanh', + inputs=node.input('X', 0), ) + graph.make_node( + 'Sub', + inputs=[node.input('X', 0), tanh_node], + outputs=node.output('Out')) + + +@op_mapper('log_softmax') +class LogSoftmax(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + axis = node.attr('axis') + shape = node.output_shape('Out', 0) + if axis is None: + axis = -1 + if axis < 0: + axis += len(shape) + if axis == len(shape) - 1: + node = graph.make_node( + 'LogSoftmax', + inputs=node.input('X'), + outputs=node.output('Out'), + attrs={'axis': axis}) + else: + perm = [i for i in range(len(shape))] + perm[-1] = axis + perm[axis] = len(shape) - 1 + transpose_node = graph.make_node( + 'Transpose', inputs=node.input('X'), attrs={'perm': perm}) + softmax_node = graph.make_node( + 'LogSoftmax', inputs=[transpose_node], axis=-1) + transpose_node1 = graph.make_node( + 'Transpose', + inputs=[softmax_node], + outputs=node.output('Out'), + attrs={'perm': perm}) + + @classmethod + def opset_13(cls, graph, node, **kw): + graph.make_node( + 'LogSoftmax', + inputs=node.input('X'), + axis=node.attr('axis'), + outputs=node.output('Out')) + + +@op_mapper('layer_norm') +class LayerNorm(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + ipt = node.input('X', 0) + ipt_dims = len(node.input_shape('X', 0)) + normalized_shape = node.attr('begin_norm_axis') + axes = None + if isinstance(normalized_shape, collections.Iterable): + axes = [-i for i in range(len(normalized_shape), 0, -1)] + else: + axes = [i for i in range(normalized_shape, ipt_dims)] + dtype = node.block.vars[node.input('X', 0)].dtype + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + epsilon = graph.make_node( + 'Constant', dtype=dtype, value=node.attr('epsilon')) + two = graph.make_node('Constant', dtype=dtype, value=2.0) + mean = graph.make_node("ReduceMean", inputs=[ipt], axes=axes) + numerator = graph.make_node("Sub", inputs=[ipt, mean]) + pow_num = graph.make_node("Pow", inputs=[numerator, two]) + variance = graph.make_node("ReduceMean", inputs=[pow_num], axes=axes) + add_eps = graph.make_node("Add", inputs=[variance, epsilon]) + denominator = graph.make_node("Sqrt", inputs=[add_eps]) + + ipt_shape = graph.make_node("Shape", inputs=[ipt]) + weight_shape = mapper_helper.slice_helper( + graph, ipt_shape, [0], [ipt_dims - len(axes)], [ipt_dims]) + if 'Bias' in node.inputs and 'Scale' in node.inputs and len( + node.input('Scale')) > 0 and len(node.input('Bias')) > 0: + if normalized_shape == ipt_dims - 1: + shape_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[-1]) + scale = graph.make_node( + "Reshape", inputs=[node.input('Scale', 0), shape_const]) + bias = graph.make_node( + "Reshape", inputs=[node.input('Bias', 0), shape_const]) + else: + scale = graph.make_node( + "Reshape", inputs=[node.input('Scale', 0), weight_shape]) + bias = graph.make_node( + "Reshape", inputs=[node.input('Bias', 0), weight_shape]) + layer_norm = graph.make_node("Div", inputs=[numerator, denominator]) + layer_norm = graph.make_node("Mul", inputs=[layer_norm, scale]) + graph.make_node( + "Add", inputs=[layer_norm, bias], outputs=node.output('Y')) + elif 'Bias' in node.inputs and len(node.input('Bias')) > 0: + if normalized_shape == ipt_dims - 1: + shape_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[-1]) + bias = graph.make_node( + "Reshape", inputs=[node.input('Bias', 0), shape_const]) + else: + bias = graph.make_node( + "Reshape", inputs=[node.input('Bias', 0), weight_shape]) + layer_norm = graph.make_node("Div", inputs=[numerator, denominator]) + graph.make_node( + "Add", inputs=[layer_norm, bias], outputs=node.output('Y')) + elif 'Scale' in node.inputs and len(node.input('Scale')) > 0: + if normalized_shape == ipt_dims - 1: + shape_const = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[-1]) + scale = graph.make_node( + "Reshape", inputs=[node.input('Scale', 0), shape_const]) + else: + scale = graph.make_node( + "Reshape", inputs=[node.input('Scale', 0), weight_shape]) + layer_norm = graph.make_node("Div", inputs=[numerator, denominator]) + graph.make_node( + "Mul", inputs=[layer_norm, scale], outputs=node.output('Y')) + else: + layer_norm = graph.make_node( + "Div", + inputs=[numerator, denominator], + outputs=node.output('Y')) + + +@op_mapper('batch_norm') +class BatchNorm(): + support_opset_version_range = (7, 15) + + @classmethod + def make_attrs_and_inputs(cls, graph, node, **kw): + onnx_attr = { + 'epsilon': node.attr('epsilon'), + 'momentum': node.attr('momentum') + } + inputs = node.input('X') + node.input('Scale') + node.input( + 'Bias') + node.input('Mean') + node.input('Variance') + return onnx_attr, inputs + + @classmethod + def opset_9(cls, graph, node, **kw): + onnx_attr, inputs = cls.make_attrs_and_inputs(graph, node, **kw) + onnx_node = graph.make_node( + 'BatchNormalization', + inputs=inputs, + outputs=node.output('Y'), + **onnx_attr) + + @classmethod + def opset_7(cls, graph, node, **kw): + onnx_attr, inputs = cls.make_attrs_and_inputs(graph, node, **kw) + onnx_attr['spatial'] = 1 + onnx_node = graph.make_node( + 'BatchNormalization', + inputs=inputs, + outputs=node.output('Y'), + **onnx_attr) + + +@op_mapper('group_norm') +class GroupNorm(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + num_groups = node.attr('groups') + epsilon = node.attr('epsilon') + ipt = node.input('X')[0] + + ipt_shape = node.input_shape('X', 0) + assert len( + ipt_shape) == 4, "Only support 4D-Tensor as input for GroupNorm" + + dtype = node.block.vars[node.input('X', 0)].dtype + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + + shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0, num_groups, -1]) + reshape_input = graph.make_node('Reshape', inputs=[ipt, shape]) + scale_ = graph.make_node( + 'Constant', dtype=dtype, value=[1.0] * num_groups) + bias_ = graph.make_node( + 'Constant', dtype=dtype, value=[0.0] * num_groups) + reshaped_output = graph.make_node( + 'InstanceNormalization', + inputs=[reshape_input, scale_, bias_], + epsilon=epsilon) + origin_shape = graph.make_node('Shape', inputs=[ipt]) + + if len(node.input('Scale')) > 0 and len(node.input('Bias')) > 0: + output = graph.make_node( + 'Reshape', inputs=[reshaped_output, origin_shape]) + unsqueezed_scale = mapper_helper.unsqueeze_helper( + graph, node.input('Scale', 0), [1, 2]) + unsqueezed_bias = mapper_helper.unsqueeze_helper( + graph, node.input('Bias', 0), [1, 2]) + part0 = graph.make_node('Mul', inputs=[output, unsqueezed_scale]) + graph.make_node( + 'Add', + inputs=[part0, unsqueezed_bias], + outputs=node.output('Y')) + else: + output = graph.make_node( + 'Reshape', + inputs=[reshaped_output, origin_shape], + outputs=node.output('Y')) + + +@op_mapper('instance_norm') +class InstanceNorm(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + onnx_attr = {'epsilon': node.attr('epsilon'), } + num_groups = node.block.vars[node.input('X')[0]].shape[1] + + dtype = node.block.vars[node.input('X', 0)].dtype + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + + if len(node.input('Scale')) == 0: + scale_ = graph.make_node( + 'Constant', dtype=dtype, value=[1.0] * num_groups) + else: + scale_ = node.input('Scale')[0] + if len(node.input('Bias')) == 0: + bias_ = graph.make_node( + 'Constant', dtype=dtype, value=[0.0] * num_groups) + else: + bias_ = node.input('Bias')[0] + + inputs = node.input('X') + [scale_] + [bias_] + onnx_node = graph.make_node( + 'InstanceNormalization', + inputs=inputs, + outputs=node.output('Y'), + **onnx_attr) + + +@op_mapper('dropout') +class Dropout(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + dropout_mode = node.attr('dropout_implementation') + dropout_prob = node.attr('dropout_prob') + if dropout_mode == 'upscale_in_train': + onnx_node = graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + elif dropout_mode == 'downgrade_in_infer': + scale_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': 1 - dropout_prob}) + graph.make_node( + "Mul", + inputs=[node.input('X')[0], scale_node], + outputs=node.output('Out')) + else: + raise Exception("Unexpected situation happend") + + +@op_mapper('roi_align') +class RoiAlign(): + support_opset_version_range = (10, 16) + + @classmethod + def opset_10(cls, graph, node, **kw): + if node.attr('aligned') and graph.opset_version < 16: + raise Exception( + 'when aligned is true, onnx opset should be (onnx_opset>= 16)') + rois_shape = graph.make_node('Shape', inputs=[node.input('ROIs', 0)]) + starts = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': [0]}) + ends = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': [1]}) + num_rois = graph.make_node('Slice', inputs=[rois_shape, starts, ends]) + zero = graph.make_node( + 'Constant', dims=[1], dtype=dtypes.ONNX.INT64, value=[0]) + batch_indices = graph.make_node('Expand', inputs=[zero, num_rois]) + node = graph.make_node( + 'RoiAlign', + inputs=[node.input('X', 0), node.input('ROIs', 0), batch_indices], + outputs=node.output('Out'), + mode='avg', + output_height=node.attr('pooled_height'), + output_width=node.attr('pooled_width'), + sampling_ratio=node.attr('sampling_ratio'), + spatial_scale=node.attr('spatial_scale')) + + +@op_mapper('rnn') +class RNN(): + support_opset_version_range = (7, 15) + + @classmethod + def make_param_inputs(cls, graph, node, layer, hidden_size, num_layers): + # weight assign order: + # (F_whi F_whh B_whi B_whh)* layer_num + (F_bias_hi F_bias_hh B_bias_hi B_bias_hi)* layer_num + def reform_weights(g, w, n, intervals): + slices = [ + mapper_helper.slice_helper( + g, w, axes=[1], starts=[x * n], ends=[y * n]) + for x, y in intervals + ] + return g.make_node('Concat', slices, axis=1) + + def transform_weight_with_bias(g, weights, n, intervals): + return [reform_weights(g, w, n, intervals) for w in weights] + + if node.attr('mode') == 'LSTM': + reform_permutation = [(0, 1), (3, 4), (1, 3)] + elif node.attr('mode') == 'GRU': + reform_permutation = [(1, 2), (0, 1), (2, 3)] + bidirect_len = 4 if node.attr('is_bidirec') else 2 + all_layer_param_len = len(node.input('WeightList')) + weight_list = node.input('WeightList')[:all_layer_param_len // 2] + bias_list = node.input('WeightList')[all_layer_param_len // 2:] + single_layer_param_len = all_layer_param_len // num_layers + + unsqueeze_weights = [] + layer_weight_list = weight_list[layer * bidirect_len:layer * + bidirect_len + bidirect_len] + layer_bias_list = bias_list[layer * bidirect_len:layer * bidirect_len + + bidirect_len] + param_list = layer_weight_list + layer_bias_list + param_list_len = len(param_list) + for i in range(param_list_len): + weight = mapper_helper.unsqueeze_helper(graph, param_list[i], [0]) + unsqueeze_weights.append(weight) + + input_weights = unsqueeze_weights[0:param_list_len // 2:2] + hidden_weights = unsqueeze_weights[1:param_list_len // 2:2] + + input_weight = graph.make_node('Concat', inputs=input_weights, axis=0) + hidden_weight = graph.make_node('Concat', inputs=hidden_weights, axis=0) + input_bias = unsqueeze_weights[param_list_len // 2:param_list_len:2] + hidden_bias = unsqueeze_weights[param_list_len // 2 + 1:param_list_len: + 2] + + input_bias = graph.make_node('Concat', inputs=input_bias, axis=0) + hidden_bias = graph.make_node('Concat', inputs=hidden_bias, axis=0) + input_weight, hidden_weight, input_bias, hidden_bias = transform_weight_with_bias( + graph, [input_weight, hidden_weight, input_bias, hidden_bias], + hidden_size, reform_permutation) + bias = graph.make_node( + 'Concat', inputs=[input_bias, hidden_bias], axis=1) + return [input_weight, hidden_weight, bias, ''] + + @classmethod + def make_init_param_inputs(cls, graph, node, layer): + if node.attr('mode') == 'LSTM': + all_init_h, all_init_c = node.input('PreState') + bidirect_len = 2 if node.attr('is_bidirec') else 1 + init_h = mapper_helper.slice_helper( + graph, all_init_h, [0], [layer * bidirect_len], + [layer * bidirect_len + bidirect_len]) + init_c = mapper_helper.slice_helper( + graph, all_init_c, [0], [layer * bidirect_len], + [layer * bidirect_len + bidirect_len]) + return [init_h, init_c] + elif node.attr('mode') == 'GRU': + all_init_h = node.input('PreState', 0) + bidirect_len = 2 if node.attr('is_bidirec') else 1 + init_h = mapper_helper.slice_helper( + graph, all_init_h, [0], [layer * bidirect_len], + [layer * bidirect_len + bidirect_len]) + return [init_h] + + @classmethod + def opset_7(cls, graph, node, **kw): + mode = node.attr('mode') + hidden_size = node.attr('hidden_size') + num_layers = node.attr('num_layers') + prev_output = node.input('Input', 0) + if node.attr('mode') == 'LSTM': + for layer in range(num_layers): + param_inputs = cls.make_param_inputs(graph, node, layer, + hidden_size, num_layers) + init_param_inputs = cls.make_init_param_inputs(graph, node, + layer) + if layer + 1 < num_layers: + rnn_outputs = 3 + output_y = None + else: + rnn_outputs = [1] + node.output('State') + output_y = node.output('Out') + prev_output, h_out, c_out = graph.make_node( + node.attr('mode'), + inputs=[prev_output] + param_inputs + init_param_inputs, + outputs=rnn_outputs, + direction='bidirectional' + if node.attr('is_bidirec') else 'forward', + hidden_size=node.attr('hidden_size')) + prev_output = graph.make_node( + 'Transpose', inputs=[prev_output], perm=[0, 2, 1, 3]) + + prev_shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0, 0, -1]) + prev_output = graph.make_node( + 'Reshape', + inputs=[prev_output, prev_shape], + outputs=output_y) + elif node.attr('mode') == 'GRU': + for layer in range(num_layers): + param_inputs = cls.make_param_inputs(graph, node, layer, + hidden_size, num_layers) + init_param_inputs = cls.make_init_param_inputs(graph, node, + layer) + if layer + 1 < num_layers: + rnn_outputs = 2 + output_y = None + else: + rnn_outputs = [1] + node.output('State') + output_y = node.output('Out') + attrs = { + 'direction': 'bidirectional' + if node.attr('is_bidirec') else 'forward', + 'hidden_size': node.attr('hidden_size'), + 'linear_before_reset': 1, + } + prev_output, h_out = graph.make_node( + node.attr('mode'), + inputs=[prev_output] + param_inputs + init_param_inputs, + outputs=rnn_outputs, + attrs=attrs) + prev_output = graph.make_node( + 'Transpose', inputs=[prev_output], perm=[0, 2, 1, 3]) + prev_shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[0, 0, -1]) + prev_output = graph.make_node( + 'Reshape', + inputs=[prev_output, prev_shape], + outputs=output_y) + + +@op_mapper('thresholded_relu') +class ThresholdedRelu(): + support_opset_version_range = (10, 15) + + @classmethod + def opset_10(cls, graph, node, **kw): + x_dtype = node.input_dtype('X', 0) + if x_dtype != paddle.float32: + x = graph.make_node( + 'Cast', inputs=node.input('X'), to=dtypes.ONNX.FLOAT) + threshholdedrelu_node = graph.make_node( + 'ThresholdedRelu', inputs=[x], alpha=node.attr('threshold')) + graph.make_node( + 'Cast', + inputs=[threshholdedrelu_node], + outputs=node.output('Out'), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + graph.make_node( + 'ThresholdedRelu', + inputs=node.input('X'), + alpha=node.attr('threshold'), + outputs=node.output('Out')) diff --git a/paddle2onnx/legacy/op_mapper/op_mapper.py b/paddle2onnx/legacy/op_mapper/op_mapper.py new file mode 100755 index 0000000000..beff194ae4 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/op_mapper.py @@ -0,0 +1,305 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import inspect +import six +import numpy as np +import paddle +from paddle import fluid +from paddle.fluid import layers + +from paddle2onnx.legacy.graph import graph_helper, PaddleGraph +from paddle2onnx.utils import logging +from paddle2onnx.legacy.constant.op_mapping_status import * + + +REGISTER_CUSTOM_PADDLE_OP = {} + + +def get_max_support_version(versions, opset_version): + max_version = -1 + for vs in sorted(versions): + if vs <= opset_version: + max_version = vs + return max_version + + +def register_op_mapper(paddle_op, mapper_obj): + paddle_op_list = [] + + if isinstance(paddle_op, six.string_types): + paddle_op_list.append(paddle_op) + elif isinstance(paddle_op, list): + paddle_op_list = paddle_op + else: + raise ValueError('paddle_op must be List or string, but got type {}.'. + format(type(paddle_op))) + + if not isinstance(mapper_obj, six.class_types): + raise ValueError('mapper_obj must be Class, but got type {}.'.format( + type(mapper_obj))) + + valid_register_func = 0 + for k, v in inspect.getmembers(mapper_obj, inspect.ismethod): + if k.startswith("opset_"): + version = int(k.replace("opset_", "")) + if version > 13 or version < 1: + raise Exception( + 'the specific method of operator mapper must be named opset_[number](1<=number<=13), such as opset_9, but got {}.'. + format(k)) + valid_register_func += 1 + + if valid_register_func == 0: + raise Exception( + 'the specific method of operator mapper must be classmethod, which named opset_[number](1<=number<=13), such as opset_9, but none achieved.' + ) + + mapper = OpMapper(paddle_op_list) + mapper(mapper_obj) + + +class OpMapper(object): + OPSETS = {} + REGISTER_CUSTOM_PADDLE_OP = {} + + def __init__(self, paddle_op, **kwargs): + if not isinstance(paddle_op, list): + paddle_op = [paddle_op] + self.paddle_op = paddle_op + self.kwargs = kwargs + + def __call__(self, cls): + for k, v in inspect.getmembers(cls, inspect.ismethod): + if k.startswith("opset_"): + version = int(k.replace("opset_", "")) + for op in self.paddle_op: + if op not in OpMapper.OPSETS: + OpMapper.OPSETS[op] = {} + opset_dict = OpMapper.OPSETS[op] + opset_dict[version] = (v, self.kwargs) + + @staticmethod + def mapping(graph, node, operator_export_type="ONNX"): + try: + if node.type in OpMapper.REGISTER_CUSTOM_PADDLE_OP: + if operator_export_type in ["PaddleFallback"]: + opsets = OpMapper.OPSETS[node.type] + versions = list(opsets.keys()) + convert_version = get_max_support_version( + versions, graph.opset_version) + mapper_func, kw = opsets[convert_version] + mapper_func(graph, node, **kw) + else: + custom_paddle_op = OpMapper.REGISTER_CUSTOM_PADDLE_OP[ + node.type](node) + custom_paddle_graph, output_results = custom_paddle_op.get_paddle_graph( + ) + OpMapper.check_support_status(custom_paddle_graph.node_map, + graph.opset_version) + graph.build_op_nodes(custom_paddle_graph.node_map) + + node_output_results = dict() + for k in node.output_names: + custom_outs = output_results[k] + node_outs = node.output(k) + assert len(custom_outs) == len( + node_outs + ), "Length of custom implementation operator's outputs is not same with the length of original operator's outputs." + for i in range(len(custom_outs)): + graph.make_node( + "Identity", + inputs=[custom_outs[i]], + outputs=[node_outs[i]]) + else: + opsets = OpMapper.OPSETS[node.type] + versions = list(opsets.keys()) + convert_version = get_max_support_version(versions, + graph.opset_version) + mapper_func, kw = opsets[convert_version] + mapper_func(graph, node, **kw) + except Exception as e: + raise Exception( + "Error happened when mapping node ['{}'] to onnx, which op_type is '{}' with inputs: {} and outputs: {}, specific error: ". + format(node.layer_name, node.type, node.inputs, + node.outputs) + str(e)) + + @staticmethod + def get_recommend_opset_version(node_map, opset_version): + recommend_opset_version = OpMapper.check_support_status( + node_map, opset_version, True) + for name, node in list(node_map.items()): + if node.type in OpMapper.REGISTER_CUSTOM_PADDLE_OP: #如果是customçš„op,获å–custom的推èop + custom_paddle_op = OpMapper.REGISTER_CUSTOM_PADDLE_OP[ + node.type](node) + custom_paddle_graph, output_results = custom_paddle_op.get_paddle_graph( + ) + custom_recommend_opset_version = OpMapper.check_support_status( + custom_paddle_graph.node_map, opset_version, True) + recommend_opset_version = max(recommend_opset_version, + custom_recommend_opset_version) + if opset_version != recommend_opset_version: + warning_info = "\n======================\n" + warning_info += "\nFor a successful conversion, set the recommended opset version : {}\n".format( + recommend_opset_version) + warning_info += "\n======================\n" + logging.warning(warning_info) + return recommend_opset_version + + @staticmethod + def check_support_status(node_map, opset_version, for_check=False): + op_mapping_status = { + OP_MAPPING_NO_REGISTER: [], + OP_MAPPING_NO_VERSION: [], + } + for name, node in list(node_map.items()): + if node.type in OpMapper.REGISTER_CUSTOM_PADDLE_OP: + continue + if node.type not in OpMapper.OPSETS: + op_mapping_status[OP_MAPPING_NO_REGISTER].append(node) + else: + opsets = OpMapper.OPSETS[node.type] + versions = list(opsets.keys()) + convert_version = get_max_support_version(versions, + opset_version) + if convert_version == -1: + op_mapping_status[OP_MAPPING_NO_VERSION].append(node) + + if len(op_mapping_status[OP_MAPPING_NO_REGISTER]) > 0: + unsupported_op_types = set([ + node.type for node in op_mapping_status[OP_MAPPING_NO_REGISTER] + ]) + error_info = "\nThere's {} ops are not supported yet\n".format( + len(unsupported_op_types)) + for op_type in unsupported_op_types: + error_info += "=========== {} ===========\n".format(op_type) + raise NotImplementedError(error_info) + + if len(op_mapping_status[OP_MAPPING_NO_VERSION]) > 0: + unsupported_op_types = set([ + node.type for node in op_mapping_status[OP_MAPPING_NO_VERSION] + ]) + + recommend_opset_version = -1 + for op_type in unsupported_op_types: + opsets = OpMapper.OPSETS[op_type] + if min(opsets.keys()) > recommend_opset_version: + recommend_opset_version = min(opsets.keys()) + warning_info = "\nThere are {} ops that are not supported in opset version {}, please set opset version >= {}.\n".format( + len(unsupported_op_types), opset_version, + recommend_opset_version) + + for op_type in unsupported_op_types: + warning_info += "=========== {} ===========\n".format(op_type) + if for_check: + logging.warning(warning_info) + return recommend_opset_version + raise NotImplementedError(warning_info) + return opset_version + + +class CustomPaddleOp(object): + CREATE_TIMES = {} + + def __init__(self, node): + self.main_program = paddle.static.Program() + self.startup_program = paddle.static.Program() + self.inputs = self.create_place_holder(node) + self.node = node + + def generate_scope_name(self, node): + if node.type in CustomPaddleOp.CREATE_TIMES: + CustomPaddleOp.CREATE_TIMES[node.type] += 1 + else: + CustomPaddleOp.CREATE_TIMES[node.type] = 1 + scope_prefix = node.type + str(CustomPaddleOp.CREATE_TIMES[node.type] - + 1) + '_' + return scope_prefix + + def create_place_holder(self, node): + place_holders = {} + with paddle.static.program_guard(self.main_program, + self.startup_program): + for arg_name, idxs in node.inputs.items(): + place_holders[arg_name] = [] + for idx in range(len(idxs)): + shape = node.input_shape(arg_name, idx) + dtype = node.input_dtype(arg_name, idx) + name = node.input(arg_name, idx) + data = paddle.static.data( + name=name, shape=shape, dtype=dtype) + place_holders[arg_name].append(data) + return place_holders + + def input(self, name, idx=None): + if name not in self.inputs: + return None + if idx is None: + return self.inputs[name] + if len(self.inputs[name]) <= idx: + return None + return self.inputs[name][idx] + + def get_paddle_graph(self): + scope_prefix = self.generate_scope_name(self.node) + scope = paddle.static.Scope() + with paddle.static.scope_guard(scope): + with paddle.static.program_guard(self.main_program, + self.startup_program): + with paddle.utils.unique_name.guard(scope_prefix): + res = self.forward() + feed_var_names = [ + var.name for vars in self.inputs.values() + for var in vars + ] + fetch_vars = [var for vars in res.values() for var in vars] + inference_program = graph_helper.get_program( + self.main_program, feed_var_names, fetch_vars) + paddle_graph = PaddleGraph.build_from_program( + inference_program, + feed_var_names, + fetch_vars, + scope=scope) + + output_results = dict() + for arg_name, outs in res.items(): + output_results[arg_name] = [out.name for out in outs] + return paddle_graph, output_results + + +def register_custom_paddle_op(paddle_op, custom_op): + paddle_op_list = [] + + if isinstance(paddle_op, six.string_types): + paddle_op_list.append(paddle_op) + elif isinstance(paddle_op, list): + paddle_op_list = paddle_op + else: + raise ValueError("paddle_op' must be List or string, but got type {}.". + format(type(paddle_op))) + + if not isinstance(custom_op, six.class_types): + raise ValueError("'custom_op' must be Class, but got type {}.".format( + type(custom_op))) + + forward = getattr(custom_op, "forward", None) + if not callable(forward): + raise Exception( + "Custom paddle operators must be implemented in function named 'forward'." + ) + + for op in paddle_op_list: + if op not in OpMapper.REGISTER_CUSTOM_PADDLE_OP: + OpMapper.REGISTER_CUSTOM_PADDLE_OP[op] = custom_op diff --git a/paddle2onnx/legacy/op_mapper/search.py b/paddle2onnx/legacy/op_mapper/search.py new file mode 100755 index 0000000000..38848b5ebb --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/search.py @@ -0,0 +1,233 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper + + +@op_mapper('where_index') +class WhereIndex(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + nonzero_node = graph.make_node( + 'NonZero', inputs=node.input('Condition')) + graph.make_node( + 'Transpose', + inputs=[nonzero_node], + outputs=node.output('Out'), + perm=[1, 0]) + + +@op_mapper('top_k_v2') +class TopKV2(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + sorted = node.attr('sorted') + # for paddle, In gpu device, it always return the sorted value + # if not sorted: + # sorted = True + if 'K' in node.inputs and len(node.input('K')) > 0: + k_node = node.input('K', 0) + k_node_dtype = node.input_dtype('K', 0) + if dtypes.DTYPE_PADDLE_STR_MAP[k_node_dtype] != 'int64': + k_node = graph.make_node( + 'Cast', inputs=[k_node], to=dtypes.ONNX.INT64) + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), k_node], + outputs=[node.output('Out', 0), node.output('Indices', 0)], + largest=node.attr('largest'), + sorted=sorted, + axis=node.attr('axis')) + else: + k = node.attr('k') + k_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': [k]}) + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), k_node], + outputs=[node.output('Out', 0), node.output('Indices', 0)], + largest=node.attr('largest'), + sorted=sorted, + axis=node.attr('axis')) + + +@op_mapper('top_k') +class TopK(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + if 'K' in node.inputs and len(node.input('K')) > 0: + k_node = node.input('K', 0) + k_node_dtype = node.input_dtype('K', 0) + if dtypes.DTYPE_PADDLE_STR_MAP[k_node_dtype] != 'int64': + k_node = graph.make_node( + 'Cast', inputs=[k_node], to=dtypes.ONNX.INT64) + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), k_node], + outputs=[node.output('Out', 0), node.output('Indices', 0)]) + else: + k = node.attr('k') + k_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': [k]}) + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), k_node], + outputs=[node.output('Out', 0), node.output('Indices', 0)]) + + +@op_mapper('argsort') +class ArgSort(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_10(cls, graph, node, **kw): + shape = graph.make_node('Shape', inputs=node.input('X', 0)) + from paddle2onnx.legacy.op_mapper import mapper_helper + axis = node.attr('axis') + if axis < 0: + axis = axis + len(node.input_shape('X', 0)) + dim_size = mapper_helper.slice_helper( + graph, shape, axes=[0], starts=[axis], ends=[axis + 1]) + if graph.opset_version > 10: + if not node.attr('descending'): + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), dim_size], + outputs=[node.output('Out', 0), node.output('Indices', 0)], + axis=node.attr('axis'), + largest=0) + else: + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), dim_size], + outputs=[node.output('Out', 0), node.output('Indices', 0)], + axis=node.attr('axis'), + largest=1) + else: + if not node.attr('descending'): + raise Exception( + "descending=False only support opset version>=11.") + else: + graph.make_node( + 'TopK', + inputs=[node.input('X', 0), dim_size], + outputs=[node.output('Out', 0), node.output('Indices', 0)], + axis=node.attr('axis')) + + @classmethod + def opset_6(cls, graph, node, **kw): + shape = node.input_shape('X', 0) + k = shape[node.attr('axis')] + assert k > 0, "while input shape is dynamic, it only support opset version>=10." + input_dtype = node.input_dtype('X', 0) + dtype = dtypes.DTYPE_PADDLE_STR_MAP[input_dtype] + inputs = node.input('X', 0) + if dtype in ["int32", "int64"]: + inputs = graph.make_node( + 'Cast', inputs=inputs, to=dtypes.ONNX.FLOAT) + if not node.attr('descending'): + raise Exception("descending=False only support opset version>=11.") + else: + output_node = node.output('Out', 0) + graph.make_node( + 'TopK', + inputs=[inputs], + outputs=[output_node, node.output('Indices', 0)], + axis=node.attr('axis'), + k=k) + if dtype in ["int32", "int64"]: + graph.make_node( + 'Cast', + inputs=[output_node], + to=dtypes.DTYPE_PADDLE_ONNX_MAP[input_dtype], + outputs=[output_node]) + + +@op_mapper('index_select') +class IndexSelect(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Gather', + inputs=[node.input('X', 0), node.input('Index', 0)], + axis=node.attr('dim'), + outputs=node.output('Out')) + + +@op_mapper('unique') +class Unique(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + if node.attr('axis') == []: + graph.make_node( + 'Unique', + inputs=node.input('X'), + outputs=[ + node.output('Out', 0), node.output('Indices', 0), + node.output('Index', 0), node.output('Counts', 0) + ]) + else: + graph.make_node( + 'Unique', + inputs=node.input('X'), + axis=node.attr('axis')[0], + outputs=[ + node.output('Out', 0), node.output('Indices', 0), + node.output('Index', 0), node.output('Counts', 0) + ]) + + +@op_mapper('where') +class Where(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + graph.make_node( + 'Where', + inputs=[ + node.input('Condition', 0), node.input('X', 0), + node.input('Y', 0) + ], + outputs=node.output('Out')) + + +@op_mapper('masked_select') +class MaskSelect(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + index = graph.make_node('NonZero', inputs=node.input('Mask', 0)) + index = graph.make_node('Transpose', inputs=[index], perm=[1, 0]) + graph.make_node( + 'GatherND', + inputs=[node.input('X', 0), index], + outputs=node.output('Y')) diff --git a/paddle2onnx/legacy/op_mapper/sequence/__init__.py b/paddle2onnx/legacy/op_mapper/sequence/__init__.py new file mode 100644 index 0000000000..847ddc47ac --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/sequence/__init__.py @@ -0,0 +1,13 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. diff --git a/paddle2onnx/legacy/op_mapper/sequence/im2sequence.py b/paddle2onnx/legacy/op_mapper/sequence/im2sequence.py new file mode 100644 index 0000000000..accd6f13d3 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/sequence/im2sequence.py @@ -0,0 +1,78 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.utils import logging +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper + + +@op_mapper('im2sequence') +class Im2Sequence(): + support_opset_verison_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + n, c, h, w = node.input_shape('X', 0) + assert h > 0 and w > 0, "Only supported fixed input shape for im2sequence operator." + stride_h, stride_w = node.attr('strides') + paddings = node.attr('paddings') + assert node.attr( + 'out_stride' + ) != 1, "Only out_stride==1 is supported for im2sequence operator." + h = h + paddings[0] + paddings[1] + w = w + paddings[1] + paddings[2] + kernel_h, kernel_w = node.attr('kernels') + out_h = 1 + (h - kernel_h + stride_h - 1) // stride_h + out_w = 1 + (w - kernel_w + stride_w - 1) // stride_w + h_steps = list() + for i in range(out_h): + h_steps.append([i * stride_h, i * stride_h + kernel_h]) + w_steps = list() + for i in range(out_w): + w_steps.append([i * stride_w, i * stride_w + kernel_w]) + + slice_node_blocks = list() + for i in range(out_h): + for j in range(out_w): + starts_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + dims=[4], + value=[0, 0, h_steps[i][0], w_steps[j][0]]) + ends_node = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + dims=[4], + value=[999999, 999999, h_steps[i][1], w_steps[j][1]]) + nodes.extend([starts_node, ends_node]) + + slice_block_node = graph.make_node( + 'Slice', + inputs=[node.input('X', 0), starts_node, ends_node]) + flatten_block_node = graph.make_node( + "Flatten", inputs=[slice_block_node], axis=0) + nodes.extend([slice_block_node, flatten_block_node]) + concat_block_node = graph.make_node( + "Concat", + inputs=slice_node_blocks, + outputs=node.output('Out'), + axis=0) + logging.info("==========Importance Notice===========") + logging.info( + "Since im2sequence operator is used in your paddlepaddle model, the translated onnx model only support input data with batch_size=1." + ) + logging.info("======================================") diff --git a/paddle2onnx/legacy/op_mapper/tensor.py b/paddle2onnx/legacy/op_mapper/tensor.py new file mode 100755 index 0000000000..081cbbfd21 --- /dev/null +++ b/paddle2onnx/legacy/op_mapper/tensor.py @@ -0,0 +1,2155 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import numpy as np +from paddle2onnx.legacy.constant import dtypes +from paddle2onnx.legacy.op_mapper import OpMapper as op_mapper +from paddle2onnx.legacy.op_mapper import mapper_helper +import copy +import six +import paddle + + +@op_mapper('set_value') +class SetValue(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + axes = node.attr('axes') + steps, is_steps_tensor = mapper_helper.get_node_attr_value( + graph, + node, + 'steps', + 'StepsTensor', + 'StepsTensorList', + return_list=True, + dtype=dtypes.ONNX.INT64) + + starts, is_starts_tensor = mapper_helper.get_node_attr_value( + graph, + node, + 'starts', + 'StartsTensor', + 'StartsTensorList', + return_list=True, + dtype=dtypes.ONNX.INT64) + + ends, is_ends_tensor = mapper_helper.get_node_attr_value( + graph, + node, + 'ends', + 'EndsTensor', + 'EndsTensorList', + return_list=True, + dtype=dtypes.ONNX.INT64) + + contain_step_bigger_than_1 = False + for i in steps: + contain_step_bigger_than_1 = i > 1 + if not isinstance(i, int) or contain_step_bigger_than_1: + contain_step_bigger_than_1 = True + break + condition = is_steps_tensor or is_starts_tensor or is_ends_tensor or contain_step_bigger_than_1 + assert not condition, "Currently not supported convert now" + + input_x_shape = node.input_shape('Input', 0) + onnx_paddings = [0] * len(input_x_shape) * 2 + value_shape = list(copy.copy(node.input_shape('Input', 0))) + for i in range(len(axes)): + axis = axes[i] + if starts[i] < 0: + starts[i] = starts[i] + input_x_shape[i] + if ends[i] < 0: + ends[i] = ends[i] + input_x_shape[i] + onnx_paddings[axis] = starts[i] + value_shape[axis] = value_shape[axis] - onnx_paddings[axis] + onnx_paddings[axis + len(input_x_shape)] = input_x_shape[ + axis] - ends[i] + if onnx_paddings[axis + len(input_x_shape)] < 0: + onnx_paddings[axis + len(input_x_shape)] = 0 + value_shape[axis] = value_shape[axis] - onnx_paddings[axis + len( + input_x_shape)] + dtype_paddle = node.input_dtype('Input', 0) + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype_paddle] + value_tensor = None + shape = node.attr('shape') + if len(shape) > 0: + dtypes_list = [ + 'fp32_values', 'fp64_values', 'int32_values', 'int64_values', + 'bool_values' + ] + for i in range(len(dtypes_list)): + value = node.attr(dtypes_list[i]) + if value is not None: + break + if len(value) == 1: + total_nums = 1 + for i in value_shape: + total_nums *= i + value = value * total_nums + value_tensor = mapper_helper.constant_helper( + graph, dtype_paddle, value, shape=value_shape) + else: + value_tensor = mapper_helper.constant_helper( + graph, dtype_paddle, value, shape=shape) + else: + value_tensor = node.input('ValueTensor', 0) + MAX_FLOAT32 = 3.402823466E+38 + max_node = graph.make_node( + 'Constant', attrs={'dtype': dtype, + 'value': [MAX_FLOAT32]}) + pads_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': onnx_paddings}) + value_pad_node = graph.make_node( + 'Pad', inputs=[value_tensor, pads_node, max_node]) + + condition_dtype = graph.make_node( + "Equal", inputs=[value_pad_node, max_node]) + condition_node = graph.make_node( + 'Cast', inputs=[condition_dtype], to=dtypes.ONNX.BOOL) + graph.make_node( + "Where", + inputs=[condition_node, node.input('Input', 0), value_pad_node], + outputs=node.output('Out')) + + +@op_mapper('one_hot_v2') +class OneHotV2(): + support_opset_version_range = (9, ) + + @classmethod + def opset_9(cls, graph, node, **kw): + allow_out_of_range = node.attr('allow_out_of_range') + assert not allow_out_of_range, "allow_out_of_range can not be true in one_hot_v2." + in_dtype_paddle = node.input_dtype('X', 0) + in_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[in_dtype_paddle] + out_dtype = node.output_dtype('Out', 0) + out_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[out_dtype] + inputs = node.input('X', 0) + if in_dtype_paddle == paddle.int32: + inputs = graph.make_node( + 'Cast', inputs=[inputs], to=dtypes.ONNX.INT64) + in_dtype = dtypes.ONNX.INT64 + value_node = graph.make_node('Constant', dtype=out_dtype, value=[0, 1]) + depth = node.attr('depth') + if node.input('depth_tensor', 0) is not None: + depth_node = node.input('depth_tensor', 0) + else: + depth_node = graph.make_node( + 'Constant', dtype=in_dtype, value=[depth]) + reshaped_input_node = graph.make_node( + 'OneHot', + inputs=[inputs, depth_node, value_node], + outputs=node.output('Out')) + + +@op_mapper('concat') +class Concat(): + support_opset_version_range = (4, 15) + + @classmethod + def opset_4(cls, graph, node, **kw): + inputs = node.input('X') + + input_dtypes = [node.input_dtype('X', i) for i in range(len(inputs))] + inputs = mapper_helper.dtype_alignment(graph, inputs, input_dtypes) + node_axis = node.input('AxisTensor') + if node_axis is not None and len(node_axis) > 0: + axis_node = node.input('AxisTensor')[0] + try: + axis = mapper_helper.get_value_from_parameters(graph, + axis_node)[0] + except Exception as e: + raise Exception( + "Currently does not support the axis parameter as input tensor" + + str(e)) + else: + axis = node.attr('axis') + if axis < 0: + axis = axis + len(node.input_shape('X', 0)) + + node = graph.make_node( + 'Concat', inputs=inputs, outputs=node.output('Out'), axis=axis) + + +@op_mapper('assign') +class Assign(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + inputs = node.input('X') + graph.make_node('Identity', inputs=inputs, outputs=node.output('Out')) + + +@op_mapper('lod_reset') +class LodReset(): + support_opset_version_range = (1, ) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('eye') +class Eye(): + support_opset_version_range = (9, ) + + @classmethod + def opset_9(cls, graph, node, **kw): + num_rows = node.attr('num_rows') + num_columns = node.attr('num_columns') + dtype = node.output_dtype('Out', 0) + value = [0] * num_rows * num_columns + value_tensor = mapper_helper.constant_helper( + graph, dtype, value, shape=[num_rows, num_columns]) + graph.make_node( + 'EyeLike', inputs=[value_tensor], outputs=node.output('Out')) + + +@op_mapper('stack') +class Stack(): + support_opset_version_range = (4, 15) + + @classmethod + def opset_4(cls, graph, node, **kw): + inputs = node.input('X') + input_dtypes = [node.input_dtype('X', i) for i in range(len(inputs))] + inputs = mapper_helper.dtype_alignment(graph, inputs, input_dtypes) + axis = node.attr('axis') + + unsqueezed_inputs = list() + for ipt in inputs: + unsqueezed_ipt = mapper_helper.unsqueeze_helper(graph, ipt, [axis]) + unsqueezed_inputs.append(unsqueezed_ipt) + graph.make_node( + 'Concat', + inputs=unsqueezed_inputs, + outputs=node.output('Y'), + axis=axis) + + +@op_mapper('unstack') +class Unstack(): + support_opset_version_range = (2, 15) + + @classmethod + def opset_2(cls, graph, node, **kw): + axis = node.attr('axis') + ndim = node.block.vars[node.input('X')[0]].ndim + axis = axis + ndim if axis < 0 else axis + output_y = mapper_helper.split_helper( + graph, + node.input('X'), + axis=axis, + split=[1] * len(node.output('Y')), + outputs=len(node.output('Y'))) + + if isinstance(output_y, six.string_types): + output_y = [output_y] + + for i in range(len(output_y)): + mapper_helper.squeeze_helper(graph, output_y[i], [axis], + node.output('Y', i)) + + +@op_mapper('expand_as_v2') +class ExpandAsV2(): + support_opset_version_range = (8, 15) + + @classmethod + def opset_8(cls, graph, node, **kw): + target_shape = node.attr('target_shape') + if node.input('target_tensor', 0) is not None: + target_shape = graph.make_node( + 'Shape', inputs=[node.input('target_tensor', 0)]) + elif target_shape is not None: + target_shape = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': target_shape}) + else: + raise Exception( + "Not find attribute: 'target_shape' or tensor 'target_tensor'") + node = graph.make_node( + 'Expand', + inputs=[node.input('X', 0), target_shape], + outputs=node.output('Out')) + + +@op_mapper('expand_v2') +class ExpandV2(): + support_opset_version_range = (8, 15) + + @classmethod + def opset_8(cls, graph, node, **kw): + expand_shape, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'shape', + 'Shape', + 'expand_shapes_tensor', + dtype=dtypes.ONNX.INT64) + + input_shape = node.input_shape('X', 0) + input_shape_node = graph.make_node('Shape', inputs=node.input('X', 0)) + + node_shape = node.attr('shape') + node_shape_tensor = node.input('Shape') + node_shape_tensor_list = node.input('expand_shapes_tensor') + if node_shape_tensor is not None and len(node_shape_tensor) > 0: + diff = node.input_shape('Shape', 0)[0] - len(input_shape) + elif node_shape_tensor_list is not None and \ + len(node_shape_tensor_list) > 0: + diff = len(node_shape_tensor_list) - len(input_shape) + elif node_shape is not None and len(node_shape) > 0: + diff = len(node_shape) - len(input_shape) + expand_shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=expand_shape) + + if diff > 0: + one_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': [1] * diff}) + input_shape_node = graph.make_node( + 'Concat', inputs=[one_node, input_shape_node], axis=0) + + if graph.opset_version < 12: + input_shape_node = graph.make_node( + 'Cast', inputs=[input_shape_node], to=dtypes.ONNX.FLOAT) + expand_shape = graph.make_node( + 'Cast', inputs=[expand_shape], to=dtypes.ONNX.FLOAT) + shape = graph.make_node( + 'Max', inputs=[input_shape_node, expand_shape]) + shape = graph.make_node( + 'Cast', inputs=[shape], to=dtypes.ONNX.INT64) + else: + shape = graph.make_node( + 'Max', inputs=[input_shape_node, expand_shape]) + node = graph.make_node( + 'Expand', + inputs=[node.input('X', 0), shape], + outputs=node.output('Out')) + + +@op_mapper('shape') +class Shape(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + shape_node = graph.make_node('Shape', inputs=node.input('Input')) + graph.make_node( + 'Cast', + inputs=[shape_node], + outputs=node.output('Out'), + to=dtypes.ONNX.INT32) + + +@op_mapper('size') +class Numel(): + supports_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + size_node = graph.make_node('Size', inputs=node.input('Input')) + mapper_helper.unsqueeze_helper(graph, size_node, [0], + node.output('Out')) + + +@op_mapper('split') +class Split(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + sections = node.attr('sections') + axis = cls.get_axis(graph, node) + if isinstance(sections, list) and len(sections) == 1: + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + else: + if len(sections) > 0: + input_shape = node.block.vars[node.input('X')[0]].shape + section_index = [ + i for i, val in enumerate(sections) if val == -1 + ] + if input_shape[axis] != -1 and len(section_index) == 1: + sections[section_index[0]] = input_shape[axis] - sum( + sections) - 1 + mapper_helper.split_helper( + graph, + node.input('X'), + axis=axis, + split=sections, + outputs=node.output('Out')) + else: + graph.make_node( + 'Split', + inputs=node.input('X'), + outputs=node.output('Out'), + axis=axis) + + @classmethod + def get_axis(cls, graph, node): + if len(node.input('AxisTensor')) > 0: + axis_node = node.input('AxisTensor')[0] + # When axis is tensor, only int32 and int64 are supported + if axis_node not in graph.parameters: + raise Exception( + "Currently does not support the axis parameter as input tensor!" + ) + else: + axis = graph.parameters[axis_node].attribute[0].t.int32_data + if axis is None or len(axis) < 1: + axis = graph.parameters[axis_node].attribute[ + 0].t.int64_data[0] + else: + axis = node.attr('axis') + return axis + + +@op_mapper(['roll']) +class Roll(): + support_opset_version_range = (4, 15) + + @classmethod + def roll(cls, graph, node, input_x, dims, shifts): + for i in range(len(dims)): + if graph.opset_version >= 10 and isinstance(shifts, + six.string_types): + to_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype( + 'ShiftsTensor', 0)] + const_i = graph.make_node('Constant', dtype=to_dtype, value=i) + const_0 = graph.make_node('Constant', dtype=to_dtype, value=0) + shift_node = graph.make_node( + 'Gather', inputs=[shifts, const_i], axis=0) + shift_node = graph.make_node( + "Sub", inputs=[const_0, shift_node]) + shift_node = mapper_helper.unsqueeze_helper(graph, shift_node, + [0]) + elif graph.opset_version < 10 and isinstance(shifts, + six.string_types): + raise Exception( + "shifts of roll is Tensor, please try with higher onnx opset_version>=10." + ) + else: + shift_node = [-shifts[i]] + to_dtype = dtypes.ONNX.INT64 + shapes = [] + shape = mapper_helper.slice_helper( + graph, input_x, [dims[i]], shift_node, [60000], dtype=to_dtype) + shapes.append(shape) + shape = mapper_helper.slice_helper( + graph, input_x, [dims[i]], [0], shift_node, dtype=to_dtype) + shapes.append(shape) + input_x = graph.make_node('Concat', inputs=shapes, axis=dims[i]) + return input_x + + @classmethod + def flatten(cls, graph, node): + dims = len(node.input_shape('X', 0)) + start_axis = 0 + end_axis = dims - 1 + shape_node = graph.make_node('Shape', inputs=node.input('X')) + if end_axis < dims - 1: + slice1 = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[0], ends=[start_axis]) + slice3 = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[end_axis + 1], + ends=[dims]) + slices = [ + slice1, graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64), slice3 + ] + else: + slice1 = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[0], ends=[start_axis]) + slices = [ + slice1, graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64) + ] + final_shape = graph.make_node('Concat', inputs=slices, axis=0) + output = graph.make_node( + 'Reshape', inputs=[node.input('X')[0], final_shape]) + return output + + @classmethod + def opset_4(cls, graph, node, **kw): + dims = node.attr('axis') + shifts = node.attr('shifts') + input_x = node.input('X')[0] + input_shape = node.input_shape('X', 0) + shifts_node = node.input('ShiftsTensor') + if len(dims) > 0: + axes = [ + axis + len(input_shape) if axis < 0 else axis + for i, axis in enumerate(dims) + ] + if shifts_node is not None and len(shifts_node) > 0: + shifts = shifts_node[0] + else: + for i in range(0, len(axes)): + if input_shape[axes[i]] > 0: + assert -input_shape[axes[i]] <= shifts[i] <= input_shape[axes[i]], \ + "the value of shifts in axis is less than the value of input_shape in axis." + + input_x = cls.roll(graph, node, input_x, axes, shifts) + graph.make_node( + 'Identity', inputs=[input_x], outputs=node.output('Out')) + else: + if shifts_node is not None and len(shifts_node) > 0: + shifts = shifts_node[0] + input_x = cls.flatten(graph, node) + input_x = cls.roll(graph, node, input_x, [0], shifts) + shape_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': list(input_shape)}) + graph.make_node( + 'Reshape', + inputs=[input_x, shape_node], + outputs=node.output('Out')) + + +@op_mapper(['slice', 'strided_slice']) +class Slice(): + support_opset_version_range = (1, 15) + + @classmethod + def decrease_axis(cls, node): + # tensor[i,:] will decrease rank of origin input, example: + # paddle.slice() will not decrease rank of origin input + # if input shape is [2, 3], input[0, :] will generate output with shape [3], not [1, 3]. + # paddle.slice(input, 0, 1, 0) will generate output with shape [1, 3], not [3]. + + decrease_axis = node.attr('decrease_axis') + if len(decrease_axis) == 0: + return None + if node.output_shape('Out', 0) == [0]: + return decrease_axis + if len(node.input_shape('Input', 0)) > len(node.output_shape('Out', 0)): + return decrease_axis + return None + + @classmethod + def opset_1(cls, graph, node, **kw): + axes = node.attr('axes') + strides, strides_is_tensor = mapper_helper.get_node_attr_value( + graph, node, 'strides', 'StridesTensor', 'StridesTensorList', True) + strides = [1] * len(axes) if strides is None else strides + steps = [i for i, val in enumerate(strides) if val == 1] + assert len(steps) == len(axes), \ + "Slice in onnx(opset<10) not support attribute 'step', Try converting with opset_version >=10" + + starts, start_is_tensor = mapper_helper.get_node_attr_value( + graph, node, 'starts', 'StartsTensor', 'StartsTensorList', True) + ends, end_is_tensor = mapper_helper.get_node_attr_value( + graph, node, 'ends', 'EndsTensor', 'EndsTensorList', True) + + assert not strides_is_tensor and not start_is_tensor and not end_is_tensor, \ + "Slice in onnx(opset<10) not support attribute 'steps','starts' or 'ends' which have tensor value, " \ + "Try converting with opset_version >=10 " + + decrease_axis = cls.decrease_axis(node) + if decrease_axis is None: + graph.make_node( + "Slice", + inputs=[node.input('Input')[0]], + outputs=node.output('Out'), + axes=axes, + starts=starts, + ends=ends) + else: + sliced = graph.make_node( + "Slice", + inputs=[node.input('Input')[0]], + axes=axes, + starts=starts, + ends=ends) + mapper_helper.squeeze_helper(graph, sliced, decrease_axis, + node.output('Out')) + + @classmethod + def opset_10(cls, graph, node, **kw): + axes = node.attr('axes') + strides, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'strides', + 'StridesTensor', + 'StridesTensorList', + dtype=dtypes.ONNX.INT64) + strides = [1] * len(axes) if strides is None else strides + + starts, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'starts', + 'StartsTensor', + 'StartsTensorList', + dtype=dtypes.ONNX.INT64) + ends, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'ends', + 'EndsTensor', + 'EndsTensorList', + dtype=dtypes.ONNX.INT64) + + if isinstance(starts, list): + starts_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': starts}) + else: + starts_node = starts + if isinstance(ends, list): + ends_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': ends}) + else: + ends_node = ends + + if isinstance(strides, list): + strides_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': strides}) + else: + strides_node = strides + + steps_node = strides_node + axes_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': axes}) + + decrease_axis = cls.decrease_axis(node) + if decrease_axis is None: + sliced = graph.make_node( + "Slice", + inputs=[ + node.input('Input')[0], starts_node, ends_node, axes_node, + steps_node + ], + outputs=node.output('Out')) + else: + sliced = graph.make_node( + "Slice", + inputs=[ + node.input('Input')[0], starts_node, ends_node, axes_node, + steps_node + ]) + mapper_helper.squeeze_helper(graph, sliced, decrease_axis, + node.output('Out')) + + +@op_mapper(['sequence_expand']) +class SequenceExpand(): + support_opset_version_range = () + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper(['expand']) +class Expand(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + expand_times, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'expand_times', + 'ExpandTimes', + 'expand_times_tensor', + dtype=dtypes.ONNX.INT64) + + if isinstance(expand_times, list): + expand_times = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': expand_times}) + + graph.make_node( + "Tile", + inputs=[node.input('X', 0), expand_times], + outputs=node.output('Out')) + + +@op_mapper(['tile']) +class Tile(): + support_opset_version_range = (6, 15) + + @classmethod + def opset_6(cls, graph, node, **kw): + repeat_times, _ = mapper_helper.get_node_attr_value( + graph, + node, + 'repeat_times', + 'RepeatTimes', + 'repeat_times_tensor', + dtype=dtypes.ONNX.INT64) + + if isinstance(repeat_times, list): + repeat_times = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': repeat_times}) + + graph.make_node( + "Tile", + inputs=[node.input('X', 0), repeat_times], + outputs=node.output('Out')) + + +@op_mapper('range') +class Range(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + start = node.input('Start', 0) + end = node.input('End', 0) + step = node.input('Step', 0) + start_t = mapper_helper.squeeze_helper(graph, start, [0]) + end_t = mapper_helper.squeeze_helper(graph, end, [0]) + step_t = mapper_helper.squeeze_helper(graph, step, [0]) + graph.make_node( + "Range", + inputs=[start_t, end_t, step_t], + outputs=node.output('Out')) + + +@op_mapper('fill_constant') +class Constant(): + support_opset_version_range = (1, 15) + + @classmethod + def check_int_type(cls, dtype): + if dtype in [dtypes.ONNX.INT16, dtypes.ONNX.INT32, dtypes.ONNX.INT64]: + return True + return False + + @classmethod + def opset_1(cls, graph, node, **kw): + value = node.attr('value') + dtype = node.attr('dtype') + value_is_scalar_tensor = False + if 'ValueTensor' in node.inputs and len(node.input('ValueTensor')) > 0: + rank = len(node.input_shape("ValueTensor", 0)) + if rank == 1 and node.input_shape("ValueTensor", 0)[0] == 1: + value_is_scalar_tensor = True + value = node.input("ValueTensor")[0] + else: + raise Exception( + "paddle.full with tensor value parameter is not supported yet." + ) + + shape, is_shape_tensor = mapper_helper.get_node_attr_value( + graph, + node, + 'shape', + 'ShapeTensor', + 'ShapeTensorList', + dtype=dtypes.ONNX.INT64) + + if graph.opset_version >= 9 and (is_shape_tensor or + value_is_scalar_tensor): + if not is_shape_tensor: + shape = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=shape) + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + if not value_is_scalar_tensor and cls.check_int_type(input_dtype): + to_dtype = dtypes.ONNX.DOUBLE + outputs = None + else: + to_dtype = input_dtype + outputs = node.output('Out') + + if value_is_scalar_tensor: + base_value = graph.make_node( + 'ConstantOfShape', + inputs=shape, + attrs={'dims': [1], + 'dtype': to_dtype, + 'value': 0}) + node2 = graph.make_node( + "Add", inputs=[base_value, value], outputs=outputs) + else: + node2 = graph.make_node( + 'ConstantOfShape', + inputs=shape, + outputs=outputs, + attrs={'dims': [1], + 'dtype': to_dtype, + 'value': value}) + + if not value_is_scalar_tensor and cls.check_int_type(input_dtype): + graph.make_node( + 'Cast', + inputs=node2, + outputs=node.output('Out'), + attrs={'to': input_dtype}) + else: + assert not is_shape_tensor and not value_is_scalar_tensor, \ + "Currently op ['fill_constant'] does not support in onnx(opset<9) when 'shape' or 'fill_value' has " \ + "tensor, Try converting with opset_version >=9 " + + value = np.ones(shape) * value + value = value.astype(dtypes.DTYPE_PADDLE_NUMPY_MAP[dtype]) + value = value.flatten().tolist() + + graph.make_node( + 'Constant', + inputs=[], + outputs=node.output('Out'), + attrs={ + 'dims': shape, + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[dtype], + 'value': value + }) + + +@op_mapper(['lookup_table_v2', 'lookup_table']) +class Embedding(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + ids = node.input('Ids', 0) + if node.type == 'lookup_table' and node.input_shape('Ids', 0)[-1] == 1: + ids = mapper_helper.squeeze_helper(graph, + node.input('Ids', 0), [-1]) + padding_idx = node.attr('padding_idx') + input_shape = node.input_shape('W', 0) + if padding_idx != -1: + key = node.input('W', 0) + if -1 in input_shape: + assert False, "opset version < 11 do not support padding_idx !=-1 and weight is tensor with dynamic shape, please set opset version > 11 or use input_spec to set input shape" + else: + data = np.ones(shape=input_shape, dtype=np.float32) + data[padding_idx] = 0.0 + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('W', 0)] + constant = graph.make_node( + 'Constant', + dtype=dtype, + dims=input_shape, + value=data.flatten().tolist()) + weight_node = graph.make_node( + 'Mul', inputs=[node.input('W', 0), constant]) + graph.make_node( + 'Gather', + inputs=[weight_node, ids], + outputs=node.output('Out')) + else: + graph.make_node( + 'Gather', + inputs=[node.input('W', 0), ids], + outputs=node.output('Out')) + + @classmethod + def opset_11(cls, graph, node, **kw): + ids = node.input('Ids', 0) + if node.type == 'lookup_table' and node.input_shape('Ids', 0)[-1] == 1: + ids = mapper_helper.squeeze_helper(graph, + node.input('Ids', 0), [-1]) + + padding_idx = node.attr('padding_idx') + input_shape = node.input_shape('W', 0) + if padding_idx != -1: + if -1 in input_shape: + replace_shape = list(copy.copy(input_shape)) + del (replace_shape[0]) + replace_data = graph.make_node( + 'Constant', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('W', + 0)], + dims=replace_shape, + value=[0.0] * np.prod(replace_shape)) + index = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[padding_idx]) + Scatter_node = graph.make_node( + 'ScatterND', + inputs=[node.input('W', 0), index, replace_data]) + graph.make_node( + 'Gather', + inputs=[Scatter_node, ids], + outputs=node.output('Out')) + else: + data = np.ones(shape=input_shape, dtype=np.float32) + data[padding_idx] = 0.0 + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('W', 0)] + constant = graph.make_node( + 'Constant', + dtype=dtype, + dims=input_shape, + value=data.flatten().tolist()) + weight_node = graph.make_node( + 'Mul', inputs=[node.input('W', 0), constant]) + graph.make_node( + 'Gather', + inputs=[weight_node, ids], + outputs=node.output('Out')) + else: + graph.make_node( + 'Gather', + inputs=[node.input('W', 0), ids], + outputs=node.output('Out')) + + +@op_mapper('fill_constant_batch_size_like') +class FillConstantBatchSizeLike(): + support_opset_version_range = (9, 12) + + @classmethod + def opset_10(cls, graph, node, **kw): + out_shape = node.attr('shape') + input_dim_idx = node.attr('input_dim_idx') + output_dim_idx = node.attr('output_dim_idx') + + del out_shape[output_dim_idx] + out_shape.insert(0, 1) + + dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')] + if node.attr("str_value") is not None and node.attr("str_value") != "": + value = eval(node.attr("str_value")) + else: + value = node.attr('value') + input_shape = node.input_shape('Input', 0) + constant = graph.make_node( + 'Constant', + dtype=dtype, + dims=out_shape, + value=[value] * np.prod(out_shape)) + + shape = graph.make_node('Shape', inputs=node.input('Input')) + start = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[input_dim_idx]) + end = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT64, value=[input_dim_idx + 1]) + batch = graph.make_node('Slice', inputs=[shape, start, end]) + repeat = batch + if len(out_shape) > 1: + repeat = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT64, + value=[1] * (len(out_shape) - 1)) + repeat = graph.make_node('Concat', inputs=[batch, repeat], axis=-1) + if output_dim_idx == 0: + graph.make_node( + 'Tile', inputs=[constant, repeat], outputs=node.output('Out')) + else: + out = graph.make_node('Tile', inputs=[constant, repeat]) + perm = list(range(len(out_shape))) + del perm[0] + perm.insert(output_dim_idx, 0) + graph.make_node( + 'Transpose', + inputs=[out], + perm=perm, + outputs=node.output('Out')) + + +@op_mapper('fill_any_like') +class FullLike(): + ''' + fill_any_like is kernel for paddle op::full_like & ones_like + ''' + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + shape_node = graph.make_node('Shape', inputs=node.input('X')) + value = node.attr('value') + dtype = node.attr('dtype') + input_dtype = node.input_dtype('X', 0) + if dtype is None: + dtype = input_dtype + np_dtype = dtypes.DTYPE_PADDLE_STR_MAP[dtype] + onnx_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + graph.make_node( + 'ConstantOfShape', + inputs=[shape_node], + outputs=node.output('Out'), + dims=[1], + dtype=onnx_dtype, + value=np.array(value).astype(np_dtype).tolist()) + + +@op_mapper('fill_zeros_like') +class FullZeroLike(): + ''' + fill_zeros_like is kernel for paddle op::zeros_like + ''' + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + shape_node = graph.make_node('Shape', inputs=node.input('X')) + value = 0 + dtype = node.attr('dtype') + input_dtype = node.input_dtype('X', 0) + if dtype is None: + dtype = input_dtype + np_dtype = dtypes.DTYPE_PADDLE_STR_MAP[dtype] + onnx_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[dtype] + graph.make_node( + 'ConstantOfShape', + inputs=[shape_node], + outputs=node.output('Out'), + dims=[1], + dtype=onnx_dtype, + value=np.array(value).astype(np_dtype).tolist()) + + +@op_mapper('gather_nd') +class Gather_nd(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + data = node.input('X', 0) + index = node.input('Index', 0) + index_dtype = node.input_dtype('Index', 0) + index_node = None + if index_dtype != paddle.int64: + index_node = graph.make_node( + 'Cast', inputs=[node.input('Index', 0)], to=dtypes.ONNX.INT64) + else: + index_node = index + graph.make_node( + 'GatherND', inputs=[data, index_node], outputs=node.output('Out')) + + +@op_mapper('gather') +class Gather(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + axis = node.attr('axis') + if node.input('Axis', 0) != None: + axis_node = node.input('Axis', 0) + try: + axis = mapper_helper.get_value_from_parameters(graph, + axis_node)[0] + except Exception as e: + raise Exception( + "Currently does not support the axis parameter as input tensor" + + str(e)) + if axis is None: + axis = 0 + if len(node.input_shape('Index', 0)) == 1: + # gather + graph.make_node( + 'Gather', + inputs=[node.input('X', 0), node.input('Index', 0)], + outputs=node.output('Out'), + attrs={'axis': axis}) + else: + raise Exception( + "please try to convert OP:gather(indices's rank >1) with opset_version >= 11." + ) + + @classmethod + def opset_11(cls, graph, node, **kw): + axis = node.attr('axis') + if node.input('Axis', 0) != None: + axis_node = node.input('Axis', 0) + try: + axis = mapper_helper.get_value_from_parameters(graph, + axis_node)[0] + except Exception as e: + raise Exception( + "Currently does not support the axis parameter as input tensor" + + str(e)) + if axis is None: + axis = 0 + if len(node.input_shape('Index', 0)) == 1: + # gather + graph.make_node( + 'Gather', + inputs=[node.input('X', 0), node.input('Index', 0)], + outputs=node.output('Out'), + attrs={'axis': axis}) + else: + # gather_nd + index_dtype = node.input_dtype('Index', 0) + if index_dtype != paddle.int64: + index_node = graph.make_node( + 'Cast', + inputs=[node.input('Index', 0)], + to=dtypes.ONNX.INT64) + graph.make_node( + 'GatherND', + inputs=[node.input('X', 0), index_node], + outputs=node.output('Out')) + else: + graph.make_node( + 'GatherND', + inputs=[node.input('X', 0), node.input('Index', 0)], + outputs=node.output('Out')) + + +@op_mapper('squeeze2') +class Squeeze(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + shape = node.input_shape('X', 0) + ret = [i for i, val in enumerate(shape) if val > 1] + if len(ret) == len(shape): + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + else: + axes = cls.compute_axes(graph, node) + if len(axes) > 0: + axes.sort() + mapper_helper.squeeze_helper(graph, + node.input('X', 0), axes, + node.output('Out')) + else: + graph.make_node( + 'Squeeze', + inputs=[node.input('X', 0)], + outputs=node.output('Out')) + + @classmethod + def compute_axes(cls, graph, node): + shape = node.input_shape('X', 0) + axes = node.attr('axes') + if len(axes) > 0: + axes = [ + axis + len(shape) if axis < 0 else axis + for i, axis in enumerate(axes) + ] + return axes + + +@op_mapper('assign_value') +class Assign(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + if len(node.input_names) > 0: + graph.make_node( + 'Identity', inputs=node.input('X'), outputs=node.output('Out')) + else: + parameters = {} + value = np.array(node.attr('fp32_values')) + if value is None or value.size < 1: + value = np.array(node.attr('int32_values')) + if value is None or value.size < 1: + value = np.array(node.attr('int64_values')) + parameter = { + 'data': value, + 'dtype': node.output_dtype("Out", 0), + 'shape': node.attr('shape') + } + parameters[node.output('Out', 0)] = parameter + graph.build_parameters(parameters) + + +@op_mapper('transpose2') +class Transpose(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + graph.make_node( + 'Transpose', + inputs=node.input('X'), + outputs=node.output('Out'), + perm=node.attr('axis')) + + +@op_mapper('flatten2') +class Flatten(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)] + if input_dtype in [dtypes.ONNX.INT32, dtypes.ONNX.INT64 + ] and graph.opset_version < 9: + raise Exception( + "int32 or int64 not supported in onnx <9, please try with higher onnx opset_version>=9." + ) + + graph.make_node( + 'Flatten', + inputs=node.input('X'), + outputs=node.output('Out'), + axis=node.attr('axis')) + + +@op_mapper('flatten_contiguous_range') +class FlattenContiguousRange(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + dims = len(node.input_shape('X', 0)) + start_axis = node.attr('start_axis') + end_axis = node.attr('stop_axis') + shape_node = graph.make_node('Shape', inputs=node.input('X')) + if start_axis < 0: + start_axis += dims + if end_axis < 0: + end_axis += dims + if start_axis == 0 and end_axis == dims - 1: + final_shape = graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64) + elif start_axis == 0: + slice_end = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[end_axis + 1], + ends=[dims]) + slices = [ + graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64), slice_end + ] + final_shape = graph.make_node('Concat', inputs=slices, axis=0) + elif end_axis == dims - 1: + slice_start = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[0], ends=[start_axis]) + slices = [ + slice_start, graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64) + ] + final_shape = graph.make_node('Concat', inputs=slices, axis=0) + else: + slice_start = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[0], ends=[start_axis]) + slice_end = mapper_helper.slice_helper( + graph, shape_node, axes=[0], starts=[end_axis + 1], + ends=[dims]) + slices = [ + slice_start, graph.make_node( + 'Constant', value=[-1], dtype=dtypes.ONNX.INT64), slice_end + ] + final_shape = graph.make_node('Concat', inputs=slices, axis=0) + graph.make_node( + 'Reshape', + inputs=[node.input('X')[0], final_shape], + outputs=node.output('Out')) + + +@op_mapper('reshape2') +class Reshape(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + shape_name = 'ShapeTensor' + if shape_name not in node.inputs or len(node.input(shape_name)) == 0: + shape_name = 'Shape' + if shape_name not in node.inputs or len(node.input(shape_name)) == 0: + if node.attr('shape') is None or len(node.attr('shape')) == 0: + raise Exception("shape tensor and shape attrubite all unkown.") + if len(node.input(shape_name)) > 1: + dims = [] + for i in range(len(node.input(shape_name))): + dim = node.input(shape_name)[i] + dim = graph.make_node( + 'Cast', inputs=[dim], to=dtypes.ONNX.INT64) + dims.append(dim) + shape = graph.make_node('Concat', inputs=dims, axis=-1) + graph.make_node( + 'Reshape', + inputs=[node.input('X')[0], shape], + outputs=node.output('Out')) + elif len(node.input(shape_name)) == 1: + cast_shape_node = graph.make_node( + 'Cast', inputs=node.input(shape_name), to=dtypes.ONNX.INT64) + graph.make_node( + 'Reshape', + inputs=[node.input('X')[0], cast_shape_node], + outputs=node.output('Out')) + elif node.attr('shape') is not None and len(node.attr('shape')) > 0: + shape_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.ONNX.INT64, + 'value': node.attr('shape') + }) + reshape_node = graph.make_node( + 'Reshape', + inputs=[node.input('X')[0], shape_node], + outputs=node.output('Out')) + + +@op_mapper('unsqueeze2') +class Unsqueeze(): + support_opset_version_range = (1, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + axes = cls.get_axes(graph, node) + mapper_helper.unsqueeze_helper(graph, + node.input('X'), axes, + node.output('Out')) + + @classmethod + def opset_13(cls, graph, node, **kw): + axes_node = cls.get_axes(graph, node, return_node=True) + graph.make_node( + 'Unsqueeze', + inputs=node.input('X') + [axes_node], + outputs=node.output('Out')) + + @classmethod + def get_axes(cls, graph, node, return_node=False): + axes_node = None + ndim = node.block.vars[node.input('X')[0]].ndim + if len(node.attr('axes')) > 0: + axes = node.attr('axes') + else: + axes_node = node.input('AxesTensor')[0] + if axes_node is not None and graph.opset_version > 12 and return_node: + return axes_node + try: + axes = mapper_helper.get_value_from_parameters(graph, axes_node) + except Exception as e: + raise Exception( + "Currently does not support the axes parameter as input tensor in onnx(opset<13), " + "Try converting with opset_version >=13 " + str(e)) + # axes is list of non-negative integers + axes = [ + axis + ndim + i + 1 if axis < 0 else axis + for i, axis in enumerate(axes) + ] + + axes_copy = axes.copy() + assert sorted( + axes) == axes_copy, "axes must be arranged in the following order" + assert len(set(axes)) == len(axes), "axes have duplicate axis" + + if return_node: + if axes_node is None: + axes_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': axes}) + return axes_node + return axes + + +@op_mapper('reciprocal') +class Reciprocal(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Reciprocal', inputs=node.input('X'), outputs=node.output('Out')) + + +@op_mapper('cast') +class Cast(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'Cast', + inputs=node.input('X'), + outputs=node.output('Out'), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('out_dtype')]) + + +@op_mapper('linspace') +class Linspace(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + start = node.input('Start', 0) + stop = node.input('Stop', 0) + num = node.input('Num', 0) + dtype = node.attr('dtype') + + start = graph.make_node('Cast', inputs=[start], to=dtypes.ONNX.FLOAT) + stop = graph.make_node('Cast', inputs=[stop], to=dtypes.ONNX.FLOAT) + + sub_a_node = graph.make_node('Sub', inputs=[stop, start]) + + one_node = graph.make_node( + 'Constant', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('Num', 0)], + value=[1]) + + sub_b_node = graph.make_node('Sub', inputs=[num, one_node]) + + sub_b_float_node = graph.make_node( + 'Cast', inputs=[sub_b_node], to=dtypes.ONNX.FLOAT) + + step = graph.make_node('Div', inputs=[sub_a_node, sub_b_float_node]) + + range_tensor = graph.make_node( + 'Cast', inputs=[num], to=dtypes.ONNX.INT64) + + one_like_node = graph.make_node( + 'ConstantOfShape', + inputs=[range_tensor], + dtype=dtypes.ONNX.FLOAT, + value=[1]) + + none_zero_node = graph.make_node('NonZero', inputs=[one_like_node]) + + trans_none_zero_node = graph.make_node( + 'Transpose', inputs=[none_zero_node], perm=[1, 0]) + + trans_squeeze = mapper_helper.squeeze_helper(graph, + trans_none_zero_node, [1]) + + trans_squeeze = graph.make_node( + 'Cast', inputs=[trans_squeeze], to=dtypes.ONNX.FLOAT) + + mul_node = graph.make_node('Mul', inputs=[trans_squeeze, step]) + + add_node = graph.make_node('Add', inputs=[mul_node, start]) + graph.make_node( + 'Cast', + inputs=[add_node], + outputs=node.output('Out'), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('Start', 0)]) + + +@op_mapper('clip') +class Clip(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + min_value = node.attr('min') + max_value = node.attr('max') + if node.input('Max', 0) is None or len(node.input('Max')) == 0: + max_ = max_value + else: + max_ = node.input('Max', 0) + if node.input('Min', 0) is None or len(node.input('Min')) == 0: + min_ = min_value + else: + min_ = node.input('Min', 0) + mapper_helper.clip_helper(graph, node, + node.input('X', 0), max_, min_, + node.output('Out', 0)) + + +@op_mapper(['pad2d', 'pad3d']) +class Pad(): + support_opset_version_range = (1, 12) + + @classmethod + def opset_1(cls, graph, node, **kw): + if node.attr('mode') == 'replicate': + mode = 'edge' + elif node.attr('mode') == 'circular': + raise Exception("The padding mode = circular is not supported, " \ + "Please try the other three ways") + else: + mode = node.attr('mode') + pads = cls.convert_padding(node, **kw) + if pads is None: + key = node.input('Paddings', 0) + padding = None + if key in graph.parameters.keys(): + paddings = graph.parameters[key].attribute[0].t.int32_data + if node.attr('data_format') == 'NCHW': + pads = [ + 0, 0, paddings[0], paddings[2], 0, 0, paddings[1], + paddings[3] + ] + elif node.attr('data_format') == 'NHWC': + pads = [ + 0, paddings[0], paddings[2], 0, 0, paddings[1], + paddings[3], 0 + ] + elif node.attr('data_format') == 'NCDHW': + pads = [ + 0, 0, paddings[4], paddings[2], paddings[0], 0, 0, + paddings[5], paddings[3], paddings[1] + ] + elif node.attr('data_format') == 'NDHWC': + pads = [ + 0, paddings[4], paddings[2], paddings[0], 0, 0, + paddings[5], paddings[3], paddings[1], 0 + ] + else: + raise Exception("In Pad op, padding can not be tensor" \ + "Please set opset version >= 11") + + value = None + if node.attr('pad_value') is not None: + value = node.attr('pad_value') + elif node.attr('value') is not None: + value = node.attr('value') + graph.make_node( + 'Pad', + inputs=node.input('X'), + outputs=node.output('Out'), + mode=mode, + value=value, + pads=pads) + + @classmethod + def opset_11(cls, graph, node, **kw): + pads = cls.convert_padding(node, **kw) + if node.attr('mode') == 'replicate': + mode = 'edge' + elif node.attr('mode') == 'circular': + raise Exception("The padding mode = circular is not supported, " \ + "Please try the other three ways") + else: + mode = node.attr('mode') + pads_node = None + if isinstance(pads, list): + pads_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.INT64, + 'value': pads}) + else: + key = node.input('Paddings', 0) + padding = None + if key in graph.parameters.keys(): + paddings = graph.parameters[key].attribute[0].t.int32_data + onnx_paddings = None + if node.attr('data_format') == 'NCHW': + onnx_paddings = [ + 0, 0, paddings[0], paddings[2], 0, 0, paddings[1], + paddings[3] + ] + elif node.attr('data_format') == 'NHWC': + onnx_paddings = [ + 0, paddings[0], paddings[2], 0, 0, paddings[1], + paddings[3], 0 + ] + elif node.attr('data_format') == 'NCDHW': + onnx_paddings = [ + 0, 0, paddings[4], paddings[2], paddings[0], 0, 0, + paddings[5], paddings[3], paddings[1] + ] + elif node.attr('data_format') == 'NDHWC': + onnx_paddings = [ + 0, paddings[4], paddings[2], paddings[0], 0, 0, + paddings[5], paddings[3], paddings[1], 0 + ] + + pads_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': onnx_paddings}) + else: + padding_node = node.input('Paddings', 0) + casted_padding_node = graph.make_node( + 'Cast', inputs=[padding_node], to=dtypes.ONNX.FLOAT) + zero_node = None + if node.attr('data_format') == 'NCHW' or node.attr( + 'data_format') == 'NHWC': + zero_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[0] * 8) + else: + zero_node = graph.make_node( + 'Constant', dtype=dtypes.ONNX.FLOAT, value=[0] * 10) + index = None + if node.attr('data_format') == 'NCHW': + index = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT32, + value=[2, 6, 3, 7]) + elif node.attr('data_format') == 'NHWC': + index = graph.make_node( + 'Constant', dtype=dtypes.ONNX.INT32, + value=[1, 5, 2, 6]) + elif node.attr('data_format') == 'NCDHW': + index = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT32, + value=[4, 9, 3, 8, 2, 7]) + elif node.attr('data_format') == 'NDHWC': + index = graph.make_node( + 'Constant', + dtype=dtypes.ONNX.INT32, + value=[3, 8, 2, 7, 1, 6]) + + float_paddle_node = graph.make_node( + 'ScatterElements', + inputs=[zero_node, index, casted_padding_node]) + paddle_node = graph.make_node( + 'Cast', inputs=[float_paddle_node], to=dtypes.ONNX.INT64) + pads_node = paddle_node + + value = None + if node.attr('pad_value') is not None: + value = node.attr('pad_value') + elif node.attr('value') is not None: + value = node.attr('value') + value_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('X', 0)], + 'value': value + }) + + graph.make_node( + 'Pad', + inputs=node.input('X') + [pads_node, value_node], + outputs=node.output('Out'), + mode=mode) + + @classmethod + def convert_padding(cls, node, **kw): + x_shape = node.input_shape('X', 0) + paddings = node.attr('paddings') + if paddings == []: + return None + onnx_paddings = None + if node.attr('data_format') == 'NCHW': + onnx_paddings = [ + 0, 0, paddings[0], paddings[2], 0, 0, paddings[1], paddings[3] + ] + elif node.attr('data_format') == 'NHWC': + onnx_paddings = [ + 0, paddings[0], paddings[2], 0, 0, paddings[1], paddings[3], 0 + ] + elif node.attr('data_format') == 'NCDHW': + onnx_paddings = [ + 0, 0, paddings[4], paddings[2], paddings[0], 0, 0, paddings[5], + paddings[3], paddings[1] + ] + elif node.attr('data_format') == 'NDHWC': + onnx_paddings = [ + 0, paddings[4], paddings[2], paddings[0], 0, 0, paddings[5], + paddings[3], paddings[1], 0 + ] + return onnx_paddings + + +@op_mapper('gaussian_random') +class GaussianRandom(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + shape_input_list = node.input('ShapeTensorList') + shape_input = None + if len(shape_input_list) == 0: + shape_input = node.input('ShapeTensor') + else: + shape_input = graph.make_node( + "Concat", inputs=node.input('ShapeTensorList'), axis=0) + if shape_input is None or len(shape_input) == 0: + graph.make_node( + 'RandomNormal', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')], + outputs=node.output('Out'), + shape=node.attr('shape'), + seed=float(node.attr('seed')), + mean=node.attr('mean'), + scale=node.attr('std')) + else: + cast_input_shape = graph.make_node( + 'Cast', inputs=shape_input, to=dtypes.ONNX.INT64) + zero_like_node = graph.make_node( + 'ConstantOfShape', + inputs=cast_input_shape, + dims=[1], + dtype=dtypes.ONNX.FLOAT, + value=[0]) + graph.make_node( + 'RandomNormalLike', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')], + outputs=node.output('Out'), + inputs=zero_like_node, + seed=float(node.attr('seed')), + mean=node.attr('mean'), + scale=node.attr('std')) + + +@op_mapper('uniform_random_batch_size_like') +class UniformRandom(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_1(cls, graph, node, **kw): + graph.make_node( + 'RandomUniformLike', + inputs=node.input('Input'), + outputs=node.output('Out'), + high=node.attr('max'), + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')], + low=node.attr('min'), + seed=float(node.attr('seed')), ) + + +@op_mapper('uniform_random') +class UniformRandom(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + shape_input_list = node.input('ShapeTensorList') + shape_input = None + if len(shape_input_list) == 0: + shape_input = node.input('ShapeTensor') + else: + shape_input = graph.make_node( + "Concat", inputs=node.input('ShapeTensorList'), axis=0) + if shape_input is None or len(shape_input) == 0: + graph.make_node( + 'RandomUniform', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')], + outputs=node.output('Out'), + shape=node.attr('shape'), + seed=float(node.attr('seed')), + low=node.attr('min'), + high=node.attr('max')) + else: + cast_input_shape = graph.make_node( + 'Cast', inputs=shape_input, to=dtypes.ONNX.INT64) + zero_like_node = graph.make_node( + 'ConstantOfShape', + inputs=cast_input_shape, + dtype=dtypes.ONNX.FLOAT, + value=[0]) + graph.make_node( + 'RandomUniformLike', + dtype=dtypes.DTYPE_PADDLE_ONNX_MAP[node.attr('dtype')], + outputs=node.output('Out'), + inputs=zero_like_node, + seed=float(node.attr('seed')), + low=node.attr('min'), + high=node.attr('max')) + + +# 'bilinear_interp', 'nearest_interp', scale only support 2, 4, 6, 8, 10 +@op_mapper( + [ + 'bilinear_interp', 'nearest_interp', 'bilinear_interp_v2', + 'nearest_interp_v2', 'bicubic_interp_v2', 'linear_interp_v2', + 'trilinear_interp_v2', 'trilinear_interp', 'linear_interp' + ], + mapper_dict={ + 'bilinear_interp': 'linear', + 'nearest_interp': 'nearest', + 'bilinear_interp_v2': 'linear', + 'nearest_interp_v2': 'nearest', + 'bicubic_interp_v2': 'cubic', + 'linear_interp_v2': 'linear', + 'trilinear_interp_v2': 'linear', + 'trilinear_interp': 'linear', + 'linear_interp': 'linear', + }, + opset_op_dict={ + 9: 'Upsample', + 10: 'Resize', + }) +class Resize(): + support_opset_version_range = (9, 15) + + @classmethod + def opset_9(cls, graph, node, **kw): + inputs = [node.input('X')[0]] + resize_type = kw['mapper_dict'][node.type] + cls.waringInfo(graph, node, resize_type) + if len(node.input('OutSize')) > 0 or len(node.input('SizeTensor')) > 0: + output_node = cls.compute_outsize_node( + graph, node, return_scale=True) + elif 'Scale' in node.inputs and len(node.input('Scale')) > 0: + output_node = cls.compute_scale_node(graph, node) + else: + output_node = cls.compute_attrs_node(graph, node, return_scale=True) + + inputs = inputs + output_node + op = kw['opset_op_dict'][graph.opset_version] + graph.make_node( + op, inputs=inputs, outputs=node.output('Out'), mode=resize_type) + + @classmethod + def opset_11(cls, graph, node, **kw): + inputs = [node.input('X')[0]] + resize_type = kw['mapper_dict'][node.type] + cls.waringInfo(graph, node, resize_type) + if node.attr('align_corners'): + coordinate_transformation_mode = 'align_corners' + elif node.attr('align_mode') == 1 and resize_type is not 'cubic': + coordinate_transformation_mode = 'asymmetric' + elif resize_type == 'nearest': + coordinate_transformation_mode = 'asymmetric' + else: + coordinate_transformation_mode = 'half_pixel' + roi_node = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.ONNX.FLOAT, + 'value': [1, 1, 1, 1, 1, 1, 1, 1] + }) + + inputs.append(roi_node) + if len(node.input('OutSize')) > 0 or len(node.input('SizeTensor')) > 0: + output_node = cls.compute_outsize_node(graph, node) + elif 'Scale' in node.inputs and len(node.input('Scale')) > 0: + output_node = cls.compute_scale_node(graph, node) + else: + output_node = cls.compute_attrs_node(graph, node) + inputs = inputs + output_node + attrs = { + 'mode': resize_type, + 'coordinate_transformation_mode': coordinate_transformation_mode + } + if resize_type == 'nearest' and coordinate_transformation_mode == 'asymmetric': + attrs['nearest_mode'] = 'floor' + graph.make_node( + 'Resize', inputs=inputs, outputs=node.output('Out'), attrs=attrs) + + @classmethod + def compute_outsize_node(cls, graph, node, return_scale=False): + dtype = dtypes.ONNX.INT64 + if return_scale: + dtype = dtypes.ONNX.FLOAT + input_shape_node = graph.make_node('Shape', inputs=node.input('X')) + if dtype != dtypes.ONNX.INT64: + input_shape_node = graph.make_node( + 'Cast', inputs=[input_shape_node], to=dtype) + shape_pre_node = mapper_helper.slice_helper( + graph, input_shape_node, axes=[], starts=[0], ends=[2]) + + out_size = [node.attr('out_d'), node.attr('out_h'), node.attr('out_w')] + out_size = [val for val in out_size if val > 0] + use_tensor = False + if len(node.input('OutSize')) > 0 or len(node.input('SizeTensor')) > 0: + use_tensor = True + if len(out_size) > 0 and not use_tensor: + out_size_node = graph.make_node( + 'Constant', attrs={'dtype': dtype, + 'value': out_size}) + else: + out_size_node, _ = mapper_helper.get_node_attr_value( + graph, node, None, 'OutSize', 'SizeTensor', dtype=dtype) + out_size_node = graph.make_node( + 'Concat', inputs=[shape_pre_node, out_size_node], axis=0) + + if return_scale: + scale_node = graph.make_node( + 'Div', inputs=[out_size_node, input_shape_node]) + return [scale_node] + + scale_empty_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': []}) + return [scale_empty_node, out_size_node] + + @classmethod + def compute_scale_node(cls, graph, node): + cast_scale = graph.make_node( + 'Cast', inputs=node.input('Scale'), to=dtypes.ONNX.FLOAT) + inputs_cocat = [] + const_node = graph.make_node( + 'Constant', attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': [1, 1]}) + inputs_cocat.append(const_node) + scale = node.attr('scale') + if isinstance(scale, (float, int)): + cast_scale = [cast_scale] * (len(node.input_shape('X', 0)) - 2) + inputs_cocat = inputs_cocat + cast_scale + else: + inputs_cocat = inputs_cocat + [cast_scale] + scale_node = graph.make_node('Concat', inputs=inputs_cocat, axis=0) + return [scale_node] + + @classmethod + def compute_attrs_node(cls, graph, node, return_scale=False): + out_size = [node.attr('out_d'), node.attr('out_h'), node.attr('out_w')] + scale = node.attr('scale') + if isinstance(scale, (float, int)): + scale = [scale] * (len(node.input_shape('X', 0)) - 2) + + out_size = [val for val in out_size if val > 0] + if len(out_size) > 0: + output_node = cls.compute_outsize_node( + graph, node, return_scale=return_scale) + return output_node + + assert len(scale) > 0, Exception("scale size should > 0!") + scale_node = graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.FLOAT, + 'value': [1, 1] + scale}) + return [scale_node] + + @classmethod + def waringInfo(cls, graph, node, resize_type): + assert node.attrs['data_layout'] == 'NCHW', \ + "The conv data layout should be 'NCHW' , but received data format " \ + "is %s." % node.attrs['data_format'] + + if graph.opset_version < 11: + if node.attr('align_corners') or resize_type in ["cubic"]: + raise Exception( + "When align_corners is true or resize_type is 'cubic', the case isn't supported in onnx(opset<=10), " + "Try converting with opset_version>= 11 ") + if node.attr('align_mode') == 0 and resize_type in [ + "bilinear", "linear", "trilinear" + ]: + raise Exception( + "When align_mode == 0 and resize_type is 'bilinear' or 'linear or 'trilinear', the case isn't " + "supported in onnx(opset<=10), Try converting with opset_version>= 11 " + ) + + +@op_mapper('pixel_shuffle') +class PixelShuffle(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + upscale_factor = node.attr('upscale_factor') + + node = graph.make_node( + 'DepthToSpace', + inputs=node.input('X'), + outputs=node.output('Out'), + blocksize=upscale_factor, + mode='CRD') + + +@op_mapper('scatter') +class Scatter(): + support_opset_version_range = (11, 15) + + @classmethod + def opset_11(cls, graph, node, **kw): + ids = node.input('Ids', 0) + input_dtype = dtypes.DTYPE_PADDLE_ONNX_MAP[node.input_dtype('Ids', 0)] + if input_dtype != dtypes.ONNX.INT64: + ids = graph.make_node('Cast', inputs=[ids], to=dtypes.ONNX.INT64) + + shape = graph.make_node( + 'Constant', + value=[node.input_shape('Ids', 0)[0], 1], + dtype=dtypes.ONNX.INT64) + reshape_index = graph.make_node('Reshape', inputs=[ids, shape]) + if not node.attr('overwrite'): + raise Exception("overwrite = False not support yet.") + else: + graph.make_node( + 'ScatterND', + inputs=[ + node.input('X', 0), reshape_index, node.input('Updates', 0) + ], + outputs=node.output('Out')) + + +@op_mapper('scatter_nd_add') +class ScatterndAdd(): + support_opset_version_range = (11, 12) + + @classmethod + def opset_11(cls, graph, node, **kw): + shape = graph.make_node('Shape', inputs=node.input('X', 0)) + zero_like_node = graph.make_node( + 'ConstantOfShape', + inputs=[shape], + dims=[1], + dtype=dtypes.ONNX.FLOAT, + value=[0]) + add_node = graph.make_node( + 'ScatterND', + inputs=[ + zero_like_node, node.input('Index', 0), node.input('Updates', 0) + ], ) + graph.make_node( + 'Add', + inputs=[node.input('X', 0), add_node], + outputs=node.output('Out')) + + +@op_mapper('meshgrid') +class Meshgrid(): + support_opset_version_range = (8, 15) + + @classmethod + def opset_8(cls, graph, node, **kw): + tensors = [t for t in list(node.input('X'))] + tensors_shape = [graph.make_node('Shape', inputs=t) for t in tensors] + out_shape = graph.make_node('Concat', inputs=tensors_shape, axis=0) + out = [] + for i, t in enumerate(tensors): + shape_i = [ + graph.make_node( + 'Constant', + attrs={'dtype': dtypes.ONNX.INT64, + 'value': [1]}) + ] * len(tensors) + shape_i[i] = tensors_shape[i] + t_reshaped = graph.make_node( + 'Reshape', + inputs=[t, graph.make_node( + 'Concat', inputs=shape_i, axis=0)]) + out.append( + graph.make_node( + 'Expand', + inputs=[t_reshaped, out_shape], + outputs=node.output('Out')[i])) + + +@op_mapper('flip') +class Flip(): + support_opset_version_range = (7, 15) + + @classmethod + def opset_7(cls, graph, node, **kw): + inputs = node.input('X') + x_dtype = node.input_dtype('X', 0) + if x_dtype == paddle.bool or x_dtype == paddle.float64: + inputs = [ + graph.make_node( + "Cast", inputs=inputs, to=dtypes.ONNX.FLOAT) + ] + axes = node.attr("axis") + if not isinstance(axes, list): + axes = [axes] + input_shape = node.input_shape('X', 0) + + for i, axis in enumerate(axes): + if axis < 0: + axes[i] += len(input_shape) + assert input_shape[ + axis] > 0, "The dimension in axis of input must be fixed for flip operator, but now the input shape({}) in axis({}) is unknow.".format( + input_shape, axis) + + temp_input = inputs[0] + for i, axis in enumerate(axes): + if input_shape[axis] == 1: + if i != len(axes) - 1: + continue + else: + if x_dtype == paddle.bool or x_dtype == paddle.float64: + graph.make_node( + "Cast", + inputs=[temp_input], + outputs=node.output("Out"), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + graph.make_node( + "Identity", + inputs=[temp_input], + outputs=node.output("Out")) + else: + splits = graph.make_node( + "Split", + inputs=[temp_input], + outputs=input_shape[axis], + axis=axis, + split=[1] * input_shape[axis]) + reversed_splits = splits[::-1] + if i != len(axes) - 1: + temp_input = graph.make_node( + "Concat", inputs=reversed_splits, axis=axis) + else: + if x_dtype == paddle.bool or x_dtype == paddle.float64: + out = graph.make_node( + "Concat", inputs=reversed_splits, axis=axis) + graph.make_node( + "Cast", + inputs=[out], + outputs=node.output("Out"), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + graph.make_node( + "Concat", + inputs=reversed_splits, + outputs=node.output("Out"), + axis=axis) + + @classmethod + def opset_13(cls, graph, node, **kw): + inputs = node.input('X') + x_dtype = node.input_dtype('X', 0) + if x_dtype == paddle.bool or x_dtype == paddle.float64: + inputs = [ + graph.make_node( + "Cast", inputs=inputs, to=dtypes.ONNX.FLOAT) + ] + axes = node.attr("axis") + if not isinstance(axes, list): + axes = [axes] + input_shape = node.input_shape('X', 0) + + for i, axis in enumerate(axes): + if axis < 0: + axes[i] += len(input_shape) + assert input_shape[ + axis] > 0, "The dimension in axis of input must be fixed for flip operator, but now the input shape({}) in axis({}) is unknow.".format( + input_shape, axis) + + temp_input = inputs[0] + for i, axis in enumerate(axes): + if input_shape[axis] == 1: + if i != len(axes) - 1: + continue + else: + if x_dtype == paddle.bool or x_dtype == paddle.float64: + graph.make_node( + "Cast", + inputs=[temp_input], + outputs=node.output("Out"), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + graph.make_node( + "Identity", + inputs=[temp_input], + outputs=node.output("Out")) + else: + split = graph.make_node( + 'Constant', + attrs={ + 'dtype': dtypes.ONNX.INT64, + 'value': [1] * input_shape[axis] + }) + splits = graph.make_node( + "Split", + inputs=[temp_input, split], + outputs=input_shape[axis], + axis=axis) + reversed_splits = splits[::-1] + if i != len(axes) - 1: + temp_input = graph.make_node( + "Concat", inputs=reversed_splits, axis=axis) + else: + if x_dtype == paddle.bool or x_dtype == paddle.float64: + out = graph.make_node( + "Concat", inputs=reversed_splits, axis=axis) + graph.make_node( + "Cast", + inputs=[out], + outputs=node.output("Out"), + to=dtypes.DTYPE_PADDLE_ONNX_MAP[x_dtype]) + else: + graph.make_node( + "Concat", + inputs=reversed_splits, + outputs=node.output("Out"), + axis=axis) diff --git a/paddle2onnx/legacy/passes/__init__.py b/paddle2onnx/legacy/passes/__init__.py new file mode 100755 index 0000000000..9ac316d841 --- /dev/null +++ b/paddle2onnx/legacy/passes/__init__.py @@ -0,0 +1,17 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from .pass_manager import PassManager +from .inplace_node_pass import InplaceNodePass +from .dumplicate_names_pass import DumplicateNamesPass \ No newline at end of file diff --git a/paddle2onnx/legacy/passes/dumplicate_names_pass.py b/paddle2onnx/legacy/passes/dumplicate_names_pass.py new file mode 100755 index 0000000000..82d17a129d --- /dev/null +++ b/paddle2onnx/legacy/passes/dumplicate_names_pass.py @@ -0,0 +1,91 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from paddle2onnx.legacy.passes import PassManager +from paddle2onnx.utils import logging + + +@PassManager('dumplicate_names_pass') +class DumplicateNamesPass(object): + + name_count = dict() + + @classmethod + def generate_new_name(cls, name): + for saved_name in cls.name_count: + if name.startswith(saved_name): + cls.name_count[saved_name] += 1 + new_name = saved_name + '.' + str(cls.name_count[saved_name]) + return new_name + cls.name_count[name] = 1 + new_name = name + '.' + str(cls.name_count[name]) + return new_name + + @classmethod + def run_pass(cls, onnx_graph): + renamer = {} + tensor_names = set() + for name, node in onnx_graph.parameters.items(): + output = node.output + for opt in output: + assert opt not in tensor_names, "There's dumplicate names in parameters." + tensor_names.add(opt) + + for ipt in onnx_graph.input_nodes: + assert ipt.name not in tensor_names, "There's dumplicate names in exported parameters and inputs." + tensor_names.add(ipt.name) + + for name, node in onnx_graph.node_map.items(): + inputs = node.inputs + outputs = node.outputs + update_node = False + for idx in range(len(inputs)): + ipt = inputs[idx] + if ipt not in renamer: + continue + updated_name = renamer[ipt] + while updated_name in renamer: + updated_name = renamer[updated_name] + inputs[idx] = updated_name + update_node = True + + for idx in range(len(outputs)): + opt = outputs[idx] + if opt not in tensor_names: + tensor_names.add(opt) + continue + renamed_tensor_name = opt + while renamed_tensor_name in renamer: + renamed_tensor_name = renamer[renamed_tensor_name] + new_name = cls.generate_new_name(renamed_tensor_name) + logging.warning("[Renamer Pass] Will rename {}, to {}".format( + renamed_tensor_name, new_name)) + outputs[idx] = new_name + update_node = True + renamer[renamed_tensor_name] = new_name + + if update_node: + node.set_inputs(inputs) + node.set_outputs(outputs) + onnx_graph.update_node(node) + + for opt in onnx_graph.output_nodes: + if opt.name not in renamer: + continue + updated_name = renamer[opt.name] + while updated_name in renamer: + updated_name = renamer[updated_name] + opt.name = updated_name + + return onnx_graph diff --git a/paddle2onnx/legacy/passes/inplace_node_pass.py b/paddle2onnx/legacy/passes/inplace_node_pass.py new file mode 100755 index 0000000000..e9fc6f84be --- /dev/null +++ b/paddle2onnx/legacy/passes/inplace_node_pass.py @@ -0,0 +1,62 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from paddle2onnx.legacy.passes import PassManager + + +def get_repeated_output(inputs, outputs): + repeated_output = {} + for idx in range(len(outputs)): + opt = outputs[idx] + if opt in inputs: + repeated_output[opt] = idx + return repeated_output + + +@PassManager('inplace_node_pass') +class InplaceNodePass(object): + + name_count = dict() + + @classmethod + def generate_new_name(cls, name): + if name in cls.name_count: + cls.name_count[name] += 1 + else: + cls.name_count[name] = 1 + new_name = name + '.' + str(cls.name_count[name]) + return new_name + + @classmethod + def run_pass(cls, onnx_graph): + node_map = list(onnx_graph.node_map.items()) + name_mapping = {} + for idx in range(len(node_map)): + name, node = node_map[idx] + inputs = node.inputs + outputs = node.outputs + for idx in range(len(inputs)): + ipt = inputs[idx] + if ipt in name_mapping: + inputs[idx] = name_mapping[ipt] + repeated_output = get_repeated_output(inputs, outputs) + if len(repeated_output) != 0: + for opt, idx in repeated_output.items(): + name_mapping[opt] = cls.generate_new_name(opt) + outputs[idx] = name_mapping[opt] + node.set_inputs(inputs) + node.set_outputs(outputs) + onnx_graph.update_node(node) + + return onnx_graph diff --git a/paddle2onnx/legacy/passes/pass_manager.py b/paddle2onnx/legacy/passes/pass_manager.py new file mode 100644 index 0000000000..ca8813c449 --- /dev/null +++ b/paddle2onnx/legacy/passes/pass_manager.py @@ -0,0 +1,39 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +import inspect + + +class PassManager(object): + PASSES = {} + + def __init__(self, name, **kwargs): + self.name = name + self.kwargs = kwargs + + def __call__(self, cls): + for k, v in inspect.getmembers(cls, inspect.ismethod): + if k == 'run_pass': + self.PASSES[self.name] = (v, self.kwargs) + + @staticmethod + def run_pass(graph, custom_pass_list): + for pass_name in custom_pass_list: + try: + pass_func, kw = PassManager.PASSES[pass_name] + pass_func(graph, **kw) + except: + raise Exception("Error happened when excute pass: {}".format( + pass_name)) + return graph diff --git a/paddle2onnx/mapper/activation.cc b/paddle2onnx/mapper/activation.cc new file mode 100644 index 0000000000..fe391be687 --- /dev/null +++ b/paddle2onnx/mapper/activation.cc @@ -0,0 +1,453 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/activation.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(relu, ActivationMapper) +REGISTER_MAPPER(relu6, Relu6Mapper) +REGISTER_MAPPER(tanh, ActivationMapper) +REGISTER_MAPPER(log, ActivationMapper) +REGISTER_MAPPER(sigmoid, ActivationMapper) +REGISTER_MAPPER(sqrt, ActivationMapper) +REGISTER_MAPPER(softplus, ActivationMapper) +REGISTER_MAPPER(exp, ActivationMapper) +REGISTER_MAPPER(floor, ActivationMapper) +REGISTER_MAPPER(cos, ActivationMapper) +REGISTER_MAPPER(sin, ActivationMapper) +REGISTER_MAPPER(round, ActivationMapper) +REGISTER_MAPPER(abs, ActivationMapper) +REGISTER_MAPPER(acos, ActivationMapper) +REGISTER_MAPPER(asin, ActivationMapper) +REGISTER_MAPPER(atan, ActivationMapper) +REGISTER_MAPPER(sinh, ActivationMapper) +REGISTER_MAPPER(tan, ActivationMapper) +REGISTER_MAPPER(ceil, ActivationMapper) +REGISTER_MAPPER(cosh, ActivationMapper) +REGISTER_MAPPER(softsign, ActivationMapper) +REGISTER_MAPPER(sign, ActivationMapper) +REGISTER_MAPPER(erf, ActivationMapper) +REGISTER_MAPPER(reciprocal, ActivationMapper) +REGISTER_MAPPER(leaky_relu, LeakyReluMapper) +REGISTER_MAPPER(gelu, GeluMapper) +REGISTER_MAPPER(selu, SeluMapper) +REGISTER_MAPPER(prelu, PReluMapper) +REGISTER_MAPPER(hard_sigmoid, HardSigmoidMapper) +REGISTER_MAPPER(swish, SwishMapper) +REGISTER_MAPPER(hard_swish, HardSwishMapper) +REGISTER_MAPPER(softmax, SoftMaxMapper) +REGISTER_MAPPER(brelu, BReluMapper) +REGISTER_MAPPER(elu, EluMapper) +REGISTER_MAPPER(hard_shrink, HardShrinkMapper) +REGISTER_MAPPER(softshrink, SoftShrinkMapper) +REGISTER_MAPPER(mish, MishMapper) +REGISTER_MAPPER(square, SquareMapper) +REGISTER_MAPPER(size, SizeMapper) +REGISTER_MAPPER(rsqrt, RsqrtMapper) +REGISTER_MAPPER(logsigmoid, LogSigmoidMapper) +REGISTER_MAPPER(log_softmax, LogSoftmaxMapper) +REGISTER_MAPPER(tanh_shrink, TanhShrinkMapper) +REGISTER_MAPPER(thresholded_relu, ThresholdedReluMapper) +REGISTER_MAPPER(log1p, Log1PMapper) +REGISTER_MAPPER(log2, Log2Mapper) +REGISTER_MAPPER(log10, Log10Mapper) +REGISTER_MAPPER(silu, SiluMapper) + +int32_t ActivationMapper::GetMinOpset(bool verbose) { + if (OpType() == "softplus") { + float beta = 0.0; + float threshold = 20.0; + GetAttr("beta", &beta); + GetAttr("threshold", &threshold); + if ((beta - 1.0) > 1e-06 || (beta - 1.0) < -1e-06 || + (threshold - 20.0) > 1e-06 || (threshold - 20.0) < -1e-06) { + Error() << "Only support softplus with beta == 1.0 and threshold == 20.0." + << std::endl; + return -1; + } + } + if (OpType() == "round") { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; + } + if (OpType() == "sinh" || OpType() == "cosh" || OpType() == "sign") { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + return 7; +} + +void ActivationMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto iter = op_mapper_.find(OpType()); + Assert(op_mapper_.end() != iter, + "Cannot find " + OpType() + " in activation op_mapper."); + if (OpType() == "erf") { + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto output = helper_->MakeNode(iter->second, {input})->output(0); + helper_->AutoCast(output, output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + } else { + helper_->MakeNode(iter->second, {input_info[0].name}, + {output_info[0].name}); + } +} + +void Relu6Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + float min = 0.0; + helper_->Clip(input_info[0].name, output_info[0].name, min, threshold_, + input_info[0].dtype); +} + +int32_t PReluMapper::GetMinOpset(bool verbose) { + auto input_info = GetInput("X"); + auto slope_info = GetInput("Alpha"); + if (input_info[0].Rank() != slope_info[0].Rank()) { + if (slope_info[0].Rank() > 1) { + Error() + << "Only support rank of alpha <=1 while Rank(alpha) != Rank(input)." + << std::endl; + return -1; + } + } + return 7; +} + +void PReluMapper::Opset7() { + auto input_info = GetInput("X"); + auto slope_info = GetInput("Alpha"); + auto output_info = GetOutput("Out"); + + std::string slope_cast_name = slope_info[0].name; + if (slope_info[0].dtype == P2ODataType::FP64) { + slope_cast_name = helper_->AutoCast({slope_info[0].name}, P2ODataType::FP64, + P2ODataType::FP32); + } + + if (slope_info[0].Rank() != input_info[0].Rank()) { + Assert(slope_info[0].Rank() <= 1, + "Paddle2ONNX: Only support rank of alpha <= 1 while rank of alpha " + "is not equal with rank of input for operator prelu."); + Assert( + input_info[0].Rank() > 1, + "Paddle2ONNX: Rank of input should greater than 2 for operator prelu."); + std::vector shape_value(input_info[0].Rank() - 1, 1); + shape_value[0] = -1; + slope_cast_name = helper_->Reshape(slope_cast_name, shape_value); + } + + if (input_info[0].dtype == P2ODataType::FP64) { + std::string x_cast_name = helper_->AutoCast( + {input_info[0].name}, P2ODataType::FP64, P2ODataType::FP32); + auto node = helper_->MakeNode("PRelu", {x_cast_name, slope_cast_name}); + helper_->AutoCast(node->output(0), {output_info[0].name}, P2ODataType::FP32, + P2ODataType::FP64); + } else { + helper_->MakeNode("PRelu", {input_info[0].name, slope_cast_name}, + {output_info[0].name}); + } +} + +void SeluMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = + helper_->MakeNode("Selu", {input_info[0].name}, {output_info[0].name}); + AddAttribute(node, "alpha", alpha_); + AddAttribute(node, "gamma", scale_); +} + +void HardSigmoidMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = helper_->MakeNode("HardSigmoid", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "alpha", alpha_); + AddAttribute(node, "beta", beta_); +} + +void SwishMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string beta_node = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), beta_); + // TODO(jiangjiajun) eliminate multiply with a constant of value 1 + // TODO(jiangjiajun) eliminate add with a constant of value 0 + auto beta_x_node = helper_->MakeNode("Mul", {input_info[0].name, beta_node}); + auto sigmod_node = helper_->MakeNode("Sigmoid", {beta_x_node->output(0)}); + helper_->MakeNode("Mul", {input_info[0].name, sigmod_node->output(0)}, + {output_info[0].name}); +} + +void HardSwishMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string scale_node = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), scale_); + std::string offset_node = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), offset_); + + auto add_node = helper_->MakeNode("Add", {input_info[0].name, offset_node}); + auto clip_node = + helper_->Clip(add_node->output(0), 0.0, threshold_, input_info[0].dtype); + + auto mul_node = helper_->MakeNode("Mul", {input_info[0].name, clip_node}); + helper_->MakeNode("Div", {mul_node->output(0), scale_node}, + {output_info[0].name}); +} + +void HardSwishMapper::Opset14() { + if (fabs(offset_ - 3.0) > 1e-05 || fabs(scale_ - 6.0) > 1e-05 || + fabs(threshold_ - 6.0) > 1e-05) { + return Opset7(); + } + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + helper_->MakeNode("HardSwish", {input_info[0].name}, {output_info[0].name}); +} + +void LeakyReluMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = helper_->MakeNode("LeakyRelu", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "alpha", alpha_); +} + +void GeluMapper::Opset9() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto input_onnx_dtype = GetOnnxDtype(input_info[0].dtype); + double sqrt_2_value = 1.4142135623730951; + double scale_value = 0.5; + double const_1_value = 1.0; + auto sqrt_2 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::FLOAT, sqrt_2_value); + auto scale = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::FLOAT, scale_value); + auto const_1 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::FLOAT, const_1_value); + + auto input_name = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + + // the computation formula follows + // https://www.paddlepaddle.org.cn/documentation/docs/zh/api/paddle/nn/functional/gelu_cn.html#gelu + auto erf0 = helper_->MakeNode("Div", {input_name, sqrt_2}); + auto erf1 = helper_->MakeNode("Erf", {erf0->output(0)}); + auto gelu0 = helper_->MakeNode("Add", {erf1->output(0), const_1}); + auto gelu1 = helper_->MakeNode("Mul", {input_name, gelu0->output(0)}); + + if (input_info[0].dtype != P2ODataType::FP32) { + auto out = helper_->MakeNode("Mul", {gelu1->output(0), scale}); + auto cast_out = + helper_->MakeNode("Cast", {out->output(0)}, {output_info[0].name}); + AddAttribute(cast_out, "to", GetOnnxDtype(input_info[0].dtype)); + } else { + helper_->MakeNode("Mul", {gelu1->output(0), scale}, {output_info[0].name}); + } +} + +void SoftMaxMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + if (axis_ < 0) { + axis_ = axis_ + output_info[0].Rank(); + } + if (axis_ == output_info[0].Rank() - 1) { + auto node = helper_->MakeNode("Softmax", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "axis", axis_); + } else { + std::vector perm = Arange(0, output_info[0].Rank()); + perm[output_info[0].Rank() - 1] = axis_; + perm[axis_] = output_info[0].Rank() - 1; + auto transpose_node = helper_->MakeNode("Transpose", {input_info[0].name}); + AddAttribute(transpose_node, "perm", perm); + auto softmax_node = + helper_->MakeNode("Softmax", {transpose_node->output(0)}); + int64_t axis_last = -1; + AddAttribute(softmax_node, "axis", axis_last); + auto transpose_node_last = helper_->MakeNode( + "Transpose", {softmax_node->output(0)}, {output_info[0].name}); + AddAttribute(transpose_node_last, "perm", perm); + } +} + +void SoftMaxMapper::Opset13() { + int64_t axis; + GetAttr("axis", &axis); + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = + helper_->MakeNode("Softmax", {input_info[0].name}, {output_info[0].name}); + AddAttribute(node, "axis", axis); +} + +void BReluMapper::Opset7() { + auto x_info = GetInput("X"); + helper_->Clip(x_info[0].name, GetOutput("Out")[0].name, t_min_, t_max_, + x_info[0].dtype); +} + +void EluMapper::Opset7() { + auto node = helper_->MakeNode("Elu", {GetInput("X")[0].name}, + {GetOutput("Out")[0].name}); + AddAttribute(node, "alpha", alpha_); +} + +void HardShrinkMapper::Opset9() { + auto node = helper_->MakeNode("Shrink", {GetInput("X")[0].name}, + {GetOutput("Out")[0].name}); + AddAttribute(node, "lambd", threshold_); + AddAttribute(node, "bias", float(0.0)); +} + +int32_t MishMapper::GetMinOpset(bool verbose) { + if (fabs(threshold_ - 20.0) > 1e-05) { + Error() << "Only support threshold = 20.0." << std::endl; + return -1; + } + return 7; +} + +void MishMapper::Opset7() { + auto input_info = GetInput("X"); + auto out_info = GetOutput("Out"); + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto softplus = helper_->MakeNode("Softplus", {input})->output(0); + auto tanh = helper_->MakeNode("Tanh", {softplus})->output(0); + auto output = helper_->MakeNode("Mul", {input, tanh})->output(0); + helper_->AutoCast(output, out_info[0].name, P2ODataType::FP32, + out_info[0].dtype); +} + +void SquareMapper::Opset7() { + auto input_info = GetInput("X"); + helper_->MakeNode("Mul", {input_info[0].name, input_info[0].name}, + {GetOutput("Out")[0].name}); +} + +void SoftShrinkMapper::Opset9() { + auto node = helper_->MakeNode("Shrink", {GetInput("X")[0].name}, + {GetOutput("Out")[0].name}); + AddAttribute(node, "lambd", lambda_); + AddAttribute(node, "bias", lambda_); +} + +void SizeMapper::Opset7() { + auto out_info = GetOutput("Out"); + auto output = + helper_->MakeNode("Size", {GetInput("Input")[0].name})->output(0); + output = helper_->Reshape(output, {-1}); + output = helper_->AutoCast(output, out_info[0].name, P2ODataType::INT64, + out_info[0].dtype); +} + +void RsqrtMapper::Opset7() { + auto output = helper_->MakeNode("Sqrt", {GetInput("X")[0].name})->output(0); + helper_->MakeNode("Reciprocal", {output}, {GetOutput("Out")[0].name}); +} + +void TanhShrinkMapper::Opset7() { + auto x_info = GetInput("X"); + auto tanh = helper_->MakeNode("Tanh", {x_info[0].name})->output(0); + helper_->MakeNode("Sub", {x_info[0].name, tanh}, {GetOutput("Out")[0].name}); +} + +void LogSigmoidMapper::Opset7() { + auto output = + helper_->MakeNode("Sigmoid", {GetInput("X")[0].name})->output(0); + helper_->MakeNode("Log", {output}, {GetOutput("Out")[0].name}); +} + +void LogSoftmaxMapper::Opset7() { + auto input_info = GetInput("X"); + auto axis = axis_; + if (axis < 0) { + axis += input_info[0].Rank(); + } + if (axis == input_info[0].Rank() - 1) { + auto node = helper_->MakeNode("LogSoftmax", {input_info[0].name}, + {GetOutput("Out")[0].name}); + AddAttribute(node, "axis", axis); + } else { + auto perm = Arange(0, input_info[0].Rank()); + perm[input_info[0].Rank() - 1] = axis; + perm[axis] = input_info[0].Rank() - 1; + auto output = helper_->Transpose(input_info[0].name, perm); + auto node = helper_->MakeNode("LogSoftmax", {output}); + AddAttribute(node, "axis", int64_t(-1)); + helper_->Transpose(node->output(0), GetOutput("Out")[0].name, perm); + } +} + +void ThresholdedReluMapper::Opset10() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + auto input = x_info[0].name; + if (x_info[0].dtype != P2ODataType::FP32) { + input = helper_->AutoCast(input, x_info[0].dtype, P2ODataType::FP32); + auto node = helper_->MakeNode("ThresholdedRelu", {input}); + AddAttribute(node, "alpha", threshold_); + helper_->AutoCast(node->output(0), out_info[0].name, P2ODataType::FP32, + out_info[0].dtype); + } else { + auto node = + helper_->MakeNode("ThresholdedRelu", {input}, {out_info[0].name}); + AddAttribute(node, "alpha", threshold_); + } +} + +void Log1PMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + auto one = helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), float(1.0)); + auto input = helper_->MakeNode("Add", {x_info[0].name, one})->output(0); + helper_->MakeNode("Log", {input}, {out_info[0].name}); +} + +void Log2Mapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + double ln2 = 0.693147180559945309; + auto ln2_tensor = helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), ln2); + auto output = helper_->MakeNode("Log", {x_info[0].name})->output(0); + helper_->MakeNode("Div", {output, ln2_tensor}, {out_info[0].name}); +} + +void Log10Mapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + double ln10 = 2.30258509299404568401; + auto ln10_tensor = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), ln10); + auto output = helper_->MakeNode("Log", {x_info[0].name})->output(0); + helper_->MakeNode("Div", {output, ln10_tensor}, {out_info[0].name}); +} + +void SiluMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + auto out = helper_->MakeNode("Sigmoid", {x_info[0].name})->output(0); + helper_->MakeNode("Mul", {x_info[0].name, out}, {out_info[0].name}); +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/activation.h b/paddle2onnx/mapper/activation.h new file mode 100644 index 0000000000..d1143c5fbb --- /dev/null +++ b/paddle2onnx/mapper/activation.h @@ -0,0 +1,372 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include +#include +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ActivationMapper : public Mapper { + public: + ActivationMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + op_mapper_["relu"] = "Relu"; + op_mapper_["tanh"] = "Tanh"; + op_mapper_["log"] = "Log"; + op_mapper_["sigmoid"] = "Sigmoid"; + op_mapper_["sqrt"] = "Sqrt"; + op_mapper_["softplus"] = "Softplus"; + op_mapper_["exp"] = "Exp"; + op_mapper_["floor"] = "Floor"; + op_mapper_["cos"] = "Cos"; + op_mapper_["sin"] = "Sin"; + op_mapper_["round"] = "Round"; + op_mapper_["abs"] = "Abs"; + op_mapper_["acos"] = "Acos"; + op_mapper_["asin"] = "Asin"; + op_mapper_["atan"] = "Atan"; + op_mapper_["sinh"] = "Sinh"; + op_mapper_["tan"] = "Tan"; + op_mapper_["ceil"] = "Ceil"; + op_mapper_["cosh"] = "Cosh"; + op_mapper_["erf"] = "Erf"; + op_mapper_["sign"] = "Sign"; + op_mapper_["softsign"] = "Softsign"; + op_mapper_["reciprocal"] = "Reciprocal"; + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::map op_mapper_; +}; + +class Relu6Mapper : public Mapper { + public: + Relu6Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("threshold", &threshold_); + } + + void Opset7(); + + private: + float threshold_; +}; + +class PReluMapper : public Mapper { + public: + PReluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); +}; + +class SeluMapper : public Mapper { + public: + SeluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("alpha", &alpha_); + GetAttr("scale", &scale_); + } + + void Opset7(); + + private: + float alpha_; + float scale_; +}; + +class HardSigmoidMapper : public Mapper { + public: + HardSigmoidMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("slope", &alpha_); + GetAttr("offset", &beta_); + } + + void Opset7(); + + private: + float alpha_; + float beta_; +}; + +class SwishMapper : public Mapper { + public: + SwishMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("beta", &beta_); + } + + void Opset7(); + + private: + float beta_; +}; + +class HardSwishMapper : public Mapper { + public: + HardSwishMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("scale", &scale_); + GetAttr("offset", &offset_); + GetAttr("threshold", &threshold_); + } + + void Opset7(); + void Opset14(); + + private: + float scale_; + float offset_; + float threshold_; +}; + +class LeakyReluMapper : public Mapper { + public: + LeakyReluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("alpha", &alpha_); + } + + void Opset7(); + + private: + float alpha_; +}; + +class GeluMapper : public Mapper { + public: + GeluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + + void Opset9(); +}; + +class SoftMaxMapper : public Mapper { + public: + SoftMaxMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + + void Opset7(); + void Opset13(); + + private: + int64_t axis_ = -1; +}; + +class BReluMapper : public Mapper { + public: + BReluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("t_min", &t_min_); + GetAttr("t_max", &t_max_); + } + + void Opset7(); + + private: + float t_min_; + float t_max_; +}; + +class EluMapper : public Mapper { + public: + EluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("alpha", &alpha_); + } + void Opset7(); + + private: + float alpha_; +}; + +class HardShrinkMapper : public Mapper { + public: + HardShrinkMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("threshold", &threshold_); + } + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + void Opset9(); + + private: + float threshold_; +}; + +class MishMapper : public Mapper { + public: + MishMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("threshold", &threshold_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + float threshold_; +}; + +class SquareMapper : public Mapper { + public: + SquareMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class SizeMapper : public Mapper { + public: + SizeMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class LogSigmoidMapper : public Mapper { + public: + LogSigmoidMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class RsqrtMapper : public Mapper { + public: + RsqrtMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class LogSoftmaxMapper : public Mapper { + public: + LogSoftmaxMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + void Opset7(); + + private: + int64_t axis_; +}; + +class SoftShrinkMapper : public Mapper { + public: + SoftShrinkMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("lambda", &lambda_); + } + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + void Opset9(); + + private: + float lambda_; +}; + +class ThresholdedReluMapper : public Mapper { + public: + ThresholdedReluMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("threshold", &threshold_); + } + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; + } + void Opset10(); + + private: + float threshold_; +}; + +class TanhShrinkMapper : public Mapper { + public: + TanhShrinkMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class Log1PMapper : public Mapper { + public: + Log1PMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class Log2Mapper : public Mapper { + public: + Log2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class Log10Mapper : public Mapper { + public: + Log10Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +class SiluMapper : public Mapper { + public: + SiluMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/data_helper.h b/paddle2onnx/mapper/data_helper.h new file mode 100644 index 0000000000..df488194b7 --- /dev/null +++ b/paddle2onnx/mapper/data_helper.h @@ -0,0 +1,30 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include "paddle2onnx/utils/utils.h" + +namespace paddle2onnx { + +inline std::vector Arange(int64_t start, int64_t end) { + Assert(end > start, "In arrange(), end must be greater than start."); + std::vector res; + res.resize(end - start); + for (auto i = start; i < end; ++i) { + res[i - start] = i; + } + return res; +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/multiclass_nms.cc b/paddle2onnx/mapper/detection/multiclass_nms.cc new file mode 100644 index 0000000000..3c262b6b88 --- /dev/null +++ b/paddle2onnx/mapper/detection/multiclass_nms.cc @@ -0,0 +1,360 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/detection/multiclass_nms.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(multiclass_nms3, NMSMapper); + +int32_t NMSMapper::GetMinOpset(bool verbose) { + auto boxes_info = GetInput("BBoxes"); + auto score_info = GetInput("Scores"); + if (score_info[0].Rank() != 3) { + Error() << "Lod Tensor input is not supported, which means the shape of " + "input(scores) is [M, C] now, but Paddle2ONNX only support [N, " + "C, M]." + << std::endl; + return -1; + } + if (boxes_info[0].Rank() != 3) { + Error() << "Only support input boxes as 3-D Tensor, but now it's rank is " + << boxes_info[0].Rank() << "." << std::endl; + return -1; + } + if (score_info[0].shape[1] <= 0) { + Error() << "The 2nd-dimension of score should be fixed(means the number of " + "classes), but now it's " + << score_info[0].shape[1] << "." << std::endl; + return -1; + } + + if (export_as_custom_op || this->deploy_backend == "tensorrt") { + return 7; + } + + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; +} + +void NMSMapper::KeepTopK(const std::string& selected_indices) { + auto boxes_info = GetInput("BBoxes"); + auto score_info = GetInput("Scores"); + auto out_info = GetOutput("Out"); + auto index_info = GetOutput("Index"); + auto num_rois_info = GetOutput("NmsRoisNum"); + auto value_0 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(0)); + auto value_1 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(1)); + auto value_2 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(2)); + auto value_neg_1 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(-1)); + + auto class_id = helper_->MakeNode("Gather", {selected_indices, value_1}); + AddAttribute(class_id, "axis", int64_t(1)); + + auto box_id = helper_->MakeNode("Gather", {selected_indices, value_2}); + AddAttribute(box_id, "axis", int64_t(1)); + + auto filtered_class_id = class_id->output(0); + auto filtered_box_id = box_id->output(0); + if (background_label_ >= 0) { + auto filter_indices = MapperHelper::Get()->GenName("nms.filter_background"); + auto squeezed_class_id = + helper_->Squeeze(class_id->output(0), std::vector(1, 1)); + if (background_label_ > 0) { + auto background = helper_->Constant( + {1}, ONNX_NAMESPACE::TensorProto::INT64, background_label_); + auto diff = helper_->MakeNode("Sub", {squeezed_class_id, background}); + helper_->MakeNode("NonZero", {diff->output(0)}, {filter_indices}); + } else if (background_label_ == 0) { + helper_->MakeNode("NonZero", {squeezed_class_id}, {filter_indices}); + } + auto new_class_id = + helper_->MakeNode("Gather", {filtered_class_id, filter_indices}); + AddAttribute(new_class_id, "axis", int64_t(0)); + auto new_box_id = + helper_->MakeNode("Gather", {box_id->output(0), filter_indices}); + AddAttribute(new_box_id, "axis", int64_t(0)); + filtered_class_id = new_class_id->output(0); + filtered_box_id = new_box_id->output(0); + } + + // Here is a little complicated + // Since we need to gather all the scores for the final boxes to filter the + // top-k boxes Now we have the follow inputs + // - scores: [N, C, M] N means batch size(but now it will be regarded as + // 1); C means number of classes; M means number of boxes for each classes + // - selected_indices: [num_selected_indices, 3], and 3 means [batch, + // class_id, box_id]. We will use this inputs to gather score + // So now we will first flatten `scores` to shape of [1 * C * M], then we + // gather scores by each elements in `selected_indices` The index need be + // calculated as + // `gather_index = class_id * M + box_id` + auto flatten_score = helper_->Flatten(score_info[0].name); + auto num_boxes_each_class = helper_->Constant( + {1}, ONNX_NAMESPACE::TensorProto::INT64, score_info[0].shape[2]); + auto gather_indices_0 = + helper_->MakeNode("Mul", {filtered_class_id, num_boxes_each_class}); + auto gather_indices_1 = + helper_->MakeNode("Add", {gather_indices_0->output(0), filtered_box_id}); + auto gather_indices = helper_->Flatten(gather_indices_1->output(0)); + auto gathered_scores = + helper_->MakeNode("Gather", {flatten_score, gather_indices}); + AddAttribute(gathered_scores, "axis", int64_t(0)); + + // Now we will perform keep_top_k process + // First we need to check if the number of remaining boxes is greater than + // keep_top_k Otherwise, we will downgrade the keep_top_k to number of + // remaining boxes + auto final_classes = filtered_class_id; + auto final_boxes_id = filtered_box_id; + auto final_scores = gathered_scores->output(0); + if (keep_top_k_ > 0) { + // get proper topk + auto shape_of_scores = helper_->MakeNode("Shape", {final_scores}); + auto num_of_boxes = + helper_->Slice(shape_of_scores->output(0), std::vector(1, 0), + std::vector(1, 0), std::vector(1, 1)); + auto top_k = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, keep_top_k_); + auto ensemble_value = helper_->MakeNode("Concat", {num_of_boxes, top_k}); + AddAttribute(ensemble_value, "axis", int64_t(0)); + auto new_top_k = + helper_->MakeNode("ReduceMin", {ensemble_value->output(0)}); + AddAttribute(new_top_k, "axes", std::vector(1, 0)); + AddAttribute(new_top_k, "keepdims", int64_t(1)); + + // the output is topk_scores, topk_score_indices + auto topk_node = + helper_->MakeNode("TopK", {final_scores, new_top_k->output(0)}, 2); + auto topk_scores = + helper_->MakeNode("Gather", {final_scores, topk_node->output(1)}); + AddAttribute(topk_scores, "axis", int64_t(0)); + filtered_class_id = + helper_->MakeNode("Squeeze", {filtered_class_id})->output(0); + auto topk_classes = + helper_->MakeNode("Gather", {filtered_class_id, topk_node->output(1)}); + AddAttribute(topk_classes, "axis", int64_t(0)); + filtered_box_id = + helper_->MakeNode("Squeeze", {filtered_box_id})->output(0); + auto topk_boxes_id = + helper_->MakeNode("Gather", {filtered_box_id, topk_node->output(1)}); + AddAttribute(topk_boxes_id, "axis", int64_t(0)); + + final_boxes_id = topk_boxes_id->output(0); + final_scores = topk_scores->output(0); + final_classes = topk_classes->output(0); + } + + auto flatten_boxes_id = helper_->Flatten({final_boxes_id}); + auto gathered_selected_boxes = + helper_->MakeNode("Gather", {boxes_info[0].name, flatten_boxes_id}); + AddAttribute(gathered_selected_boxes, "axis", int64_t(1)); + + auto float_classes = helper_->MakeNode("Cast", {final_classes}); + AddAttribute(float_classes, "to", ONNX_NAMESPACE::TensorProto::FLOAT); + + std::vector shape{1, -1, 1}; + auto unsqueezed_scores = helper_->Reshape({final_scores}, shape); + + auto unsqueezed_class = helper_->Reshape({float_classes->output(0)}, shape); + + auto box_result = + helper_->MakeNode("Concat", {unsqueezed_class, unsqueezed_scores, + gathered_selected_boxes->output(0)}); + AddAttribute(box_result, "axis", int64_t(2)); + helper_->Squeeze({box_result->output(0)}, {out_info[0].name}, + std::vector(1, 0)); + + // other outputs, we don't use sometimes + // there's lots of Cast in exporting + // TODO(jiangjiajun) A pass to eleminate all the useless Cast is needed + auto reshaped_index_result = + helper_->Reshape({flatten_boxes_id}, {int64_t(-1), int64_t(1)}); + auto index_result = + helper_->MakeNode("Cast", {reshaped_index_result}, {index_info[0].name}); + AddAttribute(index_result, "to", GetOnnxDtype(index_info[0].dtype)); + + auto out_box_shape = helper_->MakeNode("Shape", {out_info[0].name}); + auto num_rois_result = + helper_->Slice({out_box_shape->output(0)}, std::vector(1, 0), + std::vector(1, 0), std::vector(1, 1)); + auto int32_num_rois_result = + helper_->AutoCast(num_rois_result, num_rois_info[0].name, + P2ODataType::INT64, num_rois_info[0].dtype); +} + +void NMSMapper::Opset10() { + if (this->deploy_backend == "tensorrt") { + return ExportForTensorRT(); + } + auto boxes_info = GetInput("BBoxes"); + auto score_info = GetInput("Scores"); + if (boxes_info[0].shape[0] != 1) { + Warn() + << "[WARNING] Due to the operator multiclass_nms3, the exported ONNX " + "model will only supports inference with input batch_size == 1." + << std::endl; + } + int64_t num_classes = score_info[0].shape[1]; + auto score_threshold = helper_->Constant( + {1}, ONNX_NAMESPACE::TensorProto::FLOAT, score_threshold_); + auto nms_threshold = helper_->Constant( + {1}, ONNX_NAMESPACE::TensorProto::FLOAT, nms_threshold_); + auto nms_top_k = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, nms_top_k_); + + auto selected_box_index = MapperHelper::Get()->GenName("nms.selected_index"); + if (normalized_) { + helper_->MakeNode("NonMaxSuppression", + {boxes_info[0].name, score_info[0].name, nms_top_k, + nms_threshold, score_threshold}, + {selected_box_index}); + } else { + auto value_1 = + helper_->Constant({1}, GetOnnxDtype(boxes_info[0].dtype), float(1.0)); + auto split_boxes = helper_->Split(boxes_info[0].name, + std::vector(4, 1), int64_t(2)); + auto xmax = helper_->MakeNode("Add", {split_boxes[2], value_1}); + auto ymax = helper_->MakeNode("Add", {split_boxes[3], value_1}); + auto new_boxes = helper_->MakeNode( + "Concat", + {split_boxes[0], split_boxes[1], xmax->output(0), ymax->output(0)}); + AddAttribute(new_boxes, "axis", int64_t(2)); + helper_->MakeNode("NonMaxSuppression", + {new_boxes->output(0), score_info[0].name, nms_top_k, + nms_threshold, score_threshold}, + {selected_box_index}); + } + KeepTopK(selected_box_index); +} + +void NMSMapper::ExportAsCustomOp() { + auto boxes_info = GetInput("BBoxes"); + auto score_info = GetInput("Scores"); + auto out_info = GetOutput("Out"); + auto index_info = GetOutput("Index"); + auto num_rois_info = GetOutput("NmsRoisNum"); + auto node = helper_->MakeNode( + custom_op_name, {boxes_info[0].name, score_info[0].name}, + {out_info[0].name, index_info[0].name, num_rois_info[0].name}); + node->set_domain("Paddle"); + int64_t normalized = normalized_ ? 1 : 0; + AddAttribute(node, "normalized", normalized); + AddAttribute(node, "nms_threshold", nms_threshold_); + AddAttribute(node, "score_threshold", score_threshold_); + AddAttribute(node, "nms_eta", nms_eta_); + AddAttribute(node, "nms_top_k", nms_top_k_); + AddAttribute(node, "background_label", background_label_); + AddAttribute(node, "keep_top_k", keep_top_k_); + helper_->MakeValueInfo(boxes_info[0].name, boxes_info[0].dtype, + boxes_info[0].shape); + helper_->MakeValueInfo(score_info[0].name, score_info[0].dtype, + score_info[0].shape); + helper_->MakeValueInfo(out_info[0].name, out_info[0].dtype, + out_info[0].shape); + helper_->MakeValueInfo(index_info[0].name, index_info[0].dtype, + index_info[0].shape); + helper_->MakeValueInfo(num_rois_info[0].name, num_rois_info[0].dtype, + num_rois_info[0].shape); +} + +void NMSMapper::ExportForTensorRT() { + auto boxes_info = GetInput("BBoxes"); + auto score_info = GetInput("Scores"); + auto out_info = GetOutput("Out"); + auto index_info = GetOutput("Index"); + auto num_rois_info = GetOutput("NmsRoisNum"); + + auto scores = helper_->Transpose(score_info[0].name, {0, 2, 1}); + auto boxes = helper_->Unsqueeze(boxes_info[0].name, {2}); + int64_t num_classes = score_info[0].shape[1]; + auto repeats = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), + std::vector({1, 1, num_classes, 1})); + boxes = helper_->MakeNode("Tile", {boxes, repeats})->output(0); + + auto nms_node = + helper_->MakeNode("BatchedNMSDynamic_TRT", {boxes, scores}, 4); + AddAttribute(nms_node, "shareLocation", int64_t(0)); + AddAttribute(nms_node, "backgroundLabelId", background_label_); + AddAttribute(nms_node, "numClasses", num_classes); + int64_t nms_top_k = nms_top_k_; + int64_t keep_top_k = keep_top_k_; + if (nms_top_k > 4096) { + Warn() + << "Paramter nms_top_k:" << nms_top_k + << " is exceed limit in TensorRT BatchedNMS plugin, will force to 4096." + << std::endl; + nms_top_k = 4096; + } + if (keep_top_k > 4096) { + Warn() + << "Parameter keep_top_k:" << keep_top_k + << " is exceed limit in TensorRT BatchedNMS plugin, will force to 4096." + << std::endl; + keep_top_k = 4096; + } + AddAttribute(nms_node, "topK", nms_top_k); + AddAttribute(nms_node, "keepTopK", keep_top_k); + AddAttribute(nms_node, "scoreThreshold", score_threshold_); + AddAttribute(nms_node, "iouThreshold", nms_threshold_); + if (normalized_) { + AddAttribute(nms_node, "isNormalized", int64_t(1)); + } else { + AddAttribute(nms_node, "isNormalized", int64_t(0)); + } + AddAttribute(nms_node, "clipBoxes", int64_t(0)); + nms_node->set_domain("Paddle"); + + auto num_rois = helper_->Reshape(nms_node->output(0), {-1}); + helper_->AutoCast(num_rois, num_rois_info[0].name, P2ODataType::INT32, + num_rois_info[0].dtype); + + auto out_classes = helper_->Reshape(nms_node->output(3), {-1, 1}); + auto out_scores = helper_->Reshape(nms_node->output(2), {-1, 1}); + auto out_boxes = helper_->Reshape(nms_node->output(1), {-1, 4}); + out_classes = + helper_->AutoCast(out_classes, P2ODataType::INT32, P2ODataType::FP32); + helper_->Concat({out_classes, out_scores, out_boxes}, {out_info[0].name}, 1); + + // EfficientNMS_TRT cannot get the same result, so disable now + // auto nms_node = helper_->MakeNode("EfficientNMS_TRT", {boxes_info[0].name, + // score}, 4); + // AddAttribute(nms_node, "plugin_version", "1"); + // AddAttribute(nms_node, "background_class", background_label_); + // AddAttribute(nms_node, "max_output_boxes", nms_top_k_); + // AddAttribute(nms_node, "score_threshold", score_threshold_); + // AddAttribute(nms_node, "iou_threshold", nms_threshold_); + // AddAttribute(nms_node, "score_activation", int64_t(0)); + // AddAttribute(nms_node, "box_coding", int64_t(0)); + // nms_node->set_domain("Paddle"); + // + // auto num_rois = helper_->Reshape(nms_node->output(0), {-1}); + // helper_->AutoCast(num_rois, num_rois_info[0].name, P2ODataType::INT32, + // num_rois_info[0].dtype); + // + // auto out_classes = helper_->Reshape(nms_node->output(3), {-1, 1}); + // auto out_scores = helper_->Reshape(nms_node->output(2), {-1, 1}); + // auto out_boxes = helper_->Reshape(nms_node->output(1), {-1, 4}); + // out_classes = helper_->AutoCast(out_classes, P2ODataType::INT32, + // P2ODataType::FP32); + // helper_->Concat({out_classes, out_scores, out_boxes}, {out_info[0].name}, + // 1); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/multiclass_nms.h b/paddle2onnx/mapper/detection/multiclass_nms.h new file mode 100644 index 0000000000..84711a5ad2 --- /dev/null +++ b/paddle2onnx/mapper/detection/multiclass_nms.h @@ -0,0 +1,62 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class NMSMapper : public Mapper { + public: + NMSMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + // NMS is a post process operators for object detection + // We have found there're difference between `multi_class_nms3` in + // PaddlePaddle and `NonMaxSuppresion` in ONNX + MarkAsExperimentalOp(); + GetAttr("normalized", &normalized_); + GetAttr("nms_threshold", &nms_threshold_); + GetAttr("score_threshold", &score_threshold_); + GetAttr("nms_eta", &nms_eta_); + // The `nms_top_k` in Paddle and `max_output_boxes_per_class` in ONNX share + // the same meaning But the filter process may not be same Since NMS is just + // a post process for Detection, we are not going to export it with exactly + // same result. We will make a precision performance in COCO or Pascal VOC + // data later. + GetAttr("nms_top_k", &nms_top_k_); + GetAttr("background_label", &background_label_); + GetAttr("keep_top_k", &keep_top_k_); + } + + int32_t GetMinOpset(bool verbose = false); + void KeepTopK(const std::string& selected_indices); + void Opset10(); + void ExportForTensorRT(); + void ExportAsCustomOp(); + + private: + bool normalized_; + float nms_threshold_; + float score_threshold_; + float nms_eta_; + int64_t nms_top_k_; + int64_t background_label_; + int64_t keep_top_k_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/roi_align.cc b/paddle2onnx/mapper/detection/roi_align.cc new file mode 100755 index 0000000000..88629a2819 --- /dev/null +++ b/paddle2onnx/mapper/detection/roi_align.cc @@ -0,0 +1,43 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/detection/roi_align.h" + +namespace paddle2onnx { +REGISTER_MAPPER(roi_align, RoiAlignMapper) + +void RoiAlignMapper::Opset10() { + auto x_info = GetInput("X"); + auto rois_info = GetInput("ROIs"); + auto out_info = GetOutput("Out"); + + auto roi_shape = helper_->MakeNode("Shape", {rois_info[0].name})->output(0); + auto num_rois = + helper_->Slice(roi_shape, std::vector(1, 0), + std::vector(1, 0), std::vector(1, 1)); + auto value_zero = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(1, 0)); + auto batch_indices = + helper_->MakeNode("Expand", {value_zero, num_rois})->output(0); + auto roi_align_node = helper_->MakeNode( + "RoiAlign", {x_info[0].name, rois_info[0].name, batch_indices}, + {out_info[0].name}); + AddAttribute(roi_align_node, "output_height", pooled_height_); + AddAttribute(roi_align_node, "output_width", pooled_width_); + AddAttribute(roi_align_node, "sampling_ratio", sampling_ratio_); + AddAttribute(roi_align_node, "spatial_scale", spatial_scale_); + AddAttribute(roi_align_node, "mode", "avg"); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/roi_align.h b/paddle2onnx/mapper/detection/roi_align.h new file mode 100755 index 0000000000..68e2c27f92 --- /dev/null +++ b/paddle2onnx/mapper/detection/roi_align.h @@ -0,0 +1,47 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class RoiAlignMapper : public Mapper { + public: + RoiAlignMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + MarkAsExperimentalOp(); + GetAttr("pooled_height", &pooled_height_); + GetAttr("pooled_width", &pooled_width_); + GetAttr("spatial_scale", &spatial_scale_); + GetAttr("sampling_ratio", &sampling_ratio_); + GetAttr("aligned", &aligned_); + } + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; + } + void Opset10(); + + private: + int64_t pooled_height_; + int64_t pooled_width_; + float spatial_scale_; + int64_t sampling_ratio_; + bool aligned_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/yolo_box.cc b/paddle2onnx/mapper/detection/yolo_box.cc new file mode 100644 index 0000000000..e9f9289890 --- /dev/null +++ b/paddle2onnx/mapper/detection/yolo_box.cc @@ -0,0 +1,254 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/detection/yolo_box.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(yolo_box, YoloBoxMapper) + +int32_t YoloBoxMapper::GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void YoloBoxMapper::Opset11() { + auto x_info_ori = GetInput("X"); + + // handle the float64 input + auto x_info = x_info_ori; + if (x_info_ori[0].dtype != P2ODataType::FP32) { + x_info[0].name = helper_->AutoCast(x_info_ori[0].name, x_info_ori[0].dtype, + P2ODataType::FP32); + x_info[0].dtype = P2ODataType::FP32; + } + + auto im_size_info = GetInput("ImgSize"); + auto boxes_info = GetOutput("Boxes"); + auto scores_info = GetOutput("Scores"); + int64_t max_int = 999999; + + int64_t anchor_num = anchors_.size() / 2; + + auto x_shape = helper_->MakeNode("Shape", {x_info[0].name}); + std::vector nchw = helper_->Split( + x_shape->output(0), std::vector(4, 1), int64_t(0)); + std::string float_h = + helper_->AutoCast(nchw[2], P2ODataType::INT64, x_info[0].dtype); + std::string float_w = + helper_->AutoCast(nchw[3], P2ODataType::INT64, x_info[0].dtype); + + auto anchor_num_tensor = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, anchor_num); + + auto x_name = x_info[0].name; + if (iou_aware_) { + // Here we use the feature that while value is very large, it equals to the + // ends This is a standared definition in ONNX However not sure all the + // inference engines implements `Slice` this way Let's handle this issue + // later + x_name = helper_->Slice(x_name, {0, 1, 2, 3}, {0, 0, 0, 0}, + {max_int, anchor_num, max_int, max_int}); + } + + auto unknown_dim = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(-1)); + auto shape_0 = helper_->MakeNode( + "Concat", {nchw[0], anchor_num_tensor, unknown_dim, nchw[2], nchw[3]}); + AddAttribute(shape_0, "axis", int64_t(0)); + auto reshaped_x = helper_->MakeNode("Reshape", {x_name, shape_0->output(0)}); + auto transposed_x = helper_->MakeNode("Transpose", {reshaped_x->output(0)}); + { + std::vector perm({0, 1, 3, 4, 2}); + AddAttribute(transposed_x, "perm", perm); + } + + // grid_x = np.tile(np.arange(w).reshape((1, w)), (h, 1)) + // grid_y = np.tile(np.arange(h).reshape((h, 1)), (1, w)) + auto float_value_0 = + helper_->Constant({}, GetOnnxDtype(x_info[0].dtype), float(0.0)); + auto float_value_1 = + helper_->Constant({}, GetOnnxDtype(x_info[0].dtype), float(1.0)); + auto scalar_float_w = helper_->Squeeze(float_w, {}); + auto scalar_float_h = helper_->Squeeze(float_h, {}); + auto grid_x_0 = helper_->MakeNode( + "Range", {float_value_0, scalar_float_w, float_value_1}); // shape is [w] + auto grid_y_0 = helper_->MakeNode( + "Range", {float_value_0, scalar_float_h, float_value_1}); // shape is [h] + auto grid_x_1 = helper_->MakeNode( + "Tile", {grid_x_0->output(0), nchw[2]}); // shape is [w*h] + auto grid_y_1 = helper_->MakeNode( + "Tile", {grid_y_0->output(0), nchw[3]}); // shape is [h*w] + auto int_value_1 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, float(1.0)); + auto grid_shape_x = + helper_->MakeNode("Concat", {nchw[2], nchw[3], int_value_1}); + auto grid_shape_y = + helper_->MakeNode("Concat", {nchw[3], nchw[2], int_value_1}); + AddAttribute(grid_shape_x, "axis", int64_t(0)); + AddAttribute(grid_shape_y, "axis", int64_t(0)); + auto grid_x = helper_->MakeNode( + "Reshape", {grid_x_1->output(0), grid_shape_x->output(0)}); + auto grid_y_2 = helper_->MakeNode( + "Reshape", {grid_y_1->output(0), grid_shape_y->output(0)}); + auto grid_y = helper_->MakeNode("Transpose", {grid_y_2->output(0)}); + { + std::vector perm({1, 0, 2}); + AddAttribute(grid_y, "perm", perm); + } + + auto grid = + helper_->MakeNode("Concat", {grid_x->output(0), grid_y->output(0)}); + AddAttribute(grid, "axis", int64_t(2)); + + // pred_box[:, :, :, :, 0] = (grid_x + sigmoid(pred_box[:, :, :, :, 0]) * + // scale_x_y + bias_x_y) / w pred_box[:, :, :, :, 1] = (grid_y + + // sigmoid(pred_box[:, :, :, :, 1]) * scale_x_y + bias_x_y) / h + auto pred_box_xy = + helper_->Slice(transposed_x->output(0), {0, 1, 2, 3, 4}, {0, 0, 0, 0, 0}, + {max_int, max_int, max_int, max_int, 2}); + auto scale_x_y = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), scale_x_y_); + float bias_x_y_value = (1.0 - scale_x_y_) / 2.0; + auto bias_x_y = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), bias_x_y_value); + auto wh = helper_->MakeNode("Concat", {float_w, float_h}); + AddAttribute(wh, "axis", int64_t(0)); + pred_box_xy = helper_->MakeNode("Sigmoid", {pred_box_xy})->output(0); + pred_box_xy = helper_->MakeNode("Mul", {pred_box_xy, scale_x_y})->output(0); + pred_box_xy = helper_->MakeNode("Add", {pred_box_xy, bias_x_y})->output(0); + pred_box_xy = + helper_->MakeNode("Add", {pred_box_xy, grid->output(0)})->output(0); + pred_box_xy = + helper_->MakeNode("Div", {pred_box_xy, wh->output(0)})->output(0); + + // anchors = [(anchors[i], anchors[i + 1]) for i in range(0, len(anchors), 2)] + // anchors_s = np.array( + // [(an_w / input_w, an_h / input_h) for an_w, an_h in anchors]) + // anchor_w = anchors_s[:, 0:1].reshape((1, an_num, 1, 1)) + // anchor_h = anchors_s[:, 1:2].reshape((1, an_num, 1, 1)) + std::vector valid_anchors(anchor_num); + valid_anchors.assign(anchors_.begin(), anchors_.begin() + anchor_num * 2); + auto anchors = + helper_->Constant(GetOnnxDtype(x_info[0].dtype), valid_anchors); + anchors = helper_->Reshape(anchors, {anchor_num, 2}); + + auto downsample = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), downsample_ratio_); + auto ori_wh = + helper_->MakeNode("Mul", {wh->output(0), downsample})->output(0); + anchors = helper_->MakeNode("Div", {anchors, ori_wh})->output(0); + // Following divide operation requires undirectional broadcast + // It satisfies the definition of ONNX, but now sure all the inference engines + // support this rule e.g TensorRTã€OpenVINO anchor_w = anchors_s[:, + // 0:1].reshape((1, an_num, 1, 1)) anchor_h = anchors_s[:, 1:2].reshape((1, + // an_num, 1, 1)) pred_box[:, :, :, :, 2] = np.exp(pred_box[:, :, :, :, 2]) * + // anchor_w pred_box[:, :, :, :, 3] = np.exp(pred_box[:, :, :, :, 3]) * + // anchor_h + anchors = helper_->Reshape(anchors, {1, anchor_num, 1, 1, 2}); + auto pred_box_wh = + helper_->Slice(transposed_x->output(0), {0, 1, 2, 3, 4}, {0, 0, 0, 0, 2}, + {max_int, max_int, max_int, max_int, 4}); + pred_box_wh = helper_->MakeNode("Exp", {pred_box_wh})->output(0); + pred_box_wh = helper_->MakeNode("Mul", {pred_box_wh, anchors})->output(0); + + // if iou_aware: + // pred_conf = sigmoid(x[:, :, :, :, 4:5])**( + // 1 - iou_aware_factor) * sigmoid(ioup)**iou_aware_factor + // else: + // pred_conf = sigmoid(x[:, :, :, :, 4:5]) + auto confidence = + helper_->Slice(transposed_x->output(0), {0, 1, 2, 3, 4}, {0, 0, 0, 0, 4}, + {max_int, max_int, max_int, max_int, 5}); + std::string pred_conf = helper_->MakeNode("Sigmoid", {confidence})->output(0); + if (iou_aware_) { + auto ioup = helper_->Slice(x_info[0].name, {0, 1, 2, 3}, {0, 0, 0, 0}, + {max_int, anchor_num, max_int, max_int}); + ioup = helper_->Unsqueeze(ioup, {4}); + ioup = helper_->MakeNode("Sigmoid", {ioup})->output(0); + float power_value_0 = 1 - iou_aware_factor_; + auto power_0 = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), power_value_0); + auto power_1 = helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), + iou_aware_factor_); + ioup = helper_->MakeNode("Pow", {ioup, power_1})->output(0); + pred_conf = helper_->MakeNode("Pow", {pred_conf, power_0})->output(0); + pred_conf = helper_->MakeNode("Mul", {pred_conf, ioup})->output(0); + } + + // pred_conf[pred_conf < conf_thresh] = 0. + // pred_score = sigmoid(x[:, :, :, :, 5:]) * pred_conf + // pred_box = pred_box * (pred_conf > 0.).astype('float32') + auto value_2 = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), float(2.0)); + auto center = helper_->MakeNode("Div", {pred_box_wh, value_2})->output(0); + auto min_xy = helper_->MakeNode("Sub", {pred_box_xy, center})->output(0); + auto max_xy = helper_->MakeNode("Add", {pred_box_xy, center})->output(0); + + auto conf_thresh = + helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), conf_thresh_); + auto filter = + helper_->MakeNode("Greater", {pred_conf, conf_thresh})->output(0); + filter = helper_->AutoCast(filter, P2ODataType::BOOL, x_info[0].dtype); + pred_conf = helper_->MakeNode("Mul", {pred_conf, filter})->output(0); + auto pred_score = + helper_->Slice(transposed_x->output(0), {0, 1, 2, 3, 4}, {0, 0, 0, 0, 5}, + {max_int, max_int, max_int, max_int, max_int}); + pred_score = helper_->MakeNode("Sigmoid", {pred_score})->output(0); + pred_score = helper_->MakeNode("Mul", {pred_score, pred_conf})->output(0); + auto pred_box = helper_->Concat({min_xy, max_xy}, 4); + pred_box = helper_->MakeNode("Mul", {pred_box, filter})->output(0); + + auto value_neg_1 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(-1)); + auto value_4 = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(4)); + auto new_shape = helper_->Concat({nchw[0], value_neg_1, value_4}, 0); + pred_box = helper_->MakeNode("Reshape", {pred_box, new_shape})->output(0); + + auto float_img_size = helper_->AutoCast( + im_size_info[0].name, im_size_info[0].dtype, x_info[0].dtype); + float_img_size = helper_->Unsqueeze(float_img_size, {1}); + auto split_im_hw = helper_->Split(float_img_size, {1, 1}, 2); + auto im_whwh = helper_->Concat( + {split_im_hw[1], split_im_hw[0], split_im_hw[1], split_im_hw[0]}, 2); + + if (!clip_bbox_) { + auto out = helper_->MakeNode("Mul", {pred_box, im_whwh})->output(0); + helper_->AutoCast(out, boxes_info[0].name, x_info[0].dtype, + boxes_info[0].dtype); + } else { + pred_box = helper_->MakeNode("Mul", {pred_box, im_whwh})->output(0); + auto im_wh = helper_->Concat({split_im_hw[1], split_im_hw[0]}, 2); + im_wh = helper_->MakeNode("Sub", {im_wh, float_value_1})->output(0); + auto pred_box_xymin_xymax = helper_->Split(pred_box, {2, 2}, 2); + pred_box_xymin_xymax[0] = + helper_->MakeNode("Relu", {pred_box_xymin_xymax[0]})->output(0); + pred_box_xymin_xymax[1] = + helper_->MakeNode("Min", {pred_box_xymin_xymax[1], im_wh})->output(0); + auto out = helper_->Concat(pred_box_xymin_xymax, 2); + helper_->AutoCast(out, boxes_info[0].name, x_info[0].dtype, + boxes_info[0].dtype); + } + + auto class_num = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, class_num_); + auto score_out_shape = + helper_->Concat({nchw[0], value_neg_1, class_num}, int64_t(0)); + auto score_out = + helper_->MakeNode("Reshape", {pred_score, score_out_shape})->output(0); + helper_->AutoCast(score_out, scores_info[0].name, x_info[0].dtype, + scores_info[0].dtype); +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/detection/yolo_box.h b/paddle2onnx/mapper/detection/yolo_box.h new file mode 100644 index 0000000000..1c4055f5e2 --- /dev/null +++ b/paddle2onnx/mapper/detection/yolo_box.h @@ -0,0 +1,53 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class YoloBoxMapper : public Mapper { + public: + YoloBoxMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + MarkAsExperimentalOp(); + GetAttr("clip_bbox", &clip_bbox_); + GetAttr("iou_aware", &iou_aware_); + GetAttr("conf_thresh", &conf_thresh_); + GetAttr("iou_aware_factor", &iou_aware_factor_); + GetAttr("class_num", &class_num_); + GetAttr("downsample_ratio", &downsample_ratio_); + GetAttr("scale_x_y", &scale_x_y_); + GetAttr("anchors", &anchors_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + bool clip_bbox_; + bool iou_aware_; + float conf_thresh_; + float iou_aware_factor_; + float scale_x_y_; + int64_t class_num_; + int64_t downsample_ratio_; + std::vector anchors_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/elementwise.cc b/paddle2onnx/mapper/elementwise.cc new file mode 100644 index 0000000000..6fc42dc601 --- /dev/null +++ b/paddle2onnx/mapper/elementwise.cc @@ -0,0 +1,188 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/elementwise.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(elementwise_add, ElementwiseMapper) +REGISTER_MAPPER(elementwise_sub, ElementwiseMapper) +REGISTER_MAPPER(elementwise_div, ElementwiseMapper) +REGISTER_MAPPER(elementwise_mul, ElementwiseMapper) +REGISTER_MAPPER(elementwise_min, ElementwiseMapper) +REGISTER_MAPPER(elementwise_max, ElementwiseMapper) +REGISTER_MAPPER(elementwise_pow, ElementwiseMapper) +REGISTER_MAPPER(elementwise_mod, ElementWiseModMapper) +REGISTER_MAPPER(elementwise_floordiv, ElementWiseFloordivMapper) + +int32_t ElementwiseMapper::GetMinOpset(bool verbose) { + if (OpType() == "elementwise_min" || OpType() == "elementwise_max") { + Logger(verbose, 8) << RequireOpset(8) << std::endl; + return 8; + } + return 7; +} + +void ElementwiseMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + auto iter = op_mapper_.find(OpType()); + Assert(op_mapper_.end() != iter, + "Cannot find " + OpType() + " in elementwise op_mapper."); + + auto x_name = input_x_info[0].name; + auto y_name = input_y_info[0].name; + if (input_x_info[0].dtype == P2ODataType::BOOL && + input_y_info[0].dtype == P2ODataType::BOOL) { + x_name = + helper_->AutoCast(x_name, input_x_info[0].dtype, P2ODataType::INT32); + y_name = + helper_->AutoCast(y_name, input_y_info[0].dtype, P2ODataType::INT32); + } + + std::string output_name; + if (axis_ == -1 || axis_ == (input_x_info[0].Rank() - 1) || + input_x_info[0].Rank() == input_y_info[0].Rank()) { + output_name = helper_->MakeNode(iter->second, {x_name, y_name})->output(0); + } else { + std::vector broadcast_shape(input_x_info[0].Rank(), 1); + for (int i = axis_; i < axis_ + input_y_info[0].Rank(); ++i) { + broadcast_shape[i] = input_y_info[0].shape[i - axis_]; + } + std::string broadcast_shape_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), broadcast_shape); + auto y_node = helper_->MakeNode("Reshape", {y_name, broadcast_shape_node}); + output_name = + helper_->MakeNode(iter->second, {x_name, y_node->output(0)})->output(0); + } + + if (input_x_info[0].dtype == P2ODataType::BOOL && + input_y_info[0].dtype == P2ODataType::BOOL) { + helper_->AutoCast(output_name, output_info[0].name, P2ODataType::INT32, + P2ODataType::BOOL); + } else { + helper_->MakeNode("Identity", {output_name}, {output_info[0].name}); + } +} + +void ElementWiseModMapper::Opset10() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + int64_t fmod = 0; + if (input_y_info[0].dtype == P2ODataType::INT32 || + input_y_info[0].dtype == P2ODataType::INT64) { + if (this->deploy_backend == "tensorrt") { + auto x = helper_->AutoCast(input_x_info[0].name, input_x_info[0].dtype, + input_y_info[0].dtype); + auto times = + helper_->MakeNode("Div", {input_x_info[0].name, input_y_info[0].name}) + ->output(0); + auto result = + helper_->MakeNode("Mul", {input_y_info[0].name, times})->output(0); + helper_->MakeNode("Sub", {input_x_info[0].name, result}, + {output_info[0].name}); + return; + } + auto mod_node = + helper_->MakeNode("Mod", {input_x_info[0].name, input_y_info[0].name}, + {output_info[0].name}); + AddAttribute(mod_node, "fmod", fmod); + return; + } + + fmod = 1; + + auto abs_x_node = helper_->MakeNode("Abs", {input_x_info[0].name}); + auto abs_y_node = helper_->MakeNode("Abs", {input_y_info[0].name}); + + auto dtype = input_y_info[0].dtype; + std::vector val_0 = {0.0}; + + std::string zero_node = helper_->Constant(GetOnnxDtype(dtype), val_0); + + auto mod_node = + helper_->MakeNode("Mod", {abs_x_node->output(0), abs_y_node->output(0)}); + AddAttribute(mod_node, "fmod", fmod); + + auto neg_node = helper_->MakeNode("Neg", {mod_node->output(0)}); + + auto less_node = helper_->MakeNode("Less", {input_x_info[0].name, zero_node}); + + std::string condition_node = + helper_->AutoCast(less_node->output(0), dtype, P2ODataType::BOOL); + + auto mod_res_node = helper_->MakeNode( + "Where", {condition_node, neg_node->output(0), mod_node->output(0)}); + + auto mod_y_add_node = + helper_->MakeNode("Add", {mod_res_node->output(0), input_y_info[0].name}); + + auto mod_y_mul_node = + helper_->MakeNode("Mul", {mod_res_node->output(0), input_y_info[0].name}); + + auto mod_y_mul_less_node = + helper_->MakeNode("Less", {mod_y_mul_node->output(0), zero_node}); + + std::string mod_y_mul_condition_node = helper_->AutoCast( + mod_y_mul_less_node->output(0), dtype, P2ODataType::BOOL); + + helper_->MakeNode("Where", + {mod_y_mul_condition_node, mod_y_add_node->output(0), + mod_res_node->output(0)}, + {output_info[0].name}); +} + +void ElementWiseFloordivMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + + bool is_int = false; + if (input_x_info[0].dtype <= 3 || input_x_info[0].dtype == 20 || + input_y_info[0].dtype <= 3 || input_y_info[0].dtype == 20) { + is_int = true; + } + if (axis_ == -1 || axis_ == input_x_info[0].Rank() - 1 || + input_x_info[0].Rank() == input_y_info[0].Rank()) { + if (is_int) { + helper_->MakeNode("Div", {input_x_info[0].name, input_y_info[0].name}, + {output_info[0].name}); + } else { + auto div_node = helper_->MakeNode( + "Div", {input_x_info[0].name, input_y_info[0].name}); + helper_->MakeNode("Floor", {div_node->output(0)}, {output_info[0].name}); + } + } else { + std::vector broadcast_shape; + broadcast_shape.resize(axis_ + input_x_info[0].Rank(), 1); + for (auto i = 0; i < input_y_info[0].Rank(); ++i) { + broadcast_shape[axis_ + i] = input_y_info[0].shape[i]; + } + std::string broadcast_shape_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), broadcast_shape); + auto y_node = helper_->MakeNode( + "Reshape", {input_y_info[0].name, broadcast_shape_node}); + if (is_int) { + helper_->MakeNode("Div", {input_x_info[0].name, y_node->output(0)}, + {output_info[0].name}); + } else { + auto div_node = + helper_->MakeNode("Div", {input_x_info[0].name, y_node->output(0)}); + helper_->MakeNode("Floor", {div_node->output(0)}, {output_info[0].name}); + } + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/elementwise.h b/paddle2onnx/mapper/elementwise.h new file mode 100644 index 0000000000..4a6ec28f91 --- /dev/null +++ b/paddle2onnx/mapper/elementwise.h @@ -0,0 +1,75 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ElementwiseMapper : public Mapper { + public: + ElementwiseMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + + op_mapper_["elementwise_add"] = "Add"; + op_mapper_["elementwise_sub"] = "Sub"; + op_mapper_["elementwise_div"] = "Div"; + op_mapper_["elementwise_mul"] = "Mul"; + op_mapper_["elementwise_min"] = "Min"; + op_mapper_["elementwise_max"] = "Max"; + op_mapper_["elementwise_pow"] = "Pow"; + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::map op_mapper_; + int64_t axis_; +}; + +class ElementWiseModMapper : public Mapper { + public: + ElementWiseModMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; + } + + void Opset10(); +}; + +class ElementWiseFloordivMapper : public Mapper { + public: + ElementWiseFloordivMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/exporter.cc b/paddle2onnx/mapper/exporter.cc new file mode 100644 index 0000000000..e2d158e768 --- /dev/null +++ b/paddle2onnx/mapper/exporter.cc @@ -0,0 +1,548 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/exporter.h" + +#include +#include + +#include + +#include "onnxoptimizer/optimize.h" +#include "paddle2onnx/optimizer/convert_fp32_to_fp16.h" +#include "paddle2onnx/optimizer/eliminate_non_transpose.h" +#include "paddle2onnx/optimizer/fuse_constant_cast.h" +#include "paddle2onnx/optimizer/fuse_constant_reshape.h" +#include "paddle2onnx/optimizer/fuse_constant_unsqueeze.h" +#include "paddle2onnx/optimizer/fuse_paddle_conv_bias.h" +#include "paddle2onnx/optimizer/fuse_unsqueeze_conv2d_squeeze.h" + +namespace paddle2onnx { +MapperHelper* MapperHelper::helper = nullptr; + +void ModelExporter::ExportParameters( + const std::map& params, bool use_initializer) { + for (auto& item : params) { + // TODO(jiangjiajun) I'm not handling use_initializer now, but some day I + // will + auto node = MakeConstant(item.first, item.second); + parameters.push_back(std::move(node)); + } +} + +void ModelExporter::UpdateParameters( + const std::map& params) { + for (auto& item : params) { + auto node = MakeConstant(item.first, item.second); + bool updated = false; + for (int i = 0; i < parameters.size(); ++i) { + auto old_node = parameters[i]; + if (old_node->output(0) == item.first) { + parameters.erase(parameters.begin() + i); + parameters.push_back(std::move(node)); + updated = true; + break; + } + } + if (!updated) { + parameters.push_back(std::move(node)); + } + } +} + +void ModelExporter::ExportInputOutputs( + const std::vector& input_infos, + const std::vector& output_infos) { + for (auto& item : input_infos) { + auto value_info = MakeValueInfo(item); + inputs.push_back(std::move(value_info)); + } + for (auto& item : output_infos) { + auto value_info = MakeValueInfo(item); + outputs.push_back(std::move(value_info)); + } +} + +void ModelExporter::ExportOp(const PaddleParser& parser, OnnxHelper* helper, + int32_t opset_version, int64_t block_id, + int64_t op_id, bool verbose) { + _current_exported_num += 1; + auto op = parser.GetOpDesc(block_id, op_id); +#ifdef PADDLE2ONNX_DEBUG + P2OLogger(true) << "---Converting operator: " << op.type() << " ---" + << std::endl; +#endif + if (op.type() == "while") { + return ExportLoop(parser, helper, opset_version, block_id, op_id, verbose); + } + + auto mapper = MapperHelper::Get()->CreateMapper(op.type(), parser, helper, + block_id, op_id); + mapper->deploy_backend = _deploy_backend; +#ifdef PADDLE2ONNX_DEBUG + P2OLogger(true) << "Mapper Name: " << mapper->Name() << std::endl; +#endif + // Some operators will export as custom operator + auto iter = custom_ops.find(op.type()); + if (iter != custom_ops.end()) { + mapper->export_as_custom_op = true; + mapper->custom_op_name = iter->second; + } + mapper->Run(); + delete mapper; + +#ifdef PADDLE2ONNX_DEBUG + P2OLogger(true) << "---Converting operator: " << op.type() << " done---" + << std::endl; +#endif +} + +void ModelExporter::ProcessGraphDumplicateNames( + std::vector>* parameters, + std::vector>* inputs, + std::vector>* outputs, + std::vector>* nodes, + std::map* quantize_info) { + // process dumplicate tensor names + std::map renamer; + std::set tensor_names; + for (auto& item : *parameters) { + for (size_t i = 0; i < item->output_size(); ++i) { + if (tensor_names.find(item->output(i)) != tensor_names.end()) { + Assert(false, "There's dumplicate names in exported parameters."); + } + tensor_names.insert(item->output(i)); + } + } + for (auto& item : *inputs) { + if (tensor_names.find(item->name()) != tensor_names.end()) { + Assert(false, "There's dumplicate names:" + item->name() + + " in exported parameters and inputs."); + } + tensor_names.insert(item->name()); + } + for (auto& item : *nodes) { + // update node inputs + for (size_t i = 0; i < item->input_size(); ++i) { + if (renamer.find(item->input(i)) != renamer.end()) { + auto updated_name = renamer[item->input(i)]; + while (renamer.find(updated_name) != renamer.end()) { + updated_name = renamer[updated_name]; + } + *(item->mutable_input(i)) = updated_name; + } + } + // if there's dumplicate name + // will generate new name and replace it + for (size_t i = 0; i < item->output_size(); ++i) { + if (tensor_names.find(item->output(i)) != tensor_names.end()) { + std::string renamed_tensor_name = item->output(i); + while (renamer.find(renamed_tensor_name) != renamer.end()) { + renamed_tensor_name = renamer[renamed_tensor_name]; + } + auto new_tensor_name = + MapperHelper::Get()->GenName(renamed_tensor_name); + P2OLogger() << "Find dumplicate output name '" << renamed_tensor_name + << "', it will rename to '" << new_tensor_name << "'." + << std::endl; + if (quantize_info && + quantize_info->find(renamed_tensor_name) != quantize_info->end()) { + (*quantize_info)[new_tensor_name] = + (*quantize_info)[renamed_tensor_name]; + } + *(item->mutable_output(i)) = new_tensor_name; + renamer[renamed_tensor_name] = new_tensor_name; + } + tensor_names.insert(item->output(i)); + } + } + + for (auto& item : *outputs) { + if (renamer.find(item->name()) != renamer.end()) { + auto updated_name = renamer[item->name()]; + while (renamer.find(updated_name) != renamer.end()) { + updated_name = renamer[updated_name]; + } + item->set_name(updated_name); + } + } +} + +void ModelExporter::SaveExternalData(::paddle2onnx::GraphProto* graph, + const std::string& external_file_path, + bool* save_external) { + P2OLogger() << "The exported ONNX model is bigger than 2G, external data " + "will save to file: " + << external_file_path << std::endl; + std::string file_name = GetFilenameFromPath(external_file_path); + if (save_external) { + *save_external = true; + } + std::fstream f(external_file_path, std::ios::out); + Assert(f.is_open(), "Failed to open: " + external_file_path + + " file to save external data"); + for (auto index = 0; index < graph->node_size(); index++) { + auto node = graph->mutable_node(index); + if (node->op_type() != "Constant") { + continue; + } + for (auto i = 0; i < node->attribute_size(); i++) { + auto attr = node->mutable_attribute(i); + if (attr->name() != "value") { + continue; + } + auto tensor = attr->mutable_t(); + + if (tensor->raw_data().size() <= 128) { + continue; + } + + tensor->set_data_location(TensorProto::EXTERNAL); + auto external_data = tensor->add_external_data(); + external_data->set_key("location"); + external_data->set_value(file_name); + + external_data = tensor->add_external_data(); + external_data->set_key("offset"); + f.seekg(0, std::ios::end); + int64_t offset = f.tellg(); + external_data->set_value(std::to_string(offset)); + auto raw_data = tensor->raw_data(); + f << raw_data; + external_data = tensor->add_external_data(); + external_data->set_key("length"); + int64_t raw_datas_size = raw_data.size(); + external_data->set_value(std::to_string(raw_datas_size)); + tensor->clear_raw_data(); + } + } + f.close(); +} +void ModelExporter::ONNXChecker(const ONNX_NAMESPACE::ModelProto& model, + const bool& verbose) { + // TODO(jiangjiajun) + // If we need to integrate with framework + // this check will return a information + // to let framework know the conversion is + // pass or fail + try { + // ONNX_NAMESPACE::checker::check_model(*(model.get())); + ONNX_NAMESPACE::checker::check_model(model); + } catch (const std::exception& e) { + P2OLogger(verbose) << "The exported ONNX model is invalid." << std::endl; + P2OLogger(verbose) << "Model checker error log: " << e.what() << std::endl; + } + P2OLogger(verbose) << "PaddlePaddle model is exported as ONNX format now." + << std::endl; +} + +std::string ModelExporter::Run( + const PaddleParser& parser, int opset_version, bool auto_upgrade_opset, + bool verbose, bool enable_onnx_checker, bool enable_experimental_op, + bool enable_optimize, const std::string& deploy_backend, + std::string* calibration_cache, const std::string& external_file, + bool* save_external, bool export_fp16_model) { + _deploy_backend = deploy_backend; + _helper.SetOpsetVersion(opset_version); + _total_ops_num = 0; + _current_exported_num = 0; + for (auto i = 0; i < parser.NumOfBlocks(); ++i) { + _total_ops_num += parser.NumOfOps(i); + } + _helper.nodes.reserve(_total_ops_num * 3); + Assert(opset_version <= MAX_ONNX_OPSET_VERSION && opset_version >= 7, + "Paddle2ONNX now only support opset version in range of [7, " + + std::to_string(MAX_ONNX_OPSET_VERSION) + "]."); + _helper.Clear(); + inputs.clear(); + outputs.clear(); + parameters.clear(); + + // clear name_counter + // this use to generate unique name + // for intermdiate + // while converting all the op + MapperHelper::Get()->ClearNameCounter(); + + std::set unsupported_ops; + if (!CheckIfOpSupported(parser, &unsupported_ops, enable_experimental_op)) { + auto logger = P2OLogger(); + logger << "Oops, there are some operators not supported yet, including "; + for (auto& item : unsupported_ops) { + logger << item << ","; + } + logger << std::endl; + Assert(1 == 0, + "Due to the unsupported operators, the conversion is aborted."); + } + + int32_t min_opset = GetMinOpset(parser, verbose); + if (min_opset < 0) { + Assert(false, + "Model exporting failed, you can report this problem to " + "https://github.com/PaddlePaddle/Paddle2ONNX.git."); + } + if (!auto_upgrade_opset) { + if (min_opset > opset_version) { + P2OLogger() << "This PaddlePaddle model is not able to export to ONNX " + "with opset_version=" + << opset_version << ", please set the opset_version to " + << min_opset << " or higher for successfully conversion." + << std::endl; + Assert(false, + "Due to opset version, the model exporting is aborted, please set " + "a higher opset_version or set auto_upgrade_opset=true."); + } + } else { + if (min_opset > opset_version) { + P2OLogger() << "Opset version will change to " << min_opset << " from " + << opset_version << std::endl; + opset_version = min_opset; + } + } + _helper.SetOpsetVersion(opset_version); + P2OLogger(verbose) << "Use opset_version = " << _helper.GetOpsetVersion() + << " for ONNX export." << std::endl; + ExportParameters(parser.params); + ExportInputOutputs(parser.inputs, parser.outputs); + + // Only convert blocks 0 now + // because control flow is not supported yet + for (auto i = 0; i < parser.NumOfOps(0); ++i) { + auto op = parser.GetOpDesc(0, i); + if (op.type() == "feed") { + continue; + } else if (op.type() == "fetch") { + continue; + } + ExportOp(parser, &_helper, opset_version, 0, i, verbose); + } + + // construct a onnx model proto + auto model = std::make_shared(); + // TODO(jiangjiajun) ir version is related to onnx version + model->set_ir_version(ONNX_NAMESPACE::IR_VERSION); + auto graph = model->mutable_graph(); + graph->set_name("Model from PaddlePaddle."); + auto opset_id = model->add_opset_import(); + opset_id->set_domain(""); + opset_id->set_version(opset_version); + if (custom_ops.size()) { + auto opset_paddle_id = model->add_opset_import(); + opset_paddle_id->set_domain("Paddle"); + opset_paddle_id->set_version(1); + } + + ProcessGraphDumplicateNames(¶meters, &inputs, &outputs, &_helper.nodes, + &_helper.quantize_info); + if (parser.is_quantized_model) { + quantize_model_processer.ProcessQuantizeModel( + ¶meters, &inputs, &outputs, &_helper.nodes, &_helper, + deploy_backend, parser, calibration_cache); + // Update int8 weights in quantized OP to float32 + UpdateParameters(_helper.updated_params); + } + + for (auto& item : parameters) { + *(graph->add_node()) = *(item.get()); + } + for (auto& item : inputs) { + *(graph->add_input()) = *(item.get()); + } + for (auto& item : _helper.nodes) { + *(graph->add_node()) = (*item.get()); + } + for (auto& item : outputs) { + *(graph->add_output()) = (*item.get()); + } + for (auto& item : _helper.value_infos) { + *(graph->add_value_info()) = (*item.get()); + } + + ONNX_NAMESPACE::ModelProto onnx_model; + std::string out; + if (enable_optimize) { + onnx_model = Optimize(*(model.get())); + } else { + onnx_model = *model.get(); + } + + // convert fp32 model to fp16 + if (export_fp16_model) { + P2OLogger(verbose) << "Convert FP32 ONNX model to FP16." << std::endl; + ConvertFp32ToFp16 convert; + convert.SetCustomOps(custom_ops); + convert.Convert(&onnx_model); + } + + // save external data file for big model + std::string external_data_file; + if (onnx_model.ByteSizeLong() > INT_MAX) { + if (external_file.empty()) { + external_data_file = "external_data"; + } else { + external_data_file = external_file; + } + } + if (external_data_file.size()) { + SaveExternalData(onnx_model.mutable_graph(), external_data_file, + save_external); + } + // check model + if (enable_onnx_checker) { + ONNXChecker(onnx_model, verbose); + } + + if (!onnx_model.SerializeToString(&out)) { + P2OLogger(verbose) + << "Error happenedd while optimizing the exported ONNX model." + << std::endl; + return ""; + } + return out; +} + +bool ModelExporter::CheckIfOpSupported(const PaddleParser& parser, + std::set* unsupported_ops, + bool enable_experimental_op) { + unsupported_ops->clear(); + for (auto i = 0; i < parser.NumOfBlocks(); ++i) { + for (auto j = 0; j < parser.NumOfOps(i); ++j) { + auto op = parser.GetOpDesc(i, j); + if (op.type() == "feed" || op.type() == "fetch") { + continue; + } + if (op.type() == "while" && enable_experimental_op) { + if (!IsLoopSupported(parser, i, j)) { + unsupported_ops->insert("while"); + } + continue; + } + if (!MapperHelper::Get()->IsRegistered(op.type())) { + unsupported_ops->insert(op.type()); + } else if (!enable_experimental_op) { + auto mapper = MapperHelper::Get()->CreateMapper(op.type(), parser, + &_helper, i, j); + if (mapper->IsExperimentalOp()) { + unsupported_ops->insert(op.type()); + } + delete mapper; + } + } + } + return (unsupported_ops->size() == 0); +} + +int32_t ModelExporter::GetMinOpset(const PaddleParser& parser, bool verbose) { + int32_t opset_version = _helper.GetOpsetVersion(); + int32_t max_opset = 7; + bool exportable = true; + // Record the number of ops that need to be converted + int converted_op_num = 0; + std::set verbose_log; + for (auto i = 0; i < parser.NumOfBlocks(); ++i) { + for (auto j = 0; j < parser.NumOfOps(i); ++j) { + auto op = parser.GetOpDesc(i, j); + if (custom_ops.find(op.type()) != custom_ops.end()) { + continue; + } + if (op.type() == "feed" || op.type() == "fetch") { + continue; + } + converted_op_num += 1; + int current_min_opset = 7; + if (op.type() == "while") { + P2OLogger() << "Detected there's control flow 'while' op in your " + "model, this requires the minimal opset version of 13." + << std::endl; + current_min_opset = 13; + } else { + auto mapper = MapperHelper::Get()->CreateMapper(op.type(), parser, + &_helper, i, j); + auto iter = custom_ops.find(op.type()); + if (iter != custom_ops.end()) { + mapper->export_as_custom_op = true; + } + current_min_opset = mapper->GetMinOpset(verbose); + delete mapper; + } + if (current_min_opset < 0) { + exportable = false; + P2OLogger(verbose) << "Due to the operator: " << op.type() + << ", this model cannot be exported to ONNX." + << std::endl; + } else if (current_min_opset > max_opset) { + max_opset = current_min_opset; + if (verbose && current_min_opset > opset_version) { + verbose_log.insert("Due to the operator: " + op.type() + + ", requires opset_version >= " + + std::to_string(current_min_opset) + "."); + } + } + } + } + if (verbose) { + for (auto iter = verbose_log.begin(); iter != verbose_log.end(); ++iter) { + P2OLogger() << *iter << std::endl; + } + } + + // Here we put some checks to make sure + // paddle2onnx could compatible with + // other version of onnx + int32_t max_support_opset = MAX_ONNX_OPSET_VERSION; + if (exportable && (max_opset > MAX_ONNX_OPSET_VERSION)) { + exportable = false; + P2OLogger() << "[ERROR] The compiled ONNX version only supports opset 7~" + << MAX_ONNX_OPSET_VERSION + << ", but now this model need as least opset " << max_opset + << ", please compile with higher version of ONNX." << std::endl; + } + if (exportable) { + return max_opset; + } + + return -1; +} + +ONNX_NAMESPACE::ModelProto ModelExporter::Optimize( + const ONNX_NAMESPACE::ModelProto& model) { + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + std::vector passes = {"eliminate_identity", + "eliminate_deadend", + "eliminate_deadend", + "fuse_constant_reshape", + "fuse_constant_unsqueeze", + "fuse_paddle_conv_bias", + "fuse_consecutive_transposes", + "eliminate_non_transpose", + "fuse_matmul_add_bias_into_gemm", + "eliminate_identity", + "eliminate_deadend", + "eliminate_unused_initializer"}; + return ONNX_NAMESPACE::optimization::Optimize(model, passes); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/exporter.h b/paddle2onnx/mapper/exporter.h new file mode 100755 index 0000000000..484c763591 --- /dev/null +++ b/paddle2onnx/mapper/exporter.h @@ -0,0 +1,122 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include +#include + +#include "paddle2onnx/mapper/mapper.h" +#include "paddle2onnx/mapper/quantize_helper.h" +#include "paddle2onnx/parser/parser.h" + +#ifdef _MSC_VER +#define PATH_SEP "\\" +#else +#define PATH_SEP "/" +#endif + +inline std::string GetFilenameFromPath(const std::string& path) { + auto pos = path.find_last_of(PATH_SEP); + if (pos == std::string::npos) { + return path; + } + return path.substr(pos + 1); +} + +namespace paddle2onnx { + +struct ModelExporter { + private: + std::vector> parameters; + std::vector> inputs; + std::vector> outputs; + // The _deploy_backend will pass to Mapper to influence the conversion + std::string _deploy_backend = "onnxruntime"; + OnnxHelper _helper; + int32_t _total_ops_num = 0; + int32_t _current_exported_num = 0; + + void ExportParameters(const std::map& params, + bool use_initializer = false); + + // Update constant node in parameters. When process quantize model, the weight + // dtype may be int8, it should be convet to float32 and use this function to + // update converted params. + void UpdateParameters(const std::map& params); + void ExportInputOutputs(const std::vector& input_infos, + const std::vector& output_infos); + void ExportOp(const PaddleParser& parser, OnnxHelper* helper, + int32_t opset_version, int64_t block_id, int64_t op_id, + bool verbose); + bool IsLoopSupported(const PaddleParser& parser, const int64_t& block_id, + const int64_t& op_id); + void ExportLoop(const PaddleParser& parser, OnnxHelper* helper, + int32_t opset_version, int64_t block_id, int64_t op_id, + bool verbose); + + ONNX_NAMESPACE::ModelProto Optimize(const ONNX_NAMESPACE::ModelProto& model); + + public: + // custom operators for export + // + std::map custom_ops; + + QuantizeModelProcessor quantize_model_processer; + // Get a proper opset version in range of [7, 16] + // Also will check the model is convertable, this will include 2 parts + // 1. is the op convert function implemented + // 2. is the op convertable(some cases may not be able to convert) + // If the model is not convertable, return -1 + int32_t GetMinOpset(const PaddleParser& parser, bool verbose = false); + + // // Remove isolated nodes in onnx model + // void RemoveIsolatedNodes( + // std::vector>* parameters, + // std::vector>* inputs, + // std::vector>* outputs, + // std::vector>* nodes); + // Process dumplicate tensor names in paddle model + void ProcessGraphDumplicateNames( + std::vector>* parameters, + std::vector>* inputs, + std::vector>* outputs, + std::vector>* nodes, + std::map* quantize_info = nullptr); + + bool CheckIfOpSupported(const PaddleParser& parser, + std::set* unsupported_ops, + bool enable_experimental_op); + + void SaveExternalData(::paddle2onnx::GraphProto* graph, + const std::string& external_file_path, + bool* save_external = nullptr); + + void ONNXChecker(const ONNX_NAMESPACE::ModelProto& model, + const bool& verbose); + + std::string Run(const PaddleParser& parser, int opset_version = 9, + bool auto_upgrade_opset = true, bool verbose = false, + bool enable_onnx_checker = true, + bool enable_experimental_op = false, + bool enable_optimize = true, + const std::string& deploy_backend = "onnxruntime", + std::string* calibration_cache = nullptr, + const std::string& external_file = "", + bool* save_external = nullptr, + bool export_fp16_model = false); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/loop.cc b/paddle2onnx/mapper/loop.cc new file mode 100644 index 0000000000..00d72b3233 --- /dev/null +++ b/paddle2onnx/mapper/loop.cc @@ -0,0 +1,195 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/exporter.h" + +namespace paddle2onnx { + +bool ModelExporter::IsLoopSupported(const PaddleParser& parser, + const int64_t& block_id, + const int64_t& op_id) { + auto x_info = parser.GetOpInput(block_id, op_id, "X"); + auto out_info = parser.GetOpOutput(block_id, op_id, "Out"); + auto cond_info = parser.GetOpInput(block_id, op_id, "Condition"); + std::set input_names; + for (size_t i = 0; i < x_info.size(); ++i) { + input_names.insert(x_info[i].name); + } + input_names.insert(cond_info[0].name); + + for (size_t i = 0; i < out_info.size(); ++i) { + auto iter = input_names.find(out_info[i].name); + if (iter == input_names.end()) { + P2OLogger() << "Cannot find output:" << out_info[i].name << " in input tensors while converting operator 'while', Paddle2ONNX doesn't support this situation now." << std::endl; + return false; + } + } + for (size_t i = 0; i < x_info.size(); ++i) { + if (x_info[i].is_tensor_array) { + P2OLogger() << "LodTensorArray is not supported." << std::endl; + return false; + } + } + return true; +} + +void ModelExporter::ExportLoop(const PaddleParser& parser, OnnxHelper* helper, + int32_t opset_version, int64_t block_id, + int64_t op_id, bool verbose) { + auto op = parser.GetOpDesc(block_id, op_id); + int32_t sub_block_idx = -1; + for (size_t i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == "sub_block") { + sub_block_idx = op.attrs(i).block_idx(); + break; + } + } + Assert(sub_block_idx > 0, "Cannot find sub_block in while operator."); + auto x_info = parser.GetOpInput(block_id, op_id, "X"); + auto cond_info = parser.GetOpInput(block_id, op_id, "Condition"); + + std::vector> inputs; + std::vector> outputs; + + // make loop iter + auto iter_name = MapperHelper::Get()->GenName("loop.iter"); + TensorInfo iter_info(iter_name, std::vector(1, 1), + P2ODataType::INT64); + inputs.push_back(std::move(MakeValueInfo(iter_info))); + + std::set input_names; + // make cond + inputs.push_back(std::move(MakeValueInfo(cond_info[0]))); + input_names.insert(cond_info[0].name); + // other inputs + outputs.push_back(std::move(std::move(MakeValueInfo(cond_info[0])))); + for (size_t i = 0; i < x_info.size(); ++i) { + if (x_info[i].is_tensor_array) { + continue; + } + if (input_names.find(x_info[i].name) != input_names.end()) { + continue; + } + input_names.insert(x_info[i].name); + inputs.push_back(std::move(MakeValueInfo(x_info[i]))); + outputs.push_back(std::move(MakeValueInfo(x_info[i]))); + } + for (size_t i = 0; i < x_info.size(); ++i) { + if (x_info[i].is_tensor_array) { + if (input_names.find(x_info[i].name) != input_names.end()) { + continue; + } + input_names.insert(x_info[i].name); + outputs.push_back(std::move(MakeValueInfo(x_info[i]))); + } + } + + // make op nodes + OnnxHelper loop_helper; + loop_helper.SetOpsetVersion(opset_version); + + for (auto i = 0; i < parser.NumOfOps(sub_block_idx); ++i) { + auto op = parser.GetOpDesc(sub_block_idx, i); + ExportOp(parser, &loop_helper, opset_version, sub_block_idx, i, verbose); + } + + std::vector> parameters; + ProcessGraphDumplicateNames(¶meters, &inputs, &outputs, + &loop_helper.nodes); + std::map renamer; + for (auto& item : inputs) { + auto name = MapperHelper::Get()->GenName("loop.input"); + renamer[item->name()] = name; + item->set_name(name); + } + for (auto& item : loop_helper.nodes) { + for (size_t i = 0; i < item->input_size(); ++i) { + if (renamer.find(item->input(i)) != renamer.end()) { + auto updated_name = renamer[item->input(i)]; + while (renamer.find(updated_name) != renamer.end()) { + updated_name = renamer[updated_name]; + } + *(item->mutable_input(i)) = updated_name; + } + } + } + for (auto& item : outputs) { + if (renamer.find(item->name()) != renamer.end()) { + auto updated_name = renamer[item->name()]; + while (renamer.find(updated_name) != renamer.end()) { + updated_name = renamer[updated_name]; + } + item->set_name(updated_name); + } + } + + // // construct a onnx model proto + // // consider to optimize the subgraph + // auto model = std::make_shared(); + // model->set_ir_version(ONNX_NAMESPACE::IR_VERSION); + // auto graph = model->mutable_graph(); + // auto graph_name = MapperHelper::Get()->GenName("Model from + // PaddlePaddle(Loop)."); + // graph->set_name(graph_name); + // auto opset_id = model->add_opset_import(); + // opset_id->set_domain(""); + // opset_id->set_version(loop_helper->GetOpsetVersion()); + + auto graph_name = MapperHelper::Get()->GenName("paddle.loop"); + auto graph = std::make_shared(); + graph->set_name(graph_name); + for (auto& item : inputs) { + *(graph->add_input()) = *(item.get()); + } + for (auto& item : loop_helper.nodes) { + *(graph->add_node()) = (*item.get()); + } + for (auto& item : outputs) { + *(graph->add_output()) = (*item.get()); + } + + // fake iter + auto fake_iter = helper->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(1, 1024)); + std::vector x_names; + x_names.push_back(fake_iter); + x_names.push_back(cond_info[0].name); + std::vector out_names; + for (size_t i = 0; i < x_info.size(); ++i) { + if (x_info[i].is_tensor_array) { + continue; + } + if (std::find(x_names.begin(), x_names.end(), x_info[i].name) != x_names.end()) { + continue; + } + x_names.push_back(x_info[i].name); + out_names.push_back(x_info[i].name); + } + for (size_t i = 0; i < x_info.size(); ++i) { + if (x_info[i].is_tensor_array) { + if (std::find(x_names.begin(), x_names.end(), x_info[i].name) != x_names.end()) { + continue; + } + out_names.push_back(x_info[i].name); + } + } + + auto loop_node = helper->MakeNode("Loop", x_names, out_names); + auto attr = loop_node->add_attribute(); + attr->set_name("body"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::GRAPH); + *(attr->mutable_g()) = *(graph.get()); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/mapper.h b/paddle2onnx/mapper/mapper.h new file mode 100755 index 0000000000..1cb72d59f3 --- /dev/null +++ b/paddle2onnx/mapper/mapper.h @@ -0,0 +1,246 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include + +#include "paddle2onnx/mapper/data_helper.h" +#include "paddle2onnx/mapper/onnx_helper.h" +#include "paddle2onnx/mapper/register_mapper.h" +#include "paddle2onnx/parser/parser.h" + +namespace paddle2onnx { + +class Mapper { + public: + Mapper() {} + Mapper(const PaddleParser& p, OnnxHelper* helper, int32_t block_id, + int32_t op_id, std::string name = {}) + : parser_(&p) { + block_idx_ = block_id; + op_idx_ = op_id; + helper_ = helper; + name_ = name; + } + + // The flag will control if the op is exported as a custom operator + // if export_as_custom_op = true, will exported as description in + // custom_op_info + bool export_as_custom_op = false; + // [exported_op_name, domain] + std::string custom_op_name; + std::string deploy_backend; + + P2OLogger Logger(const bool& verbose, const int32_t& opset_version = 100) { + bool v = verbose; + if (opset_version <= helper_->GetOpsetVersion()) { + v = false; + } + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + std::string output_name = ""; + if (op.outputs(0).arguments_size() > 0) { + output_name = op.outputs(0).arguments(0); + } + std::string op_type = op.type(); + std::string prefix = "[Paddle2ONNX] [" + op_type + ": " + output_name + "]"; + return P2OLogger(v, prefix); + } + + P2OLogger Error() { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + std::string output_name = ""; + if (op.outputs(0).arguments_size() > 0) { + output_name = op.outputs(0).arguments(0); + } + std::string op_type = op.type(); + std::string prefix = + "[ERROR][Paddle2ONNX] [" + op_type + ": " + output_name + "]"; + return P2OLogger(true, prefix); + } + + P2OLogger Warn() { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + std::string output_name = ""; + if (op.outputs(0).arguments_size() > 0) { + output_name = op.outputs(0).arguments(0); + } + std::string op_type = op.type(); + std::string prefix = + "[WARN][Paddle2ONNX] [" + op_type + ": " + output_name + "]"; + return P2OLogger(true, prefix); + } + + // Some operators is not implement very well, e.g the output may not be same + // We mark these operators as experimental, these operators requires double + // checking after model exported. + virtual void MarkAsExperimentalOp() { is_experimental_op_ = true; } + virtual bool IsExperimentalOp() const { return is_experimental_op_; } + // the return value in [7, MAX_ONNX_OPSET_VERSION], represent the minimum + // opset_version + // if return value < 0, means the op is not supported. + virtual int32_t GetMinOpset(bool verbose = false) { return 7; } + + virtual bool IsExportAsCustomOp() { return export_as_custom_op; } + + void Run() { + int32_t opset_version = helper_->GetOpsetVersion(); + Assert(opset_version >= 7 && opset_version <= MAX_ONNX_OPSET_VERSION, + "[Paddle2ONNX] Only support opset_version in range of [7, " + + std::to_string(MAX_ONNX_OPSET_VERSION) + "]."); + if (IsExportAsCustomOp()) { + return ExportAsCustomOp(); + } + if (opset_version == 16) { + Opset16(); + } else if (opset_version == 15) { + Opset15(); + } else if (opset_version == 14) { + Opset14(); + } else if (opset_version == 13) { + Opset13(); + } else if (opset_version == 12) { + Opset12(); + } else if (opset_version == 11) { + Opset11(); + } else if (opset_version == 10) { + Opset10(); + } else if (opset_version == 9) { + Opset9(); + } else if (opset_version == 8) { + Opset8(); + } else { + Opset7(); + } + } + + virtual void ExportAsCustomOp() { + Assert(false, + "Operator " + name_ + "doesn't support export as custom operator."); + } + + virtual void Opset16() { Opset15(); } + + virtual void Opset15() { Opset14(); } + + virtual void Opset14() { Opset13(); } + + virtual void Opset13() { Opset12(); } + + virtual void Opset12() { Opset11(); } + + virtual void Opset11() { Opset10(); } + + virtual void Opset10() { Opset9(); } + + virtual void Opset9() { Opset8(); } + + virtual void Opset8() { Opset7(); } + + virtual void Opset7() { + Assert(false, + "This error shouldn't happend, please report to " + "https://github.com/PaddlePaddle/Paddle2ONNX.git."); + } + + virtual ~Mapper() = default; + bool is_experimental_op_ = false; + const PaddleParser* parser_; + OnnxHelper* helper_; + int32_t block_idx_; + int32_t op_idx_; + std::string name_; // op transform name + + std::string OpType() const { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + return op.type(); + } + + std::string Name() const { return name_; } + + bool HasInput(const std::string& name) const { + return parser_->OpHasInput(block_idx_, op_idx_, name); + } + bool HasOutput(const std::string& name) const { + return parser_->OpHasOutput(block_idx_, op_idx_, name); + } + std::vector GetInput(const std::string& name) const { + return parser_->GetOpInput(block_idx_, op_idx_, name); + } + std::vector GetOutput(const std::string& name) const { + return parser_->GetOpOutput(block_idx_, op_idx_, name); + } + // Judge whether Attribute(name)'s type is Var or Vars. + bool IsAttrVar(const std::string& name) const { + return parser_->OpIsAttrVar(block_idx_, op_idx_, name); + } + + // Get TensorInfo(s) from Attribute Var or Vars. + std::vector GetAttrVar(const std::string& name) const { + return parser_->GetOpAttrVar(block_idx_, op_idx_, name); + } + + bool HasAttr(const std::string& name) const { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + return parser_->OpHasAttr(op, name); + } + void GetAttr(const std::string& name, int64_t* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, float* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, bool* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, std::string* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, std::vector* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, std::vector* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + void GetAttr(const std::string& name, std::vector* val) { + auto& op = parser_->GetOpDesc(block_idx_, op_idx_); + parser_->GetOpAttr(op, name, val); + } + + bool IsConstantInput(const std::string& input_key) const { + auto input_info = GetInput(input_key); + return parser_->IsConstantTensor(block_idx_, input_info[0].name); + } + + bool IsConstant(const TensorInfo& info) const { + return parser_->IsConstantTensor(block_idx_, info.name); + } + + template + bool TryGetInputValue(const std::string& input_key, std::vector* data) { + auto input_info = GetInput(input_key); + return parser_->TryGetTensorValue(block_idx_, input_info[0].name, data); + } + + template + bool TryGetValue(const TensorInfo& info, std::vector* data) { + return parser_->TryGetTensorValue(block_idx_, info.name, data); + } +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/affine_channel.cc b/paddle2onnx/mapper/nn/affine_channel.cc new file mode 100644 index 0000000000..87b5efd802 --- /dev/null +++ b/paddle2onnx/mapper/nn/affine_channel.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/affine_channel.h" + +namespace paddle2onnx { +REGISTER_MAPPER(affine_channel, AffineChannelMapper) + +int32_t AffineChannelMapper::GetMinOpset(bool verbose) { + if (data_layout_ == "NHWC") { + Error() << "Data format NHWC is not supported." << std::endl; + return false; + } + return 7; +} + +void AffineChannelMapper::Opset7() { + auto x_info = GetInput("X"); + auto scale_info = GetInput("Scale"); + auto bias_info = GetInput("Bias"); + auto out_info = GetOutput("Out"); + + auto scale = scale_info[0].name; + auto bias = bias_info[0].name; + if (scale_info[0].shape.size() <= 1) { + scale = helper_->Reshape(scale, {1, -1, 1, 1}); + bias = helper_->Reshape(bias, {1, -1, 1, 1}); + } + auto out = helper_->MakeNode("Mul", {x_info[0].name, scale})->output(0); + helper_->MakeNode("Add", {out, bias}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/affine_channel.h b/paddle2onnx/mapper/nn/affine_channel.h new file mode 100644 index 0000000000..fcb14920cc --- /dev/null +++ b/paddle2onnx/mapper/nn/affine_channel.h @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class AffineChannelMapper : public Mapper { + public: + AffineChannelMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("data_layout", &data_layout_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::string data_layout_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/batch_norm.cc b/paddle2onnx/mapper/nn/batch_norm.cc new file mode 100644 index 0000000000..dd81622e08 --- /dev/null +++ b/paddle2onnx/mapper/nn/batch_norm.cc @@ -0,0 +1,45 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/batch_norm.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(batch_norm, BatchNormMapper) + +void BatchNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto scale_info = GetInput("Scale"); + auto bias_info = GetInput("Bias"); + auto mean_info = GetInput("Mean"); + auto variance_info = GetInput("Variance"); + auto output_info = GetOutput("Y"); + + auto node = helper_->MakeNode( + "BatchNormalization", + {input_info[0].name, scale_info[0].name, bias_info[0].name, + mean_info[0].name, variance_info[0].name}, + {output_info[0].name}); + if (helper_->GetOpsetVersion() < 9) { + int64_t spatial = 1; + AddAttribute(node, "spatial", spatial); + } + + AddAttribute(node, "epsilon", epsilon_); + AddAttribute(node, "momentum", momentum_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/batch_norm.h b/paddle2onnx/mapper/nn/batch_norm.h new file mode 100644 index 0000000000..abc649e022 --- /dev/null +++ b/paddle2onnx/mapper/nn/batch_norm.h @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class BatchNormMapper : public Mapper { + public: + BatchNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("epsilon", &epsilon_); + GetAttr("momentum", &momentum_); + } + + void Opset7(); + + private: + float epsilon_; + float momentum_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv2d.cc b/paddle2onnx/mapper/nn/conv2d.cc new file mode 100644 index 0000000000..7c763a0662 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv2d.cc @@ -0,0 +1,81 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/conv2d.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(conv2d, Conv2dMapper) +REGISTER_MAPPER(depthwise_conv2d, Conv2dMapper) + +int32_t Conv2dMapper::GetMinOpset(bool verbose) { + // NHWC is not supported + if (data_format_ == "NHWC") { + Error() << "Cannot support input with NHWC format." << std::endl; + return -1; + } + if (padding_algorithm_ == "EXPLICIT") { + if (paddings_.size() != 2 && paddings_.size() != 4) { + Error() << "While padding_algorithm is EXPLICIT, size of paddings should " + "be 2 or 4." + << std::endl; + return -1; + } + } + if (dilations_[0] != 1 || dilations_[1] != 1) { + if (padding_algorithm_ == "SAME") { + Error() << "While dilations != 1, cannot support padding = 'SAME'." + << std::endl; + return -1; + } + } + return 7; +} + +void Conv2dMapper::Opset7() { + auto kernel_info = GetInput("Filter"); + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Output"); + + auto node = helper_->MakeNode( + "Conv", {input_info[0].name, kernel_info[0].name}, {output_info[0].name}); + AddAttribute(node, "dilations", dilations_); + std::vector kernel_shape = {kernel_info[0].shape[2], + kernel_info[0].shape[3]}; + AddAttribute(node, "kernel_shape", kernel_shape); + AddAttribute(node, "strides", strides_); + AddAttribute(node, "group", groups_); + if (padding_algorithm_ == "SAME") { + std::string auto_pad = "SAME_UPPER"; + AddAttribute(node, "auto_pad", auto_pad); + } else if (padding_algorithm_ == "VALID") { + std::string auto_pad = "VALID"; + AddAttribute(node, "auto_pad", auto_pad); + } else { + std::vector paddings; + if (paddings_.size() == 2) { + paddings.insert(paddings.begin(), paddings_.begin(), paddings_.end()); + paddings.insert(paddings.begin(), paddings_.begin(), paddings_.end()); + } else { + paddings.assign(paddings_.begin(), paddings_.end()); + paddings[1] = paddings_[2]; + paddings[2] = paddings_[1]; + } + AddAttribute(node, "pads", paddings); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv2d.h b/paddle2onnx/mapper/nn/conv2d.h new file mode 100644 index 0000000000..06efdf4ef0 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv2d.h @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Conv2dMapper : public Mapper { + public: + Conv2dMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("groups", &groups_); + GetAttr("dilations", &dilations_); + GetAttr("strides", &strides_); + GetAttr("paddings", &paddings_); + GetAttr("padding_algorithm", &padding_algorithm_); + GetAttr("data_format", &data_format_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector dilations_; + std::vector strides_; + std::vector paddings_; + std::string padding_algorithm_; + std::string data_format_; + int64_t groups_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv2d_transpose.cc b/paddle2onnx/mapper/nn/conv2d_transpose.cc new file mode 100755 index 0000000000..b397c6f978 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv2d_transpose.cc @@ -0,0 +1,66 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/conv2d_transpose.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(conv2d_transpose, Conv2dTransposeMapper) +REGISTER_MAPPER(depthwise_conv2d_transpose, Conv2dTransposeMapper) + +int32_t Conv2dTransposeMapper::GetMinOpset(bool verbose) { + // NHWC is not supported + if (data_format_ == "NHWC") { + Error() << "[ERROR] Cannot support NHWC format for operator " + "conv2d_transpose/depthwise_conv2d_transpose." + << std::endl; + return -1; + } + return 7; +} + +void Conv2dTransposeMapper::Opset7() { + auto kernel_info = GetInput("Filter"); + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Output"); + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto kernel = helper_->AutoCast(kernel_info[0].name, kernel_info[0].dtype, + P2ODataType::FP32); + auto node = helper_->MakeNode("ConvTranspose", {input, kernel}); + AddAttribute(node, "dilations", dilations_); + std::vector kernel_shape = {kernel_info[0].shape[2], + kernel_info[0].shape[3]}; + AddAttribute(node, "kernel_shape", kernel_shape); + AddAttribute(node, "strides", strides_); + AddAttribute(node, "group", groups_); + if (padding_algorithm_ == "SAME") { + std::string auto_pad = "SAME_UPPER"; + AddAttribute(node, "auto_pad", auto_pad); + } else if (padding_algorithm_ == "VALID") { + std::string auto_pad = "VALID"; + AddAttribute(node, "auto_pad", auto_pad); + } else { + AddAttribute(node, "pads", paddings_); + } + if (output_padding_.size() > 0) { + AddAttribute(node, "output_padding", output_padding_); + } + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv2d_transpose.h b/paddle2onnx/mapper/nn/conv2d_transpose.h new file mode 100755 index 0000000000..3a8b472fd2 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv2d_transpose.h @@ -0,0 +1,58 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Conv2dTransposeMapper : public Mapper { + public: + Conv2dTransposeMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("groups", &groups_); + GetAttr("dilations", &dilations_); + GetAttr("strides", &strides_); + GetAttr("paddings", &paddings_); + GetAttr("padding_algorithm", &padding_algorithm_); + GetAttr("output_padding", &output_padding_); + GetAttr("data_format", &data_format_); + if (paddings_.size() == 2) { + paddings_.push_back(paddings_[0]); + paddings_.push_back(paddings_[1]); + } else if (paddings_.size() == 4) { + int32_t tmp = paddings_[1]; + paddings_[1] = paddings_[2]; + paddings_[2] = tmp; + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector dilations_; + std::vector strides_; + std::vector paddings_; + std::vector output_padding_; + std::string padding_algorithm_; + std::string data_format_; + int64_t groups_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv3d.cc b/paddle2onnx/mapper/nn/conv3d.cc new file mode 100644 index 0000000000..44e457f9b1 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv3d.cc @@ -0,0 +1,82 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/conv3d.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(conv3d, Conv3dMapper) + +int32_t Conv3dMapper::GetMinOpset(bool verbose) { + // NDHWC is not supported + if (data_format_ == "NDHWC") { + Error() << "Cannot support input with NDHWC format." << std::endl; + return -1; + } + if (padding_algorithm_ == "EXPLICIT") { + if (paddings_.size() != 3 && paddings_.size() != 6) { + Error() << "While padding_algorithm is EXPLICIT, size of paddings should " + "be 3 or 6." + << std::endl; + return -1; + } + } + if (dilations_[0] != 1 || dilations_[1] != 1 || dilations_[2] != 1) { + if (padding_algorithm_ == "SAME") { + Error() << "While dilations != 1, cannot support padding = 'SAME'." + << std::endl; + return -1; + } + } + return 7; +} + +void Conv3dMapper::Opset7() { + auto kernel_info = GetInput("Filter"); + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Output"); + + auto node = helper_->MakeNode( + "Conv", {input_info[0].name, kernel_info[0].name}, {output_info[0].name}); + AddAttribute(node, "dilations", dilations_); + std::vector kernel_shape = {kernel_info[0].shape[2], + kernel_info[0].shape[3], + kernel_info[0].shape[4]}; + AddAttribute(node, "kernel_shape", kernel_shape); + AddAttribute(node, "strides", strides_); + AddAttribute(node, "group", groups_); + if (padding_algorithm_ == "SAME") { + std::string auto_pad = "SAME_UPPER"; + AddAttribute(node, "auto_pad", auto_pad); + } else if (padding_algorithm_ == "VALID") { + std::string auto_pad = "VALID"; + AddAttribute(node, "auto_pad", auto_pad); + } else { + std::vector paddings; + if (paddings_.size() == 3) { + paddings.insert(paddings.begin(), paddings_.begin(), paddings_.end()); + paddings.insert(paddings.begin(), paddings_.begin(), paddings_.end()); + } else { + std::vector index = {0, 2, 4, 1, 3, 5}; + for (auto &i : index) { + paddings.push_back(paddings_[i]); + } + } + AddAttribute(node, "pads", paddings); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/conv3d.h b/paddle2onnx/mapper/nn/conv3d.h new file mode 100755 index 0000000000..310edd5cc0 --- /dev/null +++ b/paddle2onnx/mapper/nn/conv3d.h @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Conv3dMapper : public Mapper { + public: + Conv3dMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("groups", &groups_); + GetAttr("dilations", &dilations_); + GetAttr("strides", &strides_); + GetAttr("paddings", &paddings_); + GetAttr("padding_algorithm", &padding_algorithm_); + GetAttr("data_format", &data_format_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector dilations_; + std::vector strides_; + std::vector paddings_; + std::string padding_algorithm_; + std::string data_format_; + int64_t groups_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/data_norm.cc b/paddle2onnx/mapper/nn/data_norm.cc new file mode 100644 index 0000000000..2cea544f4c --- /dev/null +++ b/paddle2onnx/mapper/nn/data_norm.cc @@ -0,0 +1,43 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/data_norm.h" + +namespace paddle2onnx { +REGISTER_MAPPER(data_norm, DataNormMapper) + +int32_t DataNormMapper::GetMinOpset(bool verbose) { + if (slot_dim_ > 0) { + Error() << "slot_dim > 0 is not supported." << std::endl; + return -1; + } + return 7; +} + +void DataNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto batch_size_info = GetInput("BatchSize"); + auto batch_sum_info = GetInput("BatchSum"); + auto batch_square_sum_info = GetInput("BatchSquareSum"); + auto output_info = GetOutput("Y"); + + Assert(slot_dim_ <= 0, "slot_dim > 0 is not supported."); + auto mean_arr = helper_->MakeNode("Div", {batch_sum_info[0].name, batch_size_info[0].name})->output(0); + auto scale_arr = helper_->MakeNode("Div", {batch_size_info[0].name, batch_square_sum_info[0].name})->output(0); + scale_arr = helper_->MakeNode("Sqrt", {scale_arr})->output(0); + auto out = helper_->MakeNode("Sub", {input_info[0].name, mean_arr})->output(0); + helper_->MakeNode("Mul" ,{out, scale_arr}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/data_norm.h b/paddle2onnx/mapper/nn/data_norm.h new file mode 100644 index 0000000000..576a53d9dc --- /dev/null +++ b/paddle2onnx/mapper/nn/data_norm.h @@ -0,0 +1,44 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class DataNormMapper : public Mapper { + public: + DataNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("data_layout", &data_layout_); + GetAttr("epsilon", &epsilon_); + if (HasAttr("slot_dim")) { + GetAttr("slot_dim", &slot_dim_); + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::string data_layout_; + float epsilon_; + int64_t slot_dim_ = -1; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/dropout.cc b/paddle2onnx/mapper/nn/dropout.cc new file mode 100644 index 0000000000..3f10ad1f87 --- /dev/null +++ b/paddle2onnx/mapper/nn/dropout.cc @@ -0,0 +1,66 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/nn/dropout.h" + +#include + +namespace paddle2onnx { + +REGISTER_MAPPER(dropout, DropoutMapper) + +int32_t DropoutMapper::GetMinOpset(bool verbose) { + if (dropout_implementation_ != "downgrade_in_infer" && + dropout_implementation_ != "upscale_in_train") { + Error() << "Drop out type: " << dropout_implementation_ + << " is not supported yet." << std::endl; + return -1; + } + if (dropout_implementation_ == "downgrade_in_infer") { + if (IsAttrVar("dropout_prob") && + !IsConstant(GetAttrVar("dropout_prob")[0])) { + Error() << "While Attribute(dropout_prob)'s type is Tensor, it's not " + "supported " + "unless it's a constant tensor when dropout_implementation is " + "downgrade_in_infer." + << std::endl; + return -1; + } + } + return 7; +} + +void DropoutMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + if (dropout_implementation_ == "upscale_in_train") { + helper_->MakeNode("Identity", {input_info[0].name}, {output_info[0].name}); + } else { + if (IsAttrVar("dropout_prob")) { + auto prob_info = GetAttrVar("dropout_prob"); + std::vector temp; + TryGetValue(prob_info[0], &temp); + dropout_prob_ = temp[0]; + } else { + GetAttr("dropout_prob", &dropout_prob_); + } + std::vector value = {1 - dropout_prob_}; + std::string scale_node = + helper_->Constant(GetOnnxDtype(input_info[0].dtype), value); + helper_->MakeNode("Mul", {input_info[0].name, scale_node}, + {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/dropout.h b/paddle2onnx/mapper/nn/dropout.h new file mode 100755 index 0000000000..048d9b6603 --- /dev/null +++ b/paddle2onnx/mapper/nn/dropout.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class DropoutMapper : public Mapper { + public: + DropoutMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("dropout_implementation", &dropout_implementation_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + float dropout_prob_ = 0.0; + std::string dropout_implementation_ = "upscale_in_train"; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/group_norm.cc b/paddle2onnx/mapper/nn/group_norm.cc new file mode 100644 index 0000000000..717401d270 --- /dev/null +++ b/paddle2onnx/mapper/nn/group_norm.cc @@ -0,0 +1,75 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/group_norm.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(group_norm, GroupNormMapper) + +int32_t GroupNormMapper::GetMinOpset(bool verbose) { + auto input_info = GetInput("X"); + if (input_info[0].Rank() != 4) { + Error() << "Only support 4D-Tensor as input for GroupNorm" << std::endl; + return -1; + } + return 7; +} + +void GroupNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Y"); + + std::vector shape_val = {0, groups_, -1}; + std::string shape = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), shape_val); + + auto reshape_input = + helper_->MakeNode("Reshape", {input_info[0].name, shape}); + + std::string scale_ = helper_->Constant(GetOnnxDtype(input_info[0].dtype), + std::vector(groups_, 1.0)); + + std::string bias_ = helper_->Constant(GetOnnxDtype(input_info[0].dtype), + std::vector(groups_, 0.0)); + + auto reshaped_output = helper_->MakeNode( + "InstanceNormalization", {reshape_input->output(0), scale_, bias_}); + AddAttribute(reshaped_output, "epsilon", epsilon_); + + auto origin_shape = helper_->MakeNode("Shape", {input_info[0].name}); + + if (HasInput("Scale") && HasInput("Bias")) { + auto scale_info = GetInput("Scale"); + auto bias_info = GetInput("Bias"); + auto output = helper_->MakeNode( + "Reshape", {reshaped_output->output(0), origin_shape->output(0)}); + std::string unsqueezed_scale = + helper_->Unsqueeze(scale_info[0].name, {1, 2}); + std::string unsqueezed_bias = helper_->Unsqueeze(bias_info[0].name, {1, 2}); + auto scale_output = + helper_->MakeNode("Mul", {output->output(0), unsqueezed_scale}); + helper_->MakeNode("Add", {scale_output->output(0), unsqueezed_bias}, + {output_info[0].name}); + } else { + helper_->MakeNode("Reshape", + {reshaped_output->output(0), origin_shape->output(0)}, + {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/group_norm.h b/paddle2onnx/mapper/nn/group_norm.h new file mode 100755 index 0000000000..a2bd1bd8d6 --- /dev/null +++ b/paddle2onnx/mapper/nn/group_norm.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GroupNormMapper : public Mapper { + public: + GroupNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("groups", &groups_); + GetAttr("epsilon", &epsilon_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + int64_t groups_; + float epsilon_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/instance_norm.cc b/paddle2onnx/mapper/nn/instance_norm.cc new file mode 100644 index 0000000000..edddac10f4 --- /dev/null +++ b/paddle2onnx/mapper/nn/instance_norm.cc @@ -0,0 +1,59 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/instance_norm.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(instance_norm, InstanceNormMapper) + +int32_t InstanceNormMapper::GetMinOpset(bool verbose) { + auto input_info = GetInput("X"); + int num_groups = input_info[0].shape[1]; + if (num_groups < 0) { + Error() << "The dimension in axis=1 of input tensor must be known, but now it's unknown." << std::endl; + return -1; + } + return 7; +} + +void InstanceNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Y"); + int num_groups = input_info[0].shape[1]; + + std::string scale = ""; + if (HasInput("Scale")) { + scale = GetInput("Scale")[0].name; + } else { + scale = helper_->Constant(GetOnnxDtype(input_info[0].dtype), std::vector(num_groups, 1.0)); + } + + std::string bias = ""; + if (HasInput("Bias")) { + bias = GetInput("Bias")[0].name; + } else { + bias = helper_->Constant(GetOnnxDtype(input_info[0].dtype), std::vector(num_groups, 0.0)); + } + + auto node = helper_->MakeNode( + "InstanceNormalization", + {input_info[0].name, scale, bias}, + {output_info[0].name}); + AddAttribute(node, "epsilon", epsilon_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/instance_norm.h b/paddle2onnx/mapper/nn/instance_norm.h new file mode 100644 index 0000000000..c569b1f92c --- /dev/null +++ b/paddle2onnx/mapper/nn/instance_norm.h @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class InstanceNormMapper : public Mapper { + public: + InstanceNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("epsilon", &epsilon_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + float epsilon_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/interpolate.cc b/paddle2onnx/mapper/nn/interpolate.cc new file mode 100755 index 0000000000..49523a8a69 --- /dev/null +++ b/paddle2onnx/mapper/nn/interpolate.cc @@ -0,0 +1,136 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/interpolate.h" + +namespace paddle2onnx { +REGISTER_MAPPER(bilinear_interp, InterpolateMapper) +REGISTER_MAPPER(bilinear_interp_v2, InterpolateMapper) +REGISTER_MAPPER(nearest_interp_v2, InterpolateMapper) +REGISTER_MAPPER(bicubic_interp_v2, InterpolateMapper) +REGISTER_MAPPER(linear_interp_v2, InterpolateMapper) +REGISTER_MAPPER(trilinear_interp_v2, InterpolateMapper) + +int32_t InterpolateMapper::GetMinOpset(bool verbose) { + if (data_layout_ == "NHWC") { + Error() << "Data format of NHWC is not supported." << std::endl; + return -1; + } + auto x_info = GetInput("X"); + if (x_info[0].Rank() > 5 && x_info[0].Rank() < 3) { + Error() << "Only support 3D/4D/5D tensor, but now its dimension is " + << x_info[0].Rank() << std::endl; + return -1; + } + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +std::string InterpolateMapper::ComputeOutSize() { + bool has_out_size = HasInput("OutSize"); + bool has_size_tensor = HasInput("SizeTensor"); + if (has_out_size) { + auto out_size_info = GetInput("OutSize"); + return helper_->AutoCast(out_size_info[0].name, out_size_info[0].dtype, + P2ODataType::INT64); + } else { + auto size_tensor_info = GetInput("SizeTensor"); + return helper_->ConcatIndices(size_tensor_info); + } +} + +std::string InterpolateMapper::ComputeScale() { + auto scale_info = GetInput("Scale"); + auto scale = helper_->AutoCast(scale_info[0].name, scale_info[0].dtype, + P2ODataType::FP32); + auto padding = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(2, 1.0)); + scale = helper_->Concat({padding, scale}, 0); + return scale; +} + +void InterpolateMapper::Opset11() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + std::string coordinate_transformation_mode = "half_pixel"; + auto resize_type = resize_mapper_[method_]; + if (align_corners_) { + coordinate_transformation_mode = "align_corners"; + } else if (resize_type == "nearest") { + coordinate_transformation_mode = "asymmetric"; + } else if (align_mode_ == 1 && resize_type != "cubic") { + coordinate_transformation_mode = "asymmetric"; + } + std::string scale = ""; + std::string size = ""; + bool has_out_size = HasInput("OutSize"); + bool has_size_tensor = HasInput("SizeTensor"); + bool has_scale_tensor = HasInput("Scale"); + if (has_out_size || has_size_tensor) { + size = ComputeOutSize(); + } else if (has_scale_tensor) { + scale = ComputeScale(); + } else { + // get size or scale from attribute + if (out_d_ > 0 || out_w_ > 0 || out_h_ > 0) { + std::vector out_size; + if (x_info[0].Rank() == 5) { + out_size.push_back(out_d_); + out_size.push_back(out_h_); + } + if (x_info[0].Rank() == 4) { + out_size.push_back(out_h_); + } + out_size.push_back(out_w_); + size = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, out_size); + } else { + std::vector scale_; + GetAttr("scale", &scale_); + float padding = 1.0; + scale_.insert(scale_.begin(), padding); + scale_.insert(scale_.begin(), padding); + scale = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, scale_); + } + } + std::string roi = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, std::vector()); + if (scale == "") { + // has to generate a empty tensor for resize + scale = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector()); + } + if (size != "") { + auto ipt_shape = helper_->MakeNode("Shape", {x_info[0].name})->output(0); + auto nc = helper_->Slice(ipt_shape, {0}, {0}, {2}); + size = helper_->Concat({nc, size}, 0); + } + std::shared_ptr node; + if (size != "") { + node = helper_->MakeNode("Resize", {x_info[0].name, roi, scale, size}, + {out_info[0].name}); + } else { + node = helper_->MakeNode("Resize", {x_info[0].name, roi, scale}, + {out_info[0].name}); + } + Assert(resize_mapper_.find(OpType()) != resize_mapper_.end(), + "Cannot find " + OpType() + " in resize_mapper."); + AddAttribute(node, "mode", resize_mapper_[OpType()]); + AddAttribute(node, "coordinate_transformation_mode", + coordinate_transformation_mode); + if (resize_mapper_[OpType()] == "nearest" && + coordinate_transformation_mode == "asymmetric") { + AddAttribute(node, "nearest_mode", "floor"); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/interpolate.h b/paddle2onnx/mapper/nn/interpolate.h new file mode 100755 index 0000000000..d3b8a7a7a8 --- /dev/null +++ b/paddle2onnx/mapper/nn/interpolate.h @@ -0,0 +1,57 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class InterpolateMapper : public Mapper { + public: + InterpolateMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("data_layout", &data_layout_); + GetAttr("align_corners", &align_corners_); + GetAttr("align_mode", &align_mode_); + GetAttr("out_d", &out_d_); + GetAttr("out_h", &out_h_); + GetAttr("out_w", &out_w_); + method_ = OpType(); + + resize_mapper_["bilinear_interp"] = "linear"; + resize_mapper_["bilinear_interp_v2"] = "linear"; + resize_mapper_["nearest_interp_v2"] = "nearest"; + resize_mapper_["bicubic_interp_v2"] = "cubic"; + resize_mapper_["linear_interp_v2"] = "linear"; + resize_mapper_["trilinear_interp_v2"] = "linear"; + } + + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + std::string ComputeOutSize(); + std::string ComputeScale(); + std::map resize_mapper_; + std::string method_; + std::string data_layout_; + int64_t align_mode_; + int64_t out_d_; + int64_t out_h_; + int64_t out_w_; + bool align_corners_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/layer_norm.cc b/paddle2onnx/mapper/nn/layer_norm.cc new file mode 100644 index 0000000000..5fab8da22c --- /dev/null +++ b/paddle2onnx/mapper/nn/layer_norm.cc @@ -0,0 +1,146 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/layer_norm.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(layer_norm, LayerNormMapper) + +void LayerNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Y"); + + std::string input_name = helper_->AutoCast( + input_info[0].name, input_info[0].dtype, P2ODataType::FP32); + + std::vector input_shape = input_info[0].shape; + std::vector axes; + for (auto i = begin_norm_axis_; i < input_shape.size(); i++) { + axes.push_back(i); + } + if (begin_norm_axis_ == input_shape.size() - 1) { + axes[0] = -1; + } + + float epsilon = epsilon_; + std::string epsilon_node = + helper_->Constant({}, GetOnnxDtype(P2ODataType::FP32), epsilon); + std::string two_node = + helper_->Constant({}, GetOnnxDtype(P2ODataType::FP32), float(2.0)); + + auto mean_node = helper_->MakeNode("ReduceMean", {input_name}); + AddAttribute(mean_node, "axes", axes); + + auto numerator_node = + helper_->MakeNode("Sub", {input_name, mean_node->output(0)}); + auto pow_num_node = + helper_->MakeNode("Pow", {numerator_node->output(0), two_node}); + + auto variance_node = + helper_->MakeNode("ReduceMean", {pow_num_node->output(0)}); + AddAttribute(variance_node, "axes", axes); + + auto add_eps_node = + helper_->MakeNode("Add", {variance_node->output(0), epsilon_node}); + + auto denominator_node = helper_->MakeNode("Sqrt", {add_eps_node->output(0)}); + + auto ipt_shape_node = helper_->MakeNode("Shape", {input_name}); + std::vector slice_axes = {0}; + std::vector start = { + static_cast(input_shape.size() - axes.size())}; + std::vector end = {static_cast(input_shape.size())}; + std::string weight_shape_node = + helper_->Slice(ipt_shape_node->output(0), slice_axes, start, end); + + bool has_input_Bias = HasInput("Bias"); + bool has_input_Scale = HasInput("Scale"); + + if (has_input_Bias && has_input_Scale) { + auto scale_info = GetInput("Scale"); + auto bias_info = GetInput("Bias"); + std::string scale_name = helper_->AutoCast( + scale_info[0].name, scale_info[0].dtype, P2ODataType::FP32); + std::string bias_name = helper_->AutoCast( + bias_info[0].name, bias_info[0].dtype, P2ODataType::FP32); + std::string scale_node = ""; + std::string bias_node = ""; + if (begin_norm_axis_ == input_shape.size() - 1) { + scale_node = helper_->Reshape(scale_name, {-1}); + bias_node = helper_->Reshape(bias_name, {-1}); + } else { + scale_node = helper_->MakeNode("Reshape", {scale_name, weight_shape_node}) + ->output(0); + bias_node = helper_->MakeNode("Reshape", {bias_name, weight_shape_node}) + ->output(0); + } + auto layer_norm_pre_node = helper_->MakeNode( + "Div", {numerator_node->output(0), denominator_node->output(0)}); + auto layer_norm_node = + helper_->MakeNode("Mul", {layer_norm_pre_node->output(0), scale_node}); + auto pre_cast_node = + helper_->MakeNode("Add", {layer_norm_node->output(0), bias_node}); + helper_->AutoCast(pre_cast_node->output(0), output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); + return; + } + if (has_input_Bias) { + auto bias_info = GetInput("Bias"); + std::string bias_name = helper_->AutoCast( + bias_info[0].name, bias_info[0].dtype, P2ODataType::FP32); + std::string bias_node = ""; + if (begin_norm_axis_ == input_shape.size() - 1) { + bias_node = helper_->Reshape(bias_name, {-1}); + } else { + bias_node = helper_->MakeNode("Reshape", {bias_name, weight_shape_node}) + ->output(0); + } + auto layer_norm_node = helper_->MakeNode( + "Div", {numerator_node->output(0), denominator_node->output(0)}); + auto pre_cast_node = + helper_->MakeNode("Add", {layer_norm_node->output(0), bias_node}); + helper_->AutoCast(pre_cast_node->output(0), output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); + return; + } + if (has_input_Scale) { + auto scale_info = GetInput("Scale"); + std::string scale_name = helper_->AutoCast( + scale_info[0].name, scale_info[0].dtype, P2ODataType::FP32); + std::string scale_node = ""; + if (begin_norm_axis_ == input_shape.size() - 1) { + scale_node = helper_->Reshape(scale_name, {-1}); + } else { + scale_node = helper_->MakeNode("Reshape", {scale_name, weight_shape_node}) + ->output(0); + } + auto layer_norm_node = helper_->MakeNode( + "Div", {numerator_node->output(0), denominator_node->output(0)}); + auto pre_cast_node = + helper_->MakeNode("Mul", {layer_norm_node->output(0), scale_node}); + helper_->AutoCast(pre_cast_node->output(0), output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); + return; + } + auto pre_cast_node = helper_->MakeNode( + "Div", {numerator_node->output(0), denominator_node->output(0)}); + helper_->AutoCast(pre_cast_node->output(0), output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/layer_norm.h b/paddle2onnx/mapper/nn/layer_norm.h new file mode 100644 index 0000000000..6eebe062e0 --- /dev/null +++ b/paddle2onnx/mapper/nn/layer_norm.h @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LayerNormMapper : public Mapper { + public: + LayerNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("begin_norm_axis", &begin_norm_axis_); + GetAttr("epsilon", &epsilon_); + } + + void Opset7(); + + private: + int64_t begin_norm_axis_; + float epsilon_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/norm.cc b/paddle2onnx/mapper/nn/norm.cc new file mode 100755 index 0000000000..abe188f274 --- /dev/null +++ b/paddle2onnx/mapper/nn/norm.cc @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/norm.h" + +namespace paddle2onnx { +REGISTER_MAPPER(norm, NormMapper) + +void NormMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = helper_->MakeNode("LpNormalization", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "axis", axis_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/norm.h b/paddle2onnx/mapper/nn/norm.h new file mode 100644 index 0000000000..f3eb01bfd5 --- /dev/null +++ b/paddle2onnx/mapper/nn/norm.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class NormMapper : public Mapper { + public: + NormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + + void Opset7(); + + private: + int64_t axis_ = -1; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pad3d.cc b/paddle2onnx/mapper/nn/pad3d.cc new file mode 100644 index 0000000000..3040247364 --- /dev/null +++ b/paddle2onnx/mapper/nn/pad3d.cc @@ -0,0 +1,114 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/pad3d.h" + +namespace paddle2onnx { +REGISTER_MAPPER(pad3d, Pad3DMapper) + +int32_t Pad3DMapper::GetMinOpset(bool verbose) { + if (data_format_ == "NDHWC") { + Error() << "NDHWC format is not supported." << std::endl; + return -1; + } + if (mode_ == "circular") { + Error() << "Padding mode `circular` is not supported." << std::endl; + return -1; + } + if (HasInput("Paddings")) { + if (!IsConstantInput("Paddings")) { + Logger(verbose, 11) << "While Paddings is input and it's not a constant tensor, " << RequireOpset(11) << std::endl; + return 11; + } + std::vector paddings; + if (!TryGetInputValue("Paddings", &paddings)) { + Logger(verbose, 11) << "Cannot get constant value from input of Paddings, " << RequireOpset(11) << std::endl; + return 11; + } else { + if (paddings.size() != 6) { + Error() << "Size of paddings should be equal to 6, but now it's " << paddings.size() << std::endl; + return -1; + } + } + } else { + if (paddings_.size() != 6) { + Error() << "Size of paddings should be equal to 6, but now it's " << paddings_.size() << std::endl; + return -1; + } + } + return 7; +} + +std::vector Pad3DMapper::ConvertPaddingParameter(const std::vector& paddings) { + std::vector new_paddings(10, 0); + new_paddings[2] = paddings[4]; + new_paddings[3] = paddings[2]; + new_paddings[4] = paddings[0]; + new_paddings[7] = paddings[5]; + new_paddings[8] = paddings[3]; + new_paddings[9] = paddings[1]; + return new_paddings; +} + +void Pad3DMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto mode = mode_; + if (mode == "replicate") { + mode = "edge"; + } + std::vector paddings; + if (HasInput("Paddings")) { + Assert(TryGetInputValue("Paddings", &paddings), "Cannot get constant value from input of Paddings, " + RequireOpset(11)); + } else { + paddings.assign(paddings_.begin(), paddings_.end()); + } + std::vector new_paddings = ConvertPaddingParameter(paddings); + auto node = helper_->MakeNode("Pad", {input_info[0].name}, {output_info[0].name}); + AddAttribute(node, "mode", mode); + AddAttribute(node, "value", value_); + AddAttribute(node, "pads", new_paddings); +} + +void Pad3DMapper::Opset11() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto mode = mode_; + if (mode == "replicate") { + mode = "edge"; + } + + std::string paddings = ""; + if (HasInput("Paddings")) { + std::vector paddings_value; + if (TryGetInputValue("Paddings", &paddings_value)) { + std::vector new_paddings = ConvertPaddingParameter(paddings_value); + paddings = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, new_paddings); + } else { + auto pad_info = GetInput("Paddings"); + auto cast_pad = helper_->AutoCast(pad_info[0].name, pad_info[0].dtype, P2ODataType::INT64); + auto split_pads = helper_->Split(cast_pad, std::vector(6, 1), 0); + auto zero = helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(0)); + paddings = helper_->Concat({zero, zero, split_pads[4], split_pads[2], split_pads[0], zero, zero, split_pads[5], split_pads[3], split_pads[1]}, 0); + } + } else { + std::vector new_paddings = ConvertPaddingParameter(paddings_); + paddings = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, new_paddings); + } + auto value = helper_->Constant({}, GetOnnxDtype(input_info[0].dtype), value_); + auto node = helper_->MakeNode("Pad", {input_info[0].name, paddings, value}, {output_info[0].name}); + AddAttribute(node, "mode", mode); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pad3d.h b/paddle2onnx/mapper/nn/pad3d.h new file mode 100644 index 0000000000..3e9f50599d --- /dev/null +++ b/paddle2onnx/mapper/nn/pad3d.h @@ -0,0 +1,45 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Pad3DMapper : public Mapper { + public: + Pad3DMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("data_format", &data_format_); + GetAttr("mode", &mode_); + GetAttr("value", &value_); + GetAttr("paddings", &paddings_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset11(); + + private: + std::vector ConvertPaddingParameter(const std::vector& paddings); + std::string data_format_; + std::string mode_; + std::vector paddings_; + float value_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pool2d.cc b/paddle2onnx/mapper/nn/pool2d.cc new file mode 100644 index 0000000000..435e3cabaf --- /dev/null +++ b/paddle2onnx/mapper/nn/pool2d.cc @@ -0,0 +1,332 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/pool2d.h" + +#include +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(pool2d, Pool2dMapper) +REGISTER_MAPPER(max_pool2d_with_index, Pool2dMapper) + +bool Pool2dMapper::IsSameSpan(const int64_t& in_size, const int64_t& out_size) { + std::vector spans; + spans.reserve(out_size); + for (auto i = 0; i < out_size; ++i) { + int64_t start = std::floor(i * (in_size / out_size)); + int64_t end = std::ceil((i + 1) * (in_size / out_size)); + spans.push_back(end - start); + } + std::sort(spans.begin(), spans.end()); + return spans[0] == spans[spans.size() - 1]; +} + +bool Pool2dMapper::IsExportAsCustomOp() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + GetAttr("ksize", &k_size_); + if (global_pooling_ || (k_size_[0] == 1 && k_size_[1] == 1)) { + return false; + } + if (export_as_custom_op && adaptive_) { + bool is_1x1_kernel = true; + for (auto i : k_size_) { + if (i != 1) { + is_1x1_kernel = false; + } + } + if (is_1x1_kernel) { + return false; + } + for (auto one_input : input_info) { + for (auto i = 2; i < one_input.shape.size(); ++i) { + if (one_input.shape[i] == -1) { + return true; + } + } + } + int64_t input_h = input_info[0].shape[2]; + int64_t input_w = input_info[0].shape[3]; + int64_t output_h = output_info[0].shape[2]; + int64_t output_w = output_info[0].shape[3]; + if (output_h == -1 || output_w == -1 || !IsSameSpan(input_h, output_h) || + !IsSameSpan(input_w, output_w)) { + return true; + } + } + return false; +} + +void Pool2dMapper::ExportAsCustomOp() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = helper_->MakeNode(custom_op_name, {input_info[0].name}, + {output_info[0].name}); + node->set_domain("Paddle"); + AddAttribute(node, "pooling_type", pooling_type_); + for (auto i = 1; i < output_info[0].shape.size(); i++) { + if (output_info[0].shape[i] == -1) { + if (input_info[0].shape[i] == -1) { + Assert(false, + "Can not convert to AdaptivePool custom OP, because the shapes " + "of the input and output are unknown."); + } else { + output_info[0].shape[i] = input_info[0].shape[i]; + } + } + } + AddAttribute(node, "output_size", output_info[0].shape); + Warn() << "Pool2d is exported as custom operator: " << custom_op_name + << std::endl; + helper_->MakeValueInfo(input_info[0].name, input_info[0].dtype, + input_info[0].shape); + helper_->MakeValueInfo(output_info[0].name, output_info[0].dtype, + output_info[0].shape); +} + +void Pool2dMapper::AdaptivePool(const std::vector& input_info, + const std::vector& output_info) { + int64_t input_h = input_info[0].shape[2]; + int64_t input_w = input_info[0].shape[3]; + int64_t output_h = output_info[0].shape[2]; + int64_t output_w = output_info[0].shape[3]; + int64_t stride_h = std::floor(input_h / output_h); + int64_t stride_w = std::floor(input_w / output_w); + int64_t kernel_h = input_h - (output_h - 1) * stride_h; + int64_t kernel_w = input_w - (output_w - 1) * stride_w; + std::string onnx_pool_type; + if (OpType() == "max_pool2d_with_index") { + onnx_pool_type = "MaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[0]; + } + + std::shared_ptr* node_ptr; + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto node = helper_->MakeNode(onnx_pool_type, {input}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + std::vector kernel_size = {kernel_h, kernel_w}; + AddAttribute(node, "kernel_shape", kernel_size); + std::vector strides = {stride_h, stride_w}; + AddAttribute(node, "strides", strides); + + if (helper_->GetOpsetVersion() > 10) { + AddAttribute(node, "ceil_mode", static_cast(ceil_mode_)); + } + + std::string auto_pad = "NOTSET"; + if (padding_algorithm_ == "SAME") { + auto_pad = "SAME_UPPER"; + } else if (padding_algorithm_ == "VALID") { + auto_pad = "VALID"; + } + AddAttribute(node, "auto_pad", auto_pad); + if (pooling_type_ == "avg") { + AddAttribute(node, "count_include_pad", static_cast(exclusive_)); + } +} + +void Pool2dMapper::NoAdaptivePool(const std::vector& input_info, + const std::vector& output_info) { + std::vector input_shape = input_info[0].shape; + if (pads_.size() == 2) { + pads_.push_back(pads_[0]); + pads_.push_back(pads_[1]); + } else if (pads_.size() == 4) { + std::vector index = {0, 2, 1, 3}; + std::vector copy = pads_; + for (auto i = 0; i < index.size(); ++i) { + pads_[i] = copy[index[i]]; + } + } + if (input_shape[2] > 0 && input_shape[2] + pads_[0] < k_size_[0]) { + k_size_[0] = input_shape[2] + pads_[0]; + } + if (input_shape[3] > 0 && input_shape[3] + pads_[1] < k_size_[1]) { + k_size_[1] = input_shape[3] + pads_[1]; + } + + int64_t max_ksize = *std::max_element(std::begin(k_size_), std::end(k_size_)); + int64_t max_pads = *std::max_element(std::begin(pads_), std::end(pads_)); + auto input_x = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + if (max_ksize <= max_pads) { + std::vector onnx_paddings = {0, 0, pads_[0], pads_[1], + 0, 0, pads_[2], pads_[3]}; + std::vector inputs_names = {input_x}; + if (helper_->GetOpsetVersion() >= 11) { + std::string paddings_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), onnx_paddings); + inputs_names.push_back(paddings_node); + std::vector val = {0.0}; + std::string val_node = + helper_->Constant(GetOnnxDtype(P2ODataType::FP32), val); + inputs_names.push_back(val_node); + } + auto node = helper_->MakeNode("Pad", inputs_names); + std::string mode = "constant"; + AddAttribute(node, "mode", mode); + if (helper_->GetOpsetVersion() < 11) { + AddAttribute(node, "pads", onnx_paddings); + float val = 0.0; + AddAttribute(node, "value", val); + } + input_x = node->output(0); + pads_.clear(); + pads_.resize(4, 0); + } + std::string onnx_pool_type; + if (OpType() == "max_pool2d_with_index") { + onnx_pool_type = "MaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[0]; + } + auto node = helper_->MakeNode(onnx_pool_type, {input_x}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + + AddAttribute(node, "kernel_shape", k_size_); + AddAttribute(node, "strides", strides_); + std::string auto_pad = "NOTSET"; + if (padding_algorithm_ == "SAME") { + auto_pad = "SAME_UPPER"; + AddAttribute(node, "auto_pad", auto_pad); + } else if (padding_algorithm_ == "VALID") { + auto_pad = "VALID"; + AddAttribute(node, "auto_pad", auto_pad); + } else { + AddAttribute(node, "pads", pads_); + } + if (OpType() != "max_pool2d_with_index" && helper_->GetOpsetVersion() >= 10) { + AddAttribute(node, "ceil_mode", static_cast(ceil_mode_)); + } + if (OpType() != "max_pool2d_with_index" && pooling_type_ == "avg") { + AddAttribute(node, "count_include_pad", static_cast(exclusive_)); + } +} + +int32_t Pool2dMapper::GetMinOpset(bool verbose) { + // NHWC is not supported + if (data_format_ == "NHWC") { + Error() << "NHWC format is not supported." << std::endl; + return -1; + } + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + if (IsAttrVar("ksize")) { + Error() << "While Attribute(ksize)'s type is Tensor, it's not " + "supported." + << std::endl; + return -1; + } else { + GetAttr("ksize", &k_size_); + } + + if (global_pooling_ || (k_size_[0] == 1 && k_size_[1] == 1)) { + if (ceil_mode_) { + Logger(verbose, 10) << "While ceil_model is True, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; + } + + if (adaptive_) { + for (auto one_input : input_info) { + for (auto i = 2; i < one_input.shape.size(); ++i) { + if (one_input.shape[i] == -1) { + if (export_as_custom_op) { + return 7; + } else { + Error() << "Adaptive only support static input shape." << std::endl; + return -1; + } + } + } + } + int64_t input_h = input_info[0].shape[2]; + int64_t input_w = input_info[0].shape[3]; + int64_t output_h = output_info[0].shape[2]; + int64_t output_w = output_info[0].shape[3]; + if (output_h == -1 || output_w == -1 || !IsSameSpan(input_h, output_h) || + !IsSameSpan(input_w, output_w)) { + if (export_as_custom_op) { + return 7; + } else { + Error() << "Cannot convert adaptive pool with input_size: " << input_h + << " " << input_h << " output_size: " << output_h << " " + << output_w << std::endl; + return -1; + } + } + } + if (OpType() == "max_pool2d_with_index") { + return 9; + } + auto iter = op_mapper_.find(pooling_type_); + if (op_mapper_.end() == iter) { + Error() << "Cannot find " << pooling_type_ << " in pool op_mapper." + << std::endl; + return -1; + } + + if (ceil_mode_) { + Logger(verbose, 10) << "While ceil_model is True, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; +} + +void Pool2dMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + GetAttr("ksize", &k_size_); + + bool is_1x1_kernel = true; + for (auto i : k_size_) { + if (i != 1) { + is_1x1_kernel = false; + } + } + + if (global_pooling_ || (adaptive_ && is_1x1_kernel)) { + std::string onnx_pool_type; + if (OpType() == "max_pool2d_with_index") { + onnx_pool_type = "GlobalMaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[1]; + } + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto output = helper_->MakeNode(onnx_pool_type, {input})->output(0); + helper_->AutoCast(output, output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + } else if (adaptive_) { + AdaptivePool(input_info, output_info); + } else { + NoAdaptivePool(input_info, output_info); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pool2d.h b/paddle2onnx/mapper/nn/pool2d.h new file mode 100644 index 0000000000..bbaf7c7879 --- /dev/null +++ b/paddle2onnx/mapper/nn/pool2d.h @@ -0,0 +1,67 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Pool2dMapper : public Mapper { + public: + Pool2dMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + op_mapper_["max"] = {"MaxPool", "GlobalMaxPool"}; + op_mapper_["avg"] = {"AveragePool", "GlobalAveragePool"}; + GetAttr("global_pooling", &global_pooling_); + GetAttr("adaptive", &adaptive_); + GetAttr("strides", &strides_); + GetAttr("paddings", &pads_); + if (OpType() != "max_pool2d_with_index") { + GetAttr("pooling_type", &pooling_type_); + GetAttr("data_format", &data_format_); + GetAttr("ceil_mode", &ceil_mode_); + GetAttr("padding_algorithm", &padding_algorithm_); + GetAttr("exclusive", &exclusive_); + exclusive_ = !exclusive_; + } + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void ExportAsCustomOp(); + bool IsExportAsCustomOp(); + + private: + bool IsSameSpan(const int64_t& in_size, const int64_t& out_size); + void AdaptivePool(const std::vector& input_info, + const std::vector& output_info); + void NoAdaptivePool(const std::vector& input_info, + const std::vector& output_info); + bool ceil_mode_; + bool global_pooling_; + bool adaptive_; + bool exclusive_; + std::string data_format_; + std::string pooling_type_; + std::string padding_algorithm_; + std::vector k_size_; + std::vector pads_; + std::vector strides_; + std::map> op_mapper_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pool3d.cc b/paddle2onnx/mapper/nn/pool3d.cc new file mode 100644 index 0000000000..fb6916fa10 --- /dev/null +++ b/paddle2onnx/mapper/nn/pool3d.cc @@ -0,0 +1,262 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/pool3d.h" + +#include +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(pool3d, Pool3dMapper) +REGISTER_MAPPER(max_pool3d_with_index, Pool3dMapper) + +bool Pool3dMapper::IsSameSpan(const int64_t& in_size, const int64_t& out_size) { + std::vector spans; + spans.reserve(out_size); + for (auto i = 0; i < out_size; ++i) { + int64_t start = std::floor(i * (in_size / out_size)); + int64_t end = std::ceil((i + 1) * (in_size / out_size)); + spans.push_back(end - start); + } + std::sort(spans.begin(), spans.end()); + return spans[0] == spans[spans.size() - 1]; +} + +void Pool3dMapper::AdaptivePool(const std::vector& input_info, + const std::vector& output_info) { + int64_t input_d = input_info[0].shape[2]; + int64_t input_h = input_info[0].shape[3]; + int64_t input_w = input_info[0].shape[4]; + int64_t output_d = output_info[0].shape[2]; + int64_t output_h = output_info[0].shape[3]; + int64_t output_w = output_info[0].shape[4]; + int64_t stride_d = std::floor(input_d / output_d); + int64_t stride_h = std::floor(input_h / output_h); + int64_t stride_w = std::floor(input_w / output_w); + int64_t kernel_d = input_d - (output_d - 1) * stride_d; + int64_t kernel_h = input_h - (output_h - 1) * stride_h; + int64_t kernel_w = input_w - (output_w - 1) * stride_w; + std::string onnx_pool_type; + if (OpType() == "max_pool3d_with_index") { + onnx_pool_type = "MaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[0]; + } + std::shared_ptr* node_ptr; + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto node = helper_->MakeNode(onnx_pool_type, {input}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + std::vector kernel_size = {kernel_d, kernel_h, kernel_w}; + AddAttribute(node, "kernel_shape", kernel_size); + std::vector strides = {stride_d, stride_h, stride_w}; + AddAttribute(node, "strides", strides); + + if (helper_->GetOpsetVersion() > 10) { + AddAttribute(node, "ceil_mode", static_cast(ceil_mode_)); + } + + std::string auto_pad = "NOTSET"; + if (padding_algorithm_ == "SAME") { + auto_pad = "SAME_UPPER"; + } else if (padding_algorithm_ == "VALID") { + auto_pad = "VALID"; + } + AddAttribute(node, "auto_pad", auto_pad); + if (pooling_type_ == "avg") { + AddAttribute(node, "count_include_pad", static_cast(exclusive_)); + } +} + +void Pool3dMapper::NoAdaptivePool(const std::vector& input_info, + const std::vector& output_info) { + std::vector input_shape = input_info[0].shape; + if (pads_.size() == 3) { + pads_.push_back(pads_[0]); + pads_.push_back(pads_[1]); + pads_.push_back(pads_[2]); + } else if (pads_.size() == 6) { + std::vector index = {0, 2, 4, 1, 3, 5}; + std::vector copy = pads_; + for (auto i = 0; i < index.size(); ++i) { + pads_[i] = copy[index[i]]; + } + } + if (input_shape[2] > 0 && input_shape[2] + pads_[0] < k_size_[0]) { + k_size_[0] = input_shape[2] + pads_[0]; + } + if (input_shape[3] > 0 && input_shape[3] + pads_[1] < k_size_[1]) { + k_size_[1] = input_shape[3] + pads_[1]; + } + if (input_shape[4] > 0 && input_shape[4] + pads_[2] < k_size_[2]) { + k_size_[2] = input_shape[4] + pads_[2]; + } + + int64_t max_ksize = *std::max_element(std::begin(k_size_), std::end(k_size_)); + int64_t max_pads = *std::max_element(std::begin(pads_), std::end(pads_)); + auto input_x = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + if (max_ksize <= max_pads) { + std::vector onnx_paddings = {0, 0, pads_[0], pads_[1], pads_[2], + 0, 0, pads_[3], pads_[4], pads_[5]}; + std::vector inputs_names = {input_x}; + if (helper_->GetOpsetVersion() >= 11) { + std::string paddings_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), onnx_paddings); + inputs_names.push_back(paddings_node); + std::vector val = {0.0}; + std::string val_node = + helper_->Constant(GetOnnxDtype(P2ODataType::FP32), val); + inputs_names.push_back(val_node); + } + auto node = helper_->MakeNode("Pad", inputs_names); + std::string mode = "constant"; + AddAttribute(node, "mode", mode); + if (helper_->GetOpsetVersion() < 11) { + AddAttribute(node, "pads", onnx_paddings); + float val = 0.0; + AddAttribute(node, "value", val); + } + input_x = node->output(0); + pads_.clear(); + pads_.resize(6, 0); + } + std::string onnx_pool_type; + if (OpType() == "max_pool3d_with_index") { + onnx_pool_type = "MaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[0]; + } + auto node = helper_->MakeNode(onnx_pool_type, {input_x}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + + AddAttribute(node, "kernel_shape", k_size_); + AddAttribute(node, "strides", strides_); + std::string auto_pad = "NOTSET"; + if (padding_algorithm_ == "SAME") { + auto_pad = "SAME_UPPER"; + AddAttribute(node, "auto_pad", auto_pad); + } else if (padding_algorithm_ == "VALID") { + auto_pad = "VALID"; + AddAttribute(node, "auto_pad", auto_pad); + } else { + AddAttribute(node, "pads", pads_); + } + if (OpType() != "max_pool3d_with_index" && helper_->GetOpsetVersion() >= 10) { + AddAttribute(node, "ceil_mode", static_cast(ceil_mode_)); + } + if (pooling_type_ == "avg") { + AddAttribute(node, "count_include_pad", static_cast(exclusive_)); + } +} + +int32_t Pool3dMapper::GetMinOpset(bool verbose) { + // NHWC is not supported + if (data_format_ == "NDHWC") { + Error() << "NDHWC format is not supported." << std::endl; + return -1; + } + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + if (global_pooling_ || + (k_size_[0] == 1 && k_size_[1] == 1 && k_size_[2] == 1)) { + if (ceil_mode_) { + Logger(verbose, 10) << "While ceil_model is True, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; + } + + if (adaptive_) { + for (auto one_input : input_info) { + for (auto i = 2; i < one_input.shape.size(); ++i) { + if (one_input.shape[i] == -1) { + Error() << "Adaptive only support static input shape." << std::endl; + return -1; + } + } + } + int64_t input_d = input_info[0].shape[2]; + int64_t input_h = input_info[0].shape[3]; + int64_t input_w = input_info[0].shape[4]; + int64_t output_d = output_info[0].shape[2]; + int64_t output_h = output_info[0].shape[3]; + int64_t output_w = output_info[0].shape[4]; + if (!IsSameSpan(input_h, output_h) || !IsSameSpan(input_w, output_w) || + !IsSameSpan(input_d, output_d)) { + Error() << "Cannot convert adaptive pool with input_size: " << input_d + << " " << input_h << " " << input_w + << " output_size: " << output_d << " " << output_h << " " + << output_w << std::endl; + return -1; + } + } + if (OpType() == "max_pool3d_with_index") { + return 9; + } + auto iter = op_mapper_.find(pooling_type_); + if (op_mapper_.end() == iter) { + Error() << "Cannot find " << pooling_type_ << " in pool op_mapper." + << std::endl; + return -1; + } + + if (ceil_mode_) { + Logger(verbose, 10) << "While ceil_model is True, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; +} + +void Pool3dMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + bool is_1x1_kernel = true; + for (auto i : k_size_) { + if (i != 1) { + is_1x1_kernel = false; + } + } + + if (global_pooling_ || (adaptive_ && is_1x1_kernel)) { + std::string onnx_pool_type; + if (OpType() == "max_pool3d_with_index") { + onnx_pool_type = "GlobalMaxPool"; + } else { + auto iter = op_mapper_.find(pooling_type_); + onnx_pool_type = iter->second[1]; + } + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + auto output = helper_->MakeNode(onnx_pool_type, {input})->output(0); + helper_->AutoCast(output, output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + } else if (adaptive_) { + AdaptivePool(input_info, output_info); + } else { + NoAdaptivePool(input_info, output_info); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/pool3d.h b/paddle2onnx/mapper/nn/pool3d.h new file mode 100644 index 0000000000..9be0c901df --- /dev/null +++ b/paddle2onnx/mapper/nn/pool3d.h @@ -0,0 +1,66 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Pool3dMapper : public Mapper { + public: + Pool3dMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + op_mapper_["max"] = {"MaxPool", "GlobalMaxPool"}; + op_mapper_["avg"] = {"AveragePool", "GlobalAveragePool"}; + GetAttr("global_pooling", &global_pooling_); + GetAttr("adaptive", &adaptive_); + GetAttr("strides", &strides_); + GetAttr("paddings", &pads_); + GetAttr("ksize", &k_size_); + if (OpType() != "max_pool3d_with_index") { + GetAttr("pooling_type", &pooling_type_); + GetAttr("data_format", &data_format_); + GetAttr("ceil_mode", &ceil_mode_); + GetAttr("padding_algorithm", &padding_algorithm_); + GetAttr("exclusive", &exclusive_); + exclusive_ = !exclusive_; + } + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + bool IsSameSpan(const int64_t& in_size, const int64_t& out_size); + void AdaptivePool(const std::vector& input_info, + const std::vector& output_info); + void NoAdaptivePool(const std::vector& input_info, + const std::vector& output_info); + bool ceil_mode_; + bool global_pooling_; + bool adaptive_; + bool exclusive_; + std::string data_format_; + std::string pooling_type_; + std::string padding_algorithm_; + std::vector k_size_; + std::vector pads_; + std::vector strides_; + std::map> op_mapper_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/rnn.cc b/paddle2onnx/mapper/nn/rnn.cc new file mode 100644 index 0000000000..1c6f609fb0 --- /dev/null +++ b/paddle2onnx/mapper/nn/rnn.cc @@ -0,0 +1,156 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/rnn.h" +#include + +namespace paddle2onnx { +REGISTER_MAPPER(rnn, RnnMapper) + +int32_t RnnMapper::GetMinOpset(bool verbose) { + return 7; +} + +std::string RnnMapper::ReformWeight(const std::string& weight, const int64_t& size, const std::vector& perm) { + std::vector items; + for (size_t i = 0; i < perm.size(); i += 2) { + auto item = helper_->Slice(weight, {1}, {perm[i] * size}, {perm[i + 1] * size}); + items.push_back(item); + } + return helper_->Concat(items, 1); +} + +std::vector RnnMapper::MakeParamInputs(int64_t layer_index) { + auto weight_list_info = GetInput("WeightList"); + int64_t bidirect_len = is_bidirec_ ? 4 : 2; + int64_t all_layer_param_len = weight_list_info.size(); + int64_t single_layer_param_len = std::floor(all_layer_param_len / num_layers_); + int64_t weight_start_idx = layer_index * bidirect_len; + int64_t weight_end_idx = weight_start_idx + bidirect_len; + int64_t bias_start_idx = weight_start_idx + std::floor(all_layer_param_len / 2); + int64_t bias_end_idx = bias_start_idx + bidirect_len; + + std::vector unsqueezed_weights; + for (auto i = weight_start_idx; i < weight_end_idx; ++i) { + unsqueezed_weights.push_back(helper_->Unsqueeze(weight_list_info[i].name, {0})); + } + for (auto i = bias_start_idx; i < bias_end_idx; ++i) { + unsqueezed_weights.push_back(helper_->Unsqueeze(weight_list_info[i].name, {0})); + } + + std::vector input_weight; + std::vector hidden_weight; + for (size_t i = 0; i < bidirect_len; i += 2) { + input_weight.push_back(unsqueezed_weights[i]); + } + for (size_t i = 1; i < bidirect_len; i += 2) { + hidden_weight.push_back(unsqueezed_weights[i]); + } + std::vector input_bias; + std::vector hidden_bias; + for (size_t i = bidirect_len; i < 2 * bidirect_len; i += 2) { + input_bias.push_back(unsqueezed_weights[i]); + } + for (size_t i = bidirect_len + 1; i < 2 * bidirect_len; i += 2) { + hidden_bias.push_back(unsqueezed_weights[i]); + } + + auto input_weight_tensor = helper_->Concat(input_weight, 0); + auto hidden_weight_tensor = helper_->Concat(hidden_weight, 0); + auto input_bias_tensor = helper_->Concat(input_bias, 0); + auto hidden_bias_tensor = helper_->Concat(hidden_bias, 0); + + std::vector reform_permutation; + if (mode_ == "LSTM") { + std::vector perm({0, 1, 3, 4, 1, 3}); + reform_permutation.assign(perm.begin(), perm.end()); + } else if (mode_ == "GRU") { + std::vector perm({1, 2, 0, 1, 2, 3}); + reform_permutation.assign(perm.begin(), perm.end()); + } + input_weight_tensor = ReformWeight(input_weight_tensor, hidden_size_, reform_permutation); + hidden_weight_tensor = ReformWeight(hidden_weight_tensor, hidden_size_, reform_permutation); + input_bias_tensor = ReformWeight(input_bias_tensor, hidden_size_, reform_permutation); + hidden_bias_tensor = ReformWeight(hidden_bias_tensor, hidden_size_, reform_permutation); + + std::vector outputs; + outputs.push_back(input_weight_tensor); + outputs.push_back(hidden_weight_tensor); + outputs.push_back(helper_->Concat({input_bias_tensor, hidden_bias_tensor}, 1)); + outputs.push_back(""); + return outputs; +} + +std::vector RnnMapper::MakeInitParamInputs(int64_t layer_index) { + std::vector outputs; + auto prestate_info = GetInput("PreState"); + int64_t bidirect_len = is_bidirec_ ? 2 : 1; + auto init_h = helper_->Slice(prestate_info[0].name, {0}, {layer_index * bidirect_len}, {layer_index * bidirect_len + bidirect_len}); + outputs.push_back(init_h); + if (mode_ == "GRU") { + return outputs; + } + auto init_c = helper_->Slice(prestate_info[1].name, {0}, {layer_index * bidirect_len}, {layer_index * bidirect_len + bidirect_len}); + outputs.push_back(init_c); + return outputs; +} + +void RnnMapper::Opset7() { + auto input_info = GetInput("Input"); + auto state_info = GetOutput("State"); + auto out_info = GetOutput("Out"); + auto input = input_info[0].name; + if (mode_ == "LSTM") { + std::string h_out = ""; + std::string c_out = ""; + for (auto i = 0; i < num_layers_; ++i) { + auto param_inputs = MakeParamInputs(i); + auto init_param_inputs = MakeInitParamInputs(i); + std::vector inputs({input}); + inputs.insert(inputs.end(), param_inputs.begin(), param_inputs.end()); + inputs.insert(inputs.end(), init_param_inputs.begin(), init_param_inputs.end()); + auto node = helper_->MakeNode("LSTM", inputs, 3); + std::string direction = is_bidirec_ ? "bidirectional" : "forward"; + AddAttribute(node, "direction", direction); + AddAttribute(node, "hidden_size", hidden_size_); + input = helper_->Transpose(node->output(0), {0, 2, 1, 3}); + input = helper_->Reshape(input, {0, 0, -1}); + h_out = node->output(1); + c_out = node->output(2); + } + helper_->MakeNode("Identity", {h_out}, {state_info[0].name}); + helper_->MakeNode("Identity", {c_out}, {state_info[1].name}); + helper_->MakeNode("Identity", {input}, {out_info[0].name}); + } else if (mode_ == "GRU") { + std::string h_out = ""; + for (auto i = 0; i < num_layers_; ++i) { + auto param_inputs = MakeParamInputs(i); + auto init_param_inputs = MakeInitParamInputs(i); + std::vector inputs({input}); + inputs.insert(inputs.end(), param_inputs.begin(), param_inputs.end()); + inputs.insert(inputs.end(), init_param_inputs.begin(), init_param_inputs.end()); + auto node = helper_->MakeNode("GRU", inputs, 2); + std::string direction = is_bidirec_ ? "bidirectional" : "forward"; + AddAttribute(node, "direction", direction); + AddAttribute(node, "hidden_size", hidden_size_); + AddAttribute(node, "linear_before_reset", int64_t(1)); + input = helper_->Transpose(node->output(0), {0, 2, 1, 3}); + input = helper_->Reshape(input, {0, 0, -1}); + h_out = node->output(1); + } + helper_->MakeNode("Identity", {h_out}, {state_info[0].name}); + helper_->MakeNode("Identity", {input}, {out_info[0].name}); + } +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/rnn.h b/paddle2onnx/mapper/nn/rnn.h new file mode 100644 index 0000000000..b2ef24df1f --- /dev/null +++ b/paddle2onnx/mapper/nn/rnn.h @@ -0,0 +1,58 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class RnnMapper : public Mapper { + public: + RnnMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + MarkAsExperimentalOp(); + GetAttr("num_layers", &num_layers_); + GetAttr("input_size", &input_size_); + GetAttr("hidden_size", &hidden_size_); + GetAttr("seed", &seed_); + GetAttr("dropout_prob", &dropout_prob_); + GetAttr("mode", &mode_); + GetAttr("is_bidirec", &is_bidirec_); + if (HasAttr("is_test")) { + GetAttr("is_test", &is_test_); + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector MakeParamInputs(int64_t layer_index); + std::vector MakeInitParamInputs(int64_t layer_index); + std::string ReformWeight(const std::string& weight, const int64_t& size, const std::vector& perm); + int64_t num_layers_; + int64_t input_size_; + int64_t hidden_size_; + int64_t seed_; + float dropout_prob_; + std::string mode_; + bool is_test_ = false; + bool is_bidirec_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/shape.cc b/paddle2onnx/mapper/nn/shape.cc new file mode 100644 index 0000000000..d82a1d00f4 --- /dev/null +++ b/paddle2onnx/mapper/nn/shape.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/shape.h" + +namespace paddle2onnx { +REGISTER_MAPPER(shape, ShapeMapper) + +void ShapeMapper::Opset7() { + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Out"); + + auto shape_out = helper_->MakeNode("Shape", {input_info[0].name})->output(0); + helper_->AutoCast(shape_out, output_info[0].name, P2ODataType::INT64, + output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/shape.h b/paddle2onnx/mapper/nn/shape.h new file mode 100644 index 0000000000..6fd1867c66 --- /dev/null +++ b/paddle2onnx/mapper/nn/shape.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ShapeMapper : public Mapper { + public: + ShapeMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/softmax_with_cross_entropy.cc b/paddle2onnx/mapper/nn/softmax_with_cross_entropy.cc new file mode 100644 index 0000000000..14c64e9d07 --- /dev/null +++ b/paddle2onnx/mapper/nn/softmax_with_cross_entropy.cc @@ -0,0 +1,126 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/nn/softmax_with_cross_entropy.h" + +namespace paddle2onnx { +REGISTER_MAPPER(softmax_with_cross_entropy, SoftmaxCrossEntropyLossMapper) + +int32_t SoftmaxCrossEntropyLossMapper::GetMinOpset(bool verbose) { + auto logits = GetInput("Logits"); + std::vector logits_shape = logits[0].shape; + if (logits_shape.size() < 2) { + Error() << "SoftmaxCrossEntropyLoss in onnx not support 1D logits." + << std::endl; + return -1; + } + Logger(verbose, 12) << RequireOpset(12) << std::endl; + return 12; +} + +void SoftmaxCrossEntropyLossMapper::Opset12() { + auto logits = GetInput("Logits"); + auto labels = GetInput("Label"); + + auto loss = GetOutput("Loss"); + auto softmax = GetOutput("Softmax"); + std::vector logits_shape = logits[0].shape; + auto dim = logits[0].Rank(); + if (axis_ < 0) { + axis_ += dim; + } + if (soft_label_) { + std::vector split; + split.resize(logits_shape[axis_], 1); + std::vector axes_val = {axis_}; + std::string axes_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), axes_val); + if (axis_ == dim - 1) { + auto logsoftmax_node = helper_->MakeNode("LogSoftmax", {logits[0].name}); + AddAttribute(logsoftmax_node, "axis", axis_); + helper_->MakeNode("Exp", {logsoftmax_node->output(0)}, {softmax[0].name}); + auto mul_result = helper_->MakeNode( + "Mul", {logsoftmax_node->output(0), labels[0].name}); + if (helper_->GetOpsetVersion() < 13) { + auto reducesum_node = + helper_->MakeNode("ReduceSum", {mul_result->output(0)}); + AddAttribute(reducesum_node, "axes", axes_val); + helper_->MakeNode("Neg", {reducesum_node->output(0)}, {loss[0].name}); + } else { + auto reducesum_node = + helper_->MakeNode("ReduceSum", {mul_result->output(0), axes_node}); + helper_->MakeNode("Neg", {reducesum_node->output(0)}, {loss[0].name}); + } + } else { + auto perm = Arange(0, dim); + perm[dim - 1] = axis_; + perm[axis_] = dim - 1; + auto output = helper_->Transpose(logits[0].name, perm); + auto logsoftmax_node = helper_->MakeNode("LogSoftmax", {output}); + AddAttribute(logsoftmax_node, "axis", int64_t(-1)); + auto transpose_logsoftmax_node = + helper_->Transpose(logsoftmax_node->output(0), perm); + helper_->MakeNode("Exp", {transpose_logsoftmax_node}, {softmax[0].name}); + auto mul_result = + helper_->MakeNode("Mul", {transpose_logsoftmax_node, labels[0].name}); + if (helper_->GetOpsetVersion() < 13) { + auto reducesum_node = + helper_->MakeNode("ReduceSum", {mul_result->output(0)}); + AddAttribute(reducesum_node, "axes", axes_val); + helper_->MakeNode("Neg", {reducesum_node->output(0)}, {loss[0].name}); + } else { + auto reducesum_node = + helper_->MakeNode("ReduceSum", {mul_result->output(0), axes_node}); + helper_->MakeNode("Neg", {reducesum_node->output(0)}, {loss[0].name}); + } + } + } else { + if (axis_ == 1) { + auto squeeze_node = helper_->Squeeze(labels[0].name, {axis_}); + auto node = helper_->MakeNode("SoftmaxCrossEntropyLoss", + {logits[0].name, squeeze_node}, 2); + AddAttribute(node, "ignore_index", ignore_index_); + AddAttribute(node, "reduction", "none"); + auto loss_node = + helper_->Unsqueeze(node->output(0), loss[0].name, {axis_}); + // onnx output is log(softmax), but paddle output is softmax + helper_->MakeNode("Exp", {node->output(1)}, {softmax[0].name}); + } else { + std::vector perm = Arange(0, dim); + perm[1] = axis_; + perm[axis_] = 1; + auto transpose_logits = helper_->MakeNode("Transpose", {logits[0].name}); + AddAttribute(transpose_logits, "perm", perm); + auto transpose_labels = helper_->MakeNode("Transpose", {labels[0].name}); + AddAttribute(transpose_labels, "perm", perm); + auto squeeze_labels = helper_->Squeeze(transpose_labels->output(0), {1}); + auto node = + helper_->MakeNode("SoftmaxCrossEntropyLoss", + {transpose_logits->output(0), squeeze_labels}, 2); + AddAttribute(node, "ignore_index", ignore_index_); + AddAttribute(node, "reduction", "none"); + auto unsqueeze_node = helper_->Unsqueeze(node->output(0), {1}); + auto revert_transpose_logits = + helper_->MakeNode("Transpose", {unsqueeze_node}, {loss[0].name}); + AddAttribute(revert_transpose_logits, "perm", perm); + auto revert_transpose_softmax = + helper_->MakeNode("Transpose", {node->output(1)}); + AddAttribute(revert_transpose_softmax, "perm", perm); + // onnx output is log(softmax), but paddle output is softmax + helper_->MakeNode("Exp", {revert_transpose_softmax->output(0)}, + {softmax[0].name}); + } + } +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/nn/softmax_with_cross_entropy.h b/paddle2onnx/mapper/nn/softmax_with_cross_entropy.h new file mode 100644 index 0000000000..960f978de6 --- /dev/null +++ b/paddle2onnx/mapper/nn/softmax_with_cross_entropy.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class SoftmaxCrossEntropyLossMapper : public Mapper { + public: + SoftmaxCrossEntropyLossMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + GetAttr("soft_label", &soft_label_); + GetAttr("ignore_index", &ignore_index_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset12(); + + private: + int64_t axis_ = -1; + bool soft_label_ = false; + int64_t ignore_index_ = -100; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/onnx_helper.cc b/paddle2onnx/mapper/onnx_helper.cc new file mode 100644 index 0000000000..6f0b0142f3 --- /dev/null +++ b/paddle2onnx/mapper/onnx_helper.cc @@ -0,0 +1,534 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/onnx_helper.h" + +#include + +namespace paddle2onnx { + +void AddAttribute(std::shared_ptr node, + const std::string& name, const int64_t& value) { + for (int i = 0; i < node->attribute_size(); ++i) { + if (node->attribute(i).name() == name) { + node->mutable_attribute(i)->set_i(value); + node->mutable_attribute(i)->set_type(ONNX_NAMESPACE::AttributeProto::INT); + return; + } + } + auto attr = node->add_attribute(); + attr->set_name(name); + attr->set_i(value); + attr->set_type(ONNX_NAMESPACE::AttributeProto::INT); +} + +void AddAttribute(std::shared_ptr node, + const std::string& name, const float& value) { + for (int i = 0; i < node->attribute_size(); ++i) { + if (node->attribute(i).name() == name) { + node->mutable_attribute(i)->set_f(value); + node->mutable_attribute(i)->set_type( + ONNX_NAMESPACE::AttributeProto::FLOAT); + return; + } + } + auto attr = node->add_attribute(); + attr->set_name(name); + attr->set_f(value); + attr->set_type(ONNX_NAMESPACE::AttributeProto::FLOAT); +} + +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::string& value) { + auto attr = node->add_attribute(); + attr->set_name(name); + attr->set_s(value); + attr->set_type(ONNX_NAMESPACE::AttributeProto::STRING); +} + +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::vector& values) { + auto attr = node->add_attribute(); + attr->set_name(name); + for (auto& item : values) { + attr->add_ints(item); + } + attr->set_type(ONNX_NAMESPACE::AttributeProto::INTS); +} + +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::vector& values) { + auto attr = node->add_attribute(); + attr->set_name(name); + for (auto& item : values) { + attr->add_floats(item); + } + attr->set_type(ONNX_NAMESPACE::AttributeProto::FLOAT); +} + +void AddAttribute(std::shared_ptr node, + const std::string& name, + ONNX_NAMESPACE::TensorProto_DataType dtype) { + auto attr = node->add_attribute(); + attr->set_name(name); + attr->set_i(static_cast(dtype)); + attr->set_type(ONNX_NAMESPACE::AttributeProto::INT); +} + +ONNX_NAMESPACE::TensorProto_DataType GetOnnxDtype(int32_t paddle_dtype) { + Assert((paddle_dtype >= 0 && paddle_dtype <= 6) || paddle_dtype == 20 || + paddle_dtype == 21, + "Unknow paddle data type: " + std::to_string(paddle_dtype) + + " While call GetOnnxDtype."); + auto onnx_dtype = ONNX_NAMESPACE::TensorProto::FLOAT; + if (paddle_dtype == P2ODataType::BOOL) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::BOOL; + } else if (paddle_dtype == P2ODataType::INT8) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::INT8; + } else if (paddle_dtype == P2ODataType::INT16) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::INT16; + } else if (paddle_dtype == P2ODataType::INT32) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::INT32; + } else if (paddle_dtype == P2ODataType::INT64) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::INT64; + } else if (paddle_dtype == P2ODataType::FP16) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::FLOAT16; + } else if (paddle_dtype == P2ODataType::FP32) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::FLOAT; + } else if (paddle_dtype == P2ODataType::FP64) { + onnx_dtype = ONNX_NAMESPACE::TensorProto::DOUBLE; + } else { + onnx_dtype = ONNX_NAMESPACE::TensorProto::UINT8; + } + return onnx_dtype; +} + +std::shared_ptr MakeConstant(const std::string& name, + const Weight& weight) { + auto node = std::make_shared(); + node->set_op_type("Constant"); + node->add_output(name); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(name); + auto onnx_dtype = GetOnnxDtype(weight.dtype); + tensor->set_data_type(onnx_dtype); + for (auto& dim : weight.shape) { + tensor->add_dims(dim); + } + tensor->set_raw_data(std::string(weight.buffer.data(), weight.buffer.size())); + return node; +} + +// std::shared_ptr OnnxHelper::MakeConstant( +// const Weight& weight) { +// auto node_name = MapperHelper::Get()->GenName("auto.constant"); +// return MakeConstant(node_name, weight); +//} +// +// std::shared_ptr OnnxHelper::MakeConstant( +// const std::string& name, const Weight& weight) { +// auto node = std::make_shared(); +// node->set_op_type("Constant"); +// node->add_output(name); +// auto attr = node->add_attribute(); +// attr->set_name("value"); +// attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); +// auto tensor = attr->mutable_t(); +// tensor->set_name(name); +// auto onnx_dtype = GetOnnxDtype(weight.dtype); +// tensor->set_data_type(onnx_dtype); +// for (auto& dim : weight.shape) { +// tensor->add_dims(dim); +// } +// tensor->set_raw_data(std::string(weight.buffer.data(), +// weight.buffer.size())); +// nodes.push_back(node); +// return node; +//} + +std::shared_ptr MakeValueInfo( + const TensorInfo& info) { + auto value_info = std::make_shared(); + value_info->set_name(info.name); + auto type_proto = value_info->mutable_type(); + auto tensor_type_proto = type_proto->mutable_tensor_type(); + tensor_type_proto->set_elem_type(GetOnnxDtype(info.dtype)); + auto shape = tensor_type_proto->mutable_shape(); + for (auto& dim : info.shape) { + if (dim < 0) { + auto dynamic_dim_name = MapperHelper::Get()->GenName("DynamicDimension"); + shape->add_dim()->set_dim_param(dynamic_dim_name); + } else { + shape->add_dim()->set_dim_value(dim); + } + } + return value_info; +} + +std::shared_ptr OnnxHelper::MakeValueInfo( + const std::string& name, const int32_t& dtype, + std::vector& shape) { + auto value_info = std::make_shared(); + value_info->set_name(name); + auto type_proto = value_info->mutable_type(); + auto tensor_type_proto = type_proto->mutable_tensor_type(); + tensor_type_proto->set_elem_type(GetOnnxDtype(dtype)); + auto shape_proto = tensor_type_proto->mutable_shape(); + for (auto& dim : shape) { + if (dim < 0) { + auto dynamic_dim_name = MapperHelper::Get()->GenName("DynamicDimension"); + shape_proto->add_dim()->set_dim_param(dynamic_dim_name); + } else { + shape_proto->add_dim()->set_dim_value(dim); + } + } + value_infos.push_back(value_info); + return value_info; +} + +std::shared_ptr OnnxHelper::MakeNode( + const std::string& op_type, const std::vector& inputs, + const std::vector& outputs) { +#ifdef PADDLE2ONNX_DEBUG + P2OLogger(true) << "ONNX Node: " << op_type << std::endl; +#endif + auto node = std::make_shared(); + auto node_name = MapperHelper::Get()->GenName(op_type); + node->set_name(node_name); + node->set_op_type(op_type); + for (size_t i = 0; i < inputs.size(); ++i) { + node->add_input(inputs[i]); + } + for (size_t i = 0; i < outputs.size(); ++i) { + node->add_output(outputs[i]); + } + if (op_type == "Reshape" && GetOpsetVersion() >= 14) { + AddAttribute(node, "allowzero", int64_t(0)); + } + + nodes.push_back(node); + return node; +} + +std::shared_ptr OnnxHelper::MakeNode( + const std::string& op_type, const std::vector& inputs, + int num_outputs) { +#ifdef PADDLE2ONNX_DEBUG + P2OLogger(true) << "ONNX Node: " << op_type << std::endl; +#endif + auto node = std::make_shared(); + auto node_name = MapperHelper::Get()->GenName(op_type); + node->set_name(node_name); + node->set_op_type(op_type); + for (size_t i = 0; i < inputs.size(); ++i) { + node->add_input(inputs[i]); + } + std::vector outputs; + for (auto i = 0; i < num_outputs; ++i) { + outputs.push_back(MapperHelper::Get()->GenName(op_type)); + } + for (size_t i = 0; i < outputs.size(); ++i) { + node->add_output(outputs[i]); + } + if (op_type == "Reshape" && GetOpsetVersion() >= 14) { + AddAttribute(node, "allowzero", int64_t(0)); + } + nodes.push_back(node); + return node; +} + +std::string OnnxHelper::AutoCast(const std::string& input, + int32_t input_paddle_dtype, + int32_t to_paddle_dtype) { + std::string output = MapperHelper::Get()->GenName("auto.cast"); + if (input_paddle_dtype == to_paddle_dtype) { + MakeNode("Identity", {input}, {output}); + return output; + } + auto cast_node = MakeNode("Cast", {input}, {output}); + AddAttribute(cast_node, "to", GetOnnxDtype(to_paddle_dtype)); + return cast_node->output(0); +} + +std::string OnnxHelper::AutoCast(const std::string& input, + const std::string& output, + int32_t input_paddle_dtype, + int32_t to_paddle_dtype) { + if (input_paddle_dtype == to_paddle_dtype) { + auto node = MakeNode("Identity", {input}, {output}); + return output; + } + auto cast_node = MakeNode("Cast", {input}, {output}); + AddAttribute(cast_node, "to", GetOnnxDtype(to_paddle_dtype)); + return cast_node->output(0); +} + +std::string OnnxHelper::ConcatIndices(const std::vector& indices) { + std::vector vars; + // make sure all the indices be 1-D tensor + for (size_t i = 0; i < indices.size(); ++i) { + std::string var = indices[i].name; + if (indices[i].Rank() != 1) { + var = Reshape(indices[i].name, {1}); + } + vars.push_back(var); + } + // make sure all the indices be int64 + for (size_t i = 0; i < indices.size(); ++i) { + if (indices[i].dtype != P2ODataType::INT64) { + auto node = MakeNode("Cast", {vars[i]}); + AddAttribute(node, "to", ONNX_NAMESPACE::TensorProto::INT64); + vars[i] = node->output(0); + } + } + // concat and return + if (vars.size() > 1) { + return Concat(vars, 0); + } + return vars[0]; +} + +std::string OnnxHelper::Clip(const std::string& input, + const std::string& output, const float& min, + const float& max, const int32_t& in_dtype) { + // onnxruntime only supports float input + std::string input_name = AutoCast(input, in_dtype, P2ODataType::FP32); + if (opset_version < 11) { + auto node = MakeNode("Clip", {input_name}); + AddAttribute(node, "max", max); + AddAttribute(node, "min", min); + auto res = AutoCast(node->output(0), output, P2ODataType::FP32, in_dtype); + return res; + } else { + int32_t dtype = P2ODataType::FP32; + std::string min_name = Constant({}, GetOnnxDtype(dtype), min); + std::string max_name; + max_name = Constant({}, GetOnnxDtype(dtype), max); + auto node = MakeNode("Clip", {input_name, min_name, max_name}); + auto res = AutoCast(node->output(0), {output}, P2ODataType::FP32, in_dtype); + return res; + } +} + +std::string OnnxHelper::Clip(const std::string& input, const float& min, + const float& max, const int32_t& in_dtype) { + std::string output = MapperHelper::Get()->GenName("helper.clip"); + return Clip(input, output, min, max, in_dtype); +} + +std::string OnnxHelper::Squeeze(const std::string& input, + const std::string& output, + const std::vector& axes) { + if (axes.size() == 0) { + auto node = MakeNode("Squeeze", {input}, {output}); + } else { + if (opset_version < 13) { + auto node = MakeNode("Squeeze", {input}, {output}); + AddAttribute(node, "axes", axes); + } else { + auto axes_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, axes); + auto node = MakeNode("Squeeze", {input, axes_node}, {output}); + } + } + return output; +} + +std::string OnnxHelper::Squeeze(const std::string& input, + const std::vector& axes) { + std::string output = MapperHelper::Get()->GenName("helper.squeeze"); + return Squeeze(input, output, axes); +} + +std::string OnnxHelper::Unsqueeze(const std::string& input, + const std::string& output, + const std::vector& axes) { + Assert(axes.size() >= 0, "OnnxHelper::Unsqueeze Size of axes should > 0"); + for (auto& item : axes) { + Assert(item >= 0, + "OnnxHelper::Unsqueeze All the elements in axes should >= 0"); + } + if (opset_version < 13) { + auto node = MakeNode("Unsqueeze", {input}, {output}); + AddAttribute(node, "axes", axes); + } else { + auto axes_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, axes); + auto node = MakeNode("Unsqueeze", {input, axes_node}, {output}); + } + return output; +} + +std::string OnnxHelper::Unsqueeze(const std::string& input, + const std::vector& axes) { + std::string output = MapperHelper::Get()->GenName("helper.unsqueeze"); + return Unsqueeze(input, output, axes); +} + +std::string OnnxHelper::Reshape(const std::string& input, + const std::string& output, + const std::vector& shape) { + if (opset_version < 6) { + auto node = MakeNode("Reshape", {input}, {output}); + AddAttribute(node, "shape", shape); + } else { + auto shape_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, shape); + auto node = MakeNode("Reshape", {input, shape_node}, {output}); + if (opset_version >= 14) { + AddAttribute(node, "allowzero", int64_t(0)); + } + } + return output; +} + +std::string OnnxHelper::Reshape(const std::string& input, + const std::vector& shape) { + std::string output = MapperHelper::Get()->GenName("helper.reshape"); + return Reshape(input, output, shape); +} + +std::string OnnxHelper::Flatten(const std::string& input, + const std::string& output) { + return Reshape(input, output, std::vector(1, -1)); +} + +std::string OnnxHelper::Flatten(const std::string& input) { + std::string output = MapperHelper::Get()->GenName("helper.flatten"); + return Flatten(input, output); +} + +std::string OnnxHelper::Slice(const std::string& input, + const std::string& output, + const std::vector& axes, + const std::vector& starts, + const std::vector& ends) { + if (opset_version < 10) { + auto node = MakeNode("Slice", {input}, {output}); + AddAttribute(node, "axes", axes); + AddAttribute(node, "starts", starts); + AddAttribute(node, "ends", ends); + } else { + auto axes_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, axes); + auto starts_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, starts); + auto ends_node = Constant(ONNX_NAMESPACE::TensorProto::INT64, ends); + auto node = + MakeNode("Slice", {input, starts_node, ends_node, axes_node}, {output}); + } + return output; +} + +std::string OnnxHelper::Slice(const std::string& input, + const std::vector& axes, + const std::vector& starts, + const std::vector& ends) { + std::string output = MapperHelper::Get()->GenName("helper.slice"); + return Slice(input, output, axes, starts, ends); +} + +std::string OnnxHelper::Concat(const std::vector& input, + const std::string& output, int64_t axis) { + auto node = MakeNode("Concat", input, {output}); + AddAttribute(node, "axis", axis); + return output; +} + +std::string OnnxHelper::Concat(const std::vector& input, + int64_t axis) { + auto output = MapperHelper::Get()->GenName("helper.concat"); + return Concat(input, output, axis); +} + +std::string OnnxHelper::Transpose(const std::string& input, + const std::string& output, + const std::vector& perm) { + auto node = MakeNode("Transpose", {input}, {output}); + AddAttribute(node, "perm", perm); + return output; +} + +std::string OnnxHelper::Transpose(const std::string& input, + const std::vector& perm) { + auto output = MapperHelper::Get()->GenName("helper.transpose"); + return Transpose(input, output, perm); +} + +std::vector OnnxHelper::Split( + const std::string& input, const std::vector& outputs, + const std::vector& split, int64_t axis) { + Assert(outputs.size() > 0 || split.size() > 0, + "OnnxHelper::Split requires the size of outputs or the size of split " + "> 0."); + auto node = std::make_shared(); + auto node_name = MapperHelper::Get()->GenName("Split"); + node->set_name(node_name); + node->set_op_type("Split"); + node->add_input(input); + for (size_t i = 0; i < outputs.size(); ++i) { + node->add_output(outputs[i]); + } + AddAttribute(node, "axis", axis); + if (split.size() > 0) { + Assert(outputs.size() == split.size(), + "OnnxHelper::Split While size of outputs and the size of split both " + "> 0, their size must be same."); + if (opset_version < 13) { + AddAttribute(node, "split", split); + } else { + auto split_const = Constant(ONNX_NAMESPACE::TensorProto::INT64, split); + node->add_input(split_const); + } + } + nodes.push_back(node); + return outputs; +} + +std::vector OnnxHelper::Split(const std::string& input, + const std::vector& split, + int64_t axis) { + Assert(split.size() > 0, + "OnnxHelper::Split requires the size of parameter split > 0."); + std::vector outputs(split.size()); + for (size_t i = 0; i < split.size(); ++i) { + outputs[i] = MapperHelper::Get()->GenName("helper.split"); + } + return Split(input, outputs, split, axis); +} +std::vector OnnxHelper::DtypeAlignment( + const std::vector& input_info, int32_t* out_dtype) { + Assert(input_info.size() > 0, + "OnnxHelper::DtypeAlignment requires the size of input info > 0."); + std::vector input_dtypes; + input_dtypes.reserve(input_info.size()); + for (auto i = 0; i < input_info.size(); ++i) { + input_dtypes.push_back(input_info[i].dtype); + } + int32_t max_index = -1; + for (auto i : input_dtypes) { + if (i > max_index) { + max_index = i; + } + } + *out_dtype = max_index; + std::vector casted_node; + casted_node.reserve(input_info.size()); + for (auto i = 0; i < input_info.size(); ++i) { + std::string cast_name = + AutoCast(input_info[i].name, input_info[i].dtype, max_index); + casted_node.push_back(cast_name); + } + return casted_node; +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/onnx_helper.h b/paddle2onnx/mapper/onnx_helper.h new file mode 100644 index 0000000000..5958eb38f6 --- /dev/null +++ b/paddle2onnx/mapper/onnx_helper.h @@ -0,0 +1,561 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once + +#include + +#include +#include +#include + +#include "paddle2onnx/mapper/register_mapper.h" +#include "paddle2onnx/parser/parser.h" + +namespace paddle2onnx { + +void AddAttribute(std::shared_ptr node, + const std::string& name, const int64_t& value); +void AddAttribute(std::shared_ptr node, + const std::string& name, const float& value); +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::string& value); +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::vector& values); +void AddAttribute(std::shared_ptr node, + const std::string& name, const std::vector& values); +void AddAttribute(std::shared_ptr node, + const std::string& name, + ONNX_NAMESPACE::TensorProto_DataType dtype); + +ONNX_NAMESPACE::TensorProto_DataType GetOnnxDtype(int32_t paddle_dtype); +std::shared_ptr MakeConstant(const std::string& name, + const Weight& weight); +std::shared_ptr MakeValueInfo( + const TensorInfo& info); + +struct QuantizeInfo { + public: + std::vector scale_; + std::vector zeros_; + std::string zeros_node_; + std::string scale_node_; + int64_t quantize_axis_; + + QuantizeInfo() {} + QuantizeInfo(const std::vector& scale, + const std::vector& zeros, const std::string& scale_node, + const std::string& zeros_node, const int64_t& quantize_axis) { + zeros_node_ = zeros_node; + scale_node_ = scale_node; + quantize_axis_ = quantize_axis; + scale_.resize(scale.size()); + memcpy(scale_.data(), scale.data(), scale.size() * sizeof(float)); + zeros_.resize(zeros.size()); + memcpy(zeros_.data(), zeros.data(), zeros.size() * sizeof(int64_t)); + } +}; + +class OnnxHelper { + public: + std::vector> nodes; + std::vector> value_infos; + int32_t opset_version = 7; + // Use updated_params to store params that were changed during conversion + std::map updated_params; + // Use quantize_info to record quantization-related information, scale and + // zero information corresponding to each tensor + std::map quantize_info; + + void Clear() { nodes.clear(); } + + void SetOpsetVersion(int32_t op_v) { opset_version = op_v; } + + int32_t GetOpsetVersion() { return opset_version; } + + template + bool TryGetTensorValue(const std::string& name, std::vector* value); + + std::shared_ptr MakeValueInfo( + const std::string& name, const int32_t& dtype, + std::vector& shape); + + std::shared_ptr MakeNode( + const std::string& op_type, const std::vector& inputs, + const std::vector& outputs); + // we use this function to generate some temporary node + // we do not need to define the outputs, because the outputs + // is generate by MapperHelper, which will make sure there's no + // name confict problem + // the parameter `num_outputs` will define the number of output names + std::shared_ptr MakeNode( + const std::string& op_type, const std::vector& inputs, + int num_outputs = 1); + + template + std::string ConstOfShape(const std::string& input, const std::string& output, + ONNX_NAMESPACE::TensorProto_DataType dtype, T value); + template + std::string ConstOfShape(const std::string& input, + ONNX_NAMESPACE::TensorProto_DataType dtype, T value); + + std::string AutoCast(const std::string& input, int32_t input_paddle_dtype, + int32_t to_paddle_dtype); + std::string AutoCast(const std::string& input, const std::string& output, + int32_t input_paddle_dtype, int32_t to_paddle_dtype); + + // Helper function for PaddlePaddle's shape tensor list inputs + // will cast all data type to int64 + // will make sure all inputs to be 1-D tensor + // will concat them as output + std::string ConcatIndices(const std::vector& indices); + std::vector DtypeAlignment( + const std::vector& input_info, int32_t* out_dtype); + std::string Clip(const std::string& input, const float& min, const float& max, + const int32_t& in_dtype); + std::string Clip(const std::string& input, const std::string& output, + const float& min, const float& max, const int32_t& in_dtype); + std::string Squeeze(const std::string& input, + const std::vector& axes); + std::string Squeeze(const std::string& input, const std::string& output, + const std::vector& axes); + std::string Unsqueeze(const std::string& input, + const std::vector& axes); + std::string Unsqueeze(const std::string& input, const std::string& output, + const std::vector& axes); + std::string Reshape(const std::string& input, const std::string& output, + const std::vector& shape); + std::string Reshape(const std::string& input, + const std::vector& shape); + std::string Flatten(const std::string& input, const std::string& output); + std::string Flatten(const std::string& input); + std::string Slice(const std::string& input, const std::string& output, + const std::vector& axes, + const std::vector& starts, + const std::vector& ends); + std::string Slice(const std::string& input, const std::vector& axes, + const std::vector& starts, + const std::vector& ends); + std::string Concat(const std::vector& input, + const std::string& output, int64_t axis); + std::string Concat(const std::vector& input, int64_t axis); + + std::string Transpose(const std::string& input, const std::string& output, + const std::vector& perm); + std::string Transpose(const std::string& input, + const std::vector& perm); + + std::vector Split(const std::string& input, + const std::vector& outputs, + const std::vector& split, + int64_t axis); + std::vector Split(const std::string& input, + const std::vector& split, + int64_t axis); + + template + std::string Constant(const std::string& output, + ONNX_NAMESPACE::TensorProto_DataType dtype, + const std::vector& value); + template + std::string Constant(ONNX_NAMESPACE::TensorProto_DataType dtype, + const std::vector& value); + template + std::string Constant(const std::string& output, + const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, T value); + template + std::string Constant(const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, T value); + + template + std::string Constant(const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, + std::vector& value); + + template + std::string Assign(const std::string& output, + const ONNX_NAMESPACE::TensorProto_DataType& dtype, + const std::vector& shape, + const std::vector& value); + template + std::string Assign(const ONNX_NAMESPACE::TensorProto_DataType& dtype, + const std::vector& shape, + const std::vector& value); +}; + +template +std::string OnnxHelper::Constant(const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, + std::vector& value) { + auto node = std::make_shared(); + node->set_op_type("Constant"); + auto name = MapperHelper::Get()->GenName("const"); + node->add_output(name); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(name); + + int numel = 1; + for (size_t i = 0; i < shape.size(); ++i) { + tensor->add_dims(shape[i]); + numel *= shape[i]; + } + Assert(numel == value.size(), + "numel and val number is not equal in Constant " + "function."); + tensor->set_data_type(dtype); + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data; + data.reserve(numel); + for (auto& i : value) { + data.push_back(static_cast(i)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data; + data.reserve(numel); + for (auto& i : value) { + data.push_back(static_cast(i)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data; + data.reserve(numel); + for (auto& i : value) { + data.push_back(static_cast(i)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::BOOL) { + bool* data = new bool[numel]; + for (size_t i = 0; i < numel; ++i) { + data[i] = static_cast(value[i]); + } + tensor->set_raw_data(std::string((const char*)(data), numel)); + delete[] data; + } else { + Assert(false, + "Only support data type of BOOL/FLOAT/DOUBLE/INT64 in Constant " + "function."); + } + nodes.push_back(node); + return node->output(0); +} + +template +std::string OnnxHelper::Constant(const std::string& output, + ONNX_NAMESPACE::TensorProto_DataType dtype, + const std::vector& value) { + auto node = std::make_shared(); + node->set_op_type("Constant"); + node->add_output(output); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(output); + + int numel = value.size(); + tensor->add_dims(numel); + tensor->set_data_type(dtype); + if (value.size() == 0) { + nodes.push_back(node); + return output; + } + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::BOOL) { + bool* data = new bool[numel]; + for (size_t i = 0; i < numel; ++i) { + data[i] = static_cast(value[i]); + } + tensor->set_raw_data(std::string((const char*)(data), numel)); + delete[] data; + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT8) { + std::vector data; + data.reserve(numel); + for (auto& i : value) { + data.push_back(static_cast(i)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel)); + } else { + Assert(false, + "Only support data type of BOOL/FLOAT/DOUBLE/INT32/INT64/INT8 in " + "Constant " + "function."); + } + nodes.push_back(node); + return output; +} + +template +std::string OnnxHelper::Constant(ONNX_NAMESPACE::TensorProto_DataType dtype, + const std::vector& value) { + auto output = MapperHelper::Get()->GenName("helper.constant"); + return Constant(output, dtype, value); +} + +template +std::string OnnxHelper::Constant(const std::string& output, + const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, + T value) { + auto node = std::make_shared(); + node->set_op_type("Constant"); + node->add_output(output); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(output); + + int numel = 1; + for (size_t i = 0; i < shape.size(); ++i) { + tensor->add_dims(shape[i]); + numel *= shape[i]; + } + tensor->set_data_type(dtype); + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT8) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::BOOL) { + bool* data = new bool[numel]; + for (size_t i = 0; i < numel; ++i) { + data[i] = static_cast(value); + } + tensor->set_raw_data(std::string((const char*)(data), numel)); + delete[] data; + } else { + Assert( + false, + "Only support data type of BOOL/FLOAT/DOUBLE/INT32/INT64 in Constant " + "function."); + } + nodes.push_back(node); + return output; +} + +template +std::string OnnxHelper::Constant(const std::vector& shape, + ONNX_NAMESPACE::TensorProto_DataType dtype, + T value) { + auto output = MapperHelper::Get()->GenName("helper.constant"); + return Constant(output, shape, dtype, value); +} + +template +std::string OnnxHelper::ConstOfShape(const std::string& input, + ONNX_NAMESPACE::TensorProto_DataType dtype, + T value) { + auto output = MapperHelper::Get()->GenName("helper.constofshape"); + return ConstOfShape(input, output, dtype, value); +} + +template +std::string OnnxHelper::ConstOfShape(const std::string& input, + const std::string& output, + ONNX_NAMESPACE::TensorProto_DataType dtype, + T value) { + auto node = MakeNode("ConstantOfShape", {input}, {output}); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name("tensor_value"); + std::vector shape = {1}; + int numel = 1; + for (size_t i = 0; i < shape.size(); ++i) { + tensor->add_dims(shape[i]); + numel *= shape[i]; + } + tensor->set_data_type(dtype); + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector data(numel, static_cast(value)); + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else { + Assert(false, + "Only support data type of FLOAT/DOUBLE/INT64/INT32 in ConstOfShape " + "function."); + } + return output; +} + +template +std::string OnnxHelper::Assign( + const std::string& output, + const ONNX_NAMESPACE::TensorProto_DataType& dtype, + const std::vector& shape, const std::vector& value) { + auto node = std::make_shared(); + node->set_op_type("Constant"); + node->add_output(output); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(output); + + int numel = std::accumulate(std::begin(shape), std::end(shape), 1, + std::multiplies()); + Assert(numel == value.size(), + "Numel of value not satisfy the input shape while creating contant " + "tensor."); + for (size_t i = 0; i < shape.size(); ++i) { + tensor->add_dims(shape[i]); + } + tensor->set_data_type(dtype); + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 8)); + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector data; + for (auto& item : value) { + data.push_back(static_cast(item)); + } + tensor->set_raw_data(std::string((const char*)(data.data()), numel * 4)); + } else { + Assert(false, + "Only support data type of FLOAT/DOUBLE/INT32/INT64 in Constant " + "function."); + } + nodes.push_back(node); + return output; +} + +template +std::string OnnxHelper::Assign( + const ONNX_NAMESPACE::TensorProto_DataType& dtype, + const std::vector& shape, const std::vector& value) { + auto output = MapperHelper::Get()->GenName("helper.constant"); + return Assign(output, dtype, shape, value); +} + +template +bool OnnxHelper::TryGetTensorValue(const std::string& name, + std::vector* value) { + for (auto iter = nodes.begin(); iter != nodes.end(); iter++) { + auto node = *iter; + if (node->op_type() != "Constant") { + continue; + } + if (node->output(0) == name) { + for (auto i = 0; i < node->attribute_size(); i++) { + auto attr = node->attribute(i); + if (attr.name() == "value") { + auto tensor = attr.mutable_t(); + auto dtype = tensor->data_type(); + std::vector shape; + for (int64_t i = 0; i < tensor->dims_size(); i++) { + shape.push_back(tensor->dims(i)); + } + int64_t nums = 1; + for (auto& i : shape) nums *= i; + value->resize(nums); + if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector val(nums, 0); + memcpy(val.data(), tensor->raw_data().data(), + nums * sizeof(int64_t)); + value->assign(val.begin(), val.end()); + return true; + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector val(nums, 0); + memcpy(val.data(), tensor->raw_data().data(), + nums * sizeof(int32_t)); + value->assign(val.begin(), val.end()); + return true; + } else if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector val(nums, 0); + memcpy(val.data(), tensor->raw_data().data(), nums * sizeof(float)); + value->assign(val.begin(), val.end()); + return true; + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector val(nums, 0); + memcpy(val.data(), tensor->raw_data().data(), + nums * sizeof(double)); + value->assign(val.begin(), val.end()); + return true; + } else { + P2OLogger() << "[WARNING] OnnxHelper function TryGetTensorValue " + "only support get int64_t/int32_t/float/double " + "value from Constant now." + << std::endl; + return false; + } + } + } + } + } + return false; +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/quantize/dequantize_linear.cc b/paddle2onnx/mapper/quantize/dequantize_linear.cc new file mode 100644 index 0000000000..9bf7797fdc --- /dev/null +++ b/paddle2onnx/mapper/quantize/dequantize_linear.cc @@ -0,0 +1,183 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/quantize/dequantize_linear.h" + +namespace paddle2onnx { +REGISTER_MAPPER(dequantize_linear, DequantizeLinearMapper) + +int32_t DequantizeLinearMapper::GetMinOpset(bool verbose) { + if (!IsConstantInput("Scale")) { + Error() << "Input `Scale` requires to be a constant tensor." << std::endl; + return -1; + } + std::vector scales; + if (!TryGetInputValue("Scale", &scales)) { + Error() << "Failed to read tensor value of `Scale`." << std::endl; + return -1; + } + if (bit_length_ != 8) { + Error() << "Only support bit_length = 8." << std::endl; + return -1; + } + if (scales.size() > 1) { + auto x_info = GetInput("X"); + if (x_info[0].shape[quant_axis_] != scales.size()) { + Error() << "Scale size must equal to the size of input quantize axis." + << std::endl; + return -1; + } + Logger(verbose, 13) << "While size of scales greater than 1, " + << RequireOpset(13) << std::endl; + return 13; + } + auto x_info = GetInput("X"); + auto x_shape = x_info[0].shape; + if (x_shape.size() == 2) { + if (quant_axis_ != 1) { + Error() << "When the rank of input is 2, the attribute quant_axis " + "requires to be 1." + << std::endl; + return -1; + } + } else if (x_shape.size() == 4) { + if (!(quant_axis_ == 1 || quant_axis_ == 0)) { + Error() << "When the rank of input is 4, the attribute quant_axis " + "requires to be 0 or 1." + << std::endl; + return -1; + } + } + + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; +} + +void DequantizeLinearMapper::ConvertInt8ToFp32( + const std::vector &onnx_scales, std::vector *weight) { + auto x_info = GetInput("X"); + auto x_shape = x_info[0].shape; + if (x_shape.size() == 2) { + for (auto j = 0; j < x_shape[1]; ++j) { + float scale_value = 0; + if (onnx_scales.size() == 1) { + scale_value = onnx_scales[0]; + } else { + scale_value = onnx_scales[j]; + } + for (auto i = 0; i < x_shape[0]; ++i) { + auto offset = i * x_shape[1] + j; + (*weight)[offset] *= scale_value; + } + } + } else if (x_shape.size() == 4) { + if (quant_axis_ == 0) { + auto inner_offset = 1; + for (auto i : x_shape) { + inner_offset *= i; + } + inner_offset /= x_shape[0]; + for (int i = 0; i < x_shape[0]; ++i) { + float scale_value = 0; + if (onnx_scales.size() == 1) { + scale_value = onnx_scales[0]; + } else { + scale_value = onnx_scales[i]; + } + for (auto j = 0; j < inner_offset; ++j) { + auto offset = i * inner_offset + j; + (*weight)[offset] *= scale_value; + } + } + } else { + auto inner_offset = x_shape[2] * x_shape[3]; + auto outter_offset = x_shape[1] * inner_offset; + for (auto i = 0; i < x_shape[0]; ++i) { + for (auto j = 0; j < x_shape[1]; ++j) { + float scale_value = 0; + if (onnx_scales.size() == 1) { + scale_value = onnx_scales[0]; + } else { + scale_value = onnx_scales[j]; + } + for (auto k = 0; k < inner_offset; k++) { + auto offset = i * outter_offset + j * inner_offset + k; + (*weight)[offset] *= scale_value; + } + } + } + } + } +} + +void DequantizeLinearMapper::Opset10() { + auto x_info = GetInput("X"); + auto x_shape = x_info[0].shape; + std::vector scales; + Assert(TryGetInputValue("Scale", &scales), + "Failed to read tensor value of `Scale`."); + std::vector onnx_scales; + onnx_scales.reserve(scales.size()); + for (auto &i : scales) { + onnx_scales.push_back(i / 127); + } + std::vector onnx_zeros(onnx_scales.size(), 0); + std::string scale_node, zero_node; + if (onnx_zeros.size() == 1) { + scale_node = helper_->Constant({}, ONNX_NAMESPACE::TensorProto::FLOAT, + onnx_scales[0]); + zero_node = + helper_->Constant({}, ONNX_NAMESPACE::TensorProto::INT8, onnx_zeros[0]); + } else { + scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, onnx_scales); + zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, onnx_zeros); + } + + std::vector weight; + TryGetInputValue("X", &weight); + if (weight.empty()) { + auto node = helper_->MakeNode("DequantizeLinear", + {x_info[0].name, scale_node, zero_node}, + {GetOutput("Y")[0].name}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(node, "axis", quant_axis_); + } + QuantizeInfo quantize_info(onnx_scales, onnx_zeros, scale_node, zero_node, + quant_axis_); + helper_->quantize_info[GetOutput("Y")[0].name] = quantize_info; + return; + } + ConvertInt8ToFp32(onnx_scales, &weight); + + QuantizeInfo quantize_info(onnx_scales, onnx_zeros, scale_node, zero_node, + quant_axis_); + helper_->quantize_info[x_info[0].name] = quantize_info; + Weight fp32_weight; + fp32_weight.set(P2ODataType::FP32, x_shape, weight); + helper_->updated_params[x_info[0].name] = fp32_weight; + auto node = helper_->MakeNode("QuantizeLinear", + {x_info[0].name, scale_node, zero_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(node, "axis", quant_axis_); + } + auto dq_node = helper_->MakeNode("DequantizeLinear", + {node->output(0), scale_node, zero_node}, + {GetOutput("Y")[0].name}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(dq_node, "axis", quant_axis_); + } +} +} // namespace paddle2onnx \ No newline at end of file diff --git a/paddle2onnx/mapper/quantize/dequantize_linear.h b/paddle2onnx/mapper/quantize/dequantize_linear.h new file mode 100755 index 0000000000..e49ed1d224 --- /dev/null +++ b/paddle2onnx/mapper/quantize/dequantize_linear.h @@ -0,0 +1,42 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class DequantizeLinearMapper : public Mapper { + public: + DequantizeLinearMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("quant_axis", &quant_axis_); + GetAttr("bit_length", &bit_length_); + if (quant_axis_ == -1) { + quant_axis_ = 1; + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset10(); + + private: + void ConvertInt8ToFp32(const std::vector& onnx_scales, + std::vector* weight); + int64_t quant_axis_ = 1; + int64_t bit_length_ = 8; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/quantize/quantize_linear.cc b/paddle2onnx/mapper/quantize/quantize_linear.cc new file mode 100755 index 0000000000..6ff1c18806 --- /dev/null +++ b/paddle2onnx/mapper/quantize/quantize_linear.cc @@ -0,0 +1,88 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/quantize/quantize_linear.h" + +namespace paddle2onnx { +REGISTER_MAPPER(quantize_linear, QuantizeLinearMapper) + +int32_t QuantizeLinearMapper::GetMinOpset(bool verbose) { + if (!IsConstantInput("Scale")) { + Error() << "Input `Scale` requires to be a constant tensor." << std::endl; + return -1; + } + std::vector scales; + if (!TryGetInputValue("Scale", &scales)) { + Error() << "Failed to read tensor value of `Scale`." << std::endl; + return -1; + } + if (bit_length_ != 8) { + Error() << "Only support bit_length = 8." << std::endl; + return -1; + } + if (round_type_ != 0) { + Error() << "The round_type attr of quantize_linear must be 0." << std::endl; + return -1; + } + if (scales.size() > 1) { + auto x_info = GetInput("X"); + if (x_info[0].shape[quant_axis_] != scales.size()) { + Error() << "Scale size must equal to the size of input quantize axis." + << std::endl; + return -1; + } + Logger(verbose, 13) << "While size of scales greater than 1, " + << RequireOpset(13) << std::endl; + return 13; + } + Logger(verbose, 10) << RequireOpset(10) << std::endl; + return 10; +} + +void QuantizeLinearMapper::Opset10() { + auto x_info = GetInput("X"); + std::vector scales; + Assert(TryGetInputValue("Scale", &scales), + "Failed to read tensor value of `Scale`."); + std::vector onnx_scales; + onnx_scales.reserve(scales.size()); + for (auto i : scales) { + onnx_scales.push_back(i / 127); + } + std::vector onnx_zeros(onnx_scales.size(), 0); + + std::string scale_node, zero_node; + if (onnx_scales.size() == 1) { + scale_node = helper_->Constant({}, ONNX_NAMESPACE::TensorProto::FLOAT, + onnx_scales[0]); + zero_node = + helper_->Constant({}, ONNX_NAMESPACE::TensorProto::INT8, onnx_zeros[0]); + } else { + scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, onnx_scales); + zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, onnx_zeros); + } + + auto node = helper_->MakeNode("QuantizeLinear", + {x_info[0].name, scale_node, zero_node}, + {GetOutput("Y")[0].name}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(node, "axis", quant_axis_); + } + QuantizeInfo quantize_info(onnx_scales, onnx_zeros, scale_node, zero_node, + quant_axis_); + helper_->quantize_info[x_info[0].name] = quantize_info; +} +} // namespace paddle2onnx \ No newline at end of file diff --git a/paddle2onnx/mapper/quantize/quantize_linear.h b/paddle2onnx/mapper/quantize/quantize_linear.h new file mode 100644 index 0000000000..a209fdbb02 --- /dev/null +++ b/paddle2onnx/mapper/quantize/quantize_linear.h @@ -0,0 +1,45 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class QuantizeLinearMapper : public Mapper { + public: + QuantizeLinearMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("quant_axis", &quant_axis_); + GetAttr("bit_length", &bit_length_); + if (quant_axis_ == -1) { + quant_axis_ = 1; + } + if (HasAttr("round_type")) { + GetAttr("round_type", &round_type_); + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset10(); + + private: + int64_t round_type_ = 0; // 0: rounding to nearest ties to even. 1: rounding + // to nearest ties away from zero. + int64_t quant_axis_ = 1; + int64_t bit_length_ = 8; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/quantize_helper.cc b/paddle2onnx/mapper/quantize_helper.cc new file mode 100755 index 0000000000..f99e5171ad --- /dev/null +++ b/paddle2onnx/mapper/quantize_helper.cc @@ -0,0 +1,1205 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/quantize_helper.h" + +namespace paddle2onnx { + +void QuantizeModelProcessor::RemoveNodeByName(const std::string& name, + const bool& update_io) { + if (name.empty()) { + return; + } + for (auto iter = nodes_->begin(); iter != nodes_->end(); iter++) { + if ((*iter)->name() == name) { + std::string input_name = (*iter)->input(0); + std::string output_name = (*iter)->output(0); + nodes_->erase(iter); + if (update_io) { + ReplaceInputOfAllNodes(output_name, input_name); + } + return; + } + } +} + +void QuantizeModelProcessor::ReplaceInputOfAllNodes( + const std::string& old_name, const std::string& new_name, + const std::vector>& + except_nodes) { + auto iter = name2node_dict_.find(old_name); + std::vector> need_rename_nodes; + // after replace all old_name to new_name, replace the quantize_info of new + // name with the quantize_info of old name + auto quantize_info_iter = helper_->quantize_info.find(old_name); + if (quantize_info_iter != helper_->quantize_info.end()) { + helper_->quantize_info[new_name] = helper_->quantize_info[old_name]; + } + + if (iter != name2node_dict_.end()) { + need_rename_nodes = iter->second; + } + for (auto& node : need_rename_nodes) { + auto iter = std::find(except_nodes.begin(), except_nodes.end(), node); + if (iter != except_nodes.end()) { + continue; + } + for (size_t i = 0; i < node->input_size(); ++i) { + if (node->input(i) == old_name) { + node->set_input(i, new_name); + } + } + } +} + +void QuantizeModelProcessor::UpdateInputNameToNodes() { + name2node_dict_.clear(); + for (auto& node : *nodes_) { + for (size_t i = 0; i < node->input_size(); ++i) { + std::string node_input = node->input(i); + if (name2node_dict_.find(node_input) != name2node_dict_.end()) { + name2node_dict_[node_input].push_back(node); + } else { + name2node_dict_[node_input] = {node}; + } + } + } +} + +void QuantizeModelProcessor::ProcessQuantizeModel( + std::vector>* parameters, + std::vector>* inputs, + std::vector>* outputs, + std::vector>* nodes, + OnnxHelper* helper, const std::string& deploy_backend, + const PaddleParser& parser, std::string* calibration_cache) { + // Determine whether the model contains quantization related OPs, if not, exit + // directly + bool quantized_model = false; + for (auto& node : *nodes) { + if (node->op_type() == "QuantizeLinear" || + node->op_type() == "DequantizeLinear") { + quantized_model = true; + break; + } + } + if (!quantized_model) { + return; + } + parser_ = &parser; + helper_ = helper; + parameters_ = parameters; + inputs_ = inputs; + outputs_ = outputs; + nodes_ = nodes; + P2OLogger() << "[Info] Quantize model deploy backend is: " << deploy_backend + << std::endl; + // Determine the format of the exported ONNX quantization model according to + // the deploy_backend + if (deploy_backend == "others") { + // If deploy_backend is others, the quantization model is exported as a + // float model + quantization table. + RemoveAllQuantizeOps(); + std::ofstream outfile; + outfile.open("max_range.txt", std::ios::out); + if (!outfile.is_open()) { + P2OLogger() << "[WARNING] Quantize model processer failed to write range " + "information in current location." + << std::endl; + return; + } + for (auto iter = helper_->quantize_info.begin(); + iter != helper_->quantize_info.end(); iter++) { + std::string log = iter->first; + auto scale = iter->second.scale_; + if (scale.size() == 1) { + log = log + ": " + std::to_string(scale[0] * 127); + outfile << log << std::endl; + } + } + outfile.close(); + } else if (deploy_backend == "onnxruntime") { + // When deploy_backend is ONNXRuntime, use the follow four steps to process: + // 1. broadcast quantize info + // 2. remove all quantize ops + // 3. merge conv and add + // 4. merge conv and bn + // 5. add Q and DQ according ONNXRuntime quantize OP fuse patten. + // 6. use topo sort in nodes + QuantizeInfoBroadcast(); + RemoveAllQuantizeOps(); + MergeConvAdd(); + MergeConvBN(); + AddQDQForORT(); + SortNodes(); + } else if (deploy_backend == "tensorrt") { + // When deploy_backend is TensorRT, use the follow four steps to process: + // For Explicit Quantization + // 1. broadcast quantize info + // 2. remove all quantize ops + // 3. add Q and DQ before conv and matmul. + // 4. use topo sort in nodes + + // For Implicit Quantization + // 1. remove all quantize ops + // 2. broadcast quantize info + // 3. save float onnx model and alibration.cache + QuantizeInfoBroadcast(); + RemoveAllQuantizeOps(); + // Add qdq for Explicit Quantization + // AddTrtQDQ(); + // SortNodes(); + + // Genarate calibration.cache for Implicit Quantization + // convert float to hex + GenerateCache(calibration_cache); + } else if (deploy_backend == "rknn") { + // When deploy_backend is RKNN, use the follow four steps to process: + // 1. broadcast quantize info + // 2. remove all quantize ops + // 3. merge conv and add + // 4. merge conv and bn + // 5. add Q and DQ + // 6. use topo sort in nodes + QuantizeInfoBroadcast(); + RemoveAllQuantizeOps(); + MergeConvAdd(); + MergeConvBN(); + AddQDQForRKNN(); + SortNodes(); + } else { + Assert(false, + "[QuantizeModelProcessor] Only support 'onnxruntime' / 'tensorrt' " + "/ 'others' as " + "backend now, but now the backend is: " + + deploy_backend + "."); + } +} + +void QuantizeModelProcessor::AddQDQForRKNN() { + UpdateInputNameToNodes(); + supported_quantize_type_ = {"Abs", + "Acos", + "Add", + "Asin", + "Atan", + "AveragePool", + "BatchNormalization", + "Ceil", + "Clip", + "Conv", + "ConvTranspose", + "Cos", + "Cosh", + "Concat", + "Elu", + "Erf", + "Exp", + "Floor", + "Gemm", + "HardSigmoid", + "InstanceNormalization", + "IsInf", + "IsNaN", + "Log", + "MaxPool", + "Mul", + "Neg", + "ReduceMean", + "Relu", + "Resize", + "Round", + "Sigmoid", + "Sin", + "Sinh", + "Split", + "Sqrt", + "Tan", + "Tanh"}; + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto node = *iter; + auto type_iter = std::find(supported_quantize_type_.begin(), + supported_quantize_type_.end(), node->op_type()); + if (!supported_quantize_type_.empty() && + type_iter == supported_quantize_type_.end()) { + continue; + } + // Add Miss scale for Mul and MatMul + if (node->op_type() == "Mul" || node->op_type() == "MatMul" || + node->op_type() == "Add") { + for (size_t i = 0; i < node->input_size(); ++i) { + std::string node_input = node->input(i); + if (helper_->quantize_info.find(node_input) != + helper_->quantize_info.end()) { + continue; + } + std::vector weight; + if (!GetTensorByName(node_input, &weight)) { + continue; + } + std::vector weight_shape; + GetTensorShape(node_input, &weight_shape); + int64_t quantize_axis = 1; + if (node->op_type() == "Add") { + quantize_axis = 0; + } + std::vector scale; + std::vector zeros; + + if (node->op_type() == "Add" || weight_shape.size() == 1 || + weight_shape.empty()) { + GetTensorWiseQuantizeInfo(weight, &scale, &zeros); + } else { + GetChannelWiseQuantizeInfo(weight, weight_shape, quantize_axis, + &scale, &zeros); + } + std::string weight_scale_node, weight_zero_node; + if (scale.size() == 1) { + weight_scale_node = helper_->Constant( + {}, ONNX_NAMESPACE::TensorProto::FLOAT, scale[0]); + weight_zero_node = helper_->Constant( + {}, ONNX_NAMESPACE::TensorProto::INT8, zeros[0]); + } else { + weight_scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, scale); + weight_zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, zeros); + } + QuantizeInfo weight_quantize_info(scale, zeros, weight_scale_node, + weight_zero_node, quantize_axis); + helper_->quantize_info[node_input] = weight_quantize_info; + } + } + std::vector tensor_names; + for (size_t i = 0; i < node->input_size(); ++i) { + std::string node_input = node->input(i); + tensor_names.push_back(node_input); + } + for (size_t i = 0; i < node->output_size(); ++i) { + std::string node_output = node->output(i); + tensor_names.push_back(node_output); + } + if (!CanBeQuantize(tensor_names)) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + + // update name2node_dict for the change of Relu op. + UpdateInputNameToNodes(); + // Add QDQ in model + AddQDQInModel(tensors_to_be_quantize); +} + +void QuantizeModelProcessor::GenerateCache(std::string* calibration_cache) { + union { + float f; + unsigned char farray[4]; + } un; + *calibration_cache += "TRT-8XXX-EntropyCalibration2 \n"; + for (auto iter = helper_->quantize_info.rbegin(); + iter != helper_->quantize_info.rend(); iter++) { + std::string tensor_name = iter->first; + QuantizeInfo quantize_info = iter->second; + if (quantize_info.scale_.size() == 1) { + float val = quantize_info.scale_[0]; + un.f = val; + *calibration_cache += (tensor_name + ": "); + std::stringstream enc; + for (int64_t i = 3; i >= 0; i--) { + enc << std::hex << std::setw(2) << std::setfill('0') + << (int)(un.farray[i]); + } + *calibration_cache = *calibration_cache + enc.str() + "\n"; + } + } +} +// In TensorRT, all quantized op: Conv, ConvTranspose, liner(MatMul), MaxPool, +// AvgPool, AdaptiveAvgPool, rnn(not support now) +// https://github.com/NVIDIA/TensorRT/tree/main/tools/pytorch-quantization/pytorch_quantization/nn/modules +void QuantizeModelProcessor::AddTrtQDQ() { + UpdateInputNameToNodes(); + std::vector + quantize_tensors; // save the tensor names that need add quantize ops + std::vector pool_types = {"MaxPool", "AvgPool", + "AdaptiveAvgPool"}; + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + quantize_tensors.clear(); + auto node = *iter; + if (node->op_type() == "Conv" || node->op_type() == "ConvTranspose") { + std::vector tensor_names = {node->input(0), node->input(1)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + quantize_tensors = tensor_names; + } + if (node->op_type() == "MatMul") { + std::vector tensor_names = {node->input(0), node->input(1)}; + for (auto& name : tensor_names) { + if (helper_->quantize_info.find(name) != helper_->quantize_info.end()) { + continue; + } + std::vector matmul_weight; + if (!GetTensorByName(name, &matmul_weight)) { + continue; + } + std::vector matmul_weight_shape; + if (!GetTensorShape(name, &matmul_weight_shape)) { + continue; + } + int64_t quantize_axis = 1; + std::vector scale; + std::vector zeros; + GetChannelWiseQuantizeInfo(matmul_weight, matmul_weight_shape, + quantize_axis, &scale, &zeros); + auto scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, scale); + auto zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, zeros); + QuantizeInfo matmul_weight_quantize_info(scale, zeros, scale_node, + zero_node, quantize_axis); + helper_->quantize_info[name] = matmul_weight_quantize_info; + } + if (!CanBeQuantize(tensor_names)) { + continue; + } + quantize_tensors = tensor_names; + } + auto type_iter = + std::find(pool_types.begin(), pool_types.end(), node->op_type()); + if (type_iter != pool_types.end()) { + std::vector tensor_names = {node->input(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + quantize_tensors = tensor_names; + } + + std::string negative_scale_tensor = ""; + for (std::string& name : quantize_tensors) { + Assert( + helper_->quantize_info.find(name) != helper_->quantize_info.end(), + "[QuantizeModelProcessor] Can not find quantize info for tensor: " + + name); + QuantizeInfo quantize_info = helper_->quantize_info[name]; + std::vector scales = quantize_info.scale_; + for (auto& i : scales) { + if (i <= 1e-10) { + negative_scale_tensor = negative_scale_tensor + " " + name; + } + } + } + if (negative_scale_tensor.size() > 0) { + P2OLogger() + << "[Warning] The scale of tensors: [ " + negative_scale_tensor + + " ] contains negative scale, so this OP will not be quantized." + << std::endl; + continue; + } + // An OP requires a separate quantize op + for (std::string& name : quantize_tensors) { + if (IsGraphOutput(name)) { + continue; + } + QuantizeInfo quantize_info = helper_->quantize_info[name]; + std::string scale_node = quantize_info.scale_node_; + std::string zeros_node = quantize_info.zeros_node_; + int64_t quantize_axis = quantize_info.quantize_axis_; + auto q_node = + helper_->MakeNode("QuantizeLinear", {name, scale_node, zeros_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(q_node, "axis", quantize_axis); + } + auto dq_node = helper_->MakeNode( + "DequantizeLinear", {q_node->output(0), scale_node, zeros_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(dq_node, "axis", quantize_axis); + } + for (size_t i = 0; i < node->input_size(); ++i) { + if (node->input(i) == name) { + node->set_input(i, dq_node->output(0)); + } + } + } + } +} + +// According to: +// https://github.com/microsoft/onnxruntime/blob/master/onnxruntime/core/optimizer/qdq_transformer/selectors_actions/qdq_selector_action_transformer.cc +void QuantizeModelProcessor::AddQDQForORT() { + UpdateInputNameToNodes(); + supported_quantize_type_ = {"Conv", "MatMul", "Mul", "Sigmoid", + "Add", "LeakyRelu", "Relu"}; + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto node = *iter; + auto type_iter = std::find(supported_quantize_type_.begin(), + supported_quantize_type_.end(), node->op_type()); + if (!supported_quantize_type_.empty() && + type_iter == supported_quantize_type_.end()) { + continue; + } + // Here we only add Relu, Conv, mul and matmul, all tensors should add Q and + // DQ will be saved in tensors_to_be_quantize + if (node->op_type() == "Relu") { + std::vector tensor_names = {node->input(0), node->output(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + node->set_op_type("LeakyRelu"); + AddAttribute(node, "alpha", static_cast(0.0)); + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "LeakyRelu") { + std::vector tensor_names = {node->input(0), node->output(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "Add") { + std::vector tensor_names = {node->input(0), node->input(1), + node->output(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "Sigmoid") { + std::vector tensor_names = {node->input(0), node->output(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "Conv") { + std::vector tensor_names = {node->input(0), node->input(1), + node->output(0)}; + if (node->input_size() == 3) { + tensor_names.push_back(node->input(2)); + } + if (!CanBeQuantize(tensor_names, {2})) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "MatMul") { + std::vector tensor_names = {node->input(0), node->input(1), + node->output(0)}; + for (auto& name : tensor_names) { + if (helper_->quantize_info.find(name) != helper_->quantize_info.end()) { + continue; + } + std::vector matmul_weight; + if (!GetTensorByName(name, &matmul_weight)) { + continue; + } + std::vector matmul_weight_shape; + if (!GetTensorShape(name, &matmul_weight_shape)) { + continue; + } + int64_t quantize_axis = 1; + std::vector scale; + std::vector zeros; + GetChannelWiseQuantizeInfo(matmul_weight, matmul_weight_shape, + quantize_axis, &scale, &zeros); + auto scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, scale); + auto zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, zeros); + QuantizeInfo matmul_weight_quantize_info(scale, zeros, scale_node, + zero_node, quantize_axis); + helper_->quantize_info[name] = matmul_weight_quantize_info; + } + if (!CanBeQuantize(tensor_names)) { + tensor_names.pop_back(); + if (!CanBeQuantize(tensor_names)) { + continue; + } + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + if (node->op_type() == "Mul") { + std::vector tensor_names = {node->input(0), node->input(1), + node->output(0)}; + if (!CanBeQuantize(tensor_names)) { + continue; + } + for (auto& name : tensor_names) { + AppendQuantizeTensor(name); + } + } + } + // update name2node_dict for the change of Relu op. + UpdateInputNameToNodes(); + // Add QDQ in model + AddQDQInModel(tensors_to_be_quantize); +} + +void QuantizeModelProcessor::AddQDQInModel( + const std::vector& tensors_to_be_quantize) { + // add Q and DQ according to tensors_to_be_quantize + for (auto& name : tensors_to_be_quantize) { + if (IsGraphOutput(name)) { + continue; + } + Assert(helper_->quantize_info.find(name) != helper_->quantize_info.end(), + "[QuantizeModelProcessor] Can not find quantize info for tensor: " + + name); + QuantizeInfo quantize_info = helper_->quantize_info[name]; + std::string scale_node = quantize_info.scale_node_; + std::string zeros_node = quantize_info.zeros_node_; + int64_t quantize_axis = quantize_info.quantize_axis_; + auto iter = std::find(only_dequantize_tensors.begin(), + only_dequantize_tensors.end(), name); + if (iter != only_dequantize_tensors.end()) { + // if only add DequantizeLinear + std::vector scale = quantize_info.scale_; + std::vector bias; + Assert(GetTensorByName(name, &bias), + "[QuantizeModelProcessor] Can not find bias value: " + name); + std::vector new_bias(scale.size(), 0); + for (int64_t i = 0; i < bias.size(); i++) { + float scale_val = scale.size() == 1 ? scale[0] : scale[i]; + new_bias[i] = rint(bias[i] / scale_val); + } + + Weight updated_bias; + std::vector bias_shape = {static_cast(new_bias.size())}; + updated_bias.set(P2ODataType::INT32, bias_shape, new_bias); + helper_->updated_params[name] = updated_bias; + auto dq_node = + helper_->MakeNode("DequantizeLinear", {name, scale_node, zeros_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(dq_node, "axis", quantize_axis); + } + ReplaceInputOfAllNodes(name, dq_node->output(0)); + } else { + // Handle the following situations + // conv conv + // / | \ -> / \ + // conv conv scale DQD scale + // / \ + // conv conv + std::vector> except_nodes; + auto next_nodes = name2node_dict_[name]; + if (next_nodes.size() > 1) { + for (auto& node : next_nodes) { + auto iter = + std::find(supported_quantize_type_.begin(), + supported_quantize_type_.end(), node->op_type()); + if (iter == supported_quantize_type_.end()) { + except_nodes.push_back(node); + } + } + } + // When all the outputs of this tensor cannot be renamed, + // it means that the quantization OP will be merged + if (next_nodes.size() == except_nodes.size()) { + except_nodes.clear(); + } + auto q_node = + helper_->MakeNode("QuantizeLinear", {name, scale_node, zeros_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(q_node, "axis", quantize_axis); + } + auto dq_node = helper_->MakeNode( + "DequantizeLinear", {q_node->output(0), scale_node, zeros_node}); + if (helper_->GetOpsetVersion() >= 13) { + AddAttribute(dq_node, "axis", quantize_axis); + } + ReplaceInputOfAllNodes(name, dq_node->output(0), except_nodes); + } + } +} + +void QuantizeModelProcessor::MergeConvBN() { + UpdateInputNameToNodes(); + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto conv_node = *iter; + if (conv_node->op_type() != "Conv") { + continue; + } + + bool act_has_quantize_info = + helper_->quantize_info.find(conv_node->input(0)) != + helper_->quantize_info.end(); + if (!act_has_quantize_info) { + continue; + } + auto next_nodes = name2node_dict_[conv_node->output(0)]; + + if (next_nodes.size() > 1 || IsGraphOutput(conv_node->output(0))) { + continue; + } + + auto bn_node = next_nodes[0]; + if (bn_node->op_type() != "BatchNormalization" || + IsGraphOutput(bn_node->output(0))) { + continue; + } + + std::vector conv_weight; + Assert(GetTensorByName(conv_node->input(1), &conv_weight), + "Can not get " + conv_node->input(1) + " from Conv."); + + std::vector bn_scale; + Assert(GetTensorByName(bn_node->input(1), &bn_scale), + "Can not get " + bn_node->input(1) + " from BN."); + + std::vector bn_bias; + Assert(GetTensorByName(bn_node->input(2), &bn_bias), + "Can not get " + bn_node->input(2) + " from BN."); + + std::vector bn_mean; + Assert(GetTensorByName(bn_node->input(3), &bn_mean), + "Can not get " + bn_node->input(3) + " from BN."); + + std::vector bn_var; + Assert(GetTensorByName(bn_node->input(4), &bn_var), + "Can not get " + bn_node->input(4) + " from BN."); + + float epsilon = 1; + for (auto i = 0; i < bn_node->attribute_size(); i++) { + auto attr = bn_node->attribute(i); + if (attr.name() == "epsilon") { + epsilon = attr.f(); + } + } + + std::vector conv_bias(bn_bias.size(), 0); + std::string conv_bias_node = conv_node->input(1) + ".merged.bias"; + if (conv_node->input_size() == 3) { + conv_bias_node = conv_node->input(2); + conv_bias.clear(); + Assert(GetTensorByName(conv_bias_node, &conv_bias), + "Can not get " + conv_node->input(2) + " in Conv."); + } + + // merge conv and bn + std::vector alpha(bn_scale.size()); + for (int64_t i = 0; i < bn_scale.size(); i++) { + alpha[i] = bn_scale[i] / sqrt(bn_var[i] + epsilon); + } + + std::vector new_bias(bn_scale.size()); + for (int64_t i = 0; i < bn_scale.size(); i++) { + new_bias[i] = + conv_bias[i] * alpha[i] + (bn_bias[i] - bn_mean[i] * alpha[i]); + } + std::vector new_weight(conv_weight.size()); + int64_t offset = conv_weight.size() / bn_bias.size(); + for (int64_t i = 0; i < bn_scale.size(); i++) { + int64_t outter_offset = i * offset; + for (int64_t j = 0; j < offset; j++) { + int64_t index = outter_offset + j; + new_weight[index] = conv_weight[index] * alpha[i]; + } + } + // update weight + std::vector weight_shape; + Assert(GetTensorShape(conv_node->input(1), &weight_shape), + "Can not get the shape of " + conv_node->input(1) + " in Conv."); + Weight updated_conv_weight; + updated_conv_weight.set(P2ODataType::FP32, weight_shape, new_weight); + helper_->updated_params[conv_node->input(1)] = updated_conv_weight; + // update bias + Weight updated_bias_weight; + std::vector bias_shape = {static_cast(new_bias.size())}; + updated_bias_weight.set(P2ODataType::FP32, bias_shape, new_bias); + helper_->updated_params[conv_bias_node] = updated_bias_weight; + AppendQuantizeTensor(conv_bias_node, true); + // update weight scale + auto quantize_info = helper_->quantize_info[conv_node->input(1)]; + std::string scale_node = quantize_info.scale_node_; + std::string zero_node = quantize_info.zeros_node_; + int64_t quantize_axis = quantize_info.quantize_axis_; + RemoveNodeByName(scale_node); + RemoveNodeByName(zero_node); + std::vector scale = quantize_info.scale_; + std::vector new_scale; + std::vector new_zeros; + if (scale.size() == 1) { + GetTensorWiseQuantizeInfo(new_weight, &new_scale, &new_zeros); + } else { + GetChannelWiseQuantizeInfo(new_weight, weight_shape, quantize_axis, + &new_scale, &new_zeros); + } + auto weight_scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, new_scale); + auto weight_zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT8, new_zeros); + QuantizeInfo updated_weight_quantize_info(new_scale, new_zeros, + weight_scale_node, + weight_zero_node, quantize_axis); + helper_->quantize_info[conv_node->input(1)] = updated_weight_quantize_info; + // add bias scale and update bias + auto act_quantize_info = helper_->quantize_info[conv_node->input(0)]; + std::vector act_scale = act_quantize_info.scale_; + std::vector bias_scale; + for (int64_t i = 0; i < new_scale.size(); i++) { + bias_scale.push_back(act_scale[0] * new_scale[i]); + } + std::vector bias_zeros(bias_scale.size(), 0); + auto bias_scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, bias_scale); + auto bias_zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT32, bias_zeros); + QuantizeInfo bias_quantize_info(bias_scale, bias_zeros, bias_scale_node, + bias_zero_node, 0); + helper_->quantize_info[conv_bias_node] = bias_quantize_info; + if (conv_node->input_size() == 2) { + conv_node->add_input(conv_bias_node); + } + // remove BN op + RemoveNodeByName(bn_node->name()); + } +} + +void QuantizeModelProcessor::MergeConvAdd() { + UpdateInputNameToNodes(); + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto node = *iter; + if (node->op_type() != "Conv") { + continue; + } + // if act input of conv does not have quantize info, continue + bool act_has_quantize_info = helper_->quantize_info.find(node->input(0)) != + helper_->quantize_info.end(); + if (!act_has_quantize_info) { + continue; + } + + // if weight of conv does not have quantize info, continue + bool weight_has_quantize_info = + helper_->quantize_info.find(node->input(1)) != + helper_->quantize_info.end(); + if (!weight_has_quantize_info) { + continue; + } + auto next_nodes = name2node_dict_[node->output(0)]; + + if (next_nodes.size() > 1 || IsGraphOutput(node->output(0))) { + continue; + } + + auto next_node = next_nodes[0]; + if (next_node->op_type() != "Add" || IsGraphOutput(next_node->output(0))) { + continue; + } + std::string reshape_node = node->output(0) == next_node->input(0) + ? next_node->input(1) + : next_node->input(0); + std::vector> before_nodes; + for (auto& node : *nodes_) { + for (size_t i = 0; i < node->output_size(); ++i) { + std::string node_output = node->output(i); + if (node_output == reshape_node) { + before_nodes.push_back(node); + break; + } + } + } + + if (before_nodes.size() != 1 || before_nodes[0]->op_type() != "Reshape") { + continue; + } + + std::string bias_node = before_nodes[0]->input(0); + // continue if bias is not a constant + std::vector bias_val; + if (!GetTensorByName(bias_node, &bias_val)) { + continue; + } + + // continue if shape tensor of reshape op is not a constant + std::vector shape_val; + if (!GetTensorByName(before_nodes[0]->input(1), &shape_val)) { + continue; + } + // continue if shape_val != [1, bias_val.size(), 1, 1] + std::vector target = {1, static_cast(bias_val.size()), 1, + 1}; + if (target != shape_val) { + continue; + } + // remove Reshape op + RemoveNodeByName(before_nodes[0]->name()); + // add scale for bias + std::vector weight_scale = + helper_->quantize_info[node->input(1)].scale_; + std::vector act_scale = + helper_->quantize_info[node->input(0)].scale_; + std::vector bias_scale; + for (int64_t i = 0; i < weight_scale.size(); i++) { + bias_scale.push_back(weight_scale[i] * act_scale[0]); + } + std::vector onnx_zeros(bias_scale.size(), 0); + auto scale_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, bias_scale); + auto zero_node = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT32, onnx_zeros); + + QuantizeInfo quantize_info(bias_scale, onnx_zeros, scale_node, zero_node, + 0); + + helper_->quantize_info[bias_node] = quantize_info; + AppendQuantizeTensor(bias_node, true); + node->add_input(bias_node); + RemoveNodeByName(next_node->name()); + } +} + +void QuantizeModelProcessor::SortNodes() { + // return the topo sort of nodes; + // 1. Get i2o_mapper and constant_nodes, i2o_mapper means the node map to its + // all output nodes, constant_nodes save all constant nodes. + // 2. Nodes without output nodes are first saved to new_nodes, and then + // cyclically delete the records of the node in i2o_mapper items, and nodes + // whose output nodes are empty are also saved to new_nodes in turn. + // 3. Store constant nodes in new_nodes. + // 4. Reverse new_nodes, then assign to nodes. + std::map> i2o_mapper; + std::vector> constant_nodes; + std::map> + name2node_mapper; + for (int64_t i = 0; i < nodes_->size(); i++) { + auto node = (*nodes_)[i]; + if (node->op_type() == "Constant") { + constant_nodes.push_back(node); + continue; + } + name2node_mapper[node->name()] = node; + for (int64_t in_index = 0; in_index < node->input_size(); in_index++) { + std::string input = node->input(in_index); + for (int64_t j = 0; j < nodes_->size(); j++) { + if (i == j) { + continue; + } + auto input_node = (*nodes_)[j]; + if (input_node->op_type() == "Constant") { + continue; + } + for (int64_t out_index = 0; out_index < input_node->output_size(); + out_index++) { + if (input == input_node->output(out_index)) { + if (i2o_mapper.find(input_node->name()) == i2o_mapper.end()) { + i2o_mapper[input_node->name()] = {node->name()}; + } else { + auto iter = + std::find(i2o_mapper[input_node->name()].begin(), + i2o_mapper[input_node->name()].end(), node->name()); + if (iter == i2o_mapper[input_node->name()].end()) { + i2o_mapper[input_node->name()].push_back(node->name()); + } + } + } + } + } + } + } + std::vector> new_nodes; + + for (int64_t i = 0; i < nodes_->size(); i++) { + auto node_name = (*nodes_)[i]->name(); + auto node = (*nodes_)[i]; + if (node->op_type() == "Constant") { + continue; + } + if (i2o_mapper.find(node_name) == i2o_mapper.end()) { + new_nodes.push_back(node); + } + } + int64_t index = 0; + while (index < new_nodes.size()) { + auto current_node = new_nodes[index]; + std::string current_node_name = current_node->name(); + for (auto iter = i2o_mapper.begin(); iter != i2o_mapper.end(); iter++) { + std::string input_node_name = iter->first; + std::vector* output_nodes_name = &iter->second; + if (output_nodes_name->empty()) { + continue; + } + auto in_inter = std::find(output_nodes_name->begin(), + output_nodes_name->end(), current_node_name); + if (in_inter != output_nodes_name->end()) { + output_nodes_name->erase(in_inter); + } + if (output_nodes_name->empty()) { + new_nodes.push_back(name2node_mapper[input_node_name]); + } + } + index++; + } + + for (auto& node : constant_nodes) { + new_nodes.push_back(node); + } + std::reverse(new_nodes.begin(), new_nodes.end()); + Assert(nodes_->size() == new_nodes.size(), + "The number of nodes after topological sorting is not equal to the " + "number before sorting"); + *nodes_ = new_nodes; +} + +void QuantizeModelProcessor::RemoveAllQuantizeOps() { + UpdateInputNameToNodes(); + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto node = *iter; + if (node->op_type() != "QuantizeLinear") { + continue; + } + auto next_node_names = name2node_dict_[node->output(0)]; + + if (next_node_names.empty() || !next_node_names[0]->has_op_type() || + next_node_names[0]->op_type() != "DequantizeLinear") { + continue; + } + std::string input_name = node->input(0); + RemoveNodeByName(node->name()); + std::string output_name = next_node_names[0]->output(0); + RemoveNodeByName(next_node_names[0]->name()); + ReplaceInputOfAllNodes(output_name, input_name); + } +} + +// Broadcast quantize info between the input and output of the OPs that will not +// change quantize info +void QuantizeModelProcessor::QuantizeInfoBroadcast() { + UpdateInputNameToNodes(); + for (auto iter = nodes_->begin(); iter < nodes_->end(); iter++) { + auto node = *iter; + if (node->op_type() != "Identity") { + continue; + } + std::string input_name = node->input(0); + std::string output_name = node->output(0); + auto input_quantize_info_iter = helper_->quantize_info.find(input_name); + auto output_quantize_info_iter = helper_->quantize_info.find(output_name); + // The input and output of Identity do not have quantize info + if (input_quantize_info_iter == helper_->quantize_info.end() && + output_quantize_info_iter == helper_->quantize_info.end()) { + continue; + } + // The input and output of Identity have quantize info + if (input_quantize_info_iter != helper_->quantize_info.end() && + output_quantize_info_iter != helper_->quantize_info.end()) { + continue; + } + if (input_quantize_info_iter != helper_->quantize_info.end()) { + helper_->quantize_info[output_name] = helper_->quantize_info[input_name]; + } else if (output_quantize_info_iter != helper_->quantize_info.end()) { + helper_->quantize_info[input_name] = helper_->quantize_info[output_name]; + } + if (ConnectToOutput(output_name)) { + continue; + } + RemoveNodeByName(node->name()); + iter--; + } +} + +bool QuantizeModelProcessor::IsGraphOutput(const std::string& name) { + for (auto& item : *outputs_) { + auto out_node = (*item.get()); + if (name == out_node.name()) { + return true; + } + } + return false; +} + +// Try get tensor shape value +bool QuantizeModelProcessor::GetTensorShape(const std::string& name, + std::vector* shape) { + for (auto& item : *parameters_) { + auto node = *(item.get()); + if (node.output(0) != name) { + continue; + } + for (auto i = 0; i < node.attribute_size(); i++) { + auto attr = node.attribute(i); + if (attr.name() == "value") { + auto tensor = attr.mutable_t(); + for (int64_t i = 0; i < tensor->dims_size(); i++) { + shape->push_back(tensor->dims(i)); + } + } + } + } + return !shape->empty(); +} + +void QuantizeModelProcessor::GetTensorWiseQuantizeInfo( + const std::vector& tensor, std::vector* scale, + std::vector* zero) { + float max_val = -1; + for (int64_t i = 0; i < tensor.size(); i++) { + if (fabs(tensor[i]) > max_val) { + max_val = fabs(tensor[i]); + } + } + Assert(max_val >= 0, + "[GetTensorWiseQuantizeInfo] Require the scale >= 0, but now it's " + + std::to_string(max_val) + "."); + scale->push_back(max_val / 127); + zero->push_back(0); +} + +void QuantizeModelProcessor::GetChannelWiseQuantizeInfo( + const std::vector& tensor, const std::vector& shape, + const int64_t& quant_axis, std::vector* scale, + std::vector* zero) { + int64_t channel_count = shape[quant_axis]; + + for (int64_t i = 0; i < channel_count; i++) { + if (quant_axis == 0) { + float max_val = -1; + int64_t inner_offset = 1; + for (auto& j : shape) { + inner_offset *= j; + } + inner_offset /= channel_count; + int64_t index = i * inner_offset; + for (int64_t j = 0; j < inner_offset; j++) { + if (fabs(tensor[index + j]) > max_val) { + max_val = fabs(tensor[index + j]); + } + } + Assert( + max_val >= 0, + "[GetChannelWiseQuantizeInfo] Require the scale >= 0, but now it's " + + std::to_string(max_val) + "."); + scale->push_back(max_val / 127); + zero->push_back(0); + } else if (quant_axis == 1) { + float max_val = -1; + int64_t inner_offset = shape.size() == 4 ? shape[2] * shape[3] : 1; + for (int64_t outter = 0; outter < shape[0]; outter++) { + int64_t index = outter * channel_count * inner_offset; + for (int64_t inner = 0; inner < inner_offset; inner++) { + int64_t final_index = index + i * inner_offset + inner; + if (fabs(tensor[final_index]) > max_val) { + max_val = fabs(tensor[final_index]); + } + } + } + Assert( + max_val >= 0, + "[GetChannelWiseQuantizeInfo] Require the scale >= 0, but now it's " + + std::to_string(max_val) + "."); + scale->push_back(max_val / 127); + zero->push_back(0); + } else { + Assert(false, + "QuantizeModelProcessor::GetChannelWiseQuantizeInfo only supports " + "quant_axis equals to 0 or 1, but now it's " + + std::to_string(quant_axis) + "."); + } + } +} + +template +bool QuantizeModelProcessor::GetTensorByName(const std::string& name, + std::vector* value) { + // Find tensor values in the following order, if found, store the data in + // value, and return true: + // 1. updated_parameters, the weight of conv or matmul. + // 2. parameters of original graph, the scale or bias of BN. + // 3. constant node in nodes, other vals. + auto updated_params_iter = helper_->updated_params.find(name); + if (updated_params_iter != helper_->updated_params.end()) { + (updated_params_iter->second).get(value); + return true; + } + for (int64_t block_index = 0; block_index < parser_->NumOfBlocks(); + block_index++) { + if (parser_->TryGetTensorValue(block_index, name, value)) { + return true; + } + } + return helper_->TryGetTensorValue(name, value); +} + +bool QuantizeModelProcessor::ConnectToOutput(const std::string& output_name) { + std::vector names = {output_name}; + while (!names.empty()) { + std::string name = names[names.size() - 1]; + names.pop_back(); + if (IsGraphOutput(name)) { + return true; + } + auto next_nodes = name2node_dict_[name]; + for (auto& next : next_nodes) { + if (next->op_type() == "Identity") { + names.push_back(next->output(0)); + } + } + } + return false; +} + +bool QuantizeModelProcessor::CanBeQuantize( + const std::vector& tensor_names, + const std::vector& output_index) { + for (auto& tensor : tensor_names) { + if (helper_->quantize_info.find(tensor) == helper_->quantize_info.end()) { + return false; + } + } + // If there is an OP linked to the output by identity, it needs to be skipped, + // do not quantize the OP + for (auto i = 0; i < output_index.size(); i++) { + int64_t index = output_index[i]; + if (index == -1) { + index = tensor_names.size() - 1; + } + + std::string output_name = tensor_names[index]; + if (ConnectToOutput(output_name)) { + return false; + } + } + return true; +} + +void QuantizeModelProcessor::AppendQuantizeTensor(const std::string& tensor, + const bool& only_dequantize) { + if (only_dequantize) { + if (std::find(only_dequantize_tensors.begin(), + only_dequantize_tensors.end(), + tensor) == only_dequantize_tensors.end()) { + only_dequantize_tensors.push_back(tensor); + } + } else { + if (std::find(tensors_to_be_quantize.begin(), tensors_to_be_quantize.end(), + tensor) == tensors_to_be_quantize.end()) { + tensors_to_be_quantize.push_back(tensor); + } + } +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/quantize_helper.h b/paddle2onnx/mapper/quantize_helper.h new file mode 100644 index 0000000000..c60a284f6d --- /dev/null +++ b/paddle2onnx/mapper/quantize_helper.h @@ -0,0 +1,133 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include +#include +#include + +#include "paddle2onnx/mapper/mapper.h" +#include "paddle2onnx/parser/parser.h" +namespace paddle2onnx { + +struct QuantizeModelProcessor { + public: + std::vector quantize_info; + const PaddleParser* parser_; + OnnxHelper* helper_; + + std::vector>* parameters_; + std::vector>* inputs_; + std::vector>* outputs_; + std::vector>* nodes_; + // All types that support quantization + std::vector supported_quantize_type_; + + std::map>> + name2node_dict_; + std::vector tensors_to_be_quantize; // records those tensors + // that need to add quantize + // and dequantize op + std::vector only_dequantize_tensors; // records those tensors + // that only need to add + // the dequantize op + // Convert to different model formats based on backend, backend can be + // TensorRT, ONNXRuntime and Others + void ProcessQuantizeModel( + std::vector>* parameters, + std::vector>* inputs, + std::vector>* outputs, + std::vector>* nodes, + OnnxHelper* helper, const std::string& deploy_backend, + const PaddleParser& parser, std::string* calibration_cache = nullptr); + + // Remove all Quantize and Dequantize ops + void RemoveAllQuantizeOps(); + + // If all tensors in tensor_names have quantize info and all the next nodes + // can be quantized, return True, otherwise + // return false + bool CanBeQuantize(const std::vector& tensor_names, + const std::vector& output_index = {-1}); + // only_dequantize records those tensors that only need to add the dequantize + // op + void AppendQuantizeTensor(const std::string& tensor, + const bool& only_dequantize = false); + + // Add QDQ for ORT according to: + // https://github.com/microsoft/onnxruntime/blob/master/onnxruntime/core/optimizer/qdq_transformer/selectors_actions/qdq_selector_action_transformer.cc + void AddQDQForORT(); + + // Determine if the tensor is directly linked to the output by identity + bool ConnectToOutput(const std::string& output_name); + + // Generate cache file for TensorRT8.X int8 deploy + void GenerateCache(std::string* calibration_cache); + + // Add QDQ for TRT according to: + // https://github.com/NVIDIA/TensorRT/tree/main/tools/pytorch-quantization/pytorch_quantization/nn/modules + void AddTrtQDQ(); + + // Add QDQ for RKNN + void AddQDQForRKNN(); + + // Add quantize related op in model according to tensor names + void AddQDQInModel(const std::vector& tensors_to_be_quantize); + + void QuantizeInfoBroadcast(); + + // merge conv + add + void MergeConvAdd(); + + // merge conv + BN + void MergeConvBN(); + + // Determine whether a tensor is an output + bool IsGraphOutput(const std::string& name); + + // Because processing the quantize model will add new nodes, which will + // destroy the topo sorting of nodes, this function will sort the nodes again + void SortNodes(); + + bool GetTensorShape(const std::string& name, std::vector* shape); + + // return the value of tensor by name + template + bool GetTensorByName(const std::string& name, std::vector* value); + + // Perform tensor wise quantization, returning scale and zero + void GetTensorWiseQuantizeInfo(const std::vector& tensor, + std::vector* scale, + std::vector* zero); + + // Perform channel wise quantization, returning scale and zero + void GetChannelWiseQuantizeInfo(const std::vector& tensor, + const std::vector& shape, + const int64_t& quant_axis, + std::vector* scale, + std::vector* zero); + + // Generate name2node_dict to save input name and its related nodes + void UpdateInputNameToNodes(); + + void RemoveNodeByName(const std::string& name, const bool& update_io = true); + + void ReplaceInputOfAllNodes( + const std::string& old_name, const std::string& new_name, + const std::vector>& + except_nodes = {}); +}; +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/register_mapper.h b/paddle2onnx/mapper/register_mapper.h new file mode 100644 index 0000000000..1d2253e0f3 --- /dev/null +++ b/paddle2onnx/mapper/register_mapper.h @@ -0,0 +1,115 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include +#include + +#include "paddle2onnx/utils/utils.h" +// This code is modified from +// https://blog.csdn.net/ZJU_fish1996/article/details/86515711 +namespace paddle2onnx { +class Mapper; +class PaddleParser; +class OnnxHelper; +#define REGISTER_MAPPER(op_name, class_name) \ + class op_name##Generator : public Generator { \ + public: \ + op_name##Generator() { MapperHelper::Get()->Push(#op_name, this); } \ + void Touch() {}; \ + Mapper* Create(const PaddleParser& p, OnnxHelper* h, int64_t b, \ + int64_t o) { \ + auto m = new class_name(p, h, b, o); \ + m->name_ = #class_name; \ + return m; \ + } \ + }; \ + op_name##Generator* op_name##inst = new op_name##Generator(); \ + int Touch##op_name##class_name() { \ + op_name##inst->Touch(); \ + return 0; \ + } + +class Generator { + public: + virtual Mapper* Create(const PaddleParser&, OnnxHelper* helper, int64_t, + int64_t) = 0; +}; + +class MapperHelper { + private: + std::map mappers; + std::map name_counter; + MapperHelper() {} + + public: + static MapperHelper* helper; + static MapperHelper* Get() { + if (nullptr == helper) { + helper = new MapperHelper(); + } + return helper; + } + + int64_t GetAllOps(const std::string& file_path) { + std::ofstream outfile(file_path); + if (!outfile) { + std::cerr << "Failed to open file: " << file_path << std::endl; + return mappers.size(); + } + for (auto iter = mappers.begin(); iter != mappers.end(); iter++) { + outfile << iter->first << std::endl; + } + outfile << "Total OPs: " << mappers.size() << std::endl; + std::cout << " [ * Paddle2ONNX * ] All Registered OPs saved in " + << file_path << std::endl; + outfile.close(); + return mappers.size(); + } + + bool IsRegistered(const std::string& op_name) { + auto iter = mappers.find(op_name); + if (mappers.end() == iter) { + return false; + } + return true; + } + + std::string GenName(const std::string& op_name) { + std::string key = "p2o." + op_name + "."; + if (name_counter.find(key) == name_counter.end()) { + name_counter[key] = 0; + } else { + name_counter[key] += 1; + } + return key + std::to_string(name_counter[key]); + } + + void ClearNameCounter() { name_counter.clear(); } + + Mapper* CreateMapper(const std::string& name, const PaddleParser& parser, + OnnxHelper* helper, int64_t block_id, int64_t op_id) { + Assert(mappers.find(name) != mappers.end(), + name + " cannot be found in registered mappers."); + return mappers[name]->Create(parser, helper, block_id, op_id); + } + + void Push(const std::string& name, Generator* generator) { + Assert(mappers.find(name) == mappers.end(), + name + " has been registered before."); + mappers[name] = generator; + } +}; +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/add_n.cc b/paddle2onnx/mapper/tensor/add_n.cc new file mode 100644 index 0000000000..24c5c67da5 --- /dev/null +++ b/paddle2onnx/mapper/tensor/add_n.cc @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/add_n.h" + +namespace paddle2onnx { +REGISTER_MAPPER(sum, AddNMapper) + +void AddNMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + if (x_info.size() == 1) { + helper_->AutoCast(x_info[0].name, out_info[0].name, x_info[0].dtype, + out_info[0].dtype); + } else { + std::vector inputs; + for (auto i = 0; i < x_info.size(); ++i) { + inputs.push_back(helper_->AutoCast(x_info[i].name, x_info[0].dtype, + P2ODataType::FP32)); + } + auto output = helper_->MakeNode("Sum", inputs)->output(0); + helper_->AutoCast(output, out_info[0].name, P2ODataType::FP32, + out_info[0].dtype); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/add_n.h b/paddle2onnx/mapper/tensor/add_n.h new file mode 100644 index 0000000000..b74191a464 --- /dev/null +++ b/paddle2onnx/mapper/tensor/add_n.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class AddNMapper : public Mapper { + public: + AddNMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argmax.cc b/paddle2onnx/mapper/tensor/argmax.cc new file mode 100644 index 0000000000..3327eea3d1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argmax.cc @@ -0,0 +1,73 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/argmax.h" + +namespace paddle2onnx { +REGISTER_MAPPER(arg_max, ArgMaxMapper) + +int32_t ArgMaxMapper::GetMinOpset(bool verbose) { + if (IsAttrVar("axis") && !IsConstant(GetAttrVar("axis")[0])) { + Error() << "While Attribute(axis)'s type is Tensor, it's not " + "supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } + return 7; +} + +void ArgMaxMapper::Opset7() { + auto input_info = parser_->GetOpInput(block_idx_, op_idx_, "X"); + auto output_info = parser_->GetOpOutput(block_idx_, op_idx_, "Out"); + auto input = input_info[0].name; + if (flatten_) { + input = helper_->Flatten(input_info[0].name); + } + + // Make sure the output tensor has to be 1D-Tensor + bool need_unsqueeze = false; + if (flatten_ || input_info[0].shape.size() <= 1) { + if (!keepdims_) { + need_unsqueeze = true; + } + } + if (IsAttrVar("axis")) { + auto axis_info = GetAttrVar("axis"); + std::vector temp; + TryGetValue(axis_info[0], &temp); + axis_ = temp[0]; + } else { + GetAttr("axis", &axis_); + } + if (input_info[0].dtype == P2ODataType::FP64) { + input = helper_->AutoCast(input, P2ODataType::FP64, P2ODataType::FP32); + } + if (input_info[0].dtype == P2ODataType::INT64) { + input = helper_->AutoCast(input, P2ODataType::INT64, P2ODataType::INT32); + } + auto arg_node = helper_->MakeNode("ArgMax", {input}); + AddAttribute(arg_node, "axis", axis_); + AddAttribute(arg_node, "keepdims", static_cast(keepdims_)); + if (!need_unsqueeze) { + helper_->AutoCast(arg_node->output(0), output_info[0].name, + P2ODataType::INT64, output_info[0].dtype); + } else { + auto out = helper_->Unsqueeze(arg_node->output(0), {0}); + helper_->AutoCast(out, output_info[0].name, P2ODataType::INT64, + output_info[0].dtype); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argmax.h b/paddle2onnx/mapper/tensor/argmax.h new file mode 100755 index 0000000000..f7375e94e1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argmax.h @@ -0,0 +1,42 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ArgMaxMapper : public Mapper { + public: + ArgMaxMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("flatten", &flatten_); + GetAttr("keepdims", &keepdims_); + GetAttr("dtype", &dtype_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + bool flatten_; + bool keepdims_; + int64_t axis_; + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argmin.cc b/paddle2onnx/mapper/tensor/argmin.cc new file mode 100644 index 0000000000..f0be6eda14 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argmin.cc @@ -0,0 +1,73 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/argmin.h" + +namespace paddle2onnx { +REGISTER_MAPPER(arg_min, ArgMinMapper) + +int32_t ArgMinMapper::GetMinOpset(bool verbose) { + if (IsAttrVar("axis") && !IsConstant(GetAttrVar("axis")[0])) { + Error() << "While Attribute(axis)'s type is Tensor, it's not " + "supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } + return 7; +} + +void ArgMinMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto input = input_info[0].name; + if (flatten_) { + input = helper_->Flatten(input_info[0].name); + } + + // Make sure the output tensor has to be 1D-Tensor + bool need_unsqueeze = false; + if (flatten_ || input_info[0].shape.size() <= 1) { + if (!keepdims_) { + need_unsqueeze = true; + } + } + if (IsAttrVar("axis")) { + auto axis_info = GetAttrVar("axis"); + std::vector temp; + TryGetValue(axis_info[0], &temp); + axis_ = temp[0]; + } else { + GetAttr("axis", &axis_); + } + if (input_info[0].dtype == P2ODataType::FP64) { + input = helper_->AutoCast(input, P2ODataType::FP64, P2ODataType::FP32); + } + if (input_info[0].dtype == P2ODataType::INT64) { + input = helper_->AutoCast(input, P2ODataType::INT64, P2ODataType::INT32); + } + auto arg_node = helper_->MakeNode("ArgMin", {input}); + AddAttribute(arg_node, "axis", axis_); + AddAttribute(arg_node, "keepdims", static_cast(keepdims_)); + if (!need_unsqueeze) { + helper_->AutoCast(arg_node->output(0), output_info[0].name, + P2ODataType::INT64, output_info[0].dtype); + } else { + auto out = helper_->Unsqueeze(arg_node->output(0), {0}); + helper_->AutoCast(out, output_info[0].name, P2ODataType::INT64, + output_info[0].dtype); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argmin.h b/paddle2onnx/mapper/tensor/argmin.h new file mode 100755 index 0000000000..ca29d1a590 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argmin.h @@ -0,0 +1,42 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ArgMinMapper : public Mapper { + public: + ArgMinMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("flatten", &flatten_); + GetAttr("keepdims", &keepdims_); + GetAttr("dtype", &dtype_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + bool flatten_; + bool keepdims_; + int64_t axis_; + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argsort.cc b/paddle2onnx/mapper/tensor/argsort.cc new file mode 100644 index 0000000000..bef1002137 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argsort.cc @@ -0,0 +1,77 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/argsort.h" + +namespace paddle2onnx { +REGISTER_MAPPER(argsort, ArgsortMapper) + +int32_t ArgsortMapper::GetMinOpset(bool verbose) { + if (!descending_) { + Logger(verbose, 11) << "While descending=False, " << RequireOpset(11) + << std::endl; + return 11; + } + + if (axis_ < 0) { + axis_ = axis_ + GetInput("X")[0].Rank(); + } + if (GetInput("X")[0].shape[axis_] <= 0) { + Logger(verbose, 10) << "While input shape is dynamic, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; +} + +void ArgsortMapper::Opset10() { + auto x_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto indices_info = GetOutput("Indices"); + + auto shape = helper_->MakeNode("Shape", {x_info[0].name})->output(0); + if (axis_ < 0) { + axis_ = axis_ + x_info[0].Rank(); + } + auto dim_size = helper_->Slice(shape, {0}, {axis_}, {axis_ + 1}); + + auto out_node = + helper_->MakeNode("TopK", {x_info[0].name, dim_size}, + {output_info[0].name, indices_info[0].name}); + AddAttribute(out_node, "axis", axis_); + if (helper_->GetOpsetVersion() > 10) { + if (!descending_) { + AddAttribute(out_node, "largest", static_cast(0)); + } else { + AddAttribute(out_node, "largest", static_cast(1)); + } + } +} + +void ArgsortMapper::Opset7() { + auto x_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto indices_info = GetOutput("Indices"); + + if (axis_ < 0) { + axis_ = axis_ + x_info[0].Rank(); + } + + auto out_node = helper_->MakeNode( + "TopK", {x_info[0].name}, {output_info[0].name, indices_info[0].name}); + AddAttribute(out_node, "axis", axis_); + AddAttribute(out_node, "k", x_info[0].shape[axis_]); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/argsort.h b/paddle2onnx/mapper/tensor/argsort.h new file mode 100644 index 0000000000..c339566729 --- /dev/null +++ b/paddle2onnx/mapper/tensor/argsort.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ArgsortMapper : public Mapper { + public: + ArgsortMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("descending", &descending_); + GetAttr("axis", &axis_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset10(); + void Opset7(); + + private: + bool descending_; + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/assign.cc b/paddle2onnx/mapper/tensor/assign.cc new file mode 100644 index 0000000000..a4d0d3553d --- /dev/null +++ b/paddle2onnx/mapper/tensor/assign.cc @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/assign.h" + +namespace paddle2onnx { +REGISTER_MAPPER(assign, AssignMapper) +REGISTER_MAPPER(share_data, AssignMapper) + +void AssignMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + if (block_idx_ != 0 && OpType() != "share_data") { + // Here's a trick for tensorrt + // Consider remove this trick + if (input_info[0].dtype == P2ODataType::BOOL) { + auto zero = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(1, 0)); + auto cast_input = helper_->AutoCast(input_info[0].name, P2ODataType::BOOL, + P2ODataType::INT64); + auto result = helper_->MakeNode("Add", {cast_input, zero})->output(0); + helper_->AutoCast(result, output_info[0].name, P2ODataType::INT64, + output_info[0].dtype); + } else { + auto zero = helper_->Constant(GetOnnxDtype(input_info[0].dtype), + std::vector(1, 0.0)); + auto new_input = + helper_->Unsqueeze(input_info[0].name, std::vector(1, 0)); + auto result = helper_->MakeNode("Add", {new_input, zero})->output(0); + helper_->Squeeze(result, output_info[0].name, std::vector(1, 0)); + } + } else { + helper_->MakeNode("Identity", {input_info[0].name}, {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/assign.h b/paddle2onnx/mapper/tensor/assign.h new file mode 100644 index 0000000000..ad9585978f --- /dev/null +++ b/paddle2onnx/mapper/tensor/assign.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class AssignMapper : public Mapper { + public: + AssignMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/assign_value.cc b/paddle2onnx/mapper/tensor/assign_value.cc new file mode 100644 index 0000000000..6f476cd444 --- /dev/null +++ b/paddle2onnx/mapper/tensor/assign_value.cc @@ -0,0 +1,49 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/assign_value.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(assign_value, AssignValueMapper) + +int32_t AssignValueMapper::GetMinOpset(bool verbose) { + int32_t dtype = static_cast(dtype_); + if (dtype != P2ODataType::INT32 && dtype != P2ODataType::INT64 && + dtype != P2ODataType::FP32) { + Error() << "Only supports int32/int64/float32." << std::endl; + return -1; + } + return 7; +} + +void AssignValueMapper::Opset7() { + auto output_info = GetOutput("Out"); + int32_t dtype = static_cast(dtype_); + if (dtype == P2ODataType::INT32) { + helper_->Assign(output_info[0].name, GetOnnxDtype(output_info[0].dtype), + shape_, int64_values_); + } else if (dtype == P2ODataType::FP32) { + helper_->Assign(output_info[0].name, GetOnnxDtype(output_info[0].dtype), + shape_, fp32_values_); + } else if (dtype == P2ODataType::INT64) { + helper_->Assign(output_info[0].name, GetOnnxDtype(output_info[0].dtype), + shape_, int64_values_); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/assign_value.h b/paddle2onnx/mapper/tensor/assign_value.h new file mode 100644 index 0000000000..ebda258857 --- /dev/null +++ b/paddle2onnx/mapper/tensor/assign_value.h @@ -0,0 +1,49 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class AssignValueMapper : public Mapper { + public: + AssignValueMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("dtype", &dtype_); + GetAttr("shape", &shape_); + int32_t dtype = static_cast(dtype_); + if (dtype == P2ODataType::INT32) { + GetAttr("int32_values", &int64_values_); + } else if (dtype == P2ODataType::FP32) { + GetAttr("fp32_values", &fp32_values_); + } else if (dtype == P2ODataType::INT64) { + GetAttr("int64_values", &int64_values_); + } + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector fp32_values_; + std::vector int64_values_; + std::vector shape_; + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/bmm.cc b/paddle2onnx/mapper/tensor/bmm.cc new file mode 100644 index 0000000000..7d8c0b76d2 --- /dev/null +++ b/paddle2onnx/mapper/tensor/bmm.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/bmm.h" + +namespace paddle2onnx { +REGISTER_MAPPER(bmm, BmmMapper) + +void BmmMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + auto y = helper_->AutoCast(y_info[0].name, y_info[0].dtype, x_info[0].dtype); + helper_->MakeNode("MatMul", {x_info[0].name, y}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/bmm.h b/paddle2onnx/mapper/tensor/bmm.h new file mode 100644 index 0000000000..0f0057f78d --- /dev/null +++ b/paddle2onnx/mapper/tensor/bmm.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class BmmMapper : public Mapper { + public: + BmmMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/cast.cc b/paddle2onnx/mapper/tensor/cast.cc new file mode 100644 index 0000000000..8e9c6c647d --- /dev/null +++ b/paddle2onnx/mapper/tensor/cast.cc @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/cast.h" + +namespace paddle2onnx { +REGISTER_MAPPER(cast, CastMapper) + +void CastMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto node = + helper_->MakeNode("Cast", {input_info[0].name}, {output_info[0].name}); + AddAttribute(node, "to", GetOnnxDtype(out_dtype_)); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/cast.h b/paddle2onnx/mapper/tensor/cast.h new file mode 100644 index 0000000000..d95c9c6582 --- /dev/null +++ b/paddle2onnx/mapper/tensor/cast.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class CastMapper : public Mapper { + public: + CastMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("out_dtype", &out_dtype_); + } + void Opset7(); + + private: + int64_t out_dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/clip.cc b/paddle2onnx/mapper/tensor/clip.cc new file mode 100644 index 0000000000..6ef10525f3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/clip.cc @@ -0,0 +1,89 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/clip.h" + +namespace paddle2onnx { +REGISTER_MAPPER(clip, ClipMapper) + +int32_t ClipMapper::GetMinOpset(bool verbose) { + bool has_max_tensor_input = HasInput("Max"); + bool has_min_tensor_input = HasInput("Min"); + if (has_max_tensor_input || has_min_tensor_input) { + return 11; + } + return 7; +} + +void ClipMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + bool has_max_tensor_input = HasInput("Max"); + bool has_min_tensor_input = HasInput("Min"); + + if (has_max_tensor_input || has_min_tensor_input) { + bool dtype_converted = false; + std::string input_name = input_info[0].name; + int32_t dtype = input_info[0].dtype; + // onnxruntime only supports float input + if (input_info[0].dtype != P2ODataType::FP32) { + input_name = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + dtype_converted = true; + dtype = P2ODataType::FP32; + } + std::string max_name; + if (has_max_tensor_input) { + auto max_info = GetInput("Max"); + max_name = helper_->AutoCast(max_info[0].name, max_info[0].dtype, dtype); + if (max_info[0].Rank() > 0) { + max_name = helper_->Squeeze(max_name, {}); + } + } else { + float max_val; + GetAttr("max", &max_val); + max_name = helper_->Constant({}, GetOnnxDtype(dtype), max_val); + } + std::string min_name; + if (has_min_tensor_input) { + auto min_info = GetInput("Min"); + min_name = helper_->AutoCast(min_info[0].name, min_info[0].dtype, dtype); + if (min_info[0].Rank() > 0) { + min_name = helper_->Squeeze(min_name, {}); + } + } else { + float min_val; + GetAttr("min", &min_val); + min_name = helper_->Constant({}, GetOnnxDtype(dtype), min_val); + } + if (dtype_converted) { + auto node = helper_->MakeNode("Clip", {input_name, min_name, max_name}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + } else { + helper_->MakeNode("Clip", {input_name, min_name, max_name}, + {output_info[0].name}); + } + } else { + float max_val; + GetAttr("max", &max_val); + float min_val; + GetAttr("min", &min_val); + helper_->Clip(input_info[0].name, output_info[0].name, min_val, max_val, + input_info[0].dtype); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/clip.h b/paddle2onnx/mapper/tensor/clip.h new file mode 100644 index 0000000000..2e2019da69 --- /dev/null +++ b/paddle2onnx/mapper/tensor/clip.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ClipMapper : public Mapper { + public: + ClipMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/concat.cc b/paddle2onnx/mapper/tensor/concat.cc new file mode 100644 index 0000000000..3b106bd5af --- /dev/null +++ b/paddle2onnx/mapper/tensor/concat.cc @@ -0,0 +1,72 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/concat.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(concat, ConcatMapper) + +int32_t ConcatMapper::GetMinOpset(bool verbose) { + if (HasInput("AxisTensor") && !IsConstantInput("AxisTensor")) { + Error() << "While AxisTensor as input exists, it's not supported unless " + "it's a constant tensor." + << std::endl; + return -1; + } else if (IsAttrVar("axis") && !IsConstant(GetAttrVar("axis")[0])) { + Error() << "While Attribute(axis)'s type is Tensor, it's not supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } + return 7; +} + +void ConcatMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + int32_t casted_dtype; + std::vector casted_names = + helper_->DtypeAlignment(input_info, &casted_dtype); + + auto parse_axis_value = [&](const TensorInfo& tensor_info, int64_t& axis) { + std::vector value; + TryGetValue(tensor_info, &value); + axis = value[0]; + }; + + bool has_axis_tensor_input = HasInput("AxisTensor"); + + int64_t axis = axis_; + // NOTE(Aurelius84): we need to deprecate this branch in the future. + if (has_axis_tensor_input) { + auto info = GetInput("AxisTensor"); + parse_axis_value(info[0], axis); + } else if (IsAttrVar("axis")) { + auto info = GetAttrVar("axis"); + parse_axis_value(info[0], axis); + } + if (axis < 0) { + axis = axis + input_info[0].Rank(); + } + auto node = helper_->MakeNode("Concat", casted_names); + AddAttribute(node, "axis", axis); + helper_->AutoCast(node->output(0), output_info[0].name, casted_dtype, + output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/concat.h b/paddle2onnx/mapper/tensor/concat.h new file mode 100644 index 0000000000..4a4a79df17 --- /dev/null +++ b/paddle2onnx/mapper/tensor/concat.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ConcatMapper : public Mapper { + public: + ConcatMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/cumsum.cc b/paddle2onnx/mapper/tensor/cumsum.cc new file mode 100644 index 0000000000..f16ef65c76 --- /dev/null +++ b/paddle2onnx/mapper/tensor/cumsum.cc @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/cumsum.h" + +namespace paddle2onnx { +REGISTER_MAPPER(cumsum, CumsumMapper) + +int32_t CumsumMapper::GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void CumsumMapper::Opset11() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + std::string axis_node; + if (IsAttrVar("axis")) { + auto axis_info = GetAttrVar("axis"); + axis_node = helper_->AutoCast(axis_info[0].name, axis_info[0].dtype, + P2ODataType::INT64); + } else { + GetAttr("axis", &axis_); + axis_node = helper_->Constant({1}, GetOnnxDtype(P2ODataType::INT64), axis_); + } + helper_->MakeNode("CumSum", {input_info[0].name, axis_node}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/cumsum.h b/paddle2onnx/mapper/tensor/cumsum.h new file mode 100644 index 0000000000..7f747f55c3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/cumsum.h @@ -0,0 +1,35 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class CumsumMapper : public Mapper { + public: + CumsumMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/dist.cc b/paddle2onnx/mapper/tensor/dist.cc new file mode 100644 index 0000000000..b69bb3de70 --- /dev/null +++ b/paddle2onnx/mapper/tensor/dist.cc @@ -0,0 +1,67 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/dist.h" + +#include +#include + +namespace paddle2onnx { + +REGISTER_MAPPER(dist, DistMapper) + +const int g_NegIntInfinity = 0xFF800000; +const float g_NegFloatInfinity = *((float *)&g_NegIntInfinity); + +void DistMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + + auto sub_node = helper_->MakeNode("Sub", {x_info[0].name, y_info[0].name}); + auto abs_node = helper_->MakeNode("Abs", {sub_node->output(0)}); + + if (fabs(p_) < 1e-6) { + auto sign_node = helper_->MakeNode("Sign", {abs_node->output(0)}); + auto sum_node = helper_->MakeNode("ReduceSum", {sign_node->output(0)}); + AddAttribute(sum_node, "keepdims", static_cast(0)); + auto s_sum_node = helper_->Reshape(sum_node->output(0), {-1}); + helper_->AutoCast(s_sum_node, output_info[0].name, x_info[0].dtype, + output_info[0].dtype); + } else if (p_ == std::numeric_limits::infinity()) { + auto max_node = helper_->MakeNode("ReduceMax", {abs_node->output(0)}); + AddAttribute(max_node, "keepdims", static_cast(0)); + auto s_max_node = helper_->Reshape(max_node->output(0), {-1}); + helper_->AutoCast(s_max_node, output_info[0].name, x_info[0].dtype, + output_info[0].dtype); + } else if (p_ == g_NegFloatInfinity) { + auto min_node = helper_->MakeNode("ReduceMin", {abs_node->output(0)}); + AddAttribute(min_node, "keepdims", static_cast(0)); + auto s_min_node = helper_->Reshape(min_node->output(0), {-1}); + helper_->AutoCast(s_min_node, output_info[0].name, x_info[0].dtype, + output_info[0].dtype); + } else { + std::string p = helper_->Constant({1}, GetOnnxDtype(x_info[0].dtype), p_); + auto pow_node = helper_->MakeNode("Pow", {abs_node->output(0), p}); + + auto sum_node = helper_->MakeNode("ReduceSum", {pow_node->output(0)}); + AddAttribute(sum_node, "keepdims", static_cast(0)); + auto s_node = helper_->Reshape(sum_node->output(0), {-1}); + + auto p_1 = helper_->MakeNode("Reciprocal", {p}); + helper_->MakeNode("Pow", {s_node, p_1->output(0)}, {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/dist.h b/paddle2onnx/mapper/tensor/dist.h new file mode 100644 index 0000000000..8d7eeedaec --- /dev/null +++ b/paddle2onnx/mapper/tensor/dist.h @@ -0,0 +1,34 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class DistMapper : public Mapper { + public: + DistMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("p", &p_); + } + void Opset7(); + + private: + float p_; +}; +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/dot.cc b/paddle2onnx/mapper/tensor/dot.cc new file mode 100755 index 0000000000..0349b80c3b --- /dev/null +++ b/paddle2onnx/mapper/tensor/dot.cc @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/dot.h" + +namespace paddle2onnx { +REGISTER_MAPPER(dot, DotMapper) + +void DotMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + + auto mul_node = + helper_->MakeNode("Mul", {input_x_info[0].name, input_y_info[0].name}); + + if (helper_->GetOpsetVersion() >= 13) { + std::string axes_node = helper_->Constant( + {1}, GetOnnxDtype(P2ODataType::INT64), input_x_info[0].Rank() - 1); + helper_->MakeNode("ReduceSum", {mul_node->output(0), axes_node}, + {output_info[0].name}); + } else { + auto reducesum_node = helper_->MakeNode("ReduceSum", {mul_node->output(0)}, + {output_info[0].name}); + std::vector axes = {input_x_info[0].Rank() - 1}; + AddAttribute(reducesum_node, "axes", axes); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/dot.h b/paddle2onnx/mapper/tensor/dot.h new file mode 100644 index 0000000000..a9575060fc --- /dev/null +++ b/paddle2onnx/mapper/tensor/dot.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class DotMapper : public Mapper { + public: + DotMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/equal.cc b/paddle2onnx/mapper/tensor/equal.cc new file mode 100644 index 0000000000..e06be2442e --- /dev/null +++ b/paddle2onnx/mapper/tensor/equal.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/equal.h" + +namespace paddle2onnx { +REGISTER_MAPPER(equal, EqualMapper) + +int32_t EqualMapper::GetMinOpset(bool verbose) { + if (axis_ != -1) { + Error() << "axis attribute must be -1 in operator equal." << std::endl; + return -1; + } + return 7; +} + +void EqualMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + + std::string input_x = input_x_info[0].name; + std::string input_y = input_y_info[0].name; + if (helper_->GetOpsetVersion() < 11) { + input_x = helper_->AutoCast(input_x_info[0].name, input_x_info[0].dtype, + P2ODataType::INT32); + input_y = helper_->AutoCast(input_y_info[0].name, input_y_info[0].dtype, + P2ODataType::INT32); + } + helper_->MakeNode("Equal", {input_x, input_y}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/equal.h b/paddle2onnx/mapper/tensor/equal.h new file mode 100644 index 0000000000..23a85b6493 --- /dev/null +++ b/paddle2onnx/mapper/tensor/equal.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class EqualMapper : public Mapper { + public: + EqualMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand.cc b/paddle2onnx/mapper/tensor/expand.cc new file mode 100644 index 0000000000..f1a9cbf5ea --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand.cc @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/expand.h" + +namespace paddle2onnx { +REGISTER_MAPPER(expand, ExpandMapper) + +void ExpandMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string expand_times = ""; + if (HasInput("expand_times_tensor")) { + auto info = GetInput("expand_times_tensor"); + expand_times = helper_->ConcatIndices(info); + } else if (HasInput("ExpandTimes")) { + auto info = GetInput("ExpandTimes"); + expand_times = helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } else { + expand_times = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, expand_times_); + } + + helper_->MakeNode("Tile", + {input_info[0].name, expand_times}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand.h b/paddle2onnx/mapper/tensor/expand.h new file mode 100644 index 0000000000..5d45aa6afe --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ExpandMapper : public Mapper { + public: + ExpandMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("expand_times", &expand_times_); + } + void Opset7(); + + private: + std::vector expand_times_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand_as.cc b/paddle2onnx/mapper/tensor/expand_as.cc new file mode 100644 index 0000000000..5a678aff71 --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand_as.cc @@ -0,0 +1,52 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/expand_as.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(expand_as_v2, ExpandAsMapper) + +int32_t ExpandAsMapper::GetMinOpset(bool verbose) { + if (target_shape_.size() == 0 && !HasInput("target_tensor")) { + Error() << "Attribute `target_shape` or input tensor `target_tensor` is " + "not exist" + << std::endl; + return -1; + } + Logger(verbose, 8) << RequireOpset(8) << std::endl; + return 8; +}; + +void ExpandAsMapper::Opset8() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string target_shape = ""; + if (HasInput("target_tensor")) { + auto info = GetInput("target_tensor"); + target_shape = helper_->MakeNode("Shape", {info[0].name})->output(0); + } else { + target_shape = + helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, target_shape_); + } + + helper_->MakeNode("Expand", {input_info[0].name, target_shape}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand_as.h b/paddle2onnx/mapper/tensor/expand_as.h new file mode 100644 index 0000000000..b45a433786 --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand_as.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ExpandAsMapper : public Mapper { + public: + ExpandAsMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("target_shape", &target_shape_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset8(); + + private: + std::vector target_shape_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand_v2.cc b/paddle2onnx/mapper/tensor/expand_v2.cc new file mode 100644 index 0000000000..c8758bbb03 --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand_v2.cc @@ -0,0 +1,61 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/expand_v2.h" + +namespace paddle2onnx { +REGISTER_MAPPER(expand_v2, ExpandV2Mapper) + +void ExpandV2Mapper::Opset8() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + + int dim_diff = 0; + std::string shape = ""; + if (HasInput("Shape")) { + auto shape_info = GetInput("Shape"); + dim_diff = shape_info[0].shape[0] - x_info[0].Rank(); + shape = helper_->AutoCast(shape_info[0].name, shape_info[0].dtype, + P2ODataType::INT64); + } else if (HasInput("expand_shapes_tensor")) { + auto shape_info = GetInput("expand_shapes_tensor"); + dim_diff = shape_info.size() - x_info[0].Rank(); + shape = helper_->ConcatIndices(shape_info); + } else { + std::vector shape_value; + GetAttr("shape", &shape_value); + dim_diff = shape_value.size() - x_info[0].Rank(); + shape = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, shape_value); + } + + auto input_shape = helper_->MakeNode("Shape", {x_info[0].name})->output(0); + if (dim_diff > 0) { + auto padding_shape = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(dim_diff, 1)); + input_shape = helper_->Concat({padding_shape, input_shape}, 0); + } + if (helper_->GetOpsetVersion() < 12) { + // While opset < 12, Max cannot support int64 datatype with onnxruntime + input_shape = + helper_->AutoCast(input_shape, P2ODataType::INT64, P2ODataType::FP32); + shape = helper_->AutoCast(shape, P2ODataType::INT64, P2ODataType::FP32); + shape = helper_->MakeNode("Max", {input_shape, shape})->output(0); + shape = helper_->AutoCast(shape, P2ODataType::FP32, P2ODataType::INT64); + } else { + shape = helper_->MakeNode("Max", {input_shape, shape})->output(0); + } + helper_->MakeNode("Expand", {x_info[0].name, shape}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/expand_v2.h b/paddle2onnx/mapper/tensor/expand_v2.h new file mode 100644 index 0000000000..00dc098c8f --- /dev/null +++ b/paddle2onnx/mapper/tensor/expand_v2.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ExpandV2Mapper : public Mapper { + public: + ExpandV2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 8) << RequireOpset(8) << std::endl; + return 8; + } + void Opset8(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/eye.cc b/paddle2onnx/mapper/tensor/eye.cc new file mode 100644 index 0000000000..5af3aa6757 --- /dev/null +++ b/paddle2onnx/mapper/tensor/eye.cc @@ -0,0 +1,87 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/eye.h" + +namespace paddle2onnx { +REGISTER_MAPPER(eye, EyeMapper) + +void EyeMapper::ParseValue(const TensorInfo& tensor_info, int64_t* num_val) { + std::vector value; + TryGetValue(tensor_info, &value); + *num_val = value[0]; +} + +int32_t EyeMapper::GetMinOpset(bool verbose) { + if (IsAttrVar("num_rows")) { + if (!IsConstant(GetAttrVar("num_rows")[0])) { + Error() + << "While Attribute(num_rows)'s type is Tensor, it's not supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } else { + auto info = GetAttrVar("num_rows"); + ParseValue(info[0], &num_rows_); + } + } else { + GetAttr("num_rows", &num_rows_); + } + if (IsAttrVar("num_columns")) { + if (!IsConstant(GetAttrVar("num_columns")[0])) { + Error() << "While Attribute(num_columns)'s type is Tensor, it's not " + "supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } else { + auto info = GetAttrVar("num_columns"); + ParseValue(info[0], &num_columns_); + } + } else { + GetAttr("num_columns", &num_columns_); + } + + if (num_rows_ <= 0 || num_columns_ <= 0) { + Error() << "Attribute `num_rows` or `num_columns` must greater than 0. " + << std::endl; + return -1; + } + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; +} + +void EyeMapper::Opset9() { + auto output_info = GetOutput("Out"); + if (IsAttrVar("num_rows")) { + auto info = GetAttrVar("num_rows"); + ParseValue(info[0], &num_rows_); + } else { + GetAttr("num_rows", &num_rows_); + } + if (IsAttrVar("num_columns")) { + auto info = GetAttrVar("num_columns"); + ParseValue(info[0], &num_columns_); + } else { + GetAttr("num_columns", &num_columns_); + } + + std::string constant_node = helper_->Constant( + {num_rows_, num_columns_}, GetOnnxDtype(output_info[0].dtype), 0); + + auto node = + helper_->MakeNode("EyeLike", {constant_node}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/eye.h b/paddle2onnx/mapper/tensor/eye.h new file mode 100644 index 0000000000..7aa8629b28 --- /dev/null +++ b/paddle2onnx/mapper/tensor/eye.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class EyeMapper : public Mapper { + public: + EyeMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset9(); + + private: + void ParseValue(const TensorInfo& tensor_info, int64_t* num_val); + int64_t num_rows_; + int64_t num_columns_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_constant.cc b/paddle2onnx/mapper/tensor/fill_constant.cc new file mode 100644 index 0000000000..13b68b5286 --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_constant.cc @@ -0,0 +1,153 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/tensor/fill_constant.h" + +#include +#include + +namespace paddle2onnx { + +REGISTER_MAPPER(fill_constant, FillConstantMapper) + +int32_t FillConstantMapper::GetMinOpset(bool verbose) { + auto out_info = GetOutput("Out"); + auto onnx_dtype = GetOnnxDtype(out_info[0].dtype); + if (onnx_dtype != ONNX_NAMESPACE::TensorProto::INT32 && + onnx_dtype != ONNX_NAMESPACE::TensorProto::INT64 && + onnx_dtype != ONNX_NAMESPACE::TensorProto::FLOAT && + onnx_dtype != ONNX_NAMESPACE::TensorProto::DOUBLE) { + Error() << "Only support int32/int64/float32/float64 data type in " + "fill_constant operator." + << std::endl; + return -1; + } + if (HasInput("ShapeTensorList")) { + Logger(verbose, 9) << "While ShapeTensorList as input, " << RequireOpset(9) << std::endl; + return 9; + } + if (HasInput("ShapeTensor") && !IsConstantInput("ShapeTensor")) { + Logger(verbose, 9) << "While ShapeTensor as input and it's not a constant tensor, " << RequireOpset(9) << std::endl; + return 9; + } + return 7; +} + +float FillConstantMapper::GetFillValue() { + float value = 0; + if (str_value_.empty()) { + value = value_; + } else { + if (str_value_ == "inf") { + value = std::numeric_limits::infinity(); + } else if (str_value_ == "-inf") { + value = -std::numeric_limits::infinity(); + } else if (str_value_ == "nan") { + value = std::numeric_limits::quiet_NaN(); + } else { + std::stringstream convert_stream(str_value_); + convert_stream >> value; + } + } + if (HasInput("ValueTensor")) { + value = 0.0; + } + return value; +} + +void FillConstantMapper::Opset7() { + auto out_info = GetOutput("Out"); + Assert(!HasInput("ShapeTensorList"), "While ShapeTensorList as input, requires opset_version>=9 for op fill_constant."); + std::vector shape; + if (HasInput("ShapeTensor")) { + Assert(TryGetInputValue("ShapeTensor", &shape), "While ShapeTensor as input and it's not a constant tensor, requires opset_version>=9 for op fill_constant."); + } else { + GetAttr("shape", &shape); + } + float value = GetFillValue(); + if (HasInput("ValueTensor")) { + auto value_info = GetInput("ValueTensor"); + auto value_tensor = helper_->AutoCast(value_info[0].name, value_info[0].dtype, out_info[0].dtype); + auto out = helper_->Constant(shape, GetOnnxDtype(out_info[0].dtype), float(0.0)); + helper_->MakeNode("Add", {out, value_tensor}, {out_info[0].name}); + } else { + helper_->Constant(out_info[0].name, shape, GetOnnxDtype(out_info[0].dtype), value); + } +} + +void FillConstantMapper::Opset9() { + if (GetMinOpset() == 7) { + return Opset7(); + } + auto out_info = GetOutput("Out"); + bool shape_is_tensor = HasInput("ShapeTensor") || HasInput("ShapeTensorList"); + bool value_is_tensor = HasInput("ValueTensor"); + auto onnx_dtype = GetOnnxDtype(out_info[0].dtype); + float value = GetFillValue(); + std::string out; + if (shape_is_tensor) { + std::string shape_name; + if (HasInput("ShapeTensor")) { + auto shape_info = GetInput("ShapeTensor"); + shape_name = helper_->AutoCast(shape_info[0].name, shape_info[0].dtype, + P2ODataType::INT64); + } else { + auto shape_info = GetInput("ShapeTensorList"); + shape_name = helper_->ConcatIndices(shape_info); + } + + auto node = helper_->MakeNode("ConstantOfShape", {shape_name}); + auto attr = node->add_attribute(); + attr->set_name("value"); + attr->set_type(ONNX_NAMESPACE::AttributeProto::TENSOR); + auto tensor = attr->mutable_t(); + tensor->set_name(out_info[0].name); + tensor->set_data_type(onnx_dtype); + tensor->add_dims(1); + if (onnx_dtype == ONNX_NAMESPACE::TensorProto::INT32) { + std::vector data(1); + data[0] = static_cast(value); + auto ptr = reinterpret_cast(data.data()); + tensor->set_raw_data(std::string(ptr, sizeof(int32_t))); + } else if (onnx_dtype == ONNX_NAMESPACE::TensorProto::INT64) { + std::vector data(1); + data[0] = static_cast(value); + auto ptr = reinterpret_cast(data.data()); + tensor->set_raw_data(std::string(ptr, sizeof(int64_t))); + } else if (onnx_dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + std::vector data(1, value_); + auto ptr = reinterpret_cast(data.data()); + tensor->set_raw_data(std::string(ptr, sizeof(float))); + } else if (onnx_dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + std::vector data(1); + data[0] = static_cast(value); + auto ptr = reinterpret_cast(data.data()); + tensor->set_raw_data(std::string(ptr, sizeof(double))); + } + out = node->output(0); + } else { + std::vector shape; + GetAttr("shape", &shape); + out = helper_->Constant(shape, onnx_dtype, value); + } + if (value_is_tensor) { + auto value_info = GetInput("ValueTensor"); + std::string cast_value = helper_->AutoCast( + value_info[0].name, value_info[0].dtype, out_info[0].dtype); + helper_->MakeNode("Add", {out, cast_value}, {out_info[0].name}); + } else { + helper_->MakeNode("Identity", {out}, {out_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_constant.h b/paddle2onnx/mapper/tensor/fill_constant.h new file mode 100644 index 0000000000..231cb84021 --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_constant.h @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class FillConstantMapper : public Mapper { + public: + FillConstantMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("str_value", &str_value_); + GetAttr("value", &value_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset9(); + + private: + float GetFillValue(); + std::string str_value_; + float value_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.cc b/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.cc new file mode 100644 index 0000000000..80fbc78772 --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.cc @@ -0,0 +1,84 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/tensor/fill_constant_batch_size_like.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(fill_constant_batch_size_like, FillConstantBatchSizeLikeMapper) + +int32_t FillConstantBatchSizeLikeMapper::GetMinOpset(bool verbose) { + auto out_info = GetOutput("Out"); + if (out_info[0].dtype == P2ODataType::BOOL) { + Error() << "Dtype of boolean is not supported." << std::endl; + return -1; + } + return 7; +} + +void FillConstantBatchSizeLikeMapper::Opset7() { + auto input_info = GetInput("Input"); + auto out_info = GetOutput("Out"); + float value = value_; + if (!str_value_.empty()) { + std::stringstream convert_stream(str_value_); + convert_stream >> value; + } + std::vector shape; + shape.assign(shape_.begin(), shape_.end()); + shape[output_dim_idx_] = 1; + + auto input_shape = + helper_->MakeNode("Shape", {input_info[0].name})->output(0); + auto batch = + helper_->Slice(input_shape, {0}, {input_dim_idx_}, {input_dim_idx_ + 1}); + + if (output_dim_idx_ == 0) { + auto constant = + helper_->Constant(shape, GetOnnxDtype(out_info[0].dtype), value); + auto repeat = batch; + if (shape.size() > 1) { + auto tmp = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(shape.size() - 1, 1)); + repeat = helper_->Concat({batch, tmp}, 0); + } + helper_->MakeNode("Tile", {constant, repeat}, {out_info[0].name}); + } else if (output_dim_idx_ == shape.size() - 1) { + auto constant = + helper_->Constant(shape, GetOnnxDtype(out_info[0].dtype), value); + auto repeat = batch; + if (shape.size() > 1) { + auto tmp = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(shape.size() - 1, 1)); + repeat = helper_->Concat({tmp, batch}, 0); + } + helper_->MakeNode("Tile", {constant, repeat}, {out_info[0].name}); + } else { + shape.erase(shape.begin() + output_dim_idx_); + shape.insert(shape.begin(), int64_t(1)); + auto constant = + helper_->Constant(shape, GetOnnxDtype(out_info[0].dtype), value); + auto repeat = batch; + if (shape.size() > 1) { + auto tmp = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(shape.size() - 1, 1)); + repeat = helper_->Concat({batch, tmp}, 0); + } + auto out = helper_->MakeNode("Tile", {constant, repeat})->output(0); + auto perm = Arange(1, shape.size()); + perm.insert(perm.begin() + output_dim_idx_, int64_t(0)); + helper_->Transpose(out, out_info[0].name, perm); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.h b/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.h new file mode 100644 index 0000000000..c58ecf870d --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_constant_batch_size_like.h @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class FillConstantBatchSizeLikeMapper : public Mapper { + public: + FillConstantBatchSizeLikeMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("dtype", &dtype_); + GetAttr("value", &value_); + GetAttr("shape", &shape_); + GetAttr("str_value", &str_value_); + GetAttr("input_dim_idx", &input_dim_idx_); + GetAttr("output_dim_idx", &output_dim_idx_); + } + + int32_t GetMinOpset(bool verbose = true); + void Opset7(); + + private: + int64_t dtype_; + float value_; + std::string str_value_; + int64_t input_dim_idx_; + int64_t output_dim_idx_; + std::vector shape_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_like.cc b/paddle2onnx/mapper/tensor/fill_like.cc new file mode 100644 index 0000000000..5759502432 --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_like.cc @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/tensor/fill_like.h" + +namespace paddle2onnx { + +REGISTER_MAPPER(fill_any_like, FillLikeMapper) +REGISTER_MAPPER(fill_zeros_like, FillLikeMapper) + +void FillLikeMapper::Opset9() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + bool is_fixed_shape = true; + for (size_t i = 0; i < input_info[0].shape.size(); ++i) { + if (input_info[0].shape[i] < 0) { + is_fixed_shape = false; + } + } + if (is_fixed_shape) { + helper_->Constant(output_info[0].name, input_info[0].shape, + GetOnnxDtype(output_info[0].dtype), value_); + return; + } + auto shape_node = helper_->MakeNode("Shape", {input_info[0].name}); + int64_t dtype = output_info[0].dtype; + // There's some problem with tensorrt with `ConstantOfShape` + // Maybe we should use a graph pass to solve this problem + // but now we just to avoid using `ConstantOfShape` + auto const_node = helper_->Constant({1}, GetOnnxDtype(dtype), value_); + helper_->MakeNode("Expand", {const_node, shape_node->output(0)}, + {output_info[0].name}); + // helper_->ConstOfShape(shape_node->output(0), output_info[0].name, + // GetOnnxDtype(dtype), value_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/fill_like.h b/paddle2onnx/mapper/tensor/fill_like.h new file mode 100644 index 0000000000..b0b0ad2397 --- /dev/null +++ b/paddle2onnx/mapper/tensor/fill_like.h @@ -0,0 +1,46 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class FillLikeMapper : public Mapper { + public: + FillLikeMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + if (OpType() == "fill_zeros_like") { + value_ = 0.0; + } else { + GetAttr("value", &value_); + } + } + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + void Opset9(); + + private: + float value_; + std::vector op_mapper_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flatten.cc b/paddle2onnx/mapper/tensor/flatten.cc new file mode 100644 index 0000000000..5407138f49 --- /dev/null +++ b/paddle2onnx/mapper/tensor/flatten.cc @@ -0,0 +1,75 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/flatten.h" + +#include + +namespace paddle2onnx { + +REGISTER_MAPPER(flatten_contiguous_range, FlattenMapper) + +void FlattenMapper::Opset7() { + auto input_info = GetInput("X"); + if (start_axis_ < 0) { + start_axis_ += input_info[0].Rank(); + } + if (stop_axis_ < 0) { + stop_axis_ += input_info[0].Rank(); + } + auto output_info = GetOutput("Out"); + + auto unknown_dim_node = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, -1); + if (start_axis_ == 0 && stop_axis_ == input_info[0].Rank() - 1) { + helper_->MakeNode("Reshape", {input_info[0].name, unknown_dim_node}, + {output_info[0].name}); + } else { + auto input_shape_node = helper_->MakeNode("Shape", {input_info[0].name}); + if (start_axis_ == 0) { + auto second_part_shape = + helper_->Slice(input_shape_node->output(0), {0}, {stop_axis_ + 1}, + {input_info[0].Rank()}); + auto new_shape_node = + helper_->MakeNode("Concat", {unknown_dim_node, second_part_shape}); + AddAttribute(new_shape_node, "axis", int64_t(0)); + helper_->MakeNode("Reshape", + {input_info[0].name, new_shape_node->output(0)}, + {output_info[0].name}); + } else if (stop_axis_ == input_info[0].Rank() - 1) { + auto first_part_shape = + helper_->Slice(input_shape_node->output(0), {0}, {0}, {start_axis_}); + auto new_shape_node = + helper_->MakeNode("Concat", {first_part_shape, unknown_dim_node}); + AddAttribute(new_shape_node, "axis", int64_t(0)); + helper_->MakeNode("Reshape", + {input_info[0].name, new_shape_node->output(0)}, + {output_info[0].name}); + } else { + auto first_part_shape = + helper_->Slice(input_shape_node->output(0), {0}, {0}, {start_axis_}); + auto second_part_shape = + helper_->Slice(input_shape_node->output(0), {0}, {stop_axis_ + 1}, + {input_info[0].Rank()}); + auto new_shape_node = helper_->MakeNode( + "Concat", {first_part_shape, unknown_dim_node, second_part_shape}); + AddAttribute(new_shape_node, "axis", int64_t(0)); + helper_->MakeNode("Reshape", + {input_info[0].name, new_shape_node->output(0)}, + {output_info[0].name}); + } + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flatten.h b/paddle2onnx/mapper/tensor/flatten.h new file mode 100644 index 0000000000..0789e49bf7 --- /dev/null +++ b/paddle2onnx/mapper/tensor/flatten.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class FlattenMapper : public Mapper { + public: + FlattenMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("start_axis", &start_axis_); + GetAttr("stop_axis", &stop_axis_); + } + + void Opset7(); + + private: + int64_t start_axis_; + int64_t stop_axis_; +}; +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flatten2.cc b/paddle2onnx/mapper/tensor/flatten2.cc new file mode 100644 index 0000000000..2615efa1e3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/flatten2.cc @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/flatten2.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(flatten2, Flatten2Mapper) + +int32_t Flatten2Mapper::GetMinOpset(bool verbose) { + if (GetInput("X")[0].dtype != P2ODataType::FP32 || GetInput("X")[0].dtype != P2ODataType::FP64) { + Logger(verbose, 9) << "While data type of input is not float32/float64, "<< RequireOpset(9) << std::endl; + return 9; + } + return 7; +} + +void Flatten2Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + int64_t axis = axis_; + auto node = helper_->MakeNode("Flatten", {input_info[0].name}, {output_info[0].name}); + AddAttribute(node, "axis", axis); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flatten2.h b/paddle2onnx/mapper/tensor/flatten2.h new file mode 100644 index 0000000000..05656335d3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/flatten2.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Flatten2Mapper : public Mapper { + public: + Flatten2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flip.cc b/paddle2onnx/mapper/tensor/flip.cc new file mode 100644 index 0000000000..6c423e9884 --- /dev/null +++ b/paddle2onnx/mapper/tensor/flip.cc @@ -0,0 +1,89 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/flip.h" + +namespace paddle2onnx { +REGISTER_MAPPER(flip, FlipMapper) + +int32_t FlipMapper::GetMinOpset(bool verbose) { + auto input_info = parser_->GetOpInput(block_idx_, op_idx_, "X"); + for (auto i = 0; i < axes_.size(); i++) { + if (input_info[0].shape[axes_[i]] <= 0) { + Error() << "The dimension in axis of input must be fixed for flip " + "operator, but now the input shape in axis is unkown." + << std::endl; + return -1; + } + } + return 7; +} + +void FlipMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string input_name = input_info[0].name; + bool need_convert = false; + if (input_info[0].dtype == P2ODataType::BOOL || + input_info[0].dtype == P2ODataType::FP64) { + need_convert = true; + input_name = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + } + + std::string temp_input = input_name; + for (auto i = 0; i < axes_.size(); ++i) { + int64_t axis = axes_[i]; + if (input_info[0].shape[axis] == 1) { + if (i != axes_.size() - 1) { + continue; + } + if (need_convert) { + input_name = helper_->AutoCast(temp_input, output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); + } else { + auto out_node = + helper_->MakeNode("Identity", {temp_input}, {output_info[0].name}); + } + } else { + std::vector split; + split.resize(input_info[0].shape[axis], 1); + std::vector splits_outputs = + helper_->Split(temp_input, split, axis); + std::vector reversed_splits; + for (int64_t index = splits_outputs.size() - 1; index >= 0; --index) { + reversed_splits.push_back(splits_outputs[index]); + } + if (i != axes_.size() - 1) { + auto concat_node = helper_->MakeNode("Concat", reversed_splits); + AddAttribute(concat_node, "axis", axis); + temp_input = concat_node->output(0); + } else { + if (need_convert) { + auto concat_node = helper_->MakeNode("Concat", reversed_splits); + AddAttribute(concat_node, "axis", axis); + helper_->AutoCast(concat_node->output(0), output_info[0].name, + P2ODataType::FP32, output_info[0].dtype); + } else { + auto concat_node = helper_->MakeNode("Concat", reversed_splits, + {output_info[0].name}); + AddAttribute(concat_node, "axis", axis); + } + } + } + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/flip.h b/paddle2onnx/mapper/tensor/flip.h new file mode 100755 index 0000000000..5e40d3e1aa --- /dev/null +++ b/paddle2onnx/mapper/tensor/flip.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class FlipMapper : public Mapper { + public: + FlipMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axes_); + auto input_info = GetInput("X"); + for (auto i = 0; i < axes_.size(); i++) { + if (axes_[i] < 0) { + axes_[i] += input_info[0].Rank(); + } + } + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector axes_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gather.cc b/paddle2onnx/mapper/tensor/gather.cc new file mode 100644 index 0000000000..4cfb6f371a --- /dev/null +++ b/paddle2onnx/mapper/tensor/gather.cc @@ -0,0 +1,85 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/gather.h" + +namespace paddle2onnx { +REGISTER_MAPPER(gather, GatherMapper) + +int32_t GatherMapper::GetMinOpset(bool verbose) { + if (HasInput("Axis")) { + if (!IsConstantInput("Axis")) { + Error() << "Parameter axis as input tensor is not supported." + << std::endl; + return -1; + } + } + auto index_info = GetInput("Index"); + if (index_info[0].shape.size() > 1) { + Logger(verbose, 11) << "While rank of index > 1, " << RequireOpset(11) + << std::endl; + return 11; + } + return 7; +} + +void GatherMapper::Opset7() { + auto x_info = GetInput("X"); + auto index_info = GetInput("Index"); + auto out_info = GetOutput("Out"); + + bool has_input_axis = HasInput("Axis"); + auto axis = axis_; + if (has_input_axis) { + std::vector axes; + Assert(TryGetInputValue("Axis", &axes), + "Paddle2ONNX does not support axis as input tensor for operator: " + "gather."); + axis = axes[0]; + } + Assert(index_info[0].shape.size() == 1, + "Paddle2ONNX: While rank of index > 1, opset must >= 11 for operator: " + "gather."); + auto node = helper_->MakeNode("Gather", {x_info[0].name, index_info[0].name}, + {out_info[0].name}); + AddAttribute(node, "axis", axis); +} + +void GatherMapper::Opset11() { + auto x_info = GetInput("X"); + auto index_info = GetInput("Index"); + auto out_info = GetOutput("Out"); + + bool has_input_axis = HasInput("Axis"); + auto axis = axis_; + if (has_input_axis) { + std::vector axes; + Assert(TryGetInputValue("Axis", &axes), + "Paddle2ONNX does not support axis as input tensor for operator: " + "gather."); + axis = axes[0]; + } + if (index_info[0].shape.size() == 1) { + auto node = helper_->MakeNode( + "Gather", {x_info[0].name, index_info[0].name}, {out_info[0].name}); + AddAttribute(node, "axis", axis); + } else { + auto index = helper_->AutoCast(index_info[0].name, index_info[0].dtype, + P2ODataType::INT64); + helper_->MakeNode("GatherND", {x_info[0].name, index_info[0].name}, + {out_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gather.h b/paddle2onnx/mapper/tensor/gather.h new file mode 100644 index 0000000000..b12c7f5b2c --- /dev/null +++ b/paddle2onnx/mapper/tensor/gather.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GatherMapper : public Mapper { + public: + GatherMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + if (HasAttr("axis")) { + GetAttr("axis", &axis_); + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset11(); + + private: + int64_t axis_ = 0; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gather_nd.cc b/paddle2onnx/mapper/tensor/gather_nd.cc new file mode 100755 index 0000000000..d7fcb875df --- /dev/null +++ b/paddle2onnx/mapper/tensor/gather_nd.cc @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/gather_nd.h" + +namespace paddle2onnx { +REGISTER_MAPPER(gather_nd, GatherNdMapper) + +int32_t GatherNdMapper::GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void GatherNdMapper::Opset11() { + auto input_x_info = GetInput("X"); + auto input_index_info = GetInput("Index"); + auto output_info = GetOutput("Out"); + + std::string index_node = helper_->AutoCast( + input_index_info[0].name, input_index_info[0].dtype, P2ODataType::INT64); + + helper_->MakeNode("GatherND", {input_x_info[0].name, index_node}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gather_nd.h b/paddle2onnx/mapper/tensor/gather_nd.h new file mode 100755 index 0000000000..ae7de4f5c4 --- /dev/null +++ b/paddle2onnx/mapper/tensor/gather_nd.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GatherNdMapper : public Mapper { + public: + GatherNdMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset11(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gaussian_random.cc b/paddle2onnx/mapper/tensor/gaussian_random.cc new file mode 100644 index 0000000000..511a11d6d8 --- /dev/null +++ b/paddle2onnx/mapper/tensor/gaussian_random.cc @@ -0,0 +1,64 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/gaussian_random.h" + +namespace paddle2onnx { +REGISTER_MAPPER(gaussian_random, GaussianRandomMapper) + +int32_t GaussianRandomMapper::GetMinOpset(bool verbose) { + if (HasInput("ShapeTensor") && !IsConstantInput("ShapeTensor")) { + Logger(verbose, 9) << "While ShapeTensor as input and it's not a constant tensor, " << RequireOpset(9) << std::endl; + return 9; + } + if (HasInput("ShapeTensorList")) { + Logger(verbose, 9) << "While ShapeTensorList as input, " << RequireOpset(9) << std::endl; + return 9; + } + return 7; +} + +void GaussianRandomMapper::Opset7() { + auto out_info = GetOutput("Out"); + std::string shape_tensor_name = ""; + std::vector shape; + if (HasInput("ShapeTensor")) { + if (!TryGetInputValue("ShapeTensor", &shape)) { + auto shape_info = GetInput("ShapeTensor"); + shape_tensor_name = helper_->AutoCast(shape_info[0].name, shape_info[0].dtype, P2ODataType::INT64); + } + } else if (HasInput("ShapeTensorList")) { + auto shape_info = GetInput("ShapeTensorList"); + shape_tensor_name = helper_->ConcatIndices(shape_info); + } else { + shape.assign(shape_.begin(), shape_.end()); + } + if (shape.size() > 0) { + auto node = helper_->MakeNode("RandomNormal", {}, {out_info[0].name}); + AddAttribute(node, "dtype", GetOnnxDtype(out_info[0].dtype)); + AddAttribute(node, "mean", mean_); + AddAttribute(node, "scale", std_); + AddAttribute(node, "shape", shape_); + AddAttribute(node, "seed", static_cast(seed_)); + } else { + auto tensor = helper_->ConstOfShape(shape_tensor_name, GetOnnxDtype(out_info[0].dtype), float(0)); + auto node = helper_->MakeNode("RandomNormalLike", {tensor}, {out_info[0].name}); + AddAttribute(node, "dtype", GetOnnxDtype(out_info[0].dtype)); + AddAttribute(node, "mean", mean_); + AddAttribute(node, "scale", std_); + AddAttribute(node, "seed", static_cast(seed_)); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/gaussian_random.h b/paddle2onnx/mapper/tensor/gaussian_random.h new file mode 100644 index 0000000000..0fde072ed0 --- /dev/null +++ b/paddle2onnx/mapper/tensor/gaussian_random.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GaussianRandomMapper : public Mapper { + public: + GaussianRandomMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("mean", &mean_); + GetAttr("std", &std_); + GetAttr("shape", &shape_); + GetAttr("seed", &seed_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + private: + std::vector shape_; + float mean_; + float std_; + int64_t seed_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/greater_equal.cc b/paddle2onnx/mapper/tensor/greater_equal.cc new file mode 100644 index 0000000000..ac386755b0 --- /dev/null +++ b/paddle2onnx/mapper/tensor/greater_equal.cc @@ -0,0 +1,51 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/greater_equal.h" + +namespace paddle2onnx { +REGISTER_MAPPER(greater_equal, GreaterEqualMapper) + +void GreaterEqualMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + if (out_dtype != P2ODataType::FP32 && out_dtype != P2ODataType::FP64 && + helper_->GetOpsetVersion() < 11) { + aligned_inputs[0] = + helper_->AutoCast(aligned_inputs[0], out_dtype, P2ODataType::FP32); + aligned_inputs[1] = + helper_->AutoCast(aligned_inputs[1], out_dtype, P2ODataType::FP32); + } + + auto out = helper_->MakeNode("Less", aligned_inputs)->output(0); + helper_->MakeNode("Not", {out}, {out_info[0].name}); +} + +void GreaterEqualMapper::Opset12() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + + helper_->MakeNode("GreaterOrEqual", aligned_inputs, {out_info[0].name}); +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/greater_equal.h b/paddle2onnx/mapper/tensor/greater_equal.h new file mode 100644 index 0000000000..200ea6bd8c --- /dev/null +++ b/paddle2onnx/mapper/tensor/greater_equal.h @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GreaterEqualMapper : public Mapper { + public: + GreaterEqualMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); + void Opset12(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/greater_than.cc b/paddle2onnx/mapper/tensor/greater_than.cc new file mode 100644 index 0000000000..36c4220a64 --- /dev/null +++ b/paddle2onnx/mapper/tensor/greater_than.cc @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/greater_than.h" + +namespace paddle2onnx { +REGISTER_MAPPER(greater_than, GreaterThanMapper) + +void GreaterThanMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + if (out_dtype != P2ODataType::FP32 && out_dtype != P2ODataType::FP64 && + helper_->GetOpsetVersion() < 11) { + aligned_inputs[0] = + helper_->AutoCast(aligned_inputs[0], out_dtype, P2ODataType::FP32); + aligned_inputs[1] = + helper_->AutoCast(aligned_inputs[1], out_dtype, P2ODataType::FP32); + } + + helper_->MakeNode("Greater", aligned_inputs, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/greater_than.h b/paddle2onnx/mapper/tensor/greater_than.h new file mode 100644 index 0000000000..c9867d864c --- /dev/null +++ b/paddle2onnx/mapper/tensor/greater_than.h @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GreaterThanMapper : public Mapper { + public: + GreaterThanMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/grid_sampler.cc b/paddle2onnx/mapper/tensor/grid_sampler.cc new file mode 100644 index 0000000000..0a08e4cdac --- /dev/null +++ b/paddle2onnx/mapper/tensor/grid_sampler.cc @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/grid_sampler.h" + +namespace paddle2onnx { +REGISTER_MAPPER(grid_sampler, GridSamplerMapper) + +int32_t GridSamplerMapper::GetMinOpset(bool verbose) { + Logger(verbose, 16) << RequireOpset(16) << std::endl; + return 16; +}; + +void GridSamplerMapper::Opset16() { + auto x_info = GetInput("X"); + auto grid_info = GetInput("Grid"); + auto out_info = GetOutput("Output"); + std::string cast_input = + helper_->AutoCast(x_info[0].name, x_info[0].dtype, P2ODataType::FP32); + std::string cast_grid = helper_->AutoCast( + grid_info[0].name, grid_info[0].dtype, P2ODataType::FP32); + auto node = helper_->MakeNode("GridSample", {cast_input, cast_grid}); + AddAttribute(node, "padding_mode", padding_mode_); + AddAttribute(node, "mode", mode_); + AddAttribute(node, "align_corners", static_cast(align_corners_)); + helper_->AutoCast(node->output(0), out_info[0].name, P2ODataType::FP32, + out_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/grid_sampler.h b/paddle2onnx/mapper/tensor/grid_sampler.h new file mode 100644 index 0000000000..28da730ca3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/grid_sampler.h @@ -0,0 +1,43 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class GridSamplerMapper : public Mapper { + public: + GridSamplerMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("padding_mode", &padding_mode_); + GetAttr("mode", &mode_); + GetAttr("align_corners", &align_corners_); + } + + int32_t GetMinOpset(bool verbose = false); + + void Opset16(); + + private: + std::string padding_mode_ = "zeros"; + std::string mode_ = "bilinear"; + bool align_corners_ = false; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/index_sample.cc b/paddle2onnx/mapper/tensor/index_sample.cc new file mode 100644 index 0000000000..1522dcbefe --- /dev/null +++ b/paddle2onnx/mapper/tensor/index_sample.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/index_sample.h" + +namespace paddle2onnx { +REGISTER_MAPPER(index_sample, IndexSampleMapper) + +int32_t IndexSampleMapper::GetMinOpset(bool verbose) { + auto x_info = GetInput("X"); + auto index_info = GetInput("Index"); + if (x_info[0].Rank() != 2 || index_info[0].Rank() != 2) { + Error() << "The rank of X and Index must be 2, but the rank of X is: " + << x_info[0].Rank() + << " , and the rank of Index is: " << index_info[0].Rank() << "." + << std::endl; + return -1; + } + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void IndexSampleMapper::Opset11() { + auto x_info = GetInput("X"); + auto index_info = GetInput("Index"); + auto out_info = GetOutput("Out"); + auto node = + helper_->MakeNode("GatherElements", {x_info[0].name, index_info[0].name}, + {out_info[0].name}); + AddAttribute(node, "axis", static_cast(1)); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/index_sample.h b/paddle2onnx/mapper/tensor/index_sample.h new file mode 100755 index 0000000000..f6bcaabd5a --- /dev/null +++ b/paddle2onnx/mapper/tensor/index_sample.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class IndexSampleMapper : public Mapper { + public: + IndexSampleMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset11(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/index_select.cc b/paddle2onnx/mapper/tensor/index_select.cc new file mode 100644 index 0000000000..3ff40cd2ab --- /dev/null +++ b/paddle2onnx/mapper/tensor/index_select.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/index_select.h" + +namespace paddle2onnx { +REGISTER_MAPPER(index_select, IndexSelectMapper) + +void IndexSelectMapper::Opset7() { + auto x_info = GetInput("X"); + auto index_info = GetInput("Index"); + auto out_info = GetOutput("Out"); + auto node = helper_->MakeNode("Gather", {x_info[0].name, index_info[0].name}, + {out_info[0].name}); + AddAttribute(node, "axis", axis_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/index_select.h b/paddle2onnx/mapper/tensor/index_select.h new file mode 100644 index 0000000000..463718a736 --- /dev/null +++ b/paddle2onnx/mapper/tensor/index_select.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class IndexSelectMapper : public Mapper { + public: + IndexSelectMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("dim", &axis_); + } + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/less_equal.cc b/paddle2onnx/mapper/tensor/less_equal.cc new file mode 100644 index 0000000000..43abd8f8b5 --- /dev/null +++ b/paddle2onnx/mapper/tensor/less_equal.cc @@ -0,0 +1,51 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/less_equal.h" + +namespace paddle2onnx { +REGISTER_MAPPER(less_equal, LessEqualMapper) + +void LessEqualMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + if (out_dtype != P2ODataType::FP32 && out_dtype != P2ODataType::FP64 && + helper_->GetOpsetVersion() < 11) { + aligned_inputs[0] = + helper_->AutoCast(aligned_inputs[0], out_dtype, P2ODataType::FP32); + aligned_inputs[1] = + helper_->AutoCast(aligned_inputs[1], out_dtype, P2ODataType::FP32); + } + + auto out = helper_->MakeNode("Greater", aligned_inputs)->output(0); + helper_->MakeNode("Not", {out}, {out_info[0].name}); +} + +void LessEqualMapper::Opset12() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + + helper_->MakeNode("LessOrEqual", aligned_inputs, {out_info[0].name}); +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/less_equal.h b/paddle2onnx/mapper/tensor/less_equal.h new file mode 100644 index 0000000000..c1a2654256 --- /dev/null +++ b/paddle2onnx/mapper/tensor/less_equal.h @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LessEqualMapper : public Mapper { + public: + LessEqualMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); + void Opset12(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/less_than.cc b/paddle2onnx/mapper/tensor/less_than.cc new file mode 100644 index 0000000000..f0db74dcac --- /dev/null +++ b/paddle2onnx/mapper/tensor/less_than.cc @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/less_than.h" + +namespace paddle2onnx { +REGISTER_MAPPER(less_than, LessThanMapper) + +void LessThanMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + if (out_dtype != P2ODataType::FP32 && out_dtype != P2ODataType::FP64 && + helper_->GetOpsetVersion() < 11) { + aligned_inputs[0] = + helper_->AutoCast(aligned_inputs[0], out_dtype, P2ODataType::FP32); + aligned_inputs[1] = + helper_->AutoCast(aligned_inputs[1], out_dtype, P2ODataType::FP32); + } + + helper_->MakeNode("Less", aligned_inputs, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/less_than.h b/paddle2onnx/mapper/tensor/less_than.h new file mode 100644 index 0000000000..a25432d1b1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/less_than.h @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LessThanMapper : public Mapper { + public: + LessThanMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/linspace.cc b/paddle2onnx/mapper/tensor/linspace.cc new file mode 100644 index 0000000000..9d62fb058f --- /dev/null +++ b/paddle2onnx/mapper/tensor/linspace.cc @@ -0,0 +1,75 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/linspace.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(linspace, LinspaceMapper) + +int32_t LinspaceMapper::GetMinOpset(bool verbose) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; +}; + +void LinspaceMapper::Opset9() { + auto start_info = GetInput("Start"); + auto stop_info = GetInput("Stop"); + auto num_info = GetInput("Num"); + auto output_info = GetOutput("Out"); + + std::string cast_start = helper_->AutoCast( + start_info[0].name, start_info[0].dtype, P2ODataType::FP32); + std::string cast_stop = helper_->AutoCast( + stop_info[0].name, stop_info[0].dtype, P2ODataType::FP32); + + auto sub_a_node = helper_->MakeNode("Sub", {cast_stop, cast_start}); + + std::string one_node = helper_->Constant(GetOnnxDtype(num_info[0].dtype), + std::vector(1, 1)); + + auto sub_b_node = helper_->MakeNode("Sub", {num_info[0].name, one_node}); + + std::string sub_b_float_node = helper_->AutoCast( + sub_b_node->output(0), num_info[0].dtype, P2ODataType::FP32); + + auto step = + helper_->MakeNode("Div", {sub_a_node->output(0), sub_b_float_node}); + + std::string range_tensor = helper_->AutoCast( + num_info[0].name, num_info[0].dtype, P2ODataType::INT64); + + std::string one_like_node = helper_->ConstOfShape( + range_tensor, GetOnnxDtype(P2ODataType::FP32), static_cast(1)); + + auto none_zero_node = helper_->MakeNode("NonZero", {one_like_node}); + + std::string trans_squeeze = + helper_->Squeeze(none_zero_node->output(0), std::vector(1, 0)); + + std::string cast_trans_squeeze = + helper_->AutoCast(trans_squeeze, P2ODataType::INT64, P2ODataType::FP32); + + auto mul_node = + helper_->MakeNode("Mul", {cast_trans_squeeze, step->output(0)}); + + auto add_node = helper_->MakeNode("Add", {mul_node->output(0), cast_start}); + + helper_->AutoCast(add_node->output(0), output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/linspace.h b/paddle2onnx/mapper/tensor/linspace.h new file mode 100644 index 0000000000..b43c97d472 --- /dev/null +++ b/paddle2onnx/mapper/tensor/linspace.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LinspaceMapper : public Mapper { + public: + LinspaceMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("dtype", &dtype_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset9(); + + private: + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/logical_not.cc b/paddle2onnx/mapper/tensor/logical_not.cc new file mode 100644 index 0000000000..c1b79aba01 --- /dev/null +++ b/paddle2onnx/mapper/tensor/logical_not.cc @@ -0,0 +1,27 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/logical_not.h" + +namespace paddle2onnx { +REGISTER_MAPPER(logical_not, LogicalNotMapper) + +void LogicalNotMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + helper_->MakeNode("Not", {input_info[0].name}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/logical_not.h b/paddle2onnx/mapper/tensor/logical_not.h new file mode 100644 index 0000000000..f667628fb5 --- /dev/null +++ b/paddle2onnx/mapper/tensor/logical_not.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LogicalNotMapper : public Mapper { + public: + LogicalNotMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/logical_op.cc b/paddle2onnx/mapper/tensor/logical_op.cc new file mode 100644 index 0000000000..5f0646228a --- /dev/null +++ b/paddle2onnx/mapper/tensor/logical_op.cc @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/logical_op.h" + +namespace paddle2onnx { +REGISTER_MAPPER(logical_and, LogicalOpMapper) +REGISTER_MAPPER(logical_or, LogicalOpMapper) +REGISTER_MAPPER(logical_xor, LogicalOpMapper) + +void LogicalOpMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + std::map op_mapper; + op_mapper["logical_and"] = "And"; + op_mapper["logical_or"] = "Or"; + op_mapper["logical_xor"] = "Xor"; + + helper_->MakeNode(op_mapper[OpType()], {x_info[0].name, y_info[0].name}, + {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/logical_op.h b/paddle2onnx/mapper/tensor/logical_op.h new file mode 100644 index 0000000000..163b668514 --- /dev/null +++ b/paddle2onnx/mapper/tensor/logical_op.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LogicalOpMapper : public Mapper { + public: + LogicalOpMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/lookup_table.cc b/paddle2onnx/mapper/tensor/lookup_table.cc new file mode 100644 index 0000000000..5342ba2ef1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/lookup_table.cc @@ -0,0 +1,132 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/lookup_table.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(lookup_table, LookupTableMapper) +REGISTER_MAPPER(lookup_table_v2, LookupTableMapper) + +int32_t LookupTableMapper::GetMinOpset(bool verbose) { + auto input_w_info = GetInput("W"); + bool has_minus = false; + for (auto i : input_w_info[0].shape) { + has_minus = (i == -1); + if (has_minus) { + break; + } + } + if (padding_idx_ != -1 && has_minus) { + Logger(verbose, 11) + << "While the input W has dynamic shape and padding_idx != -1, " + << RequireOpset(11) << std::endl; + return 11; + } + return 7; +} + +void LookupTableMapper::Opset7() { + auto input_ids_info = GetInput("Ids"); + auto input_w_info = GetInput("W"); + auto output_info = GetOutput("Out"); + + std::string ids_node = input_ids_info[0].name; + auto ids_shape = input_ids_info[0].shape; + if (OpType() == "lookup_table" && ids_shape[ids_shape.size() - 1] == 1) { + ids_node = helper_->Squeeze(input_ids_info[0].name, {-1}); + } + + auto input_shape = input_w_info[0].shape; + int64_t sum_val = 1; + for (auto i : input_shape) { + sum_val *= i; + } + int interval = sum_val / input_shape[0]; + + if (padding_idx_ != -1) { + std::vector data(sum_val, 1); + for (auto i = 0; i < interval; i++) { + data[padding_idx_ * interval + i] = 0; + } + std::string constant = helper_->Constant( + input_shape, GetOnnxDtype(input_w_info[0].dtype), data); + auto weight_node = + helper_->MakeNode("Mul", {input_w_info[0].name, constant}); + helper_->MakeNode("Gather", {weight_node->output(0), ids_node}, + {output_info[0].name}); + } else { + helper_->MakeNode("Gather", {input_w_info[0].name, ids_node}, + {output_info[0].name}); + } +} + +void LookupTableMapper::Opset11() { + auto input_ids_info = GetInput("Ids"); + auto input_w_info = GetInput("W"); + auto output_info = GetOutput("Out"); + + std::string ids_node = input_ids_info[0].name; + auto ids_shape = input_ids_info[0].shape; + if (OpType() == "lookup_table" && ids_shape[ids_shape.size() - 1] == 1) { + ids_node = helper_->Squeeze(input_ids_info[0].name, {-1}); + } + + auto input_shape = input_w_info[0].shape; + int64_t sum_val = 1; + for (auto i : input_shape) { + sum_val *= i; + } + int interval = sum_val / input_shape[0]; + + if (padding_idx_ != -1) { + bool has_minus = false; + for (auto i : input_w_info[0].shape) { + has_minus = (i == -1); + if (has_minus) { + break; + } + } + if (has_minus) { + std::vector shape = {interval}; + std::string replace_data = + helper_->Constant(shape, GetOnnxDtype(input_w_info[0].dtype), 0.0); + std::string index = helper_->Constant( + {1}, ONNX_NAMESPACE::TensorProto::INT64, padding_idx_); + auto scatter_node = helper_->MakeNode( + "ScatterND", {input_w_info[0].name, index, replace_data}); + helper_->MakeNode("Gather", {scatter_node->output(0), ids_node}, + {output_info[0].name}); + } else { + std::vector data(sum_val, 1); + for (auto i = 0; i < interval; i++) { + data[padding_idx_ * interval + i] = 0; + } + std::string constant = helper_->Constant( + input_shape, GetOnnxDtype(input_w_info[0].dtype), data); + auto weight_node = + helper_->MakeNode("Mul", {input_w_info[0].name, constant}); + helper_->MakeNode("Gather", {weight_node->output(0), ids_node}, + {output_info[0].name}); + } + } else { + helper_->MakeNode("Gather", {input_w_info[0].name, ids_node}, + {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/lookup_table.h b/paddle2onnx/mapper/tensor/lookup_table.h new file mode 100644 index 0000000000..df537a981e --- /dev/null +++ b/paddle2onnx/mapper/tensor/lookup_table.h @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class LookupTableMapper : public Mapper { + public: + LookupTableMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("padding_idx", &padding_idx_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset11(); + + private: + int64_t padding_idx_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/matmul.cc b/paddle2onnx/mapper/tensor/matmul.cc new file mode 100644 index 0000000000..fd8bb12644 --- /dev/null +++ b/paddle2onnx/mapper/tensor/matmul.cc @@ -0,0 +1,61 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/matmul.h" +#include + +namespace paddle2onnx { +REGISTER_MAPPER(matmul, MatmulMapper) + +std::string MatmulMapper::GetTrans(std::vector& input_info) { + std::string castd_name = input_info[0].name; + if (input_info[0].dtype == P2ODataType::FP64) { + castd_name = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + } + std::vector perm = Arange(0, input_info[0].Rank()); + std::swap(perm[perm.size() - 1], perm[perm.size() - 2]); + auto transpose_node = helper_->MakeNode("Transpose", {castd_name}); + AddAttribute(transpose_node, "perm", perm); + return transpose_node->output(0); +} + +void MatmulMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + std::string input_x = input_x_info[0].name; + if (transpose_X_) { + input_x = GetTrans(input_x_info); + } + std::string input_y = input_y_info[0].name; + if (transpose_Y_) { + input_y = GetTrans(input_y_info); + } + if (fabs(alpha_ - 1.0) < 1e-6) { + auto node = helper_->MakeNode("MatMul", {input_x, input_y}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + input_y_info[0].dtype); + } else { + auto mutmul_node = helper_->MakeNode("MatMul", {input_x, input_y}); + std::string scale_node = + helper_->Constant({1}, GetOnnxDtype(input_x_info[0].dtype), alpha_); + auto mul_node = + helper_->MakeNode("Mul", {mutmul_node->output(0), scale_node}); + helper_->AutoCast(mul_node->output(0), output_info[0].name, + P2ODataType::FP32, input_y_info[0].dtype); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/matmul.h b/paddle2onnx/mapper/tensor/matmul.h new file mode 100644 index 0000000000..16957701fb --- /dev/null +++ b/paddle2onnx/mapper/tensor/matmul.h @@ -0,0 +1,42 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MatmulMapper : public Mapper { + public: + MatmulMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("transpose_X", &transpose_X_); + GetAttr("transpose_Y", &transpose_Y_); + GetAttr("alpha", &alpha_); + } + + void Opset7(); + + private: + std::string GetTrans(std::vector& input_info); + bool transpose_X_ = false; + bool transpose_Y_ = false; + float alpha_ = 1.0; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/matmul_v2.cc b/paddle2onnx/mapper/tensor/matmul_v2.cc new file mode 100644 index 0000000000..f78a26f424 --- /dev/null +++ b/paddle2onnx/mapper/tensor/matmul_v2.cc @@ -0,0 +1,51 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/matmul_v2.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(matmul_v2, MatmulV2Mapper) + +std::string MatmulV2Mapper::GetTrans(std::vector& input_info) { + std::string castd_name = helper_->AutoCast( + input_info[0].name, input_info[0].dtype, P2ODataType::FP32); + std::vector perm = Arange(0, input_info[0].Rank()); + std::swap(perm[perm.size() - 1], perm[perm.size() - 2]); + auto transpose_node = helper_->MakeNode("Transpose", {castd_name}); + AddAttribute(transpose_node, "perm", perm); + return transpose_node->output(0); +} + +void MatmulV2Mapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Y"); + auto output_info = GetOutput("Out"); + std::string input_x = input_x_info[0].name; + if (trans_x_) { + input_x = GetTrans(input_x_info); + } + std::string input_y = input_y_info[0].name; + if (trans_y_) { + input_y = GetTrans(input_y_info); + } + auto node = helper_->MakeNode("MatMul", {input_x, input_y}); + helper_->AutoCast(node->output(0), output_info[0].name, P2ODataType::FP32, + input_y_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/matmul_v2.h b/paddle2onnx/mapper/tensor/matmul_v2.h new file mode 100644 index 0000000000..bb3762a34d --- /dev/null +++ b/paddle2onnx/mapper/tensor/matmul_v2.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MatmulV2Mapper : public Mapper { + public: + MatmulV2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("trans_x", &trans_x_); + GetAttr("trans_y", &trans_y_); + } + + void Opset7(); + + private: + std::string GetTrans(std::vector& input_info); + bool trans_x_ = false; + bool trans_y_ = false; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mean.cc b/paddle2onnx/mapper/tensor/mean.cc new file mode 100644 index 0000000000..de1fae3cbe --- /dev/null +++ b/paddle2onnx/mapper/tensor/mean.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/mean.h" + +namespace paddle2onnx { +REGISTER_MAPPER(mean, MeanMapper) + +void MeanMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + auto input = helper_->Reshape(x_info[0].name, {-1}); + auto node = helper_->MakeNode("ReduceMean", {input}, {out_info[0].name}); + AddAttribute(node, "axes", std::vector(1, 0)); + AddAttribute(node, "keepdims", int64_t(1)); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mean.h b/paddle2onnx/mapper/tensor/mean.h new file mode 100644 index 0000000000..bbb6a2bd8d --- /dev/null +++ b/paddle2onnx/mapper/tensor/mean.h @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MeanMapper : public Mapper { + public: + MeanMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/meshgrid.cc b/paddle2onnx/mapper/tensor/meshgrid.cc new file mode 100644 index 0000000000..b855d1544b --- /dev/null +++ b/paddle2onnx/mapper/tensor/meshgrid.cc @@ -0,0 +1,46 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/meshgrid.h" + +namespace paddle2onnx { +REGISTER_MAPPER(meshgrid, MeshgridMapper) + +void MeshgridMapper::Opset8() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + + std::vector x_shapes(x_info.size()); + for (size_t i = 0; i < x_info.size(); ++i) { + x_shapes[i] = helper_->MakeNode("Shape", {x_info[i].name})->output(0); + } + auto out_shape = helper_->Concat(x_shapes, 0); + for (size_t i = 0; i < x_info.size(); ++i) { + std::vector intermediate_shape(x_info.size()); + for (size_t j = 0; j < x_info.size(); ++j) { + if (j == i) { + intermediate_shape[j] = x_shapes[i]; + } else { + intermediate_shape[j] = helper_->Constant( + ONNX_NAMESPACE::TensorProto::INT64, std::vector(1, 1)); + } + } + auto t_reshaped = helper_->Concat(intermediate_shape, 0); + t_reshaped = + helper_->MakeNode("Reshape", {x_info[i].name, t_reshaped})->output(0); + helper_->MakeNode("Expand", {t_reshaped, out_shape}, {out_info[i].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/meshgrid.h b/paddle2onnx/mapper/tensor/meshgrid.h new file mode 100644 index 0000000000..d83d677b00 --- /dev/null +++ b/paddle2onnx/mapper/tensor/meshgrid.h @@ -0,0 +1,35 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MeshgridMapper : public Mapper { + public: + MeshgridMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + MarkAsExperimentalOp(); + } + + int32_t GetMinOpset(bool verbose = false) { return 8; } + void Opset8(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mul.cc b/paddle2onnx/mapper/tensor/mul.cc new file mode 100644 index 0000000000..3ba9e1212e --- /dev/null +++ b/paddle2onnx/mapper/tensor/mul.cc @@ -0,0 +1,50 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/mul.h" + +namespace paddle2onnx { +REGISTER_MAPPER(mul, MulMapper) + +void MulMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + auto x_input = x_info[0].name; + auto y_input = y_info[0].name; + if (x_info[0].Rank() > 2) { + auto node = helper_->MakeNode("Flatten", {x_input}); + AddAttribute(node, "axis", x_num_col_dims_); + x_input = node->output(0); + } + if (y_info[0].Rank() > 2) { + auto node = helper_->MakeNode("Flatten", {y_input}); + AddAttribute(node, "axis", y_num_col_dims_); + y_input = node->output(0); + } + auto out = helper_->MakeNode("MatMul", {x_input, y_input})->output(0); + + if (x_info[0].Rank() != 2 || y_info[0].Rank() != 2) { + auto x_shape = helper_->MakeNode("Shape", {x_info[0].name})->output(0); + auto y_shape = helper_->MakeNode("Shape", {y_info[0].name})->output(0); + auto out_shape_0 = helper_->Slice(x_shape, {0}, {0}, {x_num_col_dims_}); + auto out_shape_1 = helper_->Slice(y_shape, {0}, {y_num_col_dims_}, {y_info[0].Rank()}); + auto out_shape = helper_->Concat({out_shape_0, out_shape_1}, 0); + out = helper_->MakeNode("Reshape", {out, out_shape})->output(0); + } + helper_->MakeNode("Identity", {out}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mul.h b/paddle2onnx/mapper/tensor/mul.h new file mode 100644 index 0000000000..ad3171948a --- /dev/null +++ b/paddle2onnx/mapper/tensor/mul.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MulMapper : public Mapper { + public: + MulMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("x_num_col_dims", &x_num_col_dims_); + GetAttr("y_num_col_dims", &y_num_col_dims_); + } + void Opset7(); + private: + int64_t x_num_col_dims_ = 1; + int64_t y_num_col_dims_ = 1; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mv.cc b/paddle2onnx/mapper/tensor/mv.cc new file mode 100644 index 0000000000..dcbbdb8e30 --- /dev/null +++ b/paddle2onnx/mapper/tensor/mv.cc @@ -0,0 +1,33 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/mv.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(mv, MVMapper) + +void MVMapper::Opset7() { + auto input_x_info = GetInput("X"); + auto input_y_info = GetInput("Vec"); + auto output_info = GetOutput("Out"); + auto node = + helper_->MakeNode("MatMul", {input_x_info[0].name, input_y_info[0].name}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/mv.h b/paddle2onnx/mapper/tensor/mv.h new file mode 100644 index 0000000000..20acbf3c3b --- /dev/null +++ b/paddle2onnx/mapper/tensor/mv.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class MVMapper : public Mapper { + public: + MVMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/nonzero.cc b/paddle2onnx/mapper/tensor/nonzero.cc new file mode 100644 index 0000000000..fd4c0abed1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/nonzero.cc @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/nonzero.h" + +namespace paddle2onnx { +REGISTER_MAPPER(where_index, NonZeroMapper) + +void NonZeroMapper::Opset9() { + auto input_info = GetInput("Condition"); + auto output_info = GetOutput("Out"); + auto non_zero_indices = + helper_->MakeNode("NonZero", {input_info[0].name})->output(0); + helper_->Transpose(non_zero_indices, output_info[0].name, {1, 0}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/nonzero.h b/paddle2onnx/mapper/tensor/nonzero.h new file mode 100644 index 0000000000..a5c26dba24 --- /dev/null +++ b/paddle2onnx/mapper/tensor/nonzero.h @@ -0,0 +1,33 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class NonZeroMapper : public Mapper { + public: + NonZeroMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + void Opset9(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/not_equal.cc b/paddle2onnx/mapper/tensor/not_equal.cc new file mode 100644 index 0000000000..66b987f1b9 --- /dev/null +++ b/paddle2onnx/mapper/tensor/not_equal.cc @@ -0,0 +1,45 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/not_equal.h" + +namespace paddle2onnx { +REGISTER_MAPPER(not_equal, NotEqualMapper) + +int32_t NotEqualMapper::GetMinOpset(bool verbose) { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + if (x_info[0].dtype == P2ODataType::FP32 || + x_info[0].dtype == P2ODataType::FP64) { + Logger(verbose, 11) << "While input is dtype of float32/float64, " + << RequireOpset(11) << std::endl; + return 11; + } + return 7; +} + +void NotEqualMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto out_info = GetOutput("Out"); + + int out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment({x_info[0], y_info[0]}, &out_dtype); + + auto output = helper_->MakeNode("Equal", aligned_inputs)->output(0); + helper_->MakeNode("Not", {output}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/not_equal.h b/paddle2onnx/mapper/tensor/not_equal.h new file mode 100644 index 0000000000..7c9f9c5f3d --- /dev/null +++ b/paddle2onnx/mapper/tensor/not_equal.h @@ -0,0 +1,29 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class NotEqualMapper : public Mapper { + public: + NotEqualMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/one_hot_v2.cc b/paddle2onnx/mapper/tensor/one_hot_v2.cc new file mode 100644 index 0000000000..6b877bb9b2 --- /dev/null +++ b/paddle2onnx/mapper/tensor/one_hot_v2.cc @@ -0,0 +1,58 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/one_hot_v2.h" + +namespace paddle2onnx { +REGISTER_MAPPER(one_hot_v2, OneHotV2Mapper) + +int32_t OneHotV2Mapper::GetMinOpset(bool verbose) { + if (allow_out_of_range_) { + Error() << "allow_out_of_range is not supported in one_hot_v2." + << std::endl; + return -1; + } + auto output_info = GetOutput("Out"); + if (output_info[0].dtype != dtype_) { + Error() << "dtype attribute and output dtype do not match." << std::endl; + return -1; + } + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; +} + +void OneHotV2Mapper::Opset9() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string casted_input = helper_->AutoCast( + input_info[0].name, input_info[0].dtype, P2ODataType::INT64); + + std::vector vals = {0, 1}; + std::string value_node = + helper_->Constant(GetOnnxDtype(output_info[0].dtype), vals); + + std::string depth_node = ""; + if (HasInput("depth_tensor")) { + auto input_depth_info = GetInput("depth_tensor"); + depth_node = input_depth_info[0].name; + } else { + depth_node = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), depth_); + } + auto one_hot_node = helper_->MakeNode( + "OneHot", {casted_input, depth_node, value_node}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/one_hot_v2.h b/paddle2onnx/mapper/tensor/one_hot_v2.h new file mode 100644 index 0000000000..bf56021051 --- /dev/null +++ b/paddle2onnx/mapper/tensor/one_hot_v2.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class OneHotV2Mapper : public Mapper { + public: + OneHotV2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("allow_out_of_range", &allow_out_of_range_); + GetAttr("depth", &depth_); + GetAttr("dtype", &dtype_); + } + int32_t GetMinOpset(bool verbose); + void Opset9(); + + private: + bool allow_out_of_range_; + int64_t depth_; + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/p_norm.cc b/paddle2onnx/mapper/tensor/p_norm.cc new file mode 100755 index 0000000000..84bc84476f --- /dev/null +++ b/paddle2onnx/mapper/tensor/p_norm.cc @@ -0,0 +1,50 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/p_norm.h" + +namespace paddle2onnx { +REGISTER_MAPPER(p_norm, PNormMapper) + +void PNormMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string pnode = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), porder_); + + auto abs_node = helper_->MakeNode("Abs", {input_info[0].name}); + auto pow_node = helper_->MakeNode("Pow", {abs_node->output(0), pnode}); + std::string reducesum_node = ""; + std::vector axes_val = {axis_}; + if (helper_->GetOpsetVersion() < 13) { + auto node = helper_->MakeNode("ReduceSum", {pow_node->output(0)}); + AddAttribute(node, "axes", axes_val); + AddAttribute(node, "keepdims", static_cast(keepdim_)); + reducesum_node = node->output(0); + } else { + std::string axes_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), axes_val); + auto node = + helper_->MakeNode("ReduceSum", {pow_node->output(0), axes_node}); + AddAttribute(node, "keepdims", static_cast(keepdim_)); + reducesum_node = node->output(0); + } + + std::string pnode1 = + helper_->Constant({1}, GetOnnxDtype(input_info[0].dtype), 1.0 / porder_); + helper_->MakeNode("Pow", {reducesum_node, pnode1}, {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/p_norm.h b/paddle2onnx/mapper/tensor/p_norm.h new file mode 100755 index 0000000000..e7417369c3 --- /dev/null +++ b/paddle2onnx/mapper/tensor/p_norm.h @@ -0,0 +1,40 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class PNormMapper : public Mapper { + public: + PNormMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("keepdim", &keepdim_); + GetAttr("axis", &axis_); + GetAttr("porder", &porder_); + } + void Opset7(); + + private: + bool keepdim_; + int64_t axis_; + float porder_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/partial_ops.cc b/paddle2onnx/mapper/tensor/partial_ops.cc new file mode 100755 index 0000000000..d22f3e73db --- /dev/null +++ b/paddle2onnx/mapper/tensor/partial_ops.cc @@ -0,0 +1,88 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/partial_ops.h" + +namespace paddle2onnx { +REGISTER_MAPPER(partial_sum, PartialOpsMapper) +REGISTER_MAPPER(partial_concat, PartialOpsMapper) + +int32_t PartialOpsMapper::GetMinOpset(bool verbose) { + auto input_info = GetInput("X"); + for (auto &in : input_info) { + if (in.Rank() != 2) { + Error() << "The input dim of partial_sum OP must be 2." << std::endl; + return -1; + } + } + if (start_index_ < 0) { + start_index_ = start_index_ + input_info[0].shape[1]; + } + int64_t batch_size = input_info[0].shape[0]; + int64_t max_length = input_info[0].shape[1]; + for (auto &in : input_info) { + if (in.shape[0] != batch_size || in.shape[1] != max_length) { + Error() + << "The batch_size and max_length of all inputs must be same in " + + OpType() + " OP." + << std::endl; + return -1; + } + } + if (max_length < start_index_) { + Error() << "start_index must be less than input len in " + OpType() + " OP." + << std::endl; + return -1; + } + if (length_ > 0 && start_index_ + length_ > max_length) { + Error() << "start_index + length is larger than input length in " + + OpType() + " OP." + << std::endl; + return -1; + } + auto iter = op_mapper_.find(OpType()); + if (op_mapper_.end() == iter) { + Error() << "Cannot find " + OpType() + " in partial op_mapper." + << std::endl; + return -1; + } + return 7; +} + +void PartialOpsMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + int64_t end; + if (length_ < 0) { + end = input_info[0].shape[1]; + } else { + end = start_index_ + length_; + } + std::vector slice_outputs; + for (auto &in : input_info) { + auto out = helper_->Slice(in.name, {1}, {start_index_}, {end}); + std::string casted_node = + helper_->AutoCast(out, in.dtype, P2ODataType::FP32); + slice_outputs.push_back(casted_node); + } + auto iter = op_mapper_.find(OpType()); + auto node = helper_->MakeNode(iter->second, slice_outputs); + if (iter->second == "Concat") { + AddAttribute(node, "axis", static_cast(1)); + } + helper_->AutoCast(node->output(0), {output_info[0].name}, P2ODataType::FP32, + output_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/partial_ops.h b/paddle2onnx/mapper/tensor/partial_ops.h new file mode 100755 index 0000000000..54eb7ecc3a --- /dev/null +++ b/paddle2onnx/mapper/tensor/partial_ops.h @@ -0,0 +1,42 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class PartialOpsMapper : public Mapper { + public: + PartialOpsMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("start_index", &start_index_); + GetAttr("length", &length_); + op_mapper_["partial_sum"] = "Sum"; + op_mapper_["partial_concat"] = "Concat"; + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::map op_mapper_; + int64_t start_index_; + int64_t length_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/pixel_shuffle.cc b/paddle2onnx/mapper/tensor/pixel_shuffle.cc new file mode 100644 index 0000000000..9f10087d11 --- /dev/null +++ b/paddle2onnx/mapper/tensor/pixel_shuffle.cc @@ -0,0 +1,30 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/pixel_shuffle.h" + +namespace paddle2onnx { +REGISTER_MAPPER(pixel_shuffle, PixelShuffleMapper) + +void PixelShuffleMapper::Opset11() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + auto node = helper_->MakeNode("DepthToSpace", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "blocksize", upscale_factor_); + AddAttribute(node, "mode", static_cast("CRD")); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/pixel_shuffle.h b/paddle2onnx/mapper/tensor/pixel_shuffle.h new file mode 100644 index 0000000000..9158810604 --- /dev/null +++ b/paddle2onnx/mapper/tensor/pixel_shuffle.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class PixelShuffleMapper : public Mapper { + public: + PixelShuffleMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("upscale_factor", &upscale_factor_); + } + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; + } + void Opset11(); + + private: + int64_t upscale_factor_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/pow.cc b/paddle2onnx/mapper/tensor/pow.cc new file mode 100644 index 0000000000..57dc18801b --- /dev/null +++ b/paddle2onnx/mapper/tensor/pow.cc @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/pow.h" +#include + +namespace paddle2onnx { +REGISTER_MAPPER(pow, PowMapper) + +void PowMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + auto factor_node = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(1, factor_)); + if (input_info[0].dtype != P2ODataType::FP32) { + std::string x_cast_name = helper_->AutoCast( + {input_info[0].name}, input_info[0].dtype, P2ODataType::FP32); + auto node = helper_->MakeNode("Pow", {x_cast_name, factor_node}); + helper_->AutoCast(node->output(0), {output_info[0].name}, P2ODataType::FP32, + input_info[0].dtype); + } else { + helper_->MakeNode("Pow", {input_info[0].name, factor_node}, {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/pow.h b/paddle2onnx/mapper/tensor/pow.h new file mode 100644 index 0000000000..60b4450946 --- /dev/null +++ b/paddle2onnx/mapper/tensor/pow.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class PowMapper : public Mapper { + public: + PowMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("factor", &factor_); + } + void Opset7(); + + private: + float factor_ = 0.0; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/range.cc b/paddle2onnx/mapper/tensor/range.cc new file mode 100644 index 0000000000..0254bf6a05 --- /dev/null +++ b/paddle2onnx/mapper/tensor/range.cc @@ -0,0 +1,76 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/range.h" + +namespace paddle2onnx { +REGISTER_MAPPER(range, RangeMapper) + +void RangeMapper::Opset11() { + auto start_info = GetInput("Start"); + auto end_info = GetInput("End"); + auto step_info = GetInput("Step"); + auto out_info = GetOutput("Out"); + int32_t out_dtype = -1; + // TODO(jiangjiajun) cast for constant is an eleminable operation + std::vector aligned_inputs = helper_->DtypeAlignment( + {start_info[0], end_info[0], step_info[0]}, &out_dtype); + std::vector empty_axes; + + // // Trick for tensorrt + // if (out_dtype == P2ODataType::INT32 || out_dtype == P2ODataType::INT64 || + // true) { + // if (start_info[0].Rank() != 1) { + // aligned_inputs[0] = helper_->Reshape(aligned_inputs[0], {-1}); + // } + // if (end_info[0].Rank() != 1) { + // aligned_inputs[1] = helper_->Reshape(aligned_inputs[1], {-1}); + // } + // if (step_info[0].Rank() != 1) { + // aligned_inputs[2] = helper_->Reshape(aligned_inputs[2], {-1}); + // } + // auto length = helper_->MakeNode("Sub", {aligned_inputs[1], + // aligned_inputs[0]})->output(0); + // length = helper_->AutoCast(length, out_dtype, P2ODataType::INT64); + // auto one = helper_->Constant({1}, GetOnnxDtype(out_dtype), int64_t(1)); + // auto expaned_one = helper_->MakeNode("Expand", {one, + // length})->output(0); auto axis = helper_->Constant({}, + // ONNX_NAMESPACE::TensorProto::INT64, int64_t(0)); auto cumsumed_data = + // helper_->MakeNode("CumSum", {expaned_one, axis})->output(0); + // cumsumed_data = helper_->MakeNode("Sub", {cumsumed_data, + // one})->output(0); + // + // auto zero = helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, + // int64_t(0)); + // auto new_step = helper_->AutoCast(aligned_inputs[2], step_info[0].dtype, + // P2ODataType::INT64); + // helper_->MakeNode("Slice", {cumsumed_data, zero, length, zero, + // new_step}, {out_info[0].name}); return; + // } + + // TODO(jiangjiajun) squeeze for constant is an eleminable operation + if (start_info[0].shape.size() > 0) { + aligned_inputs[0] = helper_->Squeeze(aligned_inputs[0], empty_axes); + } + if (end_info[0].shape.size() > 0) { + aligned_inputs[1] = helper_->Squeeze(aligned_inputs[1], empty_axes); + } + if (step_info[0].shape.size() > 0) { + aligned_inputs[2] = helper_->Squeeze(aligned_inputs[2], empty_axes); + } + auto out = helper_->MakeNode("Range", aligned_inputs)->output(0); + helper_->AutoCast(out, out_info[0].name, out_dtype, out_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/range.h b/paddle2onnx/mapper/tensor/range.h new file mode 100644 index 0000000000..df5c2dfe32 --- /dev/null +++ b/paddle2onnx/mapper/tensor/range.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class RangeMapper : public Mapper { + public: + RangeMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; + } + void Opset11(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/reduce.cc b/paddle2onnx/mapper/tensor/reduce.cc new file mode 100644 index 0000000000..82b98619c1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/reduce.cc @@ -0,0 +1,144 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/reduce.h" + +namespace paddle2onnx { +REGISTER_MAPPER(reduce_mean, ReduceMapper) +REGISTER_MAPPER(reduce_sum, ReduceMapper) +REGISTER_MAPPER(reduce_min, ReduceMapper) +REGISTER_MAPPER(reduce_max, ReduceMapper) +REGISTER_MAPPER(reduce_prod, ReduceMapper) +REGISTER_MAPPER(logsumexp, ReduceMapper) +REGISTER_MAPPER(reduce_all, ReduceMapper) +REGISTER_MAPPER(reduce_any, ReduceMapper) + +int32_t ReduceMapper::GetMinOpset(bool verbose) { + std::string axis_name; + if (OpType() == "logsumexp") { + axis_name = "axis"; + } else { + axis_name = "dim"; + } + if (IsAttrVar(axis_name) && !IsConstant(GetAttrVar(axis_name)[0])) { + if (OpType() == "reduce_sum") { + return 13; + } + Error() << "While Attribute(" << axis_name + << ")'s type is Tensor, it's not supported " + "unless it's a constant tensor." + << std::endl; + return -1; + } + return 7; +} + +void ReduceMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + std::map op_map; + op_map["reduce_mean"] = "ReduceMean"; + op_map["reduce_sum"] = "ReduceSum"; + op_map["reduce_min"] = "ReduceMin"; + op_map["reduce_max"] = "ReduceMax"; + op_map["reduce_prod"] = "ReduceProd"; + op_map["logsumexp"] = "ReduceLogSumExp"; + std::string out = ""; + + std::string axis_name; + if (OpType() == "logsumexp") { + axis_name = "axis"; + } else { + axis_name = "dim"; + } + + if (IsAttrVar(axis_name)) { + auto info = GetAttrVar(axis_name); + TryGetValue(info[0], &dim_); + } else { + GetAttr(axis_name, &dim_); + } + + bool reduce_all_axes = dim_.size() == x_info[0].Rank(); + if (reduce_all_) { + reduce_all_axes = true; + } + + if (helper_->GetOpsetVersion() >= 13 && OpType() == "reduce_sum") { + std::string dims = ""; + if (IsAttrVar(axis_name)) { + auto info = GetAttrVar(axis_name); + dims = helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } else { + if (!reduce_all_) { + dims = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, dim_); + } else { + dims = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + Arange(0, x_info[0].Rank())); + } + } + auto reduce_node = + helper_->MakeNode(op_map[OpType()], {x_info[0].name, dims}); + AddAttribute(reduce_node, "keepdims", static_cast(keep_dim_)); + out = reduce_node->output(0); + } else if (OpType() == "reduce_all") { + auto int32_x = + helper_->AutoCast(x_info[0].name, x_info[0].dtype, P2ODataType::INT32); + auto reduce_node = helper_->MakeNode("ReduceMin", {int32_x}); + if (!reduce_all_) { + AddAttribute(reduce_node, "axes", dim_); + } else { + AddAttribute(reduce_node, "axes", Arange(0, x_info[0].Rank())); + } + AddAttribute(reduce_node, "keepdims", static_cast(keep_dim_)); + out = helper_->AutoCast(reduce_node->output(0), P2ODataType::INT32, + P2ODataType::BOOL); + } else if (OpType() == "reduce_any") { + auto int32_x = + helper_->AutoCast(x_info[0].name, x_info[0].dtype, P2ODataType::INT32); + auto reduce_node = helper_->MakeNode("ReduceMax", {int32_x}); + if (!reduce_all_) { + AddAttribute(reduce_node, "axes", dim_); + } else { + AddAttribute(reduce_node, "axes", Arange(0, x_info[0].Rank())); + } + AddAttribute(reduce_node, "keepdims", static_cast(keep_dim_)); + out = helper_->AutoCast(reduce_node->output(0), P2ODataType::INT32, + P2ODataType::BOOL); + } else { + std::string input_name = x_info[0].name; + if (OpType() == "reduce_prod" && x_info[0].dtype == P2ODataType::FP64) { + input_name = helper_->AutoCast(x_info[0].name, P2ODataType::FP64, + P2ODataType::FP32); + } + auto reduce_node = helper_->MakeNode(op_map[OpType()], {input_name}); + if (!reduce_all_) { + AddAttribute(reduce_node, "axes", dim_); + } else { + AddAttribute(reduce_node, "axes", Arange(0, x_info[0].Rank())); + } + AddAttribute(reduce_node, "keepdims", static_cast(keep_dim_)); + out = reduce_node->output(0); + if (OpType() == "reduce_prod" && x_info[0].dtype == P2ODataType::FP64) { + out = helper_->AutoCast(reduce_node->output(0), P2ODataType::FP32, + P2ODataType::FP64); + } + } + if (!keep_dim_ && reduce_all_axes) { + out = helper_->Reshape(out, {-1}); + } + helper_->AutoCast(out, out_info[0].name, x_info[0].dtype, out_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/reduce.h b/paddle2onnx/mapper/tensor/reduce.h new file mode 100755 index 0000000000..901a3f48c6 --- /dev/null +++ b/paddle2onnx/mapper/tensor/reduce.h @@ -0,0 +1,50 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ReduceMapper : public Mapper { + public: + ReduceMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + if (OpType() == "logsumexp") { + GetAttr("keepdim", &keep_dim_); + GetAttr("reduce_all", &reduce_all_); + } else { + GetAttr("keep_dim", &keep_dim_); + GetAttr("reduce_all", &reduce_all_); + GetAttr("in_dtype", &in_dtype_); + GetAttr("out_dtype", &out_dtype_); + } + } + void Opset7(); + + int32_t GetMinOpset(bool verbose = false); + + private: + bool keep_dim_; + bool reduce_all_; + int64_t in_dtype_; + int64_t out_dtype_; + std::vector dim_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/reshape2.cc b/paddle2onnx/mapper/tensor/reshape2.cc new file mode 100644 index 0000000000..ccdbc5a86e --- /dev/null +++ b/paddle2onnx/mapper/tensor/reshape2.cc @@ -0,0 +1,54 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/reshape2.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(reshape2, Reshape2Mapper) + +void Reshape2Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::string shape_name = "ShapeTensor"; + if (!HasInput(shape_name)) { + shape_name = "Shape"; + } + + std::string new_shape = ""; + if (HasInput(shape_name)) { + auto shape_info = GetInput(shape_name); + if (shape_info.size() > 1) { + new_shape = helper_->ConcatIndices(shape_info); + } else { + new_shape = helper_->AutoCast(shape_info[0].name, shape_info[0].dtype, + P2ODataType::INT64); + } + } else { + std::vector value; + GetAttr("shape", &value); + new_shape = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, value); + } + auto node = helper_->MakeNode("Reshape", {input_info[0].name, new_shape}, + {output_info[0].name}); + if (helper_->GetOpsetVersion()>= 14) { + AddAttribute(node, "allowzero", int64_t(0)); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/reshape2.h b/paddle2onnx/mapper/tensor/reshape2.h new file mode 100644 index 0000000000..65ce420619 --- /dev/null +++ b/paddle2onnx/mapper/tensor/reshape2.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Reshape2Mapper : public Mapper { + public: + Reshape2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scale.cc b/paddle2onnx/mapper/tensor/scale.cc new file mode 100644 index 0000000000..a2afb0cfaa --- /dev/null +++ b/paddle2onnx/mapper/tensor/scale.cc @@ -0,0 +1,76 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#include "paddle2onnx/mapper/tensor/scale.h" + +#include + +namespace paddle2onnx { + +REGISTER_MAPPER(scale, ScaleMapper) + +void ScaleMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + bool has_scale_tensor = HasInput("ScaleTensor"); + bool is_scale_1 = ((scale_ - 1.0) < 1e-06 && (scale_ - 1.0) > -1e-06); + bool is_bias_0 = (bias_ < 1e-06 && bias_ > -1e-06); + + if (!has_scale_tensor && is_scale_1 && is_bias_0) { + helper_->MakeNode("Identity", {input_info[0].name}, {output_info[0].name}); + } else { + auto input = helper_->AutoCast(input_info[0].name, input_info[0].dtype, + P2ODataType::FP32); + std::string out = input; + if (bias_after_scale_) { + if (!is_scale_1 || HasInput("ScaleTensor")) { + if (HasInput("ScaleTensor")) { + auto scale_info = GetInput("ScaleTensor"); + auto scale = helper_->AutoCast( + scale_info[0].name, scale_info[0].dtype, P2ODataType::FP32); + out = helper_->MakeNode("Mul", {out, scale})->output(0); + } else { + auto scale = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(1, scale_)); + out = helper_->MakeNode("Mul", {out, scale})->output(0); + } + } + if (!is_bias_0) { + auto bias = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(1, bias_)); + out = helper_->MakeNode("Add", {out, bias})->output(0); + } + } else { + if (!is_bias_0) { + auto bias = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(1, bias_)); + out = helper_->MakeNode("Add", {out, bias})->output(0); + } + if (!is_scale_1 || HasInput("ScaleTensor")) { + if (HasInput("ScaleTensor")) { + auto scale_info = GetInput("ScaleTensor"); + auto scale = helper_->AutoCast( + scale_info[0].name, scale_info[0].dtype, P2ODataType::FP32); + out = helper_->MakeNode("Mul", {out, scale})->output(0); + } else { + auto scale = helper_->Constant(ONNX_NAMESPACE::TensorProto::FLOAT, + std::vector(1, scale_)); + out = helper_->MakeNode("Mul", {out, scale})->output(0); + } + } + } + helper_->AutoCast(out, output_info[0].name, P2ODataType::FP32, + output_info[0].dtype); + } +} +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scale.h b/paddle2onnx/mapper/tensor/scale.h new file mode 100644 index 0000000000..3970516c3d --- /dev/null +++ b/paddle2onnx/mapper/tensor/scale.h @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ScaleMapper : public Mapper { + public: + ScaleMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("scale", &scale_); + GetAttr("bias", &bias_); + GetAttr("bias_after_scale", &bias_after_scale_); + } + + void Opset7(); + + private: + float scale_ = 1.0; + float bias_ = 0.0; + bool bias_after_scale_ = true; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scatter.cc b/paddle2onnx/mapper/tensor/scatter.cc new file mode 100644 index 0000000000..73bb7dd6a1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/scatter.cc @@ -0,0 +1,77 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/scatter.h" + +namespace paddle2onnx { +REGISTER_MAPPER(scatter, ScatterMapper) + +int32_t ScatterMapper::GetMinOpset(bool verbose) { + if (!overwrite_) { + Logger(verbose, 16) << "When overwrite is False, " << RequireOpset(16) + << std::endl; + return 16; + } + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void ScatterMapper::Opset11() { + auto input_x_info = GetInput("X"); + auto input_ids_info = GetInput("Ids"); + auto input_updates_info = GetInput("Updates"); + auto output_info = GetOutput("Out"); + + std::string ids_node = helper_->AutoCast( + input_ids_info[0].name, input_ids_info[0].dtype, P2ODataType::INT64); + + std::vector shape_val = {input_ids_info[0].shape[0], 1}; + std::string shape_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), shape_val); + + auto reshape_index_node = + helper_->MakeNode("Reshape", {ids_node, shape_node}); + + if (!overwrite_) { + auto shape_node = helper_->MakeNode("Shape", {input_x_info[0].name}); + std::string zeros_like_node = helper_->ConstOfShape( + shape_node->output(0), GetOnnxDtype(input_x_info[0].dtype), + static_cast(0)); + auto scatter_nd_node = helper_->MakeNode( + "ScatterND", {zeros_like_node, reshape_index_node->output(0), + input_updates_info[0].name}); + AddAttribute(scatter_nd_node, "reduction", "add"); + + std::string zero_node = helper_->Constant( + {1}, GetOnnxDtype(input_x_info[0].dtype), static_cast(0)); + + auto equal_node = + helper_->MakeNode("Equal", {scatter_nd_node->output(0), zero_node}); + + std::string condition_node = helper_->AutoCast( + equal_node->output(0), P2ODataType::INT64, P2ODataType::BOOL); + + helper_->MakeNode("Where", {condition_node, input_x_info[0].name, + scatter_nd_node->output(0)}, + {output_info[0].name}); + + } else { + auto node = helper_->MakeNode( + "ScatterND", {input_x_info[0].name, reshape_index_node->output(0), + input_updates_info[0].name}, + {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scatter.h b/paddle2onnx/mapper/tensor/scatter.h new file mode 100644 index 0000000000..cefa80faeb --- /dev/null +++ b/paddle2onnx/mapper/tensor/scatter.h @@ -0,0 +1,37 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ScatterMapper : public Mapper { + public: + ScatterMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("overwrite", &overwrite_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + bool overwrite_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scatter_nd_add.cc b/paddle2onnx/mapper/tensor/scatter_nd_add.cc new file mode 100644 index 0000000000..7bbe5c9282 --- /dev/null +++ b/paddle2onnx/mapper/tensor/scatter_nd_add.cc @@ -0,0 +1,48 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/scatter_nd_add.h" + +namespace paddle2onnx { +REGISTER_MAPPER(scatter_nd_add, ScatterNdAddMapper) + +int32_t ScatterNdAddMapper::GetMinOpset(bool verbose) { + Logger(verbose, 16) << RequireOpset(16) << std::endl; + return 16; +} + +void ScatterNdAddMapper::Opset16() { + auto input_x_info = GetInput("X"); + auto input_ids_info = GetInput("Index"); + auto input_updates_info = GetInput("Updates"); + auto output_info = GetOutput("Out"); + + auto shape_node = helper_->MakeNode("Shape", {input_x_info[0].name}); + + std::string zeros_like_node = helper_->ConstOfShape( + shape_node->output(0), GetOnnxDtype(input_x_info[0].dtype), + static_cast(0)); + + std::string input_ids_node = helper_->AutoCast( + input_ids_info[0].name, input_ids_info[0].dtype, P2ODataType::INT64); + + auto scatter_nd_node = helper_->MakeNode( + "ScatterND", + {zeros_like_node, input_ids_node, input_updates_info[0].name}); + AddAttribute(scatter_nd_node, "reduction", "add"); + helper_->MakeNode("Add", {input_x_info[0].name, scatter_nd_node->output(0)}, + {output_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/scatter_nd_add.h b/paddle2onnx/mapper/tensor/scatter_nd_add.h new file mode 100644 index 0000000000..053e5076d1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/scatter_nd_add.h @@ -0,0 +1,34 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class ScatterNdAddMapper : public Mapper { + public: + ScatterNdAddMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset16(); + + private: +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/set_value.cc b/paddle2onnx/mapper/tensor/set_value.cc new file mode 100644 index 0000000000..7b630b1f95 --- /dev/null +++ b/paddle2onnx/mapper/tensor/set_value.cc @@ -0,0 +1,143 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/set_value.h" + +namespace paddle2onnx { +REGISTER_MAPPER(set_value, SetValueMapper) + +int32_t SetValueMapper::GetMinOpset(bool verbose) { + if (none_axes_.size() > 0) { + Error() << "Attribute none_axes is not supported." << std::endl; + return -1; + } + if (axes_.size() > 1) { + Error() << "Attribute axes is supported while it only contains 1 element." + << std::endl; + return -1; + } + if (steps_.size() > 1) { + Error() << "ttribute steps is supported while it only contains 1 element." + << std::endl; + return -1; + } + if (GetInput("Input")[0].dtype == P2ODataType::BOOL) { + Error() << "Input X with data type of boolean is not supported." + << std::endl; + return -1; + } + Logger(verbose, 12) << RequireOpset(12) << std::endl; + return 12; +} + +void SetValueMapper::Opset12() { + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Out"); + std::string starts = ""; + if (HasInput("StartsTensorList")) { + // if negtive value exists, not supported + starts = helper_->ConcatIndices(GetInput("StartsTensorList")); + } else { + starts = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, starts_); + } + std::string ends = ""; + if (HasInput("EndsTensorList")) { + ends = helper_->ConcatIndices(GetInput("EndsTensorList")); + } else { + // if out of range value in end exists, not supported + ends = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, ends_); + } + + auto input_tensor = input_info[0].name; + std::string axes = helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, + int64_t(axes_[0])); + // process out of range ends + auto input_shape = helper_->MakeNode("Shape", {input_tensor})->output(0); + auto gather_end_bound = helper_->MakeNode("Gather", {input_shape, axes}); + AddAttribute(gather_end_bound, "axis", int64_t(0)); + ends = + helper_->MakeNode("Min", {gather_end_bound->output(0), ends})->output(0); + + std::string steps = ""; + if (HasInput("StepsTensorList")) { + steps = helper_->ConcatIndices(GetInput("StepsTensorList")); + } else { + steps = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, steps_); + } + std::string value = ""; + int64_t value_rank = input_info[0].Rank(); + if (HasInput("ValueTensor")) { + auto value_info = GetInput("ValueTensor"); + value = value_info[0].name; + value_rank = value_info[0].Rank(); + } else { + value_rank = shape_.size(); + int in_dtype = input_info[0].dtype; + if (in_dtype == P2ODataType::INT32 || in_dtype == P2ODataType::INT64) { + value = helper_->Assign(GetOnnxDtype(output_info[0].dtype), shape_, + int_values_); + } else if (in_dtype == P2ODataType::FP32) { + value = helper_->Assign(GetOnnxDtype(output_info[0].dtype), shape_, + fp32_values_); + } else if (in_dtype == P2ODataType::FP64) { + value = helper_->Assign(GetOnnxDtype(output_info[0].dtype), shape_, + fp64_values_); + } + } + + auto sliced_data = + helper_->MakeNode("Slice", {input_tensor, starts, ends, axes, steps}) + ->output(0); + + auto sliced_shape = helper_->MakeNode("Shape", {sliced_data})->output(0); + if (decrease_axes_.size() > 0 && value_rank != input_info[0].Rank()) { + value = helper_->Unsqueeze(value, decrease_axes_); + } + auto expand_value = + helper_->MakeNode("Expand", {value, sliced_shape})->output(0); + + auto indices = helper_ + ->MakeNode("Range", {helper_->Squeeze(starts, {}), + helper_->Squeeze(ends, {}), + helper_->Squeeze(steps, {})}) + ->output(0); + if (axes_[0] == 0) { + indices = helper_->Unsqueeze(indices, {1}); + helper_->MakeNode("ScatterND", {input_tensor, indices, expand_value}, + {output_info[0].name}); + } else { + std::vector indices_shape(input_info[0].Rank(), 1); + indices_shape[axes_[0]] = -1; + indices = helper_->Reshape(indices, indices_shape); + auto one = + helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, int64_t(1)); + if (axes_[0] == input_info[0].Rank() - 1) { + auto part_shape = helper_->Slice(sliced_shape, {0}, {0}, {axes_[0]}); + auto tiled_shape = helper_->Concat({part_shape, one}, 0); + indices = helper_->MakeNode("Tile", {indices, tiled_shape})->output(0); + } else { + auto part_0_shape = helper_->Slice(sliced_shape, {0}, {0}, {axes_[0]}); + auto part_1_shape = helper_->Slice(sliced_shape, {0}, {axes_[0] + 1}, + {input_info[0].Rank()}); + auto tiled_shape = helper_->Concat({part_0_shape, one, part_1_shape}, 0); + indices = helper_->MakeNode("Tile", {indices, tiled_shape})->output(0); + } + auto scatter_node = helper_->MakeNode("ScatterElements", + {input_tensor, indices, expand_value}, + {output_info[0].name}); + AddAttribute(scatter_node, "axis", axes_[0]); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/set_value.h b/paddle2onnx/mapper/tensor/set_value.h new file mode 100644 index 0000000000..c5ddb9a97a --- /dev/null +++ b/paddle2onnx/mapper/tensor/set_value.h @@ -0,0 +1,65 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class SetValueMapper : public Mapper { + public: + SetValueMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + MarkAsExperimentalOp(); + GetAttr("axes", &axes_); + GetAttr("starts", &starts_); + GetAttr("ends", &ends_); + GetAttr("steps", &steps_); + GetAttr("shape", &shape_); + GetAttr("decrease_axes", &decrease_axes_); + GetAttr("none_axes", &none_axes_); + if (!HasInput("ValueTensor")) { + auto dtype = GetInput("Input")[0].dtype; + if (dtype == P2ODataType::INT32) { + GetAttr("int32_values", &int_values_); + } else if (dtype == P2ODataType::INT64) { + GetAttr("int64_values", &int_values_); + } else if (dtype == P2ODataType::FP32) { + GetAttr("fp32_values", &fp32_values_); + } else if (dtype == P2ODataType::FP64) { + GetAttr("fp64_values", &fp64_values_); + } + } + } + int32_t GetMinOpset(bool verbose = false); + void Opset12(); + + private: + std::vector axes_; + std::vector starts_; + std::vector ends_; + std::vector steps_; + std::vector shape_; + std::vector decrease_axes_; + std::vector none_axes_; + std::vector int_values_; + std::vector fp32_values_; + std::vector fp64_values_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/slice.cc b/paddle2onnx/mapper/tensor/slice.cc new file mode 100644 index 0000000000..317f3b9d5a --- /dev/null +++ b/paddle2onnx/mapper/tensor/slice.cc @@ -0,0 +1,175 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/slice.h" + +#include +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(slice, SliceMapper) +REGISTER_MAPPER(strided_slice, SliceMapper) + +int32_t SliceMapper::GetMinOpset(bool verbose) { + if (HasInput("StartsTensorList") || HasInput("EndsTensorList") || + HasInput("StridesTensorList")) { + Logger(verbose, 10) + << "While has input StartsTensorList/EndsTensorListStridesTensorList, " + << RequireOpset(10) << std::endl; + return 10; + } + if (HasInput("StartsTensor")) { + auto info = GetInput("StartsTensor"); + if (!IsConstantInput("StartsTensor")) { + Logger(verbose, 10) + << "While has input StartsTensor, and it's not a constant tensor, " + << RequireOpset(10) << std::endl; + return 10; + } + } + if (HasInput("EndsTensor")) { + auto info = GetInput("EndsTensor"); + if (!IsConstantInput("EndsTensor")) { + Logger(verbose, 10) + << "While has input EndsTensor, and it's not a constant tensor, " + << RequireOpset(10) << std::endl; + return 10; + } + } + if (HasInput("StridesTensor") || strides_.size() > 0) { + Logger(verbose, 10) << "While has strides, " << RequireOpset(10) + << std::endl; + return 10; + } + return 7; +} + +std::vector SliceMapper::DecreaseAxis() { + std::vector decrease_axis; + bool has_attr = HasAttr("decrease_axis"); + if (has_attr) { + GetAttr("decrease_axis", &decrease_axis); + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Out"); + if (output_info[0].shape.size() == 1 && output_info[0].shape[0] == 0) { + return decrease_axis; + } + if (input_info[0].shape.size() > output_info[0].shape.size()) { + return decrease_axis; + } + return {}; + } + return decrease_axis; +} + +void SliceMapper::Opset7() { + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Out"); + + Assert(!HasInput("StartsTensorList"), + "While slice/strided_slice has input StartsTensorList, requires " + "opset_version >= 10"); + + std::vector starts; + if (HasInput("StartsTensor")) { + Assert(TryGetInputValue("StartsTensor", &starts), + "While slice/strided_slice has input StartsTensor, and it's not a " + "constant tensor, then requires opset_version >= 10"); + } else { + starts = starts_; + } + + Assert(!HasInput("EndsTensorList"), + "While slice/strided_slice has input EndsTensorList, requires " + "opset_version >= 10"); + std::vector ends; + if (HasInput("EndsTensor")) { + auto info = GetInput("EndsTensor"); + Assert(TryGetInputValue("EndsTensor", &ends), + "While slice/strided_slice has input EndsTensor, and it's not a " + "constant tensor, then requires opset_version >= 10"); + } else { + ends = ends_; + } + + std::vector decrease_axis = DecreaseAxis(); + if (decrease_axis.empty()) { + helper_->Slice(input_info[0].name, output_info[0].name, axes_, starts, + ends); + } else { + std::string node = helper_->Slice(input_info[0].name, axes_, starts, ends); + helper_->Squeeze(node, output_info[0].name, decrease_axis); + } +} + +void SliceMapper::Opset10() { + auto input_info = GetInput("Input"); + auto output_info = GetOutput("Out"); + + std::string starts = ""; + if (HasInput("StartsTensorList")) { + auto info = GetInput("StartsTensorList"); + starts = helper_->ConcatIndices(info); + } else if (HasInput("StartsTensor")) { + auto info = GetInput("StartsTensor"); + starts = helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } else { + starts = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, starts_); + } + + std::string ends = ""; + if (HasInput("EndsTensorList")) { + auto info = GetInput("EndsTensorList"); + ends = helper_->ConcatIndices(info); + } else if (HasInput("EndsTensor")) { + auto info = GetInput("EndsTensor"); + ends = helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } else { + ends = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, ends_); + } + + std::string strides = ""; + if (HasInput("StridesTensorList")) { + auto info = GetInput("StridesTensorList"); + strides = helper_->ConcatIndices(info); + } else if (HasInput("StridesTensor")) { + auto info = GetInput("StridesTensor"); + strides = + helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } else { + if (strides_.size() == 0) { + strides = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, + std::vector(axes_.size(), 1)); + } else { + strides = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, strides_); + } + } + + auto axes = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, axes_); + std::vector decrease_axis = DecreaseAxis(); + if (decrease_axis.empty()) { + helper_->MakeNode("Slice", + {input_info[0].name, starts, ends, axes, strides}, + {output_info[0].name}); + } else { + auto out = helper_ + ->MakeNode("Slice", + {input_info[0].name, starts, ends, axes, strides}) + ->output(0); + helper_->Squeeze(out, output_info[0].name, decrease_axis); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/slice.h b/paddle2onnx/mapper/tensor/slice.h new file mode 100644 index 0000000000..38e5dc2f73 --- /dev/null +++ b/paddle2onnx/mapper/tensor/slice.h @@ -0,0 +1,52 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class SliceMapper : public Mapper { + public: + SliceMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axes", &axes_); + GetAttr("starts", &starts_); + GetAttr("ends", &ends_); + if (HasAttr("strides")) { + GetAttr("strides", &strides_); + } + if (HasAttr("decrease_axis_")) { + GetAttr("decrease_axis", &decrease_axis_); + } + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset10(); + + private: + std::vector DecreaseAxis(); + std::vector axes_; + std::vector starts_; + std::vector ends_; + std::vector strides_; + std::vector decrease_axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/split.cc b/paddle2onnx/mapper/tensor/split.cc new file mode 100644 index 0000000000..2642c85b66 --- /dev/null +++ b/paddle2onnx/mapper/tensor/split.cc @@ -0,0 +1,145 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/split.h" + +namespace paddle2onnx { +REGISTER_MAPPER(split, SplitMapper) + +int32_t SplitMapper::GetMinOpset(bool verbose) { + int64_t axis = axis_; + if (HasInput("AxisTensor")) { + std::vector value; + if (!TryGetInputValue("AxisTensor", &value)) { + Error() << "While AxisTensor as the input and it's not a constant " + "tensor, the conversion is not supported yet." + << std::endl; + return -1; + } + axis = value[0]; + } + + if (HasInput("SectionsTensorList")) { + Logger(verbose, 13) << "While has input SectionsTensorList, " + << RequireOpset(13) << std::endl; + return 13; + } + + for (size_t i = 0; i < sections_.size(); ++i) { + if (sections_[i] < 0) { + auto info = GetInput("X"); + if (info[0].shape[axis] < 0) { + Error() << "Cannot convert split op, while there's -1 in sections and " + "cannot be infered by input shape." + << std::endl; + return -1; + } + } + } + return 7; +} + +void SplitMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + int64_t axis = axis_; + if (HasInput("AxisTensor")) { + std::vector value; + Assert(TryGetInputValue("AxisTensor", &value), + "[Paddle2ONNX](split) Cannot get constant value from AxisTensor."); + axis = value[0]; + } + if (axis < 0) { + axis += input_info[0].Rank(); + } + Assert(!HasInput("SectionsTensorList"), + "[Paddle2ONNX](split) While SectionTensorList as input, requires " + "opset_version >= 13."); + + int sum_of_kown_dim = 0; + for (size_t i = 0; i < sections_.size(); ++i) { + if (sections_[i] > 0) { + sum_of_kown_dim += sections_[i]; + } + } + for (size_t i = 0; i < sections_.size(); ++i) { + if (sections_[i] < 0) { + Assert(input_info[0].shape[axis] > 0, + "Cannot convert split op, while there's -1 in sections and cannot " + "be infered by input shape."); + sections_[i] = input_info[0].shape[axis] - sum_of_kown_dim; + } + } + + std::vector output_names(output_info.size()); + for (size_t i = 0; i < output_info.size(); ++i) { + output_names[i] = output_info[i].name; + } + + helper_->Split(input_info[0].name, output_names, sections_, axis); +} + +void SplitMapper::Opset13() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + int64_t axis = axis_; + if (HasInput("AxisTensor")) { + std::vector value; + Assert(TryGetInputValue("AxisTensor", &value), + "[Paddle2ONNX](split) Cannot get constant value from AxisTensor."); + axis = value[0]; + } + if (axis < 0) { + axis += input_info[0].Rank(); + } + + std::string splits = ""; + if (HasInput("SectionsTensorList")) { + auto info = GetInput("SectionsTensorList"); + splits = helper_->ConcatIndices(info); + } else if (sections_.size() > 0) { + int sum_of_kown_dim = 0; + for (size_t i = 0; i < sections_.size(); ++i) { + if (sections_[i] > 0) { + sum_of_kown_dim += sections_[i]; + } + } + for (size_t i = 0; i < sections_.size(); ++i) { + if (sections_[i] < 0) { + Assert(input_info[0].shape[axis] > 0, + "Cannot convert split op, while there's -1 in sections and " + "cannot be infered by input shape."); + sections_[i] = input_info[0].shape[axis] - sum_of_kown_dim; + } + } + splits = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, sections_); + } + + std::vector output_names(output_info.size()); + for (size_t i = 0; i < output_info.size(); ++i) { + output_names[i] = output_info[i].name; + } + if (splits != "") { + auto node = + helper_->MakeNode("Split", {input_info[0].name, splits}, output_names); + AddAttribute(node, "axis", axis); + } else { + auto node = helper_->MakeNode("Split", {input_info[0].name}, output_names); + AddAttribute(node, "axis", axis); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/split.h b/paddle2onnx/mapper/tensor/split.h new file mode 100644 index 0000000000..2665cfcdb4 --- /dev/null +++ b/paddle2onnx/mapper/tensor/split.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class SplitMapper : public Mapper { + public: + SplitMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + GetAttr("sections", §ions_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset13(); + + private: + int64_t axis_; + std::vector sections_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/squeeze2.cc b/paddle2onnx/mapper/tensor/squeeze2.cc new file mode 100644 index 0000000000..953995875a --- /dev/null +++ b/paddle2onnx/mapper/tensor/squeeze2.cc @@ -0,0 +1,84 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/squeeze2.h" + +namespace paddle2onnx { +REGISTER_MAPPER(squeeze2, Squeeze2Mapper) + +int32_t Squeeze2Mapper::GetMinOpset(bool verbose) { + if (IsAttrVar("axes")) { + auto infos = GetAttrVar("axes"); + for (auto &info : infos) { + if (!IsConstant(info)) { + return 13; + } + } + } + return 7; +} + +void Squeeze2Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::vector ret; + ret.reserve(input_info[0].shape.size()); + for (auto i : input_info[0].shape) { + if (i > 1) ret.push_back(i); + } + if (ret.size() == input_info[0].Rank()) { + helper_->MakeNode("Identity", {input_info[0].name}, {output_info[0].name}); + } else { + if (helper_->GetOpsetVersion() >= 13 && IsAttrVar("axes")) { + auto axes_info = GetAttrVar("axes"); + std::string axes_name; + if (axes_info.size() == 1U) { + axes_name = helper_->AutoCast(axes_info[0].name, axes_info[0].dtype, + P2ODataType::INT64); + } else { + axes_name = helper_->ConcatIndices(axes_info); + } + helper_->MakeNode("Squeeze", {input_info[0].name, axes_name}, + {output_info[0].name}); + } else { + if (IsAttrVar("axes")) { + auto axes_info = GetAttrVar("axes"); + for (int64_t index = 0; index < axes_info.size(); index++) { + std::vector temp; + TryGetValue(axes_info[index], &temp); + for (auto &data : temp) { + axes_.push_back(data); + } + } + } else { + GetAttr("axes", &axes_); + } + std::vector axes(axes_.begin(), axes_.end()); + for (size_t i = 0; i < axes.size(); ++i) { + if (axes[i] < 0) { + axes[i] += input_info[0].Rank(); + } + } + if (axes.size() > 0) { + std::sort(axes.begin(), axes.end()); + helper_->Squeeze(input_info[0].name, output_info[0].name, axes); + } else { + helper_->Squeeze(input_info[0].name, output_info[0].name, {}); + } + } + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/squeeze2.h b/paddle2onnx/mapper/tensor/squeeze2.h new file mode 100644 index 0000000000..ffa31c8854 --- /dev/null +++ b/paddle2onnx/mapper/tensor/squeeze2.h @@ -0,0 +1,35 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Squeeze2Mapper : public Mapper { + public: + Squeeze2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + std::vector axes_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/stack.cc b/paddle2onnx/mapper/tensor/stack.cc new file mode 100644 index 0000000000..4c6f249db1 --- /dev/null +++ b/paddle2onnx/mapper/tensor/stack.cc @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/stack.h" + +namespace paddle2onnx { +REGISTER_MAPPER(stack, StackMapper) + +void StackMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetOutput("Y"); + + int32_t out_dtype = 0; + std::vector aligned_inputs = + helper_->DtypeAlignment(x_info, &out_dtype); + auto axis = axis_; + if (axis < 0) { + axis = axis + x_info[0].Rank() + 1; + } + for (size_t i = 0; i < aligned_inputs.size(); ++i) { + aligned_inputs[i] = + helper_->Unsqueeze(aligned_inputs[i], std::vector(1, axis)); + } + auto out = helper_->Concat(aligned_inputs, axis_); + helper_->AutoCast(out, y_info[0].name, out_dtype, y_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/stack.h b/paddle2onnx/mapper/tensor/stack.h new file mode 100644 index 0000000000..36d01d54a5 --- /dev/null +++ b/paddle2onnx/mapper/tensor/stack.h @@ -0,0 +1,33 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class StackMapper : public Mapper { + public: + StackMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/take_along_axis.cc b/paddle2onnx/mapper/tensor/take_along_axis.cc new file mode 100755 index 0000000000..7262ffb3f7 --- /dev/null +++ b/paddle2onnx/mapper/tensor/take_along_axis.cc @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/take_along_axis.h" + +namespace paddle2onnx { +REGISTER_MAPPER(take_along_axis, TakeAlongAxisMapper) + +int32_t TakeAlongAxisMapper::GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void TakeAlongAxisMapper::Opset11() { + auto x_info = GetInput("Input"); + auto index_info = GetInput("Index"); + auto out_info = GetOutput("Result"); + + auto axis = axis_; + + auto node = + helper_->MakeNode("GatherElements", {x_info[0].name, index_info[0].name}, + {out_info[0].name}); + AddAttribute(node, "axis", axis); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/take_along_axis.h b/paddle2onnx/mapper/tensor/take_along_axis.h new file mode 100755 index 0000000000..8299d3de92 --- /dev/null +++ b/paddle2onnx/mapper/tensor/take_along_axis.h @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class TakeAlongAxisMapper : public Mapper { + public: + TakeAlongAxisMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("Axis", &axis_); + } + + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/temporal_shift.cc b/paddle2onnx/mapper/tensor/temporal_shift.cc new file mode 100644 index 0000000000..2a2aac5106 --- /dev/null +++ b/paddle2onnx/mapper/tensor/temporal_shift.cc @@ -0,0 +1,79 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/temporal_shift.h" + +namespace paddle2onnx { +REGISTER_MAPPER(temporal_shift, TemporalShiftMapper) + +int32_t TemporalShiftMapper::GetMinOpset(bool verbose) { + if (data_format_ == "NHWC") { + Error() << "Only support data_format of NCHW, but now the data format is " + << data_format_ << "." << std::endl; + return -1; + } + auto input_info = GetOutput("Out"); + if (input_info[0].Rank() != 4) { + Error() << "The input dims must be 4, but now the input dims is " + << std::to_string(input_info[0].Rank()) << "." << std::endl; + return -1; + } + return 7; +} + +void TemporalShiftMapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + int64_t C = input_info[0].shape[1]; + int64_t H = input_info[0].shape[2]; + int64_t W = input_info[0].shape[3]; + std::vector reshape_shape = {-1, seg_num_, C, H, W}; + + std::string reshape_input = + helper_->Reshape(input_info[0].name, reshape_shape); + + std::vector paddings(10, 0); + paddings[1] = 1; + paddings[6] = 1; + + std::string padding_constant_node = + helper_->Constant(GetOnnxDtype(P2ODataType::INT64), paddings); + + std::string pad_node = ""; + if (helper_->GetOpsetVersion() < 11) { + auto node = helper_->MakeNode("Pad", {reshape_input}); + AddAttribute(node, "pads", paddings); + float val = 0.0; + AddAttribute(node, "value", val); + pad_node = node->output(0); + } else { + auto node = + helper_->MakeNode("Pad", {reshape_input, padding_constant_node}); + pad_node = node->output(0); + } + + int64_t C1 = C * shift_ratio_; + int64_t C2 = 2 * C * shift_ratio_; + std::string slice_1 = + helper_->Slice(pad_node, {1, 2}, {0, 0}, {seg_num_, C1}); + std::string slice_2 = + helper_->Slice(pad_node, {1, 2}, {2, C1}, {2 + seg_num_, C2}); + std::string slice_3 = + helper_->Slice(pad_node, {1, 2}, {1, C2}, {1 + seg_num_, C}); + std::string concat_out = helper_->Concat({slice_1, slice_2, slice_3}, 2); + helper_->Reshape(concat_out, output_info[0].name, {-1, C, H, W}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/temporal_shift.h b/paddle2onnx/mapper/tensor/temporal_shift.h new file mode 100644 index 0000000000..d01ffb2718 --- /dev/null +++ b/paddle2onnx/mapper/tensor/temporal_shift.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class TemporalShiftMapper : public Mapper { + public: + TemporalShiftMapper(const PaddleParser& p, OnnxHelper* helper, + int64_t block_id, int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("data_format", &data_format_); + GetAttr("shift_ratio", &shift_ratio_); + GetAttr("seg_num", &seg_num_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + + private: + int64_t seg_num_; + float shift_ratio_; + std::string data_format_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/tile.cc b/paddle2onnx/mapper/tensor/tile.cc new file mode 100644 index 0000000000..97d9c97e21 --- /dev/null +++ b/paddle2onnx/mapper/tensor/tile.cc @@ -0,0 +1,55 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/tile.h" + +namespace paddle2onnx { +REGISTER_MAPPER(tile, TileMapper) + +void TileMapper::Opset7() { + auto x_info = GetInput("X"); + auto out_info = GetOutput("Out"); + + bool has_repeats_tensor = HasInput("RepeatTimes"); + bool has_repeats_tensor_list = HasInput("repeat_times_tensor"); + std::string repeats = ""; + // NOTE(Aurelius84): we need to deprecate this branch in the future. + if (has_repeats_tensor) { + auto repeats_info = GetInput("RepeatTimes"); + repeats = helper_->AutoCast(repeats_info[0].name, repeats_info[0].dtype, + P2ODataType::INT64); + } else if (has_repeats_tensor_list) { + auto repeats_info = GetInput("repeat_times_tensor"); + repeats = helper_->ConcatIndices(repeats_info); + } else if (IsAttrVar("repeat_times")) { + auto repeats_info = GetAttrVar("repeat_times"); + if (repeats_info.size() == 1U) { // repeat_times is a whole Tensor + repeats = helper_->AutoCast(repeats_info[0].name, repeats_info[0].dtype, + P2ODataType::INT64); + } else { // repeat_times is a tensor list + repeats = helper_->ConcatIndices(repeats_info); + } + } else { + std::vector values; + GetAttr("repeat_times", &values); + int64_t nums = values.size(); + for (int64_t i = 0; i < x_info[0].Rank() - nums; i++) { + values.insert(values.begin(), 1); + } + repeats = helper_->Constant(ONNX_NAMESPACE::TensorProto::INT64, values); + } + helper_->MakeNode("Tile", {x_info[0].name, repeats}, {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/tile.h b/paddle2onnx/mapper/tensor/tile.h new file mode 100644 index 0000000000..f8a55494dd --- /dev/null +++ b/paddle2onnx/mapper/tensor/tile.h @@ -0,0 +1,28 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class TileMapper : public Mapper { + public: + TileMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + void Opset7(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/top_k.cc b/paddle2onnx/mapper/tensor/top_k.cc new file mode 100755 index 0000000000..bff09ee608 --- /dev/null +++ b/paddle2onnx/mapper/tensor/top_k.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/top_k.h" + +namespace paddle2onnx { +REGISTER_MAPPER(top_k, TopKMapper) + +void TopKMapper::Opset11() { + auto x_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto indices_info = GetOutput("Indices"); + + std::string k = ""; + if (HasInput("K")) { + auto k_info = GetInput("K"); + k = helper_->AutoCast(k_info[0].name, k_info[0].dtype, P2ODataType::INT64); + if (k_info[0].Rank() == 0) { + k = helper_->Reshape(k, std::vector(1, -1)); + } + } else { + int64_t k_value = 0; + GetAttr("k", &k_value); + k = helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, k_value); + } + auto out_node = helper_->MakeNode("TopK", {x_info[0].name, k}, 2); + helper_->AutoCast(out_node->output(0), output_info[0].name, x_info[0].dtype, + output_info[0].dtype); + helper_->AutoCast(out_node->output(1), indices_info[0].name, + P2ODataType::INT64, indices_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/top_k.h b/paddle2onnx/mapper/tensor/top_k.h new file mode 100644 index 0000000000..868c6b3567 --- /dev/null +++ b/paddle2onnx/mapper/tensor/top_k.h @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class TopKMapper : public Mapper { + public: + TopKMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + int32_t GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; + } + void Opset11(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/top_k_v2.cc b/paddle2onnx/mapper/tensor/top_k_v2.cc new file mode 100755 index 0000000000..c41561b6c6 --- /dev/null +++ b/paddle2onnx/mapper/tensor/top_k_v2.cc @@ -0,0 +1,47 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/top_k_v2.h" + +namespace paddle2onnx { +REGISTER_MAPPER(top_k_v2, TopKV2Mapper) + +void TopKV2Mapper::Opset11() { + auto x_info = GetInput("X"); + auto output_info = GetOutput("Out"); + auto indices_info = GetOutput("Indices"); + + std::string k = ""; + if (HasInput("K")) { + auto k_info = GetInput("K"); + k = helper_->AutoCast(k_info[0].name, k_info[0].dtype, P2ODataType::INT64); + if (k_info[0].Rank() == 0) { + k = helper_->Reshape(k, std::vector(1, -1)); + } + } else { + int64_t k_value = 0; + GetAttr("k", &k_value); + k = helper_->Constant({1}, ONNX_NAMESPACE::TensorProto::INT64, k_value); + } + auto out_node = helper_->MakeNode("TopK", {x_info[0].name, k}, 2); + AddAttribute(out_node, "largest", static_cast(largest_)); + AddAttribute(out_node, "sorted", static_cast(sorted_)); + AddAttribute(out_node, "axis", axis_); + helper_->AutoCast(out_node->output(0), output_info[0].name, x_info[0].dtype, + output_info[0].dtype); + helper_->AutoCast(out_node->output(1), indices_info[0].name, + P2ODataType::INT64, indices_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/top_k_v2.h b/paddle2onnx/mapper/tensor/top_k_v2.h new file mode 100644 index 0000000000..1610e28e07 --- /dev/null +++ b/paddle2onnx/mapper/tensor/top_k_v2.h @@ -0,0 +1,41 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class TopKV2Mapper : public Mapper { + public: + TopKV2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("largest", &largest_); + GetAttr("sorted", &sorted_); + GetAttr("axis", &axis_); + } + int32_t GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; + } + void Opset11(); + + private: + bool largest_; + bool sorted_; + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/transpose2.cc b/paddle2onnx/mapper/tensor/transpose2.cc new file mode 100644 index 0000000000..aa0e9a2b7a --- /dev/null +++ b/paddle2onnx/mapper/tensor/transpose2.cc @@ -0,0 +1,32 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/transpose2.h" + +#include +#include + +namespace paddle2onnx { +REGISTER_MAPPER(transpose2, Transpose2Mapper) + +void Transpose2Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + auto node = helper_->MakeNode("Transpose", {input_info[0].name}, + {output_info[0].name}); + AddAttribute(node, "perm", axis_); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/transpose2.h b/paddle2onnx/mapper/tensor/transpose2.h new file mode 100644 index 0000000000..25c86fd50b --- /dev/null +++ b/paddle2onnx/mapper/tensor/transpose2.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Transpose2Mapper : public Mapper { + public: + Transpose2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + void Opset7(); + + private: + std::vector axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unique.cc b/paddle2onnx/mapper/tensor/unique.cc new file mode 100644 index 0000000000..38e5d1e6ba --- /dev/null +++ b/paddle2onnx/mapper/tensor/unique.cc @@ -0,0 +1,49 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/unique.h" + +namespace paddle2onnx { +REGISTER_MAPPER(unique, UniqueMapper) + +int32_t UniqueMapper::GetMinOpset(bool verbose) { + Logger(verbose, 11) << RequireOpset(11) << std::endl; + return 11; +} + +void UniqueMapper::Opset11() { + auto intput_info = GetInput("X"); + auto output_out_info = GetOutput("Out"); + auto output_indices_info = GetOutput("Indices"); + auto output_index_info = GetOutput("Index"); + auto output_counts_info = GetOutput("Counts"); + + std::string out_index_name = "out_index"; + std::string out_indices_name = "out_indices"; + std::string out_counts_name = "out_counts"; + auto node = helper_->MakeNode("Unique", {intput_info[0].name}, + {output_out_info[0].name, out_indices_name, + out_index_name, out_counts_name}); + if (axis_.size()) { + AddAttribute(node, "axis", axis_[0]); + } + helper_->AutoCast(out_index_name, output_index_info[0].name, + P2ODataType::INT64, output_index_info[0].dtype); + helper_->AutoCast(out_indices_name, output_indices_info[0].name, + P2ODataType::INT64, output_indices_info[0].dtype); + helper_->AutoCast(out_counts_name, output_counts_info[0].name, + P2ODataType::INT64, output_counts_info[0].dtype); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unique.h b/paddle2onnx/mapper/tensor/unique.h new file mode 100644 index 0000000000..1049c5c97f --- /dev/null +++ b/paddle2onnx/mapper/tensor/unique.h @@ -0,0 +1,39 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class UniqueMapper : public Mapper { + public: + UniqueMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + GetAttr("dtype", &dtype_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset11(); + + private: + std::vector axis_; + int64_t dtype_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unsqueeze2.cc b/paddle2onnx/mapper/tensor/unsqueeze2.cc new file mode 100644 index 0000000000..ddeba0a1df --- /dev/null +++ b/paddle2onnx/mapper/tensor/unsqueeze2.cc @@ -0,0 +1,94 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/unsqueeze2.h" + +namespace paddle2onnx { +REGISTER_MAPPER(unsqueeze2, Unsqueeze2Mapper) + +int32_t Unsqueeze2Mapper::GetMinOpset(bool verbose) { + if (axes_.size() == 0) { + if (HasInput("AxesTensorList")) { + Logger(verbose, 13) << "While AxisTensorList as input, " + << RequireOpset(13) << std::endl; + return 13; + } else if (HasInput("AxesTensor")) { + auto info = GetInput("AxesTensor"); + if (!IsConstantInput("AxesTensor")) { + Logger(verbose, 13) + << "While AxesTensor as input, and it's not a constant tensor, " + << RequireOpset(13) << std::endl; + return 13; + } else { + return 7; + } + } + } + return 7; +} + +void Unsqueeze2Mapper::Opset7() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::vector axes; + if (axes_.empty()) { + Assert(TryGetInputValue("AxesTensor", &axes), + "While unsqueeze2 has input AxesTensor, it cannot be exported by " + "Paddle2ONNX"); + } else { + axes.assign(axes_.begin(), axes_.end()); + } + for (size_t i = 0; i < axes.size(); ++i) { + if (axes[i] < 0) { + axes[i] = axes[i] + input_info[0].Rank() + i + 1; + } + } + helper_->Unsqueeze(input_info[0].name, output_info[0].name, axes); +} + +void Unsqueeze2Mapper::Opset13() { + auto input_info = GetInput("X"); + auto output_info = GetOutput("Out"); + + std::vector axes; + if (axes_.empty()) { + TryGetInputValue("AxesTensor", &axes); + } else { + axes.assign(axes_.begin(), axes_.end()); + } + for (size_t i = 0; i < axes.size(); ++i) { + if (axes[i] < 0) { + axes[i] = axes[i] + input_info[0].Rank() + i + 1; + } + } + + if (axes.size() > 0) { + helper_->Unsqueeze(input_info[0].name, output_info[0].name, axes); + } else { + std::string axes_node = ""; + if (HasInput("AxesTensorList")) { + auto info = GetInput("AxesTensorList"); + axes_node = helper_->ConcatIndices(info); + } else { + auto info = GetInput("AxesTensor"); + axes_node = + helper_->AutoCast(info[0].name, info[0].dtype, P2ODataType::INT64); + } + helper_->MakeNode("Unsqueeze", {input_info[0].name, axes_node}, + {output_info[0].name}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unsqueeze2.h b/paddle2onnx/mapper/tensor/unsqueeze2.h new file mode 100644 index 0000000000..1d1fe2771d --- /dev/null +++ b/paddle2onnx/mapper/tensor/unsqueeze2.h @@ -0,0 +1,38 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class Unsqueeze2Mapper : public Mapper { + public: + Unsqueeze2Mapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axes", &axes_); + } + int32_t GetMinOpset(bool verbose = false); + void Opset7(); + void Opset13(); + + private: + std::vector axes_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unstack.cc b/paddle2onnx/mapper/tensor/unstack.cc new file mode 100644 index 0000000000..832dc94a3a --- /dev/null +++ b/paddle2onnx/mapper/tensor/unstack.cc @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/unstack.h" + +namespace paddle2onnx { +REGISTER_MAPPER(unstack, UnstackMapper) + +void UnstackMapper::Opset7() { + auto x_info = GetInput("X"); + auto y_info = GetOutput("Y"); + + if (axis_ < 0) { + axis_ = axis_ + x_info[0].Rank(); + } + + auto split_nodes = helper_->Split( + x_info[0].name, std::vector(y_info.size(), 1), axis_); + + for (size_t i = 0; i < split_nodes.size(); ++i) { + helper_->Squeeze(split_nodes[i], y_info[i].name, {axis_}); + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/unstack.h b/paddle2onnx/mapper/tensor/unstack.h new file mode 100644 index 0000000000..1ad3d6f0c5 --- /dev/null +++ b/paddle2onnx/mapper/tensor/unstack.h @@ -0,0 +1,33 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class UnstackMapper : public Mapper { + public: + UnstackMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) { + GetAttr("axis", &axis_); + } + void Opset7(); + + private: + int64_t axis_; +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/where.cc b/paddle2onnx/mapper/tensor/where.cc new file mode 100644 index 0000000000..f8adf16149 --- /dev/null +++ b/paddle2onnx/mapper/tensor/where.cc @@ -0,0 +1,31 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/mapper/tensor/where.h" + +namespace paddle2onnx { +REGISTER_MAPPER(where, WhereMapper) + +void WhereMapper::Opset9() { + auto x_info = GetInput("X"); + auto y_info = GetInput("Y"); + auto cond_info = GetInput("Condition"); + auto out_info = GetOutput("Out"); + + helper_->MakeNode("Where", + {cond_info[0].name, x_info[0].name, y_info[0].name}, + {out_info[0].name}); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/mapper/tensor/where.h b/paddle2onnx/mapper/tensor/where.h new file mode 100644 index 0000000000..5f64303f7a --- /dev/null +++ b/paddle2onnx/mapper/tensor/where.h @@ -0,0 +1,36 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include + +#include "paddle2onnx/mapper/mapper.h" + +namespace paddle2onnx { + +class WhereMapper : public Mapper { + public: + WhereMapper(const PaddleParser& p, OnnxHelper* helper, int64_t block_id, + int64_t op_id) + : Mapper(p, helper, block_id, op_id) {} + + int32_t GetMinOpset(bool verbose = false) { + Logger(verbose, 9) << RequireOpset(9) << std::endl; + return 9; + } + void Opset9(); +}; + +} // namespace paddle2onnx diff --git a/paddle2onnx/mappers_registry.h.in b/paddle2onnx/mappers_registry.h.in new file mode 100755 index 0000000000..5387f8ab1a --- /dev/null +++ b/paddle2onnx/mappers_registry.h.in @@ -0,0 +1,214 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. +#pragma once + +// If you want to use the paddle2onnx static library, add the +// registration logic here synchronously each time you add a new op. +#ifndef WITH_PADDLE2ONNX_STATIC_INTERNAL +#cmakedefine WITH_PADDLE2ONNX_STATIC_INTERNAL +#endif + +#if defined(WITH_PADDLE2ONNX_STATIC_INTERNAL) +#if (!defined(WITH_PADDLE2ONNX_STATIC_INTERNAL_AT_COMPILING)) + +#if defined(_WIN32) +#define UNUSED +#define __builtin_expect(EXP, C) (EXP) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define USE_P2O_MAPPER(op_name, class_name) \ + namespace paddle2onnx { \ + extern int Touch##op_name##class_name(); \ + int op_name##__registry__ UNUSED = Touch##op_name##class_name(); \ + } + +USE_P2O_MAPPER(quantize_linear, QuantizeLinearMapper) +USE_P2O_MAPPER(dequantize_linear, DequantizeLinearMapper) +USE_P2O_MAPPER(batch_norm, BatchNormMapper) +USE_P2O_MAPPER(dropout, DropoutMapper) +USE_P2O_MAPPER(layer_norm, LayerNormMapper) +USE_P2O_MAPPER(rnn, RnnMapper) +USE_P2O_MAPPER(softmax_with_cross_entropy, SoftmaxCrossEntropyLossMapper) +USE_P2O_MAPPER(affine_channel, AffineChannelMapper) +USE_P2O_MAPPER(conv3d, Conv3dMapper) +USE_P2O_MAPPER(conv2d_transpose, Conv2dTransposeMapper) +USE_P2O_MAPPER(depthwise_conv2d_transpose, Conv2dTransposeMapper) +USE_P2O_MAPPER(conv2d, Conv2dMapper) +USE_P2O_MAPPER(depthwise_conv2d, Conv2dMapper) +USE_P2O_MAPPER(pool3d, Pool3dMapper) +USE_P2O_MAPPER(max_pool3d_with_index, Pool3dMapper) +USE_P2O_MAPPER(instance_norm, InstanceNormMapper) +USE_P2O_MAPPER(pool2d, Pool2dMapper) +USE_P2O_MAPPER(max_pool2d_with_index, Pool2dMapper) +USE_P2O_MAPPER(shape, ShapeMapper) +USE_P2O_MAPPER(bilinear_interp, InterpolateMapper) +USE_P2O_MAPPER(bilinear_interp_v2, InterpolateMapper) +USE_P2O_MAPPER(nearest_interp_v2, InterpolateMapper) +USE_P2O_MAPPER(bicubic_interp_v2, InterpolateMapper) +USE_P2O_MAPPER(linear_interp_v2, InterpolateMapper) +USE_P2O_MAPPER(trilinear_interp_v2, InterpolateMapper) +USE_P2O_MAPPER(data_norm, DataNormMapper) +USE_P2O_MAPPER(norm, NormMapper) +USE_P2O_MAPPER(group_norm, GroupNormMapper) +USE_P2O_MAPPER(pad3d, Pad3DMapper) +USE_P2O_MAPPER(relu, ActivationMapper) +USE_P2O_MAPPER(relu6, Relu6Mapper) +USE_P2O_MAPPER(tanh, ActivationMapper) +USE_P2O_MAPPER(log, ActivationMapper) +USE_P2O_MAPPER(sigmoid, ActivationMapper) +USE_P2O_MAPPER(sqrt, ActivationMapper) +USE_P2O_MAPPER(softplus, ActivationMapper) +USE_P2O_MAPPER(exp, ActivationMapper) +USE_P2O_MAPPER(floor, ActivationMapper) +USE_P2O_MAPPER(cos, ActivationMapper) +USE_P2O_MAPPER(sin, ActivationMapper) +USE_P2O_MAPPER(round, ActivationMapper) +USE_P2O_MAPPER(abs, ActivationMapper) +USE_P2O_MAPPER(acos, ActivationMapper) +USE_P2O_MAPPER(asin, ActivationMapper) +USE_P2O_MAPPER(atan, ActivationMapper) +USE_P2O_MAPPER(sinh, ActivationMapper) +USE_P2O_MAPPER(tan, ActivationMapper) +USE_P2O_MAPPER(ceil, ActivationMapper) +USE_P2O_MAPPER(cosh, ActivationMapper) +USE_P2O_MAPPER(softsign, ActivationMapper) +USE_P2O_MAPPER(sign, ActivationMapper) +USE_P2O_MAPPER(erf, ActivationMapper) +USE_P2O_MAPPER(reciprocal, ActivationMapper) +USE_P2O_MAPPER(leaky_relu, LeakyReluMapper) +USE_P2O_MAPPER(gelu, GeluMapper) +USE_P2O_MAPPER(selu, SeluMapper) +USE_P2O_MAPPER(prelu, PReluMapper) +USE_P2O_MAPPER(hard_sigmoid, HardSigmoidMapper) +USE_P2O_MAPPER(swish, SwishMapper) +USE_P2O_MAPPER(hard_swish, HardSwishMapper) +USE_P2O_MAPPER(softmax, SoftMaxMapper) +USE_P2O_MAPPER(brelu, BReluMapper) +USE_P2O_MAPPER(elu, EluMapper) +USE_P2O_MAPPER(hard_shrink, HardShrinkMapper) +USE_P2O_MAPPER(softshrink, SoftShrinkMapper) +USE_P2O_MAPPER(mish, MishMapper) +USE_P2O_MAPPER(square, SquareMapper) +USE_P2O_MAPPER(size, SizeMapper) +USE_P2O_MAPPER(rsqrt, RsqrtMapper) +USE_P2O_MAPPER(logsigmoid, LogSigmoidMapper) +USE_P2O_MAPPER(log_softmax, LogSoftmaxMapper) +USE_P2O_MAPPER(tanh_shrink, TanhShrinkMapper) +USE_P2O_MAPPER(thresholded_relu, ThresholdedReluMapper) +USE_P2O_MAPPER(log1p, Log1PMapper) +USE_P2O_MAPPER(log2, Log2Mapper) +USE_P2O_MAPPER(log10, Log10Mapper) +USE_P2O_MAPPER(silu, SiluMapper) +USE_P2O_MAPPER(elementwise_add, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_sub, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_div, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_mul, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_min, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_max, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_pow, ElementwiseMapper) +USE_P2O_MAPPER(elementwise_mod, ElementWiseModMapper) +USE_P2O_MAPPER(elementwise_floordiv, ElementWiseFloordivMapper) +USE_P2O_MAPPER(flatten2, Flatten2Mapper) +USE_P2O_MAPPER(squeeze2, Squeeze2Mapper) +USE_P2O_MAPPER(clip, ClipMapper) +USE_P2O_MAPPER(pixel_shuffle, PixelShuffleMapper) +USE_P2O_MAPPER(one_hot_v2, OneHotV2Mapper) +USE_P2O_MAPPER(expand_v2, ExpandV2Mapper) +USE_P2O_MAPPER(cumsum, CumsumMapper) +USE_P2O_MAPPER(dot, DotMapper) +USE_P2O_MAPPER(less_than, LessThanMapper) +USE_P2O_MAPPER(reshape2, Reshape2Mapper) +USE_P2O_MAPPER(not_equal, NotEqualMapper) +USE_P2O_MAPPER(arg_min, ArgMinMapper) +USE_P2O_MAPPER(matmul_v2, MatmulV2Mapper) +USE_P2O_MAPPER(greater_equal, GreaterEqualMapper) +USE_P2O_MAPPER(scale, ScaleMapper) +USE_P2O_MAPPER(expand, ExpandMapper) +USE_P2O_MAPPER(dist, DistMapper) +USE_P2O_MAPPER(expand_as_v2, ExpandAsMapper) +USE_P2O_MAPPER(p_norm, PNormMapper) +USE_P2O_MAPPER(split, SplitMapper) +USE_P2O_MAPPER(mean, MeanMapper) +USE_P2O_MAPPER(set_value, SetValueMapper) +USE_P2O_MAPPER(transpose2, Transpose2Mapper) +USE_P2O_MAPPER(temporal_shift, TemporalShiftMapper) +USE_P2O_MAPPER(mul, MulMapper) +USE_P2O_MAPPER(flip, FlipMapper) +USE_P2O_MAPPER(bmm, BmmMapper) +USE_P2O_MAPPER(index_select, IndexSelectMapper) +USE_P2O_MAPPER(stack, StackMapper) +USE_P2O_MAPPER(gather_nd, GatherNdMapper) +USE_P2O_MAPPER(lookup_table, LookupTableMapper) +USE_P2O_MAPPER(lookup_table_v2, LookupTableMapper) +USE_P2O_MAPPER(meshgrid, MeshgridMapper) +USE_P2O_MAPPER(scatter, ScatterMapper) +USE_P2O_MAPPER(assign, AssignMapper) +USE_P2O_MAPPER(share_data, AssignMapper) +USE_P2O_MAPPER(scatter_nd_add, ScatterNdAddMapper) +USE_P2O_MAPPER(top_k_v2, TopKV2Mapper) +USE_P2O_MAPPER(range, RangeMapper) +USE_P2O_MAPPER(logical_not, LogicalNotMapper) +USE_P2O_MAPPER(linspace, LinspaceMapper) +USE_P2O_MAPPER(eye, EyeMapper) +USE_P2O_MAPPER(where, WhereMapper) +USE_P2O_MAPPER(unique, UniqueMapper) +USE_P2O_MAPPER(assign_value, AssignValueMapper) +USE_P2O_MAPPER(unstack, UnstackMapper) +USE_P2O_MAPPER(fill_any_like, FillLikeMapper) +USE_P2O_MAPPER(fill_zeros_like, FillLikeMapper) +USE_P2O_MAPPER(partial_sum, PartialOpsMapper) +USE_P2O_MAPPER(partial_concat, PartialOpsMapper) +USE_P2O_MAPPER(top_k, TopKMapper) +USE_P2O_MAPPER(grid_sampler, GridSamplerMapper) +USE_P2O_MAPPER(sum, AddNMapper) +USE_P2O_MAPPER(unsqueeze2, Unsqueeze2Mapper) +USE_P2O_MAPPER(arg_max, ArgMaxMapper) +USE_P2O_MAPPER(cast, CastMapper) +USE_P2O_MAPPER(matmul, MatmulMapper) +USE_P2O_MAPPER(gather, GatherMapper) +USE_P2O_MAPPER(fill_constant, FillConstantMapper) +USE_P2O_MAPPER(take_along_axis, TakeAlongAxisMapper) +USE_P2O_MAPPER(greater_than, GreaterThanMapper) +USE_P2O_MAPPER(argsort, ArgsortMapper) +USE_P2O_MAPPER(pow, PowMapper) +USE_P2O_MAPPER(tile, TileMapper) +USE_P2O_MAPPER(logical_and, LogicalOpMapper) +USE_P2O_MAPPER(logical_or, LogicalOpMapper) +USE_P2O_MAPPER(logical_xor, LogicalOpMapper) +USE_P2O_MAPPER(fill_constant_batch_size_like, FillConstantBatchSizeLikeMapper) +USE_P2O_MAPPER(slice, SliceMapper) +USE_P2O_MAPPER(strided_slice, SliceMapper) +USE_P2O_MAPPER(where_index, NonZeroMapper) +USE_P2O_MAPPER(reduce_mean, ReduceMapper) +USE_P2O_MAPPER(reduce_sum, ReduceMapper) +USE_P2O_MAPPER(reduce_min, ReduceMapper) +USE_P2O_MAPPER(reduce_max, ReduceMapper) +USE_P2O_MAPPER(reduce_prod, ReduceMapper) +USE_P2O_MAPPER(logsumexp, ReduceMapper) +USE_P2O_MAPPER(reduce_all, ReduceMapper) +USE_P2O_MAPPER(reduce_any, ReduceMapper) +USE_P2O_MAPPER(concat, ConcatMapper) +USE_P2O_MAPPER(less_equal, LessEqualMapper) +USE_P2O_MAPPER(gaussian_random, GaussianRandomMapper) +USE_P2O_MAPPER(flatten_contiguous_range, FlattenMapper) +USE_P2O_MAPPER(equal, EqualMapper) +USE_P2O_MAPPER(yolo_box, YoloBoxMapper) +USE_P2O_MAPPER(multiclass_nms3, NMSMapper) +USE_P2O_MAPPER(roi_align, RoiAlignMapper) +USE_P2O_MAPPER(index_sample, IndexSampleMapper) +USE_P2O_MAPPER(mv, MvMapper) +#endif // WITH_PADDLE2ONNX_STATIC_INTERNAL_AT_COMPILING +#endif // WITH_PADDLE2ONNX_STATIC_INTERNAL diff --git a/paddle2onnx/onnx_reader.cc b/paddle2onnx/onnx_reader.cc new file mode 100644 index 0000000000..0cf1160b1d --- /dev/null +++ b/paddle2onnx/onnx_reader.cc @@ -0,0 +1,124 @@ +#include +#include +#include +#include +#include +#include "paddle2onnx/converter.h" +#include "paddle2onnx/mapper/exporter.h" +#include "paddle2onnx/optimizer/paddle2onnx_optimizer.h" + +namespace paddle2onnx { + +int32_t GetDataTypeFromOnnx(int dtype) { + if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT) { + return 0; + } else if (dtype == ONNX_NAMESPACE::TensorProto::DOUBLE) { + return 1; + } else if (dtype == ONNX_NAMESPACE::TensorProto::UINT8) { + return 2; + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT8) { + return 3; + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT32) { + return 4; + } else if (dtype == ONNX_NAMESPACE::TensorProto::INT64) { + return 5; + } else if (dtype == ONNX_NAMESPACE::TensorProto::FLOAT16) { + return 6; + } + Assert(false, "Only support float/double/uint8/int32/int64/float16 in OnnxReader."); + return -1; +} + +OnnxReader::OnnxReader(const char* model_buffer, int buffer_size) { + ONNX_NAMESPACE::ModelProto model; + std::string content(model_buffer, model_buffer + buffer_size); + model.ParseFromString(content); + + std::set initializer_names; + for (auto i = 0; i < model.graph().initializer_size(); ++i) { + initializer_names.insert(model.graph().initializer(i).name()); + } + + num_outputs = model.graph().output_size(); + Assert(num_outputs <= 100, + "The number of outputs is exceed 100, unexpected situation."); + + num_inputs = 0; + for (int i = 0; i < model.graph().input_size(); ++i) { + if (initializer_names.find(model.graph().input(i).name()) != + initializer_names.end()) { + continue; + } + num_inputs += 1; + Assert(num_inputs <= 100, + "The number of inputs is exceed 100, unexpected situation."); + + inputs[i].dtype = + GetDataTypeFromOnnx(model.graph().input(i).type().tensor_type().elem_type()); + std::strcpy(inputs[i].name, model.graph().input(i).name().c_str()); + auto& shape = model.graph().input(i).type().tensor_type().shape(); + int dim_size = shape.dim_size(); + inputs[i].rank = dim_size; + inputs[i].shape = new int64_t[dim_size]; + for (int j = 0; j < dim_size; ++j) { + inputs[i].shape[j] = static_cast(shape.dim(j).dim_value()); + if (inputs[i].shape[j] <= 0) { + inputs[i].shape[j] = -1; + } + } + } + + for (int i = 0; i < num_outputs; ++i) { + std::strcpy(outputs[i].name, model.graph().output(i).name().c_str()); + outputs[i].dtype = + GetDataTypeFromOnnx(model.graph().output(i).type().tensor_type().elem_type()); + auto& shape = model.graph().output(i).type().tensor_type().shape(); + int dim_size = shape.dim_size(); + outputs[i].rank = dim_size; + outputs[i].shape = new int64_t[dim_size]; + for (int j = 0; j < dim_size; ++j) { + outputs[i].shape[j] = static_cast(shape.dim(j).dim_value()); + if (outputs[i].shape[j] <= 0) { + outputs[i].shape[j] = -1; + } + } + } +} + +bool RemoveMultiClassNMS(const char* model_buffer, int buffer_size, + char** out_model, int* out_model_size) { + ONNX_NAMESPACE::ModelProto model; + std::string content(model_buffer, model_buffer + buffer_size); + model.ParseFromString(content); + auto* graph = model.mutable_graph(); + int nms_index = -1; + std::vector inputs; + for (int i = 0; i < graph->node_size(); ++i) { + if (graph->node(i).op_type() == "MultiClassNMS") { + nms_index = -1; + for (int j = 0; j < graph->node(i).input_size(); ++j) { + inputs.push_back(graph->node(i).input(j)); + } + break; + } + } + graph->clear_output(); + for (size_t i = 0; i < inputs.size(); ++i) { + auto output = graph->add_output(); + output->set_name(inputs[i]); + auto type_proto = output->mutable_type(); + auto tensor_type_proto = type_proto->mutable_tensor_type(); + tensor_type_proto->set_elem_type(ONNX_NAMESPACE::TensorProto::FLOAT); + auto shape = tensor_type_proto->mutable_shape(); + shape->add_dim()->set_dim_value(-1); + shape->add_dim()->set_dim_value(-1); + shape->add_dim()->set_dim_value(-1); + } + auto optimized_model = ONNX_NAMESPACE::optimization::OptimizeOnnxModel(model); + *out_model_size = optimized_model.ByteSizeLong(); + *out_model = new char[*out_model_size]; + optimized_model.SerializeToArray(*out_model, *out_model_size); + return true; +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/optimize.py b/paddle2onnx/optimize.py new file mode 100755 index 0000000000..a4bf35b6e1 --- /dev/null +++ b/paddle2onnx/optimize.py @@ -0,0 +1,46 @@ +# Copyright (c) 2022 PaddlePaddle Authors. 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. +from __future__ import absolute_import + +import argparse +import sys +from paddle2onnx.utils import logging + + +def parse_arguments(): + parser = argparse.ArgumentParser() + parser.add_argument( + '--input_model', + required=True, + help='The path of input onnx model file.') + parser.add_argument( + '--output_model', + required=True, + help='The file path to write optimized onnx model file.') + parser.add_argument( + '--input_shape_dict', + default="", + help="The shape infos of inputs, e.g --input_shape_dict=\"{'image': [1, 3, 608, 608], 'scale_factor': [1, 2]}\"" + ) + return parser.parse_args() + + +if __name__ == '__main__': + args = parse_arguments() + import paddle2onnx.paddle2onnx_cpp2py_export as c_p2o + shape_dict = {} + if args.input_shape_dict != "": + shape_dict = eval(args.input_shape_dict) + c_p2o.optimize(args.input_model, args.output_model, shape_dict) + logging.info("Model optmized, saved in {}.".format(args.output_model)) diff --git a/paddle2onnx/optimizer/convert_fp32_to_fp16.cc b/paddle2onnx/optimizer/convert_fp32_to_fp16.cc new file mode 100644 index 0000000000..71a92cc7f5 --- /dev/null +++ b/paddle2onnx/optimizer/convert_fp32_to_fp16.cc @@ -0,0 +1,843 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/optimizer/convert_fp32_to_fp16.h" +#include "paddle2onnx/utils/utils.h" + +namespace paddle2onnx { + +void ConvertFp32ToFp16::ConvertValToFloat16(float val, uint16_t* x) { + // Conversion routine adapted from + // http://stackoverflow.com/questions/1659440/32-bit-to-16-bit-floating-point-conversion + Bits v, s; + v.f = val; + uint32_t sign = v.si & sigN; + v.si ^= sign; + sign >>= shiftSign; // logical shift + s.si = mulN; + s.si = s.f * v.f; // correct subnormals + v.si ^= (s.si ^ v.si) & -(minN > v.si); + v.si ^= (infN ^ v.si) & -((infN > v.si) & (v.si > maxN)); + v.si ^= (nanN ^ v.si) & -((nanN > v.si) & (v.si > infN)); + v.ui >>= shift; // logical shift + v.si ^= ((v.si - maxD) ^ v.si) & -(v.si > maxC); + v.si ^= ((v.si - minD) ^ v.si) & -(v.si > subC); + *x = v.ui | sign; +} + +void ConvertFp32ToFp16::SortNodes(ONNX_NAMESPACE::ModelProto* model) { + // return the topo sort of nodes; + // 1. Get i2o_mapper and constant_nodes, i2o_mapper means the node map to its + // all output nodes, constant_nodes save all constant nodes. + // 2. Nodes without output nodes are first saved to new_nodes, and then + // cyclically delete the records of the node in i2o_mapper items, and nodes + // whose output nodes are empty are also saved to new_nodes in turn. + // 3. Store constant nodes in new_nodes. + // 4. Reverse new_nodes, then assign to nodes. + auto graph = model->mutable_graph(); + + // means the node map to its all output nodes + std::map> i2o_mapper; + // constant_nodes save all constant nodes. + std::vector constant_nodes; + // name map to its node + std::map name2node_mapper; + for (int64_t i = 0; i < graph->node_size(); i++) { + auto node = graph->mutable_node(i); + if (node->op_type() == "Constant") { + constant_nodes.push_back(*node); + continue; + } + name2node_mapper[node->name()] = *node; + for (int64_t in_index = 0; in_index < node->input_size(); in_index++) { + std::string input = node->input(in_index); + for (int64_t j = 0; j < graph->node_size(); j++) { + if (i == j) { + continue; + } + auto input_node = graph->mutable_node(j); + if (input_node->op_type() == "Constant") { + continue; + } + for (int64_t out_index = 0; out_index < input_node->output_size(); + out_index++) { + // find the pre node + if (input == input_node->output(out_index)) { + // does not find other input node before + if (i2o_mapper.find(input_node->name()) == i2o_mapper.end()) { + i2o_mapper[input_node->name()] = {node->name()}; + } else { + auto iter = + std::find(i2o_mapper[input_node->name()].begin(), + i2o_mapper[input_node->name()].end(), node->name()); + // not been found before + if (iter == i2o_mapper[input_node->name()].end()) { + i2o_mapper[input_node->name()].push_back(node->name()); + } + } + } + } + } + } + } + + // Store topologically sorted nodes + std::vector new_nodes; + + for (int64_t i = 0; i < graph->node_size(); i++) { + auto node = graph->mutable_node(i); + auto node_name = node->name(); + if (node->op_type() == "Constant") { + continue; + } + // Store those nodes that have no output first. + if (i2o_mapper.find(node_name) == i2o_mapper.end()) { + new_nodes.push_back(*node); + } + } + + int64_t index = 0; + while (index < new_nodes.size()) { + auto current_node = new_nodes[index]; + std::string current_node_name = current_node.name(); + for (auto iter = i2o_mapper.begin(); iter != i2o_mapper.end(); iter++) { + std::string input_node_name = iter->first; + std::vector* output_nodes_name = &iter->second; + if (output_nodes_name->empty()) { + continue; + } + auto in_inter = std::find(output_nodes_name->begin(), + output_nodes_name->end(), current_node_name); + // if find the pre node, erase current node name in i2o_mapper + if (in_inter != output_nodes_name->end()) { + output_nodes_name->erase(in_inter); + } + // if find on node that have no output, store it + if (output_nodes_name->empty()) { + new_nodes.push_back(name2node_mapper[input_node_name]); + } + } + index++; + } + + // store all constant node finally + for (auto& node : constant_nodes) { + new_nodes.push_back(node); + } + + // reverse the sorted nodes + std::reverse(new_nodes.begin(), new_nodes.end()); + + Assert(model->mutable_graph()->node_size() == new_nodes.size(), + "The number of nodes after topological sorting is not equal to the " + "number before sorting"); + // copy all new_nodes to graph + for (int64_t i = 0; i < graph->node_size(); i++) { + auto node = graph->mutable_node(i); + node->CopyFrom(new_nodes[i]); + } +} + +std::string ConvertFp32ToFp16::GenName(const std::string& prefix) { + int64_t name_index = 0; + auto iter = name_index_mapper.find(prefix); + if (iter != name_index_mapper.end()) { + name_index = iter->second; + name_index_mapper[prefix]++; + } else { + name_index_mapper[prefix] = 1; + } + return prefix + std::to_string(name_index); +} + +ONNX_NAMESPACE::ValueInfoProto* ConvertFp32ToFp16::MakeValueInfoFromTensor( + const ONNX_NAMESPACE::TensorProto& tensor) { + ONNX_NAMESPACE::ValueInfoProto* value_info = + new ONNX_NAMESPACE::ValueInfoProto(); + value_info->set_name(tensor.name()); + auto type_proto = value_info->mutable_type(); + auto tensor_type_proto = type_proto->mutable_tensor_type(); + tensor_type_proto->set_elem_type(tensor.data_type()); // TODO + auto shape = tensor_type_proto->mutable_shape(); + for (auto i = 0; i < tensor.dims_size(); i++) { + auto dim = tensor.dims(i); + if (dim < 0) { + auto dynamic_dim_name = GenName("DynamicDimension"); + shape->add_dim()->set_dim_param(dynamic_dim_name); + } else { + shape->add_dim()->set_dim_value(dim); + } + } + return value_info; +} + +ONNX_NAMESPACE::NodeProto* ConvertFp32ToFp16::MakeCastNode( + const std::string& op_name, const std::vector& inputs, + const std::vector& outputs, int32_t to_dtype) { + ONNX_NAMESPACE::NodeProto* node = new ONNX_NAMESPACE::NodeProto(); + node->set_name(op_name); + node->set_op_type("Cast"); + for (size_t i = 0; i < inputs.size(); ++i) { + node->add_input(inputs[i]); + } + for (size_t i = 0; i < outputs.size(); ++i) { + node->add_output(outputs[i]); + } + auto attr = node->add_attribute(); + attr->set_name("to"); + attr->set_i(static_cast(to_dtype)); + attr->set_type(ONNX_NAMESPACE::AttributeProto::INT); + return node; +} + +bool ConvertFp32ToFp16::GetTensorValue( + const ONNX_NAMESPACE::TensorProto& tensor, std::vector* value) { + auto dtype = tensor.data_type(); + if (dtype != ONNX_NAMESPACE::TensorProto::FLOAT) { + return false; + } + std::vector shape; + for (int64_t i = 0; i < tensor.dims_size(); i++) { + shape.push_back(tensor.dims(i)); + } + int64_t nums = 1; + for (auto& i : shape) nums *= i; + value->resize(nums); + memcpy(value->data(), tensor.raw_data().data(), nums * sizeof(float)); + return value->size(); +} + +// When the value of a tensor is greater than 10000, it is reserved as FP32 and +// not converted. +bool ConvertFp32ToFp16::KeepNodeType(ONNX_NAMESPACE::NodeProto* node) { + auto KeepType = [=](const ONNX_NAMESPACE::TensorProto& tensor) { + std::vector fp32_val; + GetTensorValue(tensor, &fp32_val); + for (auto i = 0; i < fp32_val.size(); i++) { + if (fp32_val[i] > 10000) { + return true; + } + } + return false; + }; + + for (auto attr_index = 0; attr_index < node->attribute_size(); attr_index++) { + auto attr = node->attribute(attr_index); + if (attr.has_t() && KeepType(attr.t())) { + return true; + } + for (auto t_index = 0; t_index < attr.tensors_size(); t_index++) { + if (KeepType(attr.tensors(t_index))) { + return true; + } + } + } + return false; +} + +void ConvertFp32ToFp16::ConvertTensorFloatToFloat16( + ONNX_NAMESPACE::TensorProto* tensor) { + if (tensor->data_type() == ONNX_NAMESPACE::TensorProto::FLOAT) { + if (tensor->float_data_size()) { + Assert(false, "No implemented! Please raise an issue to us."); + } + if (tensor->has_raw_data()) { + std::vector fp32_val; + GetTensorValue(*tensor, &fp32_val); + if (fp32_val.empty()) { + return; + } + converted_attr++; + tensor->set_data_type(ONNX_NAMESPACE::TensorProto::FLOAT16); + + std::vector fp16_val(fp32_val.size(), 0); + + float pos_min_val = max_finite_val_; + float pos_max_val = min_positive_val_; + float neg_min_val = -1 * max_finite_val_; + float neg_max_val = -1 * min_positive_val_; + + for (auto i = 0; i < fp32_val.size(); i++) { + if (0 < fp32_val[i] && fp32_val[i] < min_positive_val_) { + if (fp32_val[i] < pos_min_val) { + pos_min_val = fp32_val[i]; + } + fp32_val[i] = min_positive_val_; + } else if (0 > fp32_val[i] && fp32_val[i] > -1 * min_positive_val_) { + if (fp32_val[i] > neg_min_val) { + neg_min_val = fp32_val[i]; + } + fp32_val[i] = -1 * min_positive_val_; + } else if (fp32_val[i] > max_finite_val_) { + if (fp32_val[i] > pos_max_val) { + pos_max_val = fp32_val[i]; + } + fp32_val[i] = max_finite_val_; + } else if (fp32_val[i] < -1 * max_finite_val_) { + if (fp32_val[i] < neg_max_val) { + neg_max_val = fp32_val[i]; + } + fp32_val[i] = -1 * max_finite_val_; + } + ConvertValToFloat16(fp32_val[i], &fp16_val[i]); + } + if (pos_min_val < max_finite_val_ - 1) { + P2OLogger() << "[Info] the float32 number: " << pos_min_val + << " will be truncated to: " << min_positive_val_ + << std::endl; + } + if (pos_max_val > min_positive_val_ + 1) { + P2OLogger() << "[Info] the float32 number: " << pos_max_val + << " will be truncated to: " << max_finite_val_ + << std::endl; + } + if (neg_min_val > -1 * max_finite_val_ + 1) { + P2OLogger() << "[Info] the float32 number: " << neg_min_val + << " will be truncated to: " << -1 * min_positive_val_ + << std::endl; + } + if (neg_max_val < -1 * min_positive_val_ - 1) { + P2OLogger() << "[Info] the float32 number: " << neg_max_val + << " will be truncated to: " << -1 * max_finite_val_ + << std::endl; + } + tensor->set_raw_data(std::string((const char*)(fp16_val.data()), + fp16_val.size() * sizeof(uint16_t))); + } + } +} + +// return if the next node of name is Cast and its attr type is dtype. +bool ConvertFp32ToFp16::CastedTo(const std::string& name, + ONNX_NAMESPACE::ModelProto& model, + int64_t dtype) { + auto graph = model.mutable_graph(); + std::vector next_nodes; + for (auto i = 0; i < graph->node_size(); i++) { + auto n = graph->mutable_node(i); + for (auto i_index = 0; i_index < n->input_size(); i_index++) { + std::string input = n->input(i_index); + if (name == input) { + next_nodes.push_back(n); + } + } + } + bool casted = false; + for (auto node : next_nodes) { + if (node->op_type() == "Cast") { + for (auto attr_index = 0; attr_index < node->attribute_size(); + attr_index++) { + if (node->attribute(attr_index).has_i() && + node->attribute(attr_index).i() == dtype) { + casted = true; + break; + } + } + } + } + return casted; +} + +// return if the pre node of name is Cast and its attr type is dtype. +bool ConvertFp32ToFp16::CastedFrom(const std::string& name, + ONNX_NAMESPACE::ModelProto& model, + int64_t dtype) { + auto graph = model.mutable_graph(); + std::vector pre_nodes; + for (auto i = 0; i < graph->node_size(); i++) { + auto n = graph->mutable_node(i); + for (auto o_index = 0; o_index < n->output_size(); o_index++) { + std::string output = n->output(o_index); + if (name == output) { + pre_nodes.push_back(n); + } + } + } + bool casted = false; + for (auto node : pre_nodes) { + if (node->op_type() == "Cast") { + for (auto attr_index = 0; attr_index < node->attribute_size(); + attr_index++) { + if (node->attribute(attr_index).has_i() && + node->attribute(attr_index).i() == dtype) { + casted = true; + break; + } + } + } + } + return casted; +} + +// return if the name is the input of DEFAULT_OP_BLOCK_LIST +bool ConvertFp32ToFp16::IsInputOfOpBlock(const std::string& name, + ONNX_NAMESPACE::ModelProto& model) { + auto graph = model.mutable_graph(); + for (auto i = 0; i < graph->node_size(); i++) { + auto n = graph->mutable_node(i); + if (std::find(op_block_list_.begin(), op_block_list_.end(), n->op_type()) == + op_block_list_.end()) { + continue; + } + + for (auto i_index = 0; i_index < n->input_size(); i_index++) { + std::string input = n->input(i_index); + if (name == input) { + return true; + } + } + } + return false; +} + +bool ConvertFp32ToFp16::IsOutputOfOpBlockAndFP32Out( + const std::string& name, ONNX_NAMESPACE::ModelProto& model) { + auto graph = model.mutable_graph(); + for (auto i = 0; i < graph->node_size(); i++) { + auto n = graph->mutable_node(i); + if (std::find(op_block_list_.begin(), op_block_list_.end(), n->op_type()) == + op_block_list_.end() && + std::find(fp32_output_op_list.begin(), fp32_output_op_list.end(), + n->op_type()) == fp32_output_op_list.end()) { + continue; + } + for (auto o_index = 0; o_index < n->output_size(); o_index++) { + std::string output = n->output(o_index); + if (name == output) { + return true; + } + } + } + return false; +} + +void ConvertFp32ToFp16::KeepIoType(ONNX_NAMESPACE::ModelProto* model) { + auto graph = model->mutable_graph(); + for (auto i = 0; i < graph->input_size(); i++) { + auto input = graph->input(i); + if (input.type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT) { + // if the pre node is cast, and it is cast to float16, we do not need add + // Cast OP any more + if (CastedTo(input.name(), *model, 10)) { + graph_io_to_skip.push_back(input.name()); + continue; + } + std::string output_name = "graph_input_cast_" + std::to_string(i); + name_mapping[input.name()] = output_name; + graph_io_to_skip.push_back(input.name()); + std::string node_name = "graph_input_cast" + std::to_string(i); + auto new_value_info = graph->add_value_info(); + new_value_info->CopyFrom(input); + new_value_info->set_name(output_name); + new_value_info->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT16); + auto new_node = + MakeCastNode(node_name, {input.name()}, {output_name}, 10); + *(graph->add_node()) = (*new_node); + value_info_list.push_back(new_value_info); + io_casts.push_back(node_name); + } + } + for (auto i = 0; i < graph->output_size(); i++) { + auto output = graph->output(i); + if (output.type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT) { + // if the next node is cast, and it is cast to float, we do not need add + // Cast OP any more + if (CastedFrom(output.name(), *model, 1)) { + graph_io_to_skip.push_back(output.name()); + continue; + } + std::string output_name = "graph_output_cast_" + std::to_string(i); + name_mapping[output.name()] = output_name; + graph_io_to_skip.push_back(output.name()); + std::string node_name = "graph_output_cast" + std::to_string(i); + auto new_value_info = graph->add_value_info(); + new_value_info->CopyFrom(output); + new_value_info->set_name(output_name); + new_value_info->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT16); + auto new_node = + MakeCastNode(node_name, {output_name}, {output.name()}, 1); + *(graph->add_node()) = (*new_node); + value_info_list.push_back(new_value_info); + io_casts.push_back(node_name); + } + } +} + +void ConvertFp32ToFp16::ConvertAttribute(ONNX_NAMESPACE::ModelProto* model) { + proto_node new_node(*model); + queue.push_back(new_node); + + while (queue.size()) { + next_level.clear(); + for (auto q : queue) { + // process model proto + if (q.node_type == "model" && model->has_graph()) { + proto_node new_node(model->mutable_graph()); + next_level.push_back(new_node); + } + // process graph proto + if (q.node_type == "graph") { + for (auto i = 0; i < q.graph->node_size(); i++) { + auto n = q.graph->mutable_node(i); + if (std::find(io_casts.begin(), io_casts.end(), n->name()) != + io_casts.end()) { + continue; + } + for (auto i_index = 0; i_index < n->input_size(); i_index++) { + std::string* input = n->mutable_input(i_index); + auto iter = name_mapping.find(*input); + if (iter != name_mapping.end()) { + *input = iter->second; + } + } + for (auto o_index = 0; o_index < n->output_size(); o_index++) { + std::string* output = n->mutable_output(o_index); + auto iter = name_mapping.find(*output); + if (iter != name_mapping.end()) { + *output = iter->second; + } + } + // If the op type is in op_block_list_ or fp32_output_op_list, + // or needs to be kept without conversion, then store the node in + // node_list, + // which is convenient for adding cast op in the front or back + if (KeepNodeType(n)) { + if (n->op_type() != "Constant" && + std::find(node_list.begin(), node_list.end(), n) == + node_list.end()) { + node_list.push_back(n); + } else { + for (auto index = 0; index < q.graph->node_size(); index++) { + auto keep_type_node = q.graph->mutable_node(index); + bool is_pre_node = + std::find(keep_type_node->input().begin(), + keep_type_node->input().end(), + n->output()[0]) != keep_type_node->input().end(); + if (is_pre_node && + std::find(node_list.begin(), node_list.end(), n) == + node_list.end()) { + node_list.push_back(keep_type_node); + Assert( + n->op_type() == "Constant", + "The node type be Constant, but it is: " + n->op_type()); + keep_type_tensors.push_back(n->output()[0]); + } + } + } + } else if ((std::find(op_block_list_.begin(), op_block_list_.end(), + n->op_type()) != op_block_list_.end() || + std::find(fp32_output_op_list.begin(), + fp32_output_op_list.end(), + n->op_type()) != fp32_output_op_list.end()) && + std::find(node_list.begin(), node_list.end(), n) == + node_list.end()) { + node_list.push_back(n); + } else { + std::string op_name = n->name(); + if (n->op_type() == "Cast") { + for (auto attr_index = 0; attr_index < n->attribute_size(); + attr_index++) { + auto attr = n->mutable_attribute(attr_index); + if (attr->name() == "to" && attr->i() == 1) { + attr->set_i(10); + break; + } + } + } + for (auto attr_index = 0; attr_index < n->attribute_size(); + attr_index++) { + proto_node new_node(n->mutable_attribute(attr_index)); + next_level.push_back(new_node); + } + } + } + } + + // process attribute proto + if (q.node_type == "attribute") { + if (q.attr->has_g()) { + proto_node new_node(q.attr->mutable_g()); + next_level.push_back(new_node); + } + + for (auto g_index = 0; g_index < q.attr->graphs_size(); g_index++) { + proto_node new_node(q.attr->mutable_graphs(g_index)); + next_level.push_back(new_node); + } + if (q.attr->has_t()) { + ConvertTensorFloatToFloat16(q.attr->mutable_t()); + } + + for (auto t_index = 0; t_index < q.attr->tensors_size(); t_index++) { + ConvertTensorFloatToFloat16(q.attr->mutable_tensors(t_index)); + } + } + + // process graph proto + if (q.node_type == "graph") { + for (auto init_index = 0; init_index < q.graph->initializer_size(); + init_index++) { + auto init = q.graph->mutable_initializer(init_index); + if (init->data_type() == ONNX_NAMESPACE::TensorProto::FLOAT) { + ConvertTensorFloatToFloat16(init); + auto new_value = MakeValueInfoFromTensor(*init); + value_info_list.push_back(new_value); + } + } + for (auto i_index = 0; i_index < q.graph->input_size(); i_index++) { + auto input = q.graph->mutable_input(i_index); + bool skip = + std::find(graph_io_to_skip.begin(), graph_io_to_skip.end(), + input->name()) != graph_io_to_skip.end(); + if (!skip && + input->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT) { + input->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT16); + value_info_list.push_back(input); + } + } + for (auto o_index = 0; o_index < q.graph->output_size(); o_index++) { + auto output = q.graph->mutable_output(o_index); + bool skip = + std::find(graph_io_to_skip.begin(), graph_io_to_skip.end(), + output->name()) != graph_io_to_skip.end(); + if (!skip && + output->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT) { + output->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT16); + value_info_list.push_back(output); + } + } + for (auto value_index = 0; value_index < q.graph->value_info_size(); + value_index++) { + auto value = q.graph->mutable_value_info(value_index); + bool skip = + std::find(graph_io_to_skip.begin(), graph_io_to_skip.end(), + value->name()) != graph_io_to_skip.end(); + + // in Resize op, when the dims of input tensor is zero. + bool zero_shape_constant = false; + for (auto i = 0; i < q.graph->node_size(); i++) { + auto n = q.graph->mutable_node(i); + if (n->op_type() != "Constant" || n->output(0) != value->name()) { + continue; + } + for (auto attr_index = 0; attr_index < n->attribute_size(); + attr_index++) { + auto attr = n->mutable_attribute(attr_index); + if (attr->has_t() && attr->t().dims_size() == 1 && + attr->t().dims(0) == 0) { + zero_shape_constant = true; + } + } + if (zero_shape_constant) break; + } + + // if it is a tensor that should keep type float + bool keep_type_tensor = + std::find(keep_type_tensors.begin(), keep_type_tensors.end(), + value->name()) != keep_type_tensors.end(); + if (!zero_shape_constant && !skip && !keep_type_tensor && + value->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT) { + value->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT16); + value_info_list.push_back(value); + } + } + } + } + queue.clear(); + queue = next_level; + } + // the model is a FP16 model + if (!converted_attr) { + return; + } + + auto graph = model->mutable_graph(); + for (auto node : node_list) { + // Handle the case of fp32_output OPs + // Add cast op for node output + if (std::find(fp32_output_op_list.begin(), fp32_output_op_list.end(), + node->op_type()) != fp32_output_op_list.end()) { + for (auto o_index = 0; o_index < node->output_size(); o_index++) { + std::string* output = node->mutable_output(o_index); + for (auto v_index = 0; v_index < graph->value_info().size(); + v_index++) { + auto value_info = graph->mutable_value_info(v_index); + if (value_info->name() == *output) { + if (value_info->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT16 && + !CastedTo(*output, *model, 10)) { + std::string input_name = GenName(node->name() + "_output_cast_"); + std::string node_name = GenName(node->name() + "_output_cast"); + auto new_node = + MakeCastNode(node_name, {input_name}, {*output}, 10); + *(graph->add_node()) = (*new_node); + *(node->mutable_output(o_index)) = input_name; + } else { + break; + } + } + } + } + continue; + } + + // Handle the case of custom OPs + if (std::find(custom_ops_.begin(), custom_ops_.end(), node->op_type()) != + custom_ops_.end()) { + // add cast op for node input + for (auto i_index = 0; i_index < node->input_size(); i_index++) { + std::string* input = node->mutable_input(i_index); + for (auto v_index = 0; v_index < graph->value_info().size(); + v_index++) { + auto value_info = graph->mutable_value_info(v_index); + if (value_info->name() == *input) { + if (value_info->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT16 && + !CastedFrom(*input, *model, 1)) { + std::string output_name = GenName(node->name() + "_input_cast_"); + std::string node_name = GenName(node->name() + "_input_cast"); + auto new_node = + MakeCastNode(node_name, {*input}, {output_name}, 1); + *(graph->add_node()) = (*new_node); + *(node->mutable_input(i_index)) = output_name; + } else { + break; + } + } + } + } + // add cast op for node output + for (auto o_index = 0; o_index < node->output_size(); o_index++) { + std::string* output = node->mutable_output(o_index); + for (auto v_index = 0; v_index < graph->value_info().size(); + v_index++) { + auto value_info = graph->mutable_value_info(v_index); + if (value_info->name() == *output) { + if (value_info->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT16 && + !CastedTo(*output, *model, 10)) { + std::string input_name = GenName(node->name() + "_output_cast_"); + std::string node_name = GenName(node->name() + "_output_cast"); + auto new_node = + MakeCastNode(node_name, {input_name}, {*output}, 10); + *(graph->add_node()) = (*new_node); + *(node->mutable_output(o_index)) = input_name; + } else if (value_info->type().tensor_type().elem_type() == + ONNX_NAMESPACE::TensorProto::FLOAT16) { + value_info->mutable_type()->mutable_tensor_type()->set_elem_type( + ONNX_NAMESPACE::TensorProto::FLOAT); + } else { + break; + } + } + } + } + } else { + // Handle the case of DEFAULT_OP_BLOCK_LIST OPs + for (auto i_index = 0; i_index < node->input_size(); i_index++) { + std::string* input = node->mutable_input(i_index); + for (auto value_index = 0; value_index < value_info_list.size(); + value_index++) { + auto value_info = value_info_list[value_index]; + if (value_info->has_name() && *input == value_info->name() && + !CastedFrom(*input, *model, 1)) { + auto new_value_info = model->mutable_graph()->add_value_info(); + new_value_info->CopyFrom(*value_info); + std::string output_name = GenName(node->name() + "_input_cast_"); + new_value_info->set_name(output_name); + new_value_info->mutable_type() + ->mutable_tensor_type() + ->set_elem_type(ONNX_NAMESPACE::TensorProto::FLOAT); + std::string node_name = GenName(node->name() + "_input_cast"); + auto new_node = MakeCastNode(node_name, {*input}, {output_name}, 1); + *(graph->add_node()) = (*new_node); + *(node->mutable_input(i_index)) = output_name; + break; + } + } + } + for (auto o_index = 0; o_index < node->output_size(); o_index++) { + std::string* output = node->mutable_output(o_index); + for (auto value_index = 0; value_index < value_info_list.size(); + value_index++) { + if (*output == value_info_list[value_index]->name() && + !CastedTo(*output, *model, 10)) { + auto new_value_info = model->mutable_graph()->add_value_info(); + new_value_info->CopyFrom(*value_info_list[value_index]); + std::string input_name = GenName(node->name() + "_output_cast_"); + new_value_info->set_name(input_name); + new_value_info->mutable_type() + ->mutable_tensor_type() + ->set_elem_type(ONNX_NAMESPACE::TensorProto::FLOAT); + std::string node_name = GenName(node->name() + "_output_cast"); + auto new_node = + MakeCastNode(node_name, {input_name}, {*output}, 10); + *(graph->add_node()) = (*new_node); + *(node->mutable_output(o_index)) = input_name; + break; + } + } + } + } + } +} + +bool ConvertFp32ToFp16::IsFP16Model(const ONNX_NAMESPACE::ModelProto& model) { + for (auto node : model.graph().node()) { + if (node.op_type() == "Cast") { + auto name = node.name(); + if (name.find("_output_cast") != name.npos || + name.find("_input_cast") != name.npos || + name.find("graph_output_cast") != name.npos || + name.find("graph_input_cast") != name.npos) { + return true; + } + } + } + return false; +} + +void ConvertFp32ToFp16::Convert(ONNX_NAMESPACE::ModelProto* model) { + if (op_block_list_.empty()) { + op_block_list_ = DEFAULT_OP_BLOCK_LIST; + } + if (custom_ops_.size()) { + op_block_list_.insert(op_block_list_.end(), custom_ops_.begin(), + custom_ops_.end()); + } + shape_inference::InferShapes(*model); + // 1 if it is a FP16 model, skip this + if (IsFP16Model(*model)) { + P2OLogger() << "[Info] The input ONNX Model is a FP16 model." << std::endl; + return; + } + // 2 keep IO types + KeepIoType(model); + // 3 ConvertAttribute + ConvertAttribute(model); + // 4 sortnodes + SortNodes(model); +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/optimizer/convert_fp32_to_fp16.h b/paddle2onnx/optimizer/convert_fp32_to_fp16.h new file mode 100755 index 0000000000..157bee66c4 --- /dev/null +++ b/paddle2onnx/optimizer/convert_fp32_to_fp16.h @@ -0,0 +1,235 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include +#include +#include + +#include +#include "paddle2onnx/mapper/mapper.h" +#include "paddle2onnx/parser/parser.h" +namespace paddle2onnx { + +struct proto_node { + public: + std::string node_type; // model, graph, node, arribute + ONNX_NAMESPACE::ModelProto* model; + ONNX_NAMESPACE::GraphProto* graph; + ONNX_NAMESPACE::NodeProto* node; + ONNX_NAMESPACE::AttributeProto* attr; + + explicit proto_node(ONNX_NAMESPACE::ModelProto new_model) { + node_type = "model"; + model = &new_model; + } + + explicit proto_node(ONNX_NAMESPACE::ModelProto* new_model) { + node_type = "model"; + model = new_model; + } + + explicit proto_node(ONNX_NAMESPACE::GraphProto new_graph) { + node_type = "graph"; + graph = &new_graph; + } + + explicit proto_node(ONNX_NAMESPACE::GraphProto* new_graph) { + node_type = "graph"; + graph = new_graph; + } + + explicit proto_node(ONNX_NAMESPACE::NodeProto new_node) { + node_type = "node"; + node = &new_node; + } + + explicit proto_node(ONNX_NAMESPACE::NodeProto* new_node) { + node_type = "node"; + node = new_node; + } + + explicit proto_node(ONNX_NAMESPACE::AttributeProto new_attribute) { + node_type = "attribute"; + attr = &new_attribute; + } + + explicit proto_node(ONNX_NAMESPACE::AttributeProto* new_attribute) { + node_type = "attribute"; + attr = new_attribute; + } +}; + +struct ConvertFp32ToFp16 { + public: + ConvertFp32ToFp16(float min_positive_val = 1e-7, float max_finite_val = 1e4, + bool keep_io_types = false, + bool disable_shape_infer = false, + const std::vector& op_block_list = {}, + const std::vector& node_block_list = {}) { + min_positive_val_ = min_positive_val; + max_finite_val_ = max_finite_val; + keep_io_types_ = keep_io_types; + disable_shape_infer_ = disable_shape_infer; + op_block_list_ = op_block_list; + node_block_list_ = node_block_list; + } + + void Convert(ONNX_NAMESPACE::ModelProto* model); + + ONNX_NAMESPACE::NodeProto* MakeCastNode( + const std::string& op_name, const std::vector& inputs, + const std::vector& outputs, int32_t to_dtype); + + ONNX_NAMESPACE::ValueInfoProto* MakeValueInfoFromTensor( + const ONNX_NAMESPACE::TensorProto& tensor); + + void KeepIoType(ONNX_NAMESPACE::ModelProto* model); + + void ConvertAttribute(ONNX_NAMESPACE::ModelProto* model); + + void ConvertTensorFloatToFloat16(ONNX_NAMESPACE::TensorProto* tensor); + + // return if keep the type of node + bool KeepNodeType(ONNX_NAMESPACE::NodeProto* node); + + bool GetTensorValue(const ONNX_NAMESPACE::TensorProto& tensor, + std::vector* value); + + // topo sort + void SortNodes(ONNX_NAMESPACE::ModelProto* model); + + void ConvertValToFloat16(float val, uint16_t* x); + + // return if the next node of name is Cast and its attr type is dtype. + bool CastedTo(const std::string& name, ONNX_NAMESPACE::ModelProto& model, + int64_t dtype); + // return if the pre node of name is Cast and its attr type is dtype. + bool CastedFrom(const std::string& name, ONNX_NAMESPACE::ModelProto& model, + int64_t dtype); + // return if the name is the input of DEFAULT_OP_BLOCK_LIST + bool IsInputOfOpBlock(const std::string& name, + ONNX_NAMESPACE::ModelProto& model); + + // return if the name is the input of DEFAULT_OP_BLOCK_LIST and + // fp32_output_op_list + bool IsOutputOfOpBlockAndFP32Out(const std::string& name, + ONNX_NAMESPACE::ModelProto& model); + + void SetCustomOps(const std::map& custom_ops) { + if (custom_ops.size()) { + custom_ops_.clear(); + for (auto op : custom_ops) { + custom_ops_.push_back(op.second); + } + } + } + // If the input ONNX model is a FP16 model, return True + bool IsFP16Model(const ONNX_NAMESPACE::ModelProto& model); + + private: + union Bits { + float f; + int32_t si; + uint32_t ui; + }; + static const int shift = 13; + static const int shiftSign = 16; + + static const int32_t infN = 0x7F800000; + static const int32_t maxN = 0x477FE000; // max flt16 as flt32 + static const int32_t minN = 0x38800000; // min flt16 normal as flt32 + static const int32_t sigN = 0x80000000; // sign bit + + static constexpr int32_t infC = infN >> shift; + static constexpr int32_t nanN = (infC + 1) + << shift; // minimum flt16 nan as float32 + static constexpr int32_t maxC = maxN >> shift; + static constexpr int32_t minC = minN >> shift; + static constexpr int32_t sigC = sigN >> shiftSign; + + static const int32_t mulN = 0x52000000; // (1 << 23) / minN + static const int32_t mulC = 0x33800000; // minN / (1 << (23 - shift)) + static const int32_t subC = 0x003FF; // max flt32 subnormal downshifted + static const int32_t norC = 0x00400; // min flt32 normal downshifted + + static constexpr int32_t maxD = infC - maxC - 1; + static constexpr int32_t minD = minC - subC - 1; + + float min_positive_val_ = 1e-7; + float max_finite_val_ = 1e4; + bool keep_io_types_ = false; + bool disable_shape_infer_ = false; + std::vector op_block_list_ = {}; + std::vector node_block_list_ = {}; + + std::vector custom_ops_ = {"AdaptivePool2d", "MultiClassNMS"}; + + int64_t converted_attr = 0; + + std::map name_mapping; + std::vector graph_io_to_skip; + std::vector value_info_list; + std::vector io_casts; + + std::vector node_list; + + std::vector queue; + std::vector next_level; + + std::map name_index_mapper; + // int64_t name_index = 0; + std::string GenName(const std::string& prefix); + + // save the tensor names that should keep data type + std::vector keep_type_tensors; + + // The input can be FP16, but the output can only be fp32 + std::vector fp32_output_op_list = {"RandomNormalLike"}; + + std::vector DEFAULT_OP_BLOCK_LIST = { + "ArrayFeatureExtractor", + "ReduceMean", // this op may cause wrong results on FP16 + "Binarizer", + "CastMap", + "CategoryMapper", + "DictVectorizer", + "FeatureVectorizer", + "Imputer", + "LabelEncoder", + "LinearClassifier", + "LinearRegressor", + "Normalizer", + "OneHotEncoder", + "RandomUniformLike", + "SVMClassifier", + "SVMRegressor", + "Scaler", + "TreeEnsembleClassifier", + "TreeEnsembleRegressor", + "ZipMap", + "NonMaxSuppression", + "TopK", + "RoiAlign", + "Resize", + "Range", + "CumSum", + "Min", + "Max", + "Upsample", // The following OP is added by Paddle developer + "EyeLike"}; +}; +} // namespace paddle2onnx diff --git a/paddle2onnx/optimizer/eliminate_non_transpose.h b/paddle2onnx/optimizer/eliminate_non_transpose.h new file mode 100644 index 0000000000..3a1d28757f --- /dev/null +++ b/paddle2onnx/optimizer/eliminate_non_transpose.h @@ -0,0 +1,60 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#pragma once + +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct EliminateNonTranspose final : public PredicateBasedPass { + explicit EliminateNonTranspose() + : PredicateBasedPass(PassType::Nop, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + + std::string getPassName() const override { return "eliminate_non_transpose"; } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kTranspose; + } + bool runTransform(Node* node, Graph& graph, + NodeDestroyType& destroy_current) override { + if (node->hasAttribute(kperm)) { + auto perm = node->is(kperm); + for (size_t i = 0; i < perm.size(); ++i) { + if (perm[i] != i) { + return false; + } + } + } + const bool replacing_success = + tryReplacingAllUsesWith(node->output(), node->input()); + if (!replacing_success) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_constant_cast.h b/paddle2onnx/optimizer/fuse_constant_cast.h new file mode 100644 index 0000000000..0fbaa4d554 --- /dev/null +++ b/paddle2onnx/optimizer/fuse_constant_cast.h @@ -0,0 +1,67 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// B = Reshape(Constant) +// After: +// B = Constant (Constant with new shape) + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FuseConstantCast final : public PredicateBasedPass { + explicit FuseConstantCast() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + std::string getPassName() const override { return "fuse_constant_cast"; } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kCast && + node->inputs()[0]->node()->kind() == kConstant; + } + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + destroy_current = NodeDestroyType::DestroyZero; + + if (n->inputs()[0]->uses().size() > 1) { + return false; + } + + Node* cast = n; + Node* constant = n->inputs()[0]->node(); + Tensor t = constant->t(kvalue); + auto dtype = cast->i(kto); + t.elem_type() = dtype; + constant->t_(kvalue, std::move(t)); + if (!tryReplacingAllUsesWith(cast->output(), cast->inputs()[0])) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_constant_reshape.h b/paddle2onnx/optimizer/fuse_constant_reshape.h new file mode 100644 index 0000000000..ba886f5c1c --- /dev/null +++ b/paddle2onnx/optimizer/fuse_constant_reshape.h @@ -0,0 +1,138 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// B = Reshape(Constant) +// After: +// B = Constant (Constant with new shape) + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FuseConstantReshape final : public PredicateBasedPass { + explicit FuseConstantReshape() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + std::string getPassName() const override { return "fuse_constant_reshape"; } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kReshape && + node->inputs()[0]->node()->kind() == kConstant; + } + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + destroy_current = NodeDestroyType::DestroyZero; + + // check if Constant is only used by Reshape + if (n->inputs()[0]->uses().size() > 1) { + return false; + } + + Node* reshape = n; + Node* constant = n->inputs()[0]->node(); + + // Process 'reshape' data + std::vector shape; + if (reshape->hasAttribute(kshape)) { + // opset 5 and below + shape = reshape->is(kshape); + } else { + // opset 6 and above - first check if 'reshape' has 'shape' input + // constant + if (reshape->inputs()[1]->node()->kind() != kConstant) { + return false; + } + if (reshape->inputs()[1]->uses().size() > 1) { + return false; + } + Node* shape_const = reshape->inputs()[1]->node(); + Tensor t = shape_const->t(kvalue); + shape = ParseData(&t); + } + + int allow_zero = 0; + Symbol sym = Symbol("allowzero"); + if (reshape->hasAttribute(sym)) { + allow_zero = reshape->i(sym); + } + + Tensor t = constant->t(kvalue); + const auto& ori_size = t.sizes(); + + // process 0 in shape + if (allow_zero != 0) { + for (size_t i = 0; i < shape.size(); ++i) { + if (shape[i] == 0) { + // illegal situation + if (ori_size.size() <= i) { + return false; + } + shape[i] = ori_size[i]; + } + } + } + + // process -1 in shape + int count_of_unkown = 0; + int index_of_unkown = -1; + for (size_t i = 0; i < shape.size(); ++i) { + if (shape[i] == -1) { + count_of_unkown += 1; + index_of_unkown = i; + } + } + // illegal situtaion + if (count_of_unkown > 1) { + return false; + } + int64_t numel = std::accumulate(ori_size.begin(), ori_size.end(), 1, + std::multiplies()); + if (index_of_unkown >= 0) { + int64_t value_of_unkown = -1 * numel / + std::accumulate(shape.begin(), shape.end(), 1, + std::multiplies()); + shape[index_of_unkown] = value_of_unkown; + } + + t.sizes().clear(); + t.sizes().insert(t.sizes().begin(), shape.begin(), + shape.begin() + shape.size()); + constant->t_(kvalue, std::move(t)); + + // update constant node + constant->output()->setSizes(reshape->output()->sizes()); + constant->output()->setElemType(reshape->output()->elemType()); + const bool replacing_success = + tryReplacingAllUsesWith(reshape->output(), reshape->inputs()[0]); + if (!replacing_success) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_constant_unsqueeze.h b/paddle2onnx/optimizer/fuse_constant_unsqueeze.h new file mode 100644 index 0000000000..e4fa7cdf46 --- /dev/null +++ b/paddle2onnx/optimizer/fuse_constant_unsqueeze.h @@ -0,0 +1,107 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// B = Unsqueeze(Constant, axes) +// After: +// B = Constant (Constant with new shape) + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FuseConstantUnsqueeze final : public PredicateBasedPass { + explicit FuseConstantUnsqueeze() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + std::string getPassName() const override { return "fuse_constant_unsqueeze"; } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kUnsqueeze && + node->inputs()[0]->node()->kind() == kConstant; + } + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + destroy_current = NodeDestroyType::DestroyZero; + + // check if Constant is only used by Reshape + if (n->inputs()[0]->uses().size() > 1) { + return false; + } + + Node* unsqueeze = n; + Node* constant = n->inputs()[0]->node(); + + // Process 'axes' data + std::vector axes; + if (unsqueeze->hasAttribute(kaxes)) { + // opset 13 below + axes = unsqueeze->is(kaxes); + } else { + // opset 13 and above - first check if 'unsqueeze' has 'axes' input + // constant + if (unsqueeze->inputs()[1]->node()->kind() != kConstant) { + return false; + } + if (unsqueeze->inputs()[1]->uses().size() > 1) { + return false; + } + Node* axes_const = unsqueeze->inputs()[1]->node(); + Tensor t = axes_const->t(kvalue); + axes = ParseData(&t); + } + + Tensor t = constant->t(kvalue); + const auto& ori_size = t.sizes(); + for (size_t i = 0; i < axes.size(); ++i) { + if (axes[i] < 0) { + axes[i] = axes[i] + ori_size.size() + i + 1; + } + } + + std::vector new_size(ori_size.begin(), ori_size.end()); + for (size_t i = 0; i < axes.size(); ++i) { + new_size.insert(new_size.begin() + axes[i], 1); + } + + t.sizes().clear(); + t.sizes().insert(t.sizes().begin(), new_size.begin(), + new_size.begin() + new_size.size()); + constant->t_(kvalue, std::move(t)); + + // update constant node + constant->output()->setSizes(unsqueeze->output()->sizes()); + constant->output()->setElemType(unsqueeze->output()->elemType()); + const bool replacing_success = + tryReplacingAllUsesWith(unsqueeze->output(), unsqueeze->inputs()[0]); + if (!replacing_success) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_paddle_conv_bias.h b/paddle2onnx/optimizer/fuse_paddle_conv_bias.h new file mode 100644 index 0000000000..89ed8883a1 --- /dev/null +++ b/paddle2onnx/optimizer/fuse_paddle_conv_bias.h @@ -0,0 +1,96 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Only support conv2d + bias now + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FusePaddleConvBias final : public PredicateBasedPass { + explicit FusePaddleConvBias() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + std::string getPassName() const override { return "fuse_paddle_conv_bias"; } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kAdd && node->inputs()[0]->node()->kind() == kConv && + node->inputs()[1]->node()->kind() == kConstant && + node->inputs()[0]->node()->inputs()[1]->node()->kind() == kConstant; + } + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + destroy_current = NodeDestroyType::DestroyZero; + + // check if Conv is only used by Add + if (n->inputs()[0]->uses().size() > 1) { + return false; + } + // check if bias is only used by Add + if (n->inputs()[1]->uses().size() > 1) { + return false; + } + + Node* add = n; + Node* conv = n->inputs()[0]->node(); + Node* bias = n->inputs()[1]->node(); + Node* weight = conv->inputs()[1]->node(); + + if (conv->inputs().size() > 2) { + return false; + } + + Tensor bias_tensor = bias->t(kvalue); + Tensor weight_tensor = weight->t(kvalue); + const auto& bias_shape = bias_tensor.sizes(); + const auto& weight_shape = weight_tensor.sizes(); + if (bias_shape.size() != 4 || bias_shape.size() != weight_shape.size()) { + return false; + } + if (bias_shape[0] != 1 || bias_shape[2] != 1 || bias_shape[3] != 1) { + return false; + } + if (bias_shape[1] != weight_shape[0]) { + return false; + } + // reshape bias node + bias_tensor.sizes().clear(); + bias_tensor.sizes().push_back(weight_shape[0]); + bias->t_(kvalue, std::move(bias_tensor)); + + conv->addInput(bias->outputs()[0]); + conv->output()->setSizes(add->output()->sizes()); + conv->output()->setElemType(add->output()->elemType()); + const bool replacing_success = + tryReplacingAllUsesWith(add->output(), add->inputs()[0]); + if (!replacing_success) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_squeeze_act_unsqueeze.h.bak b/paddle2onnx/optimizer/fuse_squeeze_act_unsqueeze.h.bak new file mode 100644 index 0000000000..dc5821b59e --- /dev/null +++ b/paddle2onnx/optimizer/fuse_squeeze_act_unsqueeze.h.bak @@ -0,0 +1,102 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// axis = n +// A = Squeeze(x, axis) +// B = Act(A) +// C = Unsqueeze(x, axis) +// After: +// C = act(x) + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FuseSqueezeActUnsqueeze final : public PredicateBasedPass { + explicit FuseSqueezeActUnsqueeze() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + std::string getPassName() const override { return "fuse_squeeze_act_unsqueeze"; } + + bool patternMatchPredicate(Node* node) override { + // if you want more act supported + // just modify here + return node->kind() == kUnqueeze && + node->inputs()[0]->node()->kind() == kLeakyRelu && + node->inputs()[0]->node()->inputs()[0] == kSqueeze; + } + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + destroy_current = NodeDestroyType::DestroyZero; + + if (n->inputs()[0]->uses().size() > 1) { + return false; + } + if (n->inputs()[0]->node->inputs[0]->uses().size() > 1) { + return false; + } + + Node* unsqueeze = n; + Node* act = n->inputs()[0]->node(); + Node* squeeze = act->inputs()[0]->node(); + + // Process 'axes' data + std::vector unsqueeze_axes; + if (unsqueeze->hasAttribute(kaxes)) { + // opset 13 below + unsqueeze_axes = unsqueeze->is(kaxes); + } else { + // opset 13 and above - first check if 'unsqueeze' has 'axes' input + // constant + if (unsqueeze->inputs()[1]->node()->kind() != kConstant) { + return false; + } + if (unsqueeze->inputs()[1]->uses().size() > 1) { + return false; + } + Node* axes_const = unsqueeze->inputs()[1]->node(); + Tensor t = axes_const->t(kvalue); + unsqueeze_axes = ParseData(&t); + } + + Tensor t = constant->t(kvalue); + const auto& ori_size = t.sizes(); + for (size_t i = 0; i < axes.size(); ++i) { + if (axes[i] < 0) { + axes[i] = axes[i] + ori_size.size() + i + 1; + } + } + + std::vector new_size(ori_size.begin(), ori_size.end()); + for (size_t i = 0; i < axes.size(); ++i) { + new_size.insert(new_size.begin() + axes[i], 1); + } + + t.sizes().clear(); + t.sizes().insert(t.sizes().begin(), new_size.begin(), + new_size.begin() + new_size.size()); + constant->t_(kvalue, std::move(t)); + + // update constant node + constant->output()->setSizes(unsqueeze->output()->sizes()); + constant->output()->setElemType(unsqueeze->output()->elemType()); + const bool replacing_success = + tryReplacingAllUsesWith(unsqueeze->output(), unsqueeze->inputs()[0]); + if (!replacing_success) { + return false; + } + destroy_current = NodeDestroyType::DestroyOne; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/fuse_unsqueeze_conv2d_squeeze.h b/paddle2onnx/optimizer/fuse_unsqueeze_conv2d_squeeze.h new file mode 100644 index 0000000000..e97a15c985 --- /dev/null +++ b/paddle2onnx/optimizer/fuse_unsqueeze_conv2d_squeeze.h @@ -0,0 +1,170 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// X = Tensor(N, C, H) +// B = Unsqueeze(X, 2) +// C = Conv2d(B) +// D = Squeeze(C, 2) +// After: +// D = Conv1d(X) + +#include + +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct FuseUnsqueezeConv2dSqueeze final : public PredicateBasedPass { + explicit FuseUnsqueezeConv2dSqueeze() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + + std::string getPassName() const override { + return "fuse_unsqueeze_conv2d_squeeze"; + } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kSqueeze && + node->inputs()[0]->node()->kind() == kConv && + node->inputs()[0]->node()->inputs()[0]->node()->kind() == kUnsqueeze; + } + + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + Node* squeeze_node = n; + Node* conv_node = n->inputs()[0]->node(); + Node* unsqueeze_node = conv_node->inputs()[0]->node(); + if (squeeze_node->inputs()[0]->uses().size() > 1) { + return false; + } + if (conv_node->inputs()[0]->uses().size() > 1) { + return false; + } + + Node* weight_node = conv_node->inputs()[1]->node(); + if (weight_node->kind() != kConstant) { + return false; + } + Tensor weight = weight_node->t(kvalue); + if (weight.sizes().size() != 4) { + return false; + } + if (weight.sizes()[2] != 1) { + return false; + } + { + std::vector axes; + if (squeeze_node->hasAttribute(kaxes)) { + // opset 12 and below + axes = squeeze_node->is(kaxes); + } else { + // opset 13 and above + if (squeeze_node->inputs()[1]->node()->kind() != kConstant) { + return false; + } + if (squeeze_node->inputs()[1]->uses().size() > 1) { + return false; + } + Tensor t = squeeze_node->inputs()[1]->node()->t(kvalue); + axes = ParseData(&t); + } + if (axes.size() != 1 || axes[0] != 2) { + return false; + } + } + { + std::vector axes; + if (unsqueeze_node->hasAttribute(kaxes)) { + // opset 12 and below + axes = unsqueeze_node->is(kaxes); + } else { + // opset 13 and above + if (unsqueeze_node->inputs()[1]->node()->kind() != kConstant) { + return false; + } + if (unsqueeze_node->inputs()[1]->uses().size() > 1) { + return false; + } + Tensor t = unsqueeze_node->inputs()[1]->node()->t(kvalue); + axes = ParseData(&t); + } + if (axes.size() != 1 || axes[0] != 2) { + return false; + } + } + // update conv weight + weight.sizes().erase(weight.sizes().begin() + 2); + weight_node->t_(kvalue, std::move(weight)); + + if (conv_node->hasAttribute(kdilations)) { + std::vector dilations = conv_node->is(kdilations); + if (dilations.size() != 2 || dilations[0] != 1) { + return false; + } + dilations.erase(dilations.begin() + 0); + conv_node->is_(kdilations, std::move(dilations)); + } + if (conv_node->hasAttribute(kkernel_shape)) { + std::vector kernel_shape = conv_node->is(kkernel_shape); + if (kernel_shape.size() != 2 || kernel_shape[0] != 1) { + return false; + } + kernel_shape.erase(kernel_shape.begin() + 0); + conv_node->is_(kkernel_shape, std::move(kernel_shape)); + } + if (conv_node->hasAttribute(kpads)) { + std::vector pads = conv_node->is(kpads); + if (pads.size() != 4 || pads[0] != 0 || pads[2] != 0) { + return false; + } + pads.erase(pads.begin() + 2); + pads.erase(pads.begin() + 0); + conv_node->is_(kpads, std::move(pads)); + } + if (conv_node->hasAttribute(kstrides)) { + std::vector strides = conv_node->is(kstrides); + if (strides.size() != 2 || strides[0] != 1) { + return false; + } + strides.erase(strides.begin() + 0); + conv_node->is_(kstrides, std::move(strides)); + } + + conv_node->replaceInput(0, unsqueeze_node->inputs()[0]); + if (!tryReplacingAllUsesWith(unsqueeze_node->output(), + unsqueeze_node->inputs()[0])) { + return false; + } + if (!tryReplacingAllUsesWith(squeeze_node->output(), + squeeze_node->inputs()[0])) { + return false; + } + // unsqueeze_node->destroy(); + // squeeze_node->destroy(); + // destroy_current = NodeDestroyType::DestroyZero; + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/paddle2onnx_optimizer.cc b/paddle2onnx/optimizer/paddle2onnx_optimizer.cc new file mode 100644 index 0000000000..0900688b7f --- /dev/null +++ b/paddle2onnx/optimizer/paddle2onnx_optimizer.cc @@ -0,0 +1,240 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/optimizer/paddle2onnx_optimizer.h" +#include +#include +#include "onnxoptimizer/optimize.h" +#include "paddle2onnx/optimizer/eliminate_non_transpose.h" +#include "paddle2onnx/optimizer/fuse_constant_cast.h" +#include "paddle2onnx/optimizer/fuse_constant_reshape.h" +#include "paddle2onnx/optimizer/fuse_constant_unsqueeze.h" +#include "paddle2onnx/optimizer/fuse_paddle_conv_bias.h" +#include "paddle2onnx/optimizer/fuse_unsqueeze_conv2d_squeeze.h" +#include "paddle2onnx/optimizer/replace_add_to_identity.h" +#include "paddle2onnx/optimizer/replace_mul_to_identity.h" +#include "paddle2onnx/utils/utils.h" + +#include "paddle2onnx/converter.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +ONNX_NAMESPACE::ModelProto OptimizeOnnxModel( + const ONNX_NAMESPACE::ModelProto& model_proto) { + OptimizerOption option; + option.passes.clear(); + option.passes.push_back("eliminate_identity"); + option.passes.push_back("eliminate_deadend"); + + auto optimized_model_proto = + ONNX_NAMESPACE::optimization::Optimize(model_proto, option.passes); + + // reinfer shape for this onnx model + auto graph = optimized_model_proto.mutable_graph(); + // clear all the type info of outputs + auto output_size = graph->output_size(); + for (size_t i = 0; i < output_size; ++i) { + graph->mutable_output(i)->clear_type(); + } + + try { + shape_inference::InferShapes(optimized_model_proto); + } catch (const std::exception& e) { + P2OLogger(true) << "[ERROR] Failed to reinfer shape for this model." + << std::endl; + P2OLogger(true) << e.what() << std::endl; + } + return optimized_model_proto; +} + +std::shared_ptr LoadModelFromFile( + const std::string& file_path) { + auto model_proto = std::make_shared(); + std::ifstream fin(file_path, std::ios::in | std::ios::binary); + if (!fin.is_open()) { + P2OLogger(true) + << "Failed to read model file: " << file_path + << ", please make sure your model file or file path is valid." + << std::endl; + return model_proto; + } + std::string contents; + fin.seekg(0, std::ios::end); + contents.clear(); + contents.resize(fin.tellg()); + fin.seekg(0, std::ios::beg); + fin.read(&(contents.at(0)), contents.size()); + fin.close(); + + if (!model_proto->ParseFromString(contents)) { + P2OLogger(true) << "Failed to load ONNX model from file." << std::endl; + return model_proto; + } + return model_proto; +} + +bool OptimizePaddle2ONNX(const std::string& model_path, + const std::string& optimized_model_path, + const OptimizerOption& option) { + auto model_proto = LoadModelFromFile(model_path); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + + auto optimized_model_proto = ONNX_NAMESPACE::optimization::Optimize( + *(model_proto.get()), option.passes); + std::string optimized_model_str; + if (!optimized_model_proto.SerializeToString(&optimized_model_str)) { + P2OLogger(true) << "Failed to serialize the optimized model protobuf." + << std::endl; + return false; + } + + std::fstream out(optimized_model_path, std::ios::out | std::ios::binary); + if (!out) { + P2OLogger(true) << "Failed to write the optimized model to disk at " + << optimized_model_path << "." << std::endl; + return false; + } + out << optimized_model_str; + out.close(); + return true; +} + +bool OptimizePaddle2ONNX( + const std::string& model_path, const std::string& optimized_model_path, + const std::map>& shape_infos, + const OptimizerOption& option) { + auto model_proto = LoadModelFromFile(model_path); + if (shape_infos.size() > 0) { + // reinfer shape for this onnx model + auto graph = model_proto->mutable_graph(); + // clear all the type info of outputs + auto output_size = graph->output_size(); + for (size_t i = 0; i < output_size; ++i) { + graph->mutable_output(i)->clear_type(); + } + // reset type info of inputs + auto input_size = graph->input_size(); + for (size_t i = 0; i < input_size; ++i) { + auto input_name = graph->input(i).name(); + auto iter = shape_infos.find(input_name); + if (iter != shape_infos.end()) { + auto tensor_type_proto = + graph->mutable_input(i)->mutable_type()->mutable_tensor_type(); + tensor_type_proto->clear_shape(); + auto shape = tensor_type_proto->mutable_shape(); + for (auto& dim : iter->second) { + shape->add_dim()->set_dim_value(dim); + } + } + } + + try { + shape_inference::InferShapes(*(model_proto.get())); + } catch (const std::exception& e) { + P2OLogger(true) << "[ERROR] Failed to reinfer shape for this model." + << std::endl; + P2OLogger(true) << e.what() << std::endl; + return false; + } + } + + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + ONNX_NAMESPACE::optimization::Optimizer::passes + .registerPass(); + + auto optimized_model_proto = ONNX_NAMESPACE::optimization::Optimize( + *(model_proto.get()), option.passes); + std::string optimized_model_str; + if (!optimized_model_proto.SerializeToString(&optimized_model_str)) { + P2OLogger(true) << "Failed to serialize the optimized model protobuf." + << std::endl; + return false; + } + + std::fstream out(optimized_model_path, std::ios::out | std::ios::binary); + if (!out) { + P2OLogger(true) << "Failed to write the optimized model to disk at " + << optimized_model_path << "." << std::endl; + return false; + } + out << optimized_model_str; + out.close(); + return true; +} + +bool Paddle2ONNXFP32ToFP16(const std::string& model_path, + const std::string& converted_model_path) { + std::ifstream fin(model_path, std::ios::in | std::ios::binary); + if (!fin.is_open()) { + P2OLogger(true) + << "Failed to read model file: " << model_path + << ", please make sure your model file or file path is valid." + << std::endl; + return false; + } + std::string contents; + fin.seekg(0, std::ios::end); + contents.clear(); + contents.resize(fin.tellg()); + fin.seekg(0, std::ios::beg); + fin.read(&(contents.at(0)), contents.size()); + fin.close(); + + char* out_model_ptr = nullptr; + int size = 0; + ConvertFP32ToFP16(contents.c_str(), contents.size(), &out_model_ptr, &size); + std::string onnx_proto(out_model_ptr, out_model_ptr + size); + + std::fstream out(converted_model_path, std::ios::out | std::ios::binary); + if (!out) { + P2OLogger(true) << "Failed to write the optimized model to disk at " + << converted_model_path << "." << std::endl; + return false; + } + out << onnx_proto; + out.close(); + return true; +} + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/paddle2onnx_optimizer.h b/paddle2onnx/optimizer/paddle2onnx_optimizer.h new file mode 100644 index 0000000000..743291996a --- /dev/null +++ b/paddle2onnx/optimizer/paddle2onnx_optimizer.h @@ -0,0 +1,58 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include +#include +#include + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct OptimizerOption { + std::vector passes; + OptimizerOption() { + passes.push_back("eliminate_identity"); + passes.push_back("eliminate_deadend"); + passes.push_back("fuse_constant_reshape"); + passes.push_back("fuse_constant_unsqueeze"); + passes.push_back("fuse_paddle_conv_bias"); + passes.push_back("fuse_consecutive_transposes"); + passes.push_back("eliminate_non_transpose"); + passes.push_back("replace_mul_to_identity"); + passes.push_back("replace_add_to_identity"); + passes.push_back("fuse_matmul_add_bias_into_gemm"); + passes.push_back("eliminate_identity"); + passes.push_back("eliminate_deadend"); + } +}; + +ONNX_NAMESPACE::ModelProto OptimizeOnnxModel( + const ONNX_NAMESPACE::ModelProto& model); + +bool OptimizePaddle2ONNX(const std::string& model_path, + const std::string& optimized_model_path, + const OptimizerOption& option = OptimizerOption()); + +bool OptimizePaddle2ONNX( + const std::string& model_path, const std::string& optimized_model_path, + const std::map>& shape_infos, + const OptimizerOption& option = OptimizerOption()); + +bool Paddle2ONNXFP32ToFP16(const std::string& model_path, + const std::string& optimized_model_path); + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/replace_add_to_identity.h b/paddle2onnx/optimizer/replace_add_to_identity.h new file mode 100644 index 0000000000..cfff7fcde2 --- /dev/null +++ b/paddle2onnx/optimizer/replace_add_to_identity.h @@ -0,0 +1,122 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// X = Constant() all elements equal to 0, shape is () or (1,) +// Y = Tensor() +// C = X + Y +// After: +// C = Identity(Y) + +#include +#include +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct ReplaceAddToIdentity final : public PredicateBasedPass { + explicit ReplaceAddToIdentity() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + + std::string getPassName() const override { + return "replace_add_to_identity"; + } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kAdd && + (node->inputs()[0]->node()->kind() == kConstant || node->inputs()[1]->node()->kind() == kConstant); + } + + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + Node* add_node = n; + Node* add_ipt_0 = n->inputs()[0]->node(); + Node* add_ipt_1 = n->inputs()[1]->node(); + + if (add_ipt_0->kind() == kConstant) { + auto bias = add_ipt_0->t(kvalue); + if (bias.sizes().size() == 1 && bias.sizes()[0] != 1) { + return false; + } + if (bias.sizes().size() > 1) { + return false; + } + const auto& float_data = bias.floats(); + if (float_data.size() > 0 && fabs(float_data[0]) > 1e-05) { + return false; + } + const auto& double_data = bias.doubles(); + if (double_data.size() > 0 && fabs(double_data[0]) > 1e-05) { + return false; + } + const auto& int32_data = bias.int32s(); + if (int32_data.size() > 0 && int32_data[0] != 0) { + return false; + } + const auto& int64_data = bias.int64s(); + if (int64_data.size() > 0 && int64_data[0] != 0) { + return false; + } + if (float_data.size() == 0 && double_data.size() == 0 && int32_data.size() == 0 && int64_data.size() == 0) { + return false; + } + if (!tryReplacingAllUsesWith(add_node->output(), add_node->inputs()[1])) { + return false; + } + } else { + auto bias = add_ipt_1->t(kvalue); + if (bias.sizes().size() == 1 && bias.sizes()[0] != 1) { + return false; + } + if (bias.sizes().size() > 1) { + return false; + } + const auto& float_data = bias.floats(); + if (float_data.size() > 0 && fabs(float_data[0]) > 1e-05) { + return false; + } + const auto& double_data = bias.doubles(); + if (double_data.size() > 0 && fabs(double_data[0]) > 1e-05) { + return false; + } + const auto& int32_data = bias.int32s(); + if (int32_data.size() > 0 && int32_data[0] != 0) { + return false; + } + const auto& int64_data = bias.int64s(); + if (int64_data.size() > 0 && int64_data[0] != 0) { + return false; + } + if (float_data.size() == 0 && double_data.size() == 0 && int32_data.size() == 0 && int64_data.size() == 0) { + return false; + } + if (!tryReplacingAllUsesWith(add_node->output(), add_node->inputs()[0])) { + return false; + } + } + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/optimizer/replace_mul_to_identity.h b/paddle2onnx/optimizer/replace_mul_to_identity.h new file mode 100644 index 0000000000..64516cbeb6 --- /dev/null +++ b/paddle2onnx/optimizer/replace_mul_to_identity.h @@ -0,0 +1,122 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +// Before: +// X = Constant() all elements equal to 1, shape is () or (1,) +// Y = Tensor() +// C = X * Y +// After: +// C = Identity(Y) + +#include +#include +#include "onnx/defs/tensor_util.h" +#include "onnxoptimizer/pass.h" + +namespace ONNX_NAMESPACE { +namespace optimization { + +struct ReplaceMulToIdentity final : public PredicateBasedPass { + explicit ReplaceMulToIdentity() + : PredicateBasedPass(PassType::Fuse, PassEfficiency::Complete, + PassOptimizationType::Compute) {} + + std::string getPassName() const override { + return "replace_mul_to_identity"; + } + + bool patternMatchPredicate(Node* node) override { + return node->kind() == kMul && + (node->inputs()[0]->node()->kind() == kConstant || node->inputs()[1]->node()->kind() == kConstant); + } + + bool runTransform(Node* n, Graph& graph, + NodeDestroyType& destroy_current) override { + Node* mul_node = n; + Node* mul_ipt_0 = n->inputs()[0]->node(); + Node* mul_ipt_1 = n->inputs()[1]->node(); + + if (mul_ipt_0->kind() == kConstant) { + auto scale = mul_ipt_0->t(kvalue); + if (scale.sizes().size() == 1 && scale.sizes()[0] != 1) { + return false; + } + if (scale.sizes().size() > 1) { + return false; + } + const auto& float_data = scale.floats(); + if (float_data.size() > 0 && fabs(float_data[0] - 1.0) > 1e-05) { + return false; + } + const auto& double_data = scale.doubles(); + if (double_data.size() > 0 && fabs(double_data[0] - 1.0) > 1e-05) { + return false; + } + const auto& int32_data = scale.int32s(); + if (int32_data.size() > 0 && int32_data[0] != 1) { + return false; + } + const auto& int64_data = scale.int64s(); + if (int64_data.size() > 0 && int64_data[0] != 1) { + return false; + } + if (float_data.size() == 0 && double_data.size() == 0 && int32_data.size() == 0 && int64_data.size() == 0) { + return false; + } + if (!tryReplacingAllUsesWith(mul_node->output(), mul_node->inputs()[1])) { + return false; + } + } else { + auto scale = mul_ipt_1->t(kvalue); + if (scale.sizes().size() == 1 && scale.sizes()[0] != 1) { + return false; + } + if (scale.sizes().size() > 1) { + return false; + } + const auto& float_data = scale.floats(); + if (float_data.size() > 0 && fabs(float_data[0] - 1.0) > 1e-05) { + return false; + } + const auto& double_data = scale.doubles(); + if (double_data.size() > 0 && fabs(double_data[0] - 1.0) > 1e-05) { + return false; + } + const auto& int32_data = scale.int32s(); + if (int32_data.size() > 0 && int32_data[0] != 1) { + return false; + } + const auto& int64_data = scale.int64s(); + if (int64_data.size() > 0 && int64_data[0] != 1) { + return false; + } + if (float_data.size() == 0 && double_data.size() == 0 && int32_data.size() == 0 && int64_data.size() == 0) { + return false; + } + if (!tryReplacingAllUsesWith(mul_node->output(), mul_node->inputs()[0])) { + return false; + } + } + return true; + } +}; + +} // namespace optimization +} // namespace ONNX_NAMESPACE diff --git a/paddle2onnx/paddle_reader.cc b/paddle2onnx/paddle_reader.cc new file mode 100755 index 0000000000..4d4aca513d --- /dev/null +++ b/paddle2onnx/paddle_reader.cc @@ -0,0 +1,78 @@ +#include +#include +#include +#include +#include +#include "paddle2onnx/converter.h" +#include "paddle2onnx/mapper/exporter.h" +#include "paddle2onnx/parser/parser.h" + +namespace paddle2onnx { + +int32_t GetDataTypeFromPaddle(int dtype) { + if (dtype == P2ODataType::FP32) { + return 0; + } else if (dtype == P2ODataType::FP64) { + return 1; + } else if (dtype == P2ODataType::UINT8) { + return 2; + } else if (dtype == P2ODataType::INT8) { + return 3; + } else if (dtype == P2ODataType::INT32) { + return 4; + } else if (dtype == P2ODataType::INT64) { + return 5; + } + Assert(false, "Only support float/double/uint8/int32/int64 in PaddleReader."); + return -1; +} + +PaddleReader::PaddleReader(const char* model_buffer, int buffer_size) { + PaddleParser parser; + Assert(parser.Init(model_buffer, buffer_size), + "Failed to parse PaddlePaddle model."); + + num_inputs = parser.inputs.size(); + num_outputs = parser.outputs.size(); + for (int i = 0; i < num_inputs; ++i) { + std::strcpy(inputs[i].name, parser.inputs[i].name.c_str()); + inputs[i].rank = parser.inputs[i].Rank(); + inputs[i].shape = new int64_t[inputs[i].rank]; + for (int j = 0; j < inputs[i].rank; ++j) { + inputs[i].shape[j] = parser.inputs[i].shape[j]; + } + inputs[i].dtype = GetDataTypeFromPaddle(parser.inputs[i].dtype); + } + + for (int i = 0; i < num_outputs; ++i) { + std::strcpy(outputs[i].name, parser.outputs[i].name.c_str()); + outputs[i].rank = parser.outputs[i].Rank(); + outputs[i].shape = new int64_t[outputs[i].rank]; + for (int j = 0; j < outputs[i].rank; ++j) { + outputs[i].shape[j] = parser.outputs[i].shape[j]; + } + outputs[i].dtype = GetDataTypeFromPaddle(parser.outputs[i].dtype); + } + for (size_t i = 0; i < parser.NumOfOps(0); ++i) { + if (parser.GetOpDesc(0, i).type().find("quantize") != std::string::npos) { + is_quantize_model = true; + break; + } + } + for (size_t i = 0; i < parser.NumOfOps(0); ++i) { + if (parser.GetOpDesc(0, i).type().find("multiclass_nms3") != std::string::npos) { + has_nms = true; + auto& op = parser.GetOpDesc(0, i); + parser.GetOpAttr(op, "background_label", &nms_params.background_label); + parser.GetOpAttr(op, "keep_top_k", &nms_params.keep_top_k); + parser.GetOpAttr(op, "nms_eta", &nms_params.nms_eta); + parser.GetOpAttr(op, "nms_threshold", &nms_params.nms_threshold); + parser.GetOpAttr(op, "score_threshold", &nms_params.score_threshold); + parser.GetOpAttr(op, "nms_top_k", &nms_params.nms_top_k); + parser.GetOpAttr(op, "normalized", &nms_params.normalized); + break; + } + } +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/parser/parser.cc b/paddle2onnx/parser/parser.cc new file mode 100755 index 0000000000..d2c743a2d4 --- /dev/null +++ b/paddle2onnx/parser/parser.cc @@ -0,0 +1,862 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#include "paddle2onnx/parser/parser.h" + +#include +#include +#include +#include + +#include "paddle2onnx/utils/utils.h" + +namespace paddle2onnx { +bool PaddleParser::LoadProgram(const std::string& model) { + prog = std::make_shared(); + std::ifstream fin(model, std::ios::in | std::ios::binary); + if (!fin.is_open()) { + P2OLogger() << "Failed to read model file: " << model + << ", please make sure your model file or file path is valid." + << std::endl; + return false; + } + + std::string contents; + fin.seekg(0, std::ios::end); + contents.clear(); + contents.resize(fin.tellg()); + fin.seekg(0, std::ios::beg); + fin.read(&(contents.at(0)), contents.size()); + fin.close(); + + if (!prog->ParseFromString(contents)) { + P2OLogger() << "Failed to parse paddlepaddle model from read content." + << std::endl; + return false; + } + return true; +} + +bool PaddleParser::LoadProgram(const void* model_buffer, int64_t model_size) { + prog = std::make_shared(); + if (!prog->ParseFromArray(model_buffer, model_size)) { + P2OLogger() << "Failed to parse PaddlePaddle model from memory buffer." + << std::endl; + return false; + } + return true; +} + +bool PaddleParser::GetParamNames(std::vector* var_names) { + var_names->clear(); + int block_size = prog->blocks_size(); + for (auto i = 0; i < block_size; ++i) { + auto block = prog->blocks(i); + int vars_size = block.vars_size(); + for (auto j = 0; j < vars_size; ++j) { + auto type = block.vars(j).type().type(); + if (type == framework::proto::VarType_Type::VarType_Type_SELECTED_ROWS) { + P2OLogger() + << "VarType of SELECTED_ROWS is not supported by Paddle2ONNX." + << std::endl; + return false; + } + if (type == framework::proto::VarType_Type::VarType_Type_FEED_MINIBATCH) { + continue; + } + if (type == paddle2onnx::framework::proto::VarType_Type:: + VarType_Type_FETCH_LIST) { + continue; + } + if (type == + paddle2onnx::framework::proto::VarType_Type::VarType_Type_READER) { + continue; + } + if (type == + paddle2onnx::framework::proto::VarType_Type::VarType_Type_RAW) { + continue; + } + if (!block.vars(j).persistable()) { + continue; + } + var_names->push_back(block.vars(j).name()); + } + } + std::sort(var_names->begin(), var_names->end()); + return true; +} + +bool PaddleParser::LoadParamsFromMemoryBuffer( + const std::string& params_buffer) { + params.clear(); + int64_t total_size = params_buffer.size(); + + std::vector var_names; + GetParamNames(&var_names); + + int read_size = 0; + while (read_size < total_size) { + auto index = params.size(); + if (index >= var_names.size()) { + P2OLogger() << "Unexcepted situation happend, while reading the " + "parameters of PaddlePaddle model." + << std::endl; + return false; + } + + { + // read version, we don't need this + uint32_t version; + params_buffer.copy(reinterpret_cast(&version), sizeof(version), + read_size); + read_size += sizeof(version); + } + { + // read lod_level, we don't use it + // this has to be zero, otherwise not support + uint64_t lod_level; + params_buffer.copy(reinterpret_cast(&lod_level), sizeof(lod_level), + read_size); + read_size += sizeof(lod_level); + if (lod_level != 0) { + P2OLogger() << "Only supports weight with lod_level = 0." << std::endl; + return false; + } + } + { + // Another version, we don't use it + uint32_t version; + params_buffer.copy(reinterpret_cast(&version), sizeof(version), + read_size); + read_size += sizeof(version); + } + { + // read size of TensorDesc + int32_t size; + params_buffer.copy(reinterpret_cast(&size), sizeof(size), + read_size); + read_size += sizeof(size); + // read TensorDesc + std::unique_ptr buf(new char[size]); + params_buffer.copy(reinterpret_cast(buf.get()), size, read_size); + read_size += size; + + std::unique_ptr + tensor_desc(new paddle2onnx::framework::proto::VarType_TensorDesc()); + tensor_desc->ParseFromArray(buf.get(), size); + + Weight weight; + + int32_t numel = 1; + int32_t data_type = tensor_desc->data_type(); + weight.dtype = data_type; + for (auto i = 0; i < tensor_desc->dims().size(); ++i) { + numel *= tensor_desc->dims()[i]; + weight.shape.push_back(tensor_desc->dims()[i]); + } + + // read weight data + weight.buffer.resize(numel * PaddleDataTypeSize(data_type)); + params_buffer.copy(weight.buffer.data(), + numel * PaddleDataTypeSize(data_type), read_size); + read_size += numel * PaddleDataTypeSize(data_type); + params[var_names[index]] = weight; + } + } + return true; +} + +bool PaddleParser::LoadParamsFromMemoryBuffer(const void* params_buffer, + int64_t params_size) { + params.clear(); + + const char* read_pointer = reinterpret_cast(params_buffer); + std::vector var_names; + GetParamNames(&var_names); + + while (params_size > 0) { + auto index = params.size(); + if (index >= var_names.size()) { + P2OLogger() << "Unexcepted situation happend, while reading the " + "parameters of PaddlePaddle model." + << std::endl; + return false; + } + + { + // read version, we don't need this + uint32_t version; + std::memcpy(&version, read_pointer, sizeof(version)); + read_pointer += sizeof(version); + params_size -= sizeof(version); + } + { + // read lod_level, we don't use it + // this has to be zero, otherwise not support + uint64_t lod_level; + std::memcpy(&lod_level, read_pointer, sizeof(lod_level)); + read_pointer += sizeof(lod_level); + params_size -= sizeof(lod_level); + if (lod_level != 0) { + P2OLogger() << "Only supports weight with lod_level = 0." << std::endl; + return false; + } + } + { + // Another version, we don't use it + uint32_t version; + std::memcpy(&version, read_pointer, sizeof(version)); + read_pointer += sizeof(version); + params_size -= sizeof(version); + } + { + // read size of TensorDesc + int32_t size; + std::memcpy(&size, read_pointer, sizeof(size)); + read_pointer += sizeof(size); + params_size -= sizeof(size); + // read TensorDesc + std::unique_ptr buf(new char[size]); + std::memcpy(buf.get(), read_pointer, size); + read_pointer += size; + params_size -= size; + + std::unique_ptr + tensor_desc(new paddle2onnx::framework::proto::VarType_TensorDesc()); + tensor_desc->ParseFromArray(buf.get(), size); + + Weight weight; + + int32_t numel = 1; + int32_t data_type = tensor_desc->data_type(); + weight.dtype = data_type; + for (auto i = 0; i < tensor_desc->dims().size(); ++i) { + numel *= tensor_desc->dims()[i]; + weight.shape.push_back(tensor_desc->dims()[i]); + } + + // read weight data + weight.buffer.resize(numel * PaddleDataTypeSize(data_type)); + std::memcpy(weight.buffer.data(), read_pointer, + numel * PaddleDataTypeSize(data_type)); + read_pointer += numel * PaddleDataTypeSize(data_type); + params_size -= numel * PaddleDataTypeSize(data_type); + params[var_names[index]] = weight; + } + } + return true; +} + +bool PaddleParser::LoadParams(const std::string& path) { + params.clear(); + std::ifstream is(path, std::ios::in | std::ios::binary); + if (!is.is_open()) { + P2OLogger() << "Cannot open file " << path << " to read." << std::endl; + return false; + } + is.seekg(0, std::ios::end); + int64_t total_size = is.tellg(); + is.seekg(0, std::ios::beg); + std::vector var_names; + GetParamNames(&var_names); + + int64_t read_size = 0; + while (read_size < total_size) { + { + // read version, we don't need this + uint32_t version; + read_size += sizeof(version); + is.read(reinterpret_cast(&version), sizeof(version)); + } + { + // read lod_level, we don't use it + // this has to be zero, otherwise not support + uint64_t lod_level; + read_size += sizeof(lod_level); + is.read(reinterpret_cast(&lod_level), sizeof(lod_level)); + Assert(lod_level == 0, + "Paddle2ONNX: Only support weight with lod_level = 0."); + } + { + // Another version, we don't use it + uint32_t version; + read_size += sizeof(version); + is.read(reinterpret_cast(&version), sizeof(version)); + } + { + // read size of TensorDesc + int32_t size; + read_size += sizeof(size); + is.read(reinterpret_cast(&size), sizeof(size)); + // read TensorDesc + std::unique_ptr buf(new char[size]); + read_size += size; + is.read(reinterpret_cast(buf.get()), size); + + std::unique_ptr + tensor_desc(new paddle2onnx::framework::proto::VarType_TensorDesc()); + tensor_desc->ParseFromArray(buf.get(), size); + + Weight weight; + + int32_t numel = 1; + int32_t data_type = tensor_desc->data_type(); + weight.dtype = data_type; + for (auto i = 0; i < tensor_desc->dims().size(); ++i) { + numel *= tensor_desc->dims()[i]; + weight.shape.push_back(tensor_desc->dims()[i]); + } + + // read weight data + weight.buffer.resize(numel * PaddleDataTypeSize(data_type)); + read_size += numel * PaddleDataTypeSize(data_type); + is.read(weight.buffer.data(), numel * PaddleDataTypeSize(data_type)); + auto index = params.size(); + if (index >= var_names.size()) { + P2OLogger() << "Unexcepted situation happend while reading parameters " + "of PaddlePaddle model." + << std::endl; + return false; + } + params[var_names[index]] = weight; + } + } + is.close(); + return true; +} + +int PaddleParser::NumOfBlocks() const { return prog->blocks_size(); } + +int PaddleParser::NumOfOps(int block_idx) const { + Assert(block_idx < NumOfBlocks(), + "block_idx is greater than number of blocks."); + return prog->blocks(block_idx).ops_size(); +} + +const framework::proto::OpDesc& PaddleParser::GetOpDesc(int32_t block_idx, + int32_t op_idx) const { + Assert(block_idx < NumOfBlocks(), + "block_idx is greater than number of blocks."); + Assert(op_idx < NumOfOps(block_idx), + "op_idx is greater than number of operators."); + return prog->blocks(block_idx).ops(op_idx); +} + +void PaddleParser::InitBlock() { + // if (ExistsDumplicateTensorName()) { + // return false; + // } + GetBlocksVarName2Id(); + GetBlocksOps(); + GetGlobalBlockInputOutputInfo(); +} + +bool PaddleParser::Init(const std::string& _model, const std::string& _params) { + std::vector weights; + if (!LoadProgram(_model)) { + P2OLogger() << "Failed to load program of PaddlePaddle model." << std::endl; + return false; + } + if (_params != "") { + if (!LoadParams(_params)) { + P2OLogger() << "Failed to load parameters of PaddlePaddle model." + << std::endl; + return false; + } + } + InitBlock(); + return true; +} + +bool PaddleParser::Init(const void* model_buffer, int64_t model_size, + const void* params_buffer, int64_t params_size) { + std::vector weights; + if (!LoadProgram(model_buffer, model_size)) { + P2OLogger() << "Failed to load program of PaddlePaddle model from memory." + << std::endl; + return false; + } + if (params_buffer != nullptr && params_size > 0) { + if (!LoadParamsFromMemoryBuffer(params_buffer, params_size)) { + P2OLogger() + << "Failed to load parameters of PaddlePaddle model from memory." + << std::endl; + return false; + } + } + InitBlock(); + return true; +} + +bool PaddleParser::IsConstantTensor(const int64_t& block_id, + const std::string& tensor_name) const { + Assert(block_id < _constant_ops.size(), + "block_id is out of range while calling IsConstantTensor."); + bool is_constant = false; + { + auto iter = _constant_ops[block_id].find(tensor_name); + is_constant = (iter != _constant_ops[block_id].end()); + } + if (!is_constant) { + auto iter = params.find(tensor_name); + is_constant = (iter != params.end()); + } + return is_constant; +} + +void PaddleParser::GetBlocksVarName2Id() { + _blocks_var_name2id.clear(); + _blocks_var_name2id.resize(prog->blocks_size()); + for (auto i = 0; i < prog->blocks_size(); ++i) { + for (auto j = 0; j < prog->blocks(i).vars_size(); ++j) { + _blocks_var_name2id[i][prog->blocks(i).vars(j).name()] = j; + } + } +} + +void PaddleParser::GetBlocksOps() { + is_quantized_model = false; + _blocks_ops.clear(); + _constant_ops.clear(); + _blocks_ops.resize(prog->blocks_size()); + _constant_ops.resize(prog->blocks_size()); + for (auto i = 0; i < prog->blocks_size(); ++i) { + _blocks_ops[i].reserve(prog->blocks(i).ops_size()); + for (auto j = 0; j < prog->blocks(i).ops_size(); ++j) { + _blocks_ops[i].push_back(&prog->blocks(i).ops(j)); + if (prog->blocks(i).ops(j).type() == "assign_value") { + _constant_ops[i][prog->blocks(i).ops(j).outputs(0).arguments(0)] = j; + } + // Determine whether the model is a quantized model, if it is a quantized + // model, set is_quantized_model to be true + if (!is_quantized_model && + prog->blocks(i).ops(j).type().find("quantize") != std::string::npos) { + is_quantized_model = true; + P2OLogger() << "[Info] The Paddle model is a quantized model. " + << std::endl; + } + } + } +} + +TensorInfo PaddleParser::GetTensorInfo( + const std::string& name, + const paddle2onnx::framework::proto::BlockDesc& block) const { + auto block_idx = block.idx(); + auto iter = _blocks_var_name2id[block_idx].find(name); + if (iter == _blocks_var_name2id[block_idx].end()) { + if (block_idx == 0) { + Assert(false, + "Cannot find " + name + " in _blocks_var_name2id(global block)."); + } else { + block_idx = block.parent_idx(); + iter = _blocks_var_name2id[block_idx].find(name); + Assert(iter != _blocks_var_name2id[block_idx].end(), + "Cannot find " + name + " in _blocks_var_name2id(parent block)."); + } + } + auto var_idx = iter->second; + + // Dangerous conversion, lod tensor array is under limited supporting + // Only works in some control flow situation + if (prog->blocks(block_idx).vars(var_idx).type().has_tensor_array()) { + auto tensor_array = + prog->blocks(block_idx).vars(var_idx).type().tensor_array(); + TensorInfo info; + info.is_tensor_array = true; + info.name = name; + info.dtype = tensor_array.tensor().data_type(); + for (auto i = 0; i < tensor_array.tensor().dims_size(); ++i) { + info.shape.push_back(tensor_array.tensor().dims(i)); + } + return info; + } + + auto tensor = prog->blocks(block_idx).vars(var_idx).type().lod_tensor(); + TensorInfo info; + info.name = name; + info.dtype = tensor.tensor().data_type(); + for (auto i = 0; i < tensor.tensor().dims_size(); ++i) { + info.shape.push_back(tensor.tensor().dims(i)); + } + + return info; +} + +bool PaddleParser::OpHasInput(int64_t block_id, int64_t op_id, + const std::string& name) const { + auto& block = prog->blocks(block_id); + auto& op = block.ops(op_id); + for (auto i = 0; i < op.inputs_size(); ++i) { + if (op.inputs(i).parameter() == name) { + if (op.inputs(i).arguments_size() > 0) { + return true; + } + } + } + return false; +} + +std::vector PaddleParser::GetOpInput( + int64_t block_id, int64_t op_id, const std::string& name) const { + auto& block = prog->blocks(block_id); + auto& op = block.ops(op_id); + std::vector inputs; + bool found = false; + for (auto i = 0; i < op.inputs_size(); ++i) { + if (op.inputs(i).parameter() == name) { + for (auto j = 0; j < op.inputs(i).arguments_size(); ++j) { + inputs.push_back(GetTensorInfo(op.inputs(i).arguments(j), block)); + found = true; + } + break; + } + } + Assert(found, "Cannot find input: " + name + " in operator: " + op.type()); + return inputs; +} + +bool PaddleParser::OpHasOutput(int64_t block_id, int64_t op_id, + const std::string& name) const { + auto& block = prog->blocks(block_id); + auto& op = block.ops(op_id); + for (auto i = 0; i < op.outputs_size(); ++i) { + if (op.outputs(i).parameter() == name) { + if (op.outputs(i).arguments_size() > 0) { + return true; + } + } + } + return false; +} + +std::vector PaddleParser::GetOpOutput( + int64_t block_id, int64_t op_id, const std::string& name) const { + auto& block = prog->blocks(block_id); + auto& op = block.ops(op_id); + std::vector outputs; + bool found = false; + for (auto i = 0; i < op.outputs_size(); ++i) { + if (op.outputs(i).parameter() == name) { + for (auto j = 0; j < op.outputs(i).arguments_size(); ++j) { + outputs.push_back(GetTensorInfo(op.outputs(i).arguments(j), block)); + found = true; + } + break; + } + } + Assert(found, "Cannot find output: " + name + " in operator: " + op.type()); + return outputs; +} + +bool PaddleParser::OpIsAttrVar(int64_t block_id, int64_t op_id, + const std::string& name) const { + bool is_attr_var = false; + auto& op = GetOpDesc(block_id, op_id); + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name && IsAttrVar(op, i)) { + is_attr_var = true; + break; + } + } + return is_attr_var; +} + +std::vector PaddleParser::GetOpAttrVar( + int64_t block_id, int64_t op_id, const std::string& name) const { + auto& block = prog->blocks(block_id); + auto& op = block.ops(op_id); + + bool found = false; + std::vector inputs; + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + Assert(IsAttrVar(op, i), "Required AttrVar: " + name + + " type is Variable in operator: " + + op.type()); + // Case 1: Attribute is a single Var + if (op.attrs(i).has_var_name()) { + inputs.push_back(GetTensorInfo(op.attrs(i).var_name(), block)); + } else { // Case 2: Attribute is a List[Var] + for (int idx = 0; idx < op.attrs(i).vars_name_size(); ++idx) { + auto& var_name = op.attrs(i).vars_name(idx); + inputs.push_back(GetTensorInfo(var_name, block)); + } + } + found = true; + break; + } + } + Assert(found, "Cannot find AttrVar: " + name + " in operator: " + op.type()); + return inputs; +} + +bool PaddleParser::IsAttrVar(const paddle2onnx::framework::proto::OpDesc& op, + const int64_t& attr_id) const { + return op.attrs(attr_id).has_var_name() || + op.attrs(attr_id).vars_name_size() > 0; +} + +bool PaddleParser::OpHasAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name) const { + bool found = false; + for (auto i = 0; i < op.attrs_size(); ++i) { + // set found to true when name is in op attrs and can use GetOpAttr to get + // value + if (op.attrs(i).name() == name) { + found = true; + break; + } + } + return found; +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, int64_t* res) const { + bool found = false; + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).has_i() || op.attrs(i).has_l(), + "Cannot find int32/int64 data from attr: " + name + " in op:" + + op.type()); + if (op.attrs(i).has_i()) { + *res = (int64_t)(op.attrs(i).i()); + } else { + *res = op.attrs(i).l(); + } + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, float* res) const { + bool found = false; + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).has_f(), "Cannot find float data from attr: " + name + + " in op: " + op.type()); + *res = op.attrs(i).f(); + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, bool* res) const { + bool found = false; + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).has_b(), "Cannot find bool data from attr: " + name + + " in op: " + op.type()); + *res = op.attrs(i).b(); + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, std::string* res) const { + bool found = false; + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).has_s(), "Cannot find string data from attr: " + name + + " in op: " + op.type()); + *res = op.attrs(i).s(); + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, + std::vector* res) const { + bool found = false; + res->clear(); + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).ints_size() >= 0 || op.attrs(i).longs_size() >= 0, + "Cannot find list of int32/int64 data from attr: " + name + + " in op: " + op.type()); + if (op.attrs(i).ints_size() > 0) { + for (auto j = 0; j < op.attrs(i).ints_size(); ++j) { + res->push_back(static_cast(op.attrs(i).ints(j))); + } + } else { + for (auto j = 0; j < op.attrs(i).longs_size(); ++j) { + res->push_back(op.attrs(i).longs(j)); + } + } + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, + std::vector* res) const { + bool found = false; + res->clear(); + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).floats_size() >= 0, + "Cannot find list of float data from attr: " + name + " in op: " + + op.type()); + for (auto j = 0; j < op.attrs(i).floats_size(); ++j) { + res->push_back(static_cast(op.attrs(i).floats(j))); + } + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, + std::vector* res) const { + bool found = false; + res->clear(); + for (auto i = 0; i < op.attrs_size(); ++i) { + if (op.attrs(i).name() == name) { + found = true; + if (IsAttrVar(op, i)) break; + Assert(op.attrs(i).float64s_size() >= 0, + "Cannot find list of double data from attr: " + name + " in op: " + + op.type()); + for (auto j = 0; j < op.attrs(i).float64s_size(); ++j) { + res->push_back(static_cast(op.attrs(i).float64s(j))); + } + break; + } + } + Assert(found, "Cannot found attribute " + name + " in op: " + op.type()); +} + +void PaddleParser::GetGlobalBlockInputOutputInfo() { + inputs.clear(); + outputs.clear(); + // record the origin order of Paddle model + std::vector inputs_with_no_order; + std::vector outputs_with_no_order; + std::vector input_order; + std::vector output_order; + + for (auto i = 0; i < prog->blocks(0).ops_size(); ++i) { + if (prog->blocks(0).ops(i).type() == "fetch") { + std::string name = prog->blocks(0).ops(i).inputs(0).arguments(0); + outputs_with_no_order.push_back(GetTensorInfo(name, prog->blocks(0))); + int64_t order = -1; + GetOpAttr(prog->blocks(0).ops(i), "col", &order); + output_order.push_back(order); + } else if (prog->blocks(0).ops(i).type() == "feed") { + std::string name = prog->blocks(0).ops(i).outputs(0).arguments(0); + inputs_with_no_order.push_back(GetTensorInfo(name, prog->blocks(0))); + int64_t order = -1; + GetOpAttr(prog->blocks(0).ops(i), "col", &order); + input_order.push_back(order); + } + + // This is a trick check, due to the uncorrect shape inference of Paddle + // model + // Remove this after shape inference fixed + if (prog->blocks(0).ops(i).type() == "multiclass_nms3") { + _has_nms = true; + } + } + + // Reorder the inputs and outputs to keep same with the original Paddle model + inputs.resize(input_order.size()); + for (size_t i = 0; i < input_order.size(); ++i) { + inputs[input_order[i]] = inputs_with_no_order[i]; + } + outputs.resize(output_order.size()); + for (size_t i = 0; i < output_order.size(); ++i) { + outputs[output_order[i]] = outputs_with_no_order[i]; + } + + // Trick setting for nms, remove this after shape inference fixed + if (_has_nms) { + for (size_t i = 0; i < outputs.size(); ++i) { + if (outputs[i].shape.size() == 2) { + if (outputs[i].shape[1] == 6) { + outputs[i].shape[0] = -1; + } + } + } + } +} + +int32_t PaddleDataTypeSize(int32_t paddle_dtype) { + Assert(paddle_dtype != FP16, "Float16 is not supported."); + if (paddle_dtype == P2ODataType::BOOL) { + return sizeof(bool); + } else if (paddle_dtype == P2ODataType::INT8) { + return sizeof(int8_t); + } else if (paddle_dtype == P2ODataType::INT16) { + return sizeof(int16_t); + } else if (paddle_dtype == P2ODataType::INT32) { + return sizeof(int32_t); + } else if (paddle_dtype == P2ODataType::INT64) { + return sizeof(int64_t); + } else if (paddle_dtype == P2ODataType::FP32) { + return sizeof(float); + } else if (paddle_dtype == P2ODataType::FP64) { + return sizeof(double); + } else if (paddle_dtype == P2ODataType::UINT8) { + return sizeof(uint8_t); + } else { + Assert(false, "Unexpected data type: " + std::to_string(paddle_dtype)); + } + return -1; +} + +bool PaddleParser::ExistsDumplicateTensorName() const { + std::set names; + for (auto i = 0; i < prog->blocks(0).ops_size(); ++i) { + auto& op = prog->blocks(0).ops(i); + for (auto j = 0; j < op.outputs_size(); ++j) { + for (auto k = 0; k < op.outputs(j).arguments_size(); ++k) { + if (op.type() == "fetch") { + continue; + } + if (names.find(op.outputs(j).arguments(k)) != names.end()) { + P2OLogger() << "There's dumplicate output name: " + << op.outputs(j).arguments(k) + << " in this model, not supported yet." << std::endl; + return true; + } + names.insert(op.outputs(j).arguments(k)); + } + } + } + return false; +} +} // namespace paddle2onnx diff --git a/paddle2onnx/parser/parser.h b/paddle2onnx/parser/parser.h new file mode 100644 index 0000000000..0d15a72bc5 --- /dev/null +++ b/paddle2onnx/parser/parser.h @@ -0,0 +1,258 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include +#include +#include +#include + +#include "paddle2onnx/proto/p2o_paddle.pb.h" +#include "paddle2onnx/utils/utils.h" + +namespace paddle2onnx { + +enum P2ODataType { + BOOL, + INT16, + INT32, + INT64, + FP16, + FP32, + FP64, + X7, + X8, + X9, + X10, + X11, + X12, + X13, + X14, + X15, + X16, + X17, + X18, + X19, + UINT8, + INT8, +}; +int32_t PaddleDataTypeSize(int32_t paddle_dtype); + +struct TensorInfo { + std::string name; + std::vector shape; + int64_t Rank() const { return static_cast(shape.size()); } + int32_t dtype; + bool is_tensor_array = false; + + TensorInfo() {} + TensorInfo(const std::string& _name, const std::vector& _shape, + const int32_t& _dtype) { + name = _name; + shape.assign(_shape.begin(), _shape.end()); + dtype = _dtype; + } + + TensorInfo(const TensorInfo& info) { + name = info.name; + shape.assign(info.shape.begin(), info.shape.end()); + dtype = info.dtype; + is_tensor_array = info.is_tensor_array; + } +}; + +struct Weight { + std::vector buffer; + std::vector shape; + int32_t dtype; + + template + void set(int32_t data_type, const std::vector& dims, + const std::vector& data) { + buffer.clear(); + shape.clear(); + dtype = data_type; + buffer.resize(data.size() * PaddleDataTypeSize(dtype)); + memcpy(buffer.data(), data.data(), data.size() * PaddleDataTypeSize(dtype)); + for (auto& d : dims) { + shape.push_back(d); + } + } + template + void get(std::vector* data) const { + int64_t nums = std::accumulate(std::begin(shape), std::end(shape), 1, + std::multiplies()); + data->resize(nums); + if (dtype == P2ODataType::INT64) { + std::vector value(nums); + memcpy(value.data(), buffer.data(), nums * sizeof(int64_t)); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::INT32) { + std::vector value(nums); + memcpy(value.data(), buffer.data(), nums * sizeof(int32_t)); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::INT8) { + std::vector value(nums); + memcpy(value.data(), buffer.data(), nums * sizeof(int8_t)); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::FP32) { + std::vector value(nums); + memcpy(value.data(), buffer.data(), nums * sizeof(float)); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::FP64) { + std::vector value(nums); + memcpy(value.data(), buffer.data(), nums * sizeof(double)); + data->assign(value.begin(), value.end()); + } else { + Assert(false, + "Weight::get() only support int64/int32/int8/float32/float64."); + } + } +}; + +class PaddleParser { + public: + // recording variable name:id for each block of a program + std::vector> _blocks_var_name2id; + // recoring set of operators for each block + std::vector> + _blocks_ops; + std::shared_ptr prog; + std::map params; + std::vector inputs; + std::vector outputs; + bool is_quantized_model = false; // If the Paddle model is a quantized model, + // set is_quantized_model to be true + + bool Init(const std::string& _model, const std::string& _params = ""); + bool Init(const void* model_buffer, int64_t model_size, + const void* params_buffer = nullptr, int64_t params_size = 0); + void InitBlock(); + + int NumOfBlocks() const; + int NumOfOps(int block_idx) const; + bool HasNms() const { return _has_nms; } + const framework::proto::OpDesc& GetOpDesc(int32_t block_idx, + int32_t op_idx) const; + + bool OpHasInput(int64_t block_id, int64_t op_id, + const std::string& name) const; + bool OpHasOutput(int64_t block_id, int64_t op_id, + const std::string& name) const; + + std::vector GetOpInput(int64_t block_id, int64_t op_id, + const std::string& name) const; + std::vector GetOpOutput(int64_t block_id, int64_t op_id, + const std::string& name) const; + + bool OpIsAttrVar(int64_t block_id, int64_t op_id, + const std::string& name) const; + + std::vector GetOpAttrVar(int64_t block_id, int64_t op_id, + const std::string& name) const; + + bool OpHasAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name) const; + + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, int64_t* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, float* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, bool* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, std::string* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, std::vector* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, std::vector* res) const; + void GetOpAttr(const paddle2onnx::framework::proto::OpDesc& op, + const std::string& name, std::vector* res) const; + + bool IsConstantTensor(const int64_t& block_idx, + const std::string& tensor_name) const; + template + bool TryGetTensorValue(const int64_t& block_id, + const std::string& tensor_name, + std::vector* data) const; + + private: + // If the model has same output name in difference operators + // will fail to convert + bool IsAttrVar(const paddle2onnx::framework::proto::OpDesc& op, + const int64_t& attr_id) const; + bool ExistsDumplicateTensorName() const; + void GetBlocksVarName2Id(); + void GetBlocksOps(); + TensorInfo GetTensorInfo( + const std::string& name, + const paddle2onnx::framework::proto::BlockDesc& block) const; + void GetGlobalBlockInputOutputInfo(); + bool GetParamNames(std::vector* var_names); + bool LoadProgram(const std::string& model); + bool LoadProgram(const void* model_buffer, int64_t model_size); + bool LoadParams(const std::string& path); + bool LoadParamsFromMemoryBuffer(const std::string& buffer); + bool LoadParamsFromMemoryBuffer(const void* params_buffer, + int64_t params_size); + // This is a trick flag + // While there's a nms operator in paddle model, + // the shape inference of paddle is not correct + bool _has_nms = false; + std::vector> _constant_ops; +}; + +template +bool PaddleParser::TryGetTensorValue(const int64_t& block_id, + const std::string& tensor_name, + std::vector* data) const { + { + auto iter = params.find(tensor_name); + if (iter != params.end()) { + (iter->second).get(data); + return true; + } + } + Assert(block_id < _constant_ops.size(), + "block_id is out of range while calling TryGetTensorValue."); + auto iter = _constant_ops[block_id].find(tensor_name); + if (iter == _constant_ops[block_id].end()) { + return false; + } + Assert(iter->second < _blocks_ops[block_id].size(), + "op_idx is out of range while calling TryGetTensorValue."); + auto op = _blocks_ops[block_id][iter->second]; + int64_t dtype; + GetOpAttr(*op, "dtype", &dtype); + if (dtype == P2ODataType::INT64) { + std::vector value; + GetOpAttr(*op, "int64_values", &value); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::INT32) { + std::vector value; + GetOpAttr(*op, "int32_values", &value); + data->assign(value.begin(), value.end()); + } else if (dtype == P2ODataType::FP32) { + std::vector value; + GetOpAttr(*op, "fp32_values", &value); + data->assign(value.begin(), value.end()); + } else { + Assert( + false, + "Only support int32/int64/float32 data type in assign_value operator."); + } + return true; +} + +} // namespace paddle2onnx diff --git a/paddle2onnx/proto/CMakeLists.txt b/paddle2onnx/proto/CMakeLists.txt new file mode 100644 index 0000000000..41c2ba81e8 --- /dev/null +++ b/paddle2onnx/proto/CMakeLists.txt @@ -0,0 +1,11 @@ +if(NOT TARGET protobuf) + include(FindProtobuf) + find_package(Protobuf REQUIRED) + set(Protobuf_USE_STATIC_LIBS ON) + include_directories(${PROTOBUF_INCLUDE_DIR}) + include_directories(${CMAKE_CURRENT_SOURCE_DIR}) + set(PROTOBUF_LIBRARIES ${PROTOBUF_LIBRARIES} CACHE INTERNAL "" FORCE) +endif() + +PROTOBUF_GENERATE_CPP(PROTO_SRC PROTO_HEADER p2o_paddle.proto) +add_library(p2o_paddle_proto ${PROTO_HEADER} ${PROTO_SRC}) diff --git a/paddle2onnx/proto/p2o_paddle.proto b/paddle2onnx/proto/p2o_paddle.proto new file mode 100644 index 0000000000..6398981f63 --- /dev/null +++ b/paddle2onnx/proto/p2o_paddle.proto @@ -0,0 +1,249 @@ +/* Copyright (c) 2016 PaddlePaddle Authors. 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. */ + +syntax = "proto2"; +package paddle2onnx.framework.proto; + +// Any incompatible changes to ProgramDesc and its dependencies should +// raise the version defined version.h. +// +// Serailization and Deserialization codes should be modified in a way +// that supports old versions following the version and compatibility policy. +message Version { + optional int64 version = 1 [default = 0]; +} + +enum AttrType { + INT = 0; + FLOAT = 1; + STRING = 2; + INTS = 3; + FLOATS = 4; + STRINGS = 5; + BOOLEAN = 6; + BOOLEANS = 7; + BLOCK = 8; + LONG = 9; + BLOCKS = 10; + LONGS = 11; + FLOAT64S = 12; + VAR = 13; + VARS = 14; +} + +message ProcessMeshDesc { + required int32 id = 1; + required int32 parent_id = 2; + repeated int32 topology = 3; + repeated int32 process_group = 4; +}; + +// OpDesc describes an instance of a C++ framework::OperatorBase +// derived class type. +message OpDesc { + message Attr { + required string name = 1; + required AttrType type = 2; + optional int32 i = 3; + optional float f = 4; + optional string s = 5; + repeated int32 ints = 6; + repeated float floats = 7; + repeated string strings = 8; + optional bool b = 10; + repeated bool bools = 11; + optional int32 block_idx = 12; + optional int64 l = 13; + repeated int32 blocks_idx = 14; + repeated int64 longs = 15; + repeated double float64s = 16; + optional string var_name = 17; + repeated string vars_name = 18; + }; + + message Var { + required string parameter = 1; + repeated string arguments = 2; + }; + + required string type = 3; + repeated Var inputs = 1; + repeated Var outputs = 2; + repeated Attr attrs = 4; + optional bool is_target = 5 [default = false]; +}; + +// OpProto describes a C++ framework::OperatorBase derived class. +message OpProto { + // VarProto describes the C++ type framework::Variable. + message Var { + required string name = 1; + required string comment = 2; + + optional bool duplicable = 3 [default = false]; + optional bool intermediate = 4 [default = false]; + optional bool dispensable = 5 [default = false]; + optional bool extra = 6 [default = false]; + optional bool quant = 7 [default = false]; + } + + // AttrProto describes the C++ type Attribute. + message Attr { + required string name = 1; + required AttrType type = 2; + required string comment = 3; + // If that attribute is generated, it means the Paddle third + // language binding has responsibility to fill that + // attribute. End-User should not set that attribute. + optional bool generated = 4 [default = false]; + optional bool extra = 5 [default = false]; + optional bool quant = 6 [default = false]; + optional bool support_tensor = 7 [default = false]; + } + + required string type = 1; + repeated Var inputs = 2; + repeated Var outputs = 3; + repeated Attr attrs = 4; + required string comment = 5; +} + +message VarType { + enum Type { + // Pod Types + BOOL = 0; + INT16 = 1; + INT32 = 2; + INT64 = 3; + FP16 = 4; + FP32 = 5; + FP64 = 6; + // Tensor is used in C++. + SIZE_T = 19; + UINT8 = 20; + INT8 = 21; + BF16 = 22; + COMPLEX64 = 23; + COMPLEX128 = 24; + + // Other types that may need additional descriptions + LOD_TENSOR = 7; + SELECTED_ROWS = 8; + FEED_MINIBATCH = 9; + FETCH_LIST = 10; + STEP_SCOPES = 11; + LOD_RANK_TABLE = 12; + LOD_TENSOR_ARRAY = 13; + PLACE_LIST = 14; + READER = 15; + // Any runtime decided variable type is raw + // raw variables should manage their own allocations + // in operators like nccl_op + RAW = 17; + TUPLE = 18; + + STRING = 25; + STRINGS = 26; + VOCAB = 27; + FEED_LIST = 28; + } + + required Type type = 1; + + message TensorDesc { + // Should only be PODType. Is enforced in C++ + required Type data_type = 1; + repeated int64 dims = 2; // [UNK, 640, 480] is saved as [-1, 640, 480] + } + optional TensorDesc selected_rows = 2; + + message LoDTensorDesc { + required TensorDesc tensor = 1; + optional int32 lod_level = 2 [default = 0]; + } + optional LoDTensorDesc lod_tensor = 3; + + message LoDTensorArrayDesc { + required TensorDesc tensor = 1; + optional int32 lod_level = 2 [default = 0]; + } + optional LoDTensorArrayDesc tensor_array = 4; + + message ReaderDesc { + repeated LoDTensorDesc lod_tensor = 1; + } + optional ReaderDesc reader = 5; + + message Tuple { + repeated Type element_type = 1; + } + optional Tuple tuple = 7; + + optional TensorDesc string = 8; + optional TensorDesc strings = 9; + optional TensorDesc vocab = 10; +} + +message VarDesc { + message Attr { + required string name = 1; + required AttrType type = 2; + optional int32 i = 3; + optional string s = 4; + repeated int32 ints = 5; + }; + + required string name = 1; + required VarType type = 2; + optional bool persistable = 3 [default = false]; + // True if the variable is an input data and + // have to check the feed data shape and dtype + optional bool need_check_feed = 4 [default = false]; + optional bool is_parameter = 5 [default = false]; + optional bool stop_gradient = 6 [default = false]; + repeated Attr attrs = 7; +} + +message BlockDesc { + required int32 idx = 1; + required int32 parent_idx = 2; + repeated VarDesc vars = 3; + repeated OpDesc ops = 4; + optional int32 forward_block_idx = 5 [default = -1]; +} + +// In some cases, Paddle may perform operator definition iterations, +// and the operator uses OpVersionMap for compatibility testing. +message OpVersion { + required int32 version = 1; +} +message OpVersionMap { + message OpVersionPair { + required string op_name = 1; + required OpVersion op_version = 2; + } + repeated OpVersionPair pair = 1; +} + +// Please refer to +// https://github.com/PaddlePaddle/Paddle/blob/develop/doc/design/program.md +// for more details. +// TODO(panyx0718): A model can have multiple programs. Need a +// way to distinguish them. Maybe ID or name? +message ProgramDesc { + reserved 2, 3; // For backward compatibility. + repeated BlockDesc blocks = 1; + optional Version version = 4; + optional OpVersionMap op_version_map = 5; +} diff --git a/paddle2onnx/utils.py b/paddle2onnx/utils.py new file mode 100644 index 0000000000..a65ca483b7 --- /dev/null +++ b/paddle2onnx/utils.py @@ -0,0 +1,131 @@ +# Copyright (c) 2020 PaddlePaddle Authors. 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. + +from __future__ import absolute_import + +import importlib +import collections +import time +import os +import sys + + +def try_import(module_name): + """Try importing a module, with an informative error message on failure.""" + install_name = module_name + try: + mod = importlib.import_module(module_name) + return mod + except ImportError: + err_msg = ( + "Failed importing {}. This likely means that some modules " + "requires additional dependencies that have to be " + "manually installed (usually with `pip install {}`). ").format( + module_name, install_name) + raise ImportError(err_msg) + + +def check_model(onnx_model): + onnx = try_import('onnx') + try: + onnx.checker.check_model(onnx_model) + except Exception: + raise Exception('ONNX model is not valid.') + finally: + logging.info('ONNX model generated is valid.') + + +levels = {0: 'ERROR', 1: 'WARNING', 2: 'INFO', 3: 'DEBUG'} + + +class logging(): + log_level = 2 + + @staticmethod + def log(level=2, message="", use_color=False): + current_time = time.time() + time_array = time.localtime(current_time) + current_time = time.strftime("%Y-%m-%d %H:%M:%S", time_array) + if logging.log_level >= level: + if use_color: + print("\033[1;31;40m{} [{}]\t{}\033[0m".format( + current_time, levels[level], message).encode("utf-8") + .decode("latin1")) + else: + print("{} [{}]\t{}".format(current_time, levels[level], message) + .encode("utf-8").decode("latin1")) + sys.stdout.flush() + + @staticmethod + def debug(message="", use_color=False): + logging.log(level=3, message=message, use_color=use_color) + + @staticmethod + def info(message="", use_color=False): + logging.log(level=2, message=message, use_color=use_color) + + @staticmethod + def warning(message="", use_color=True): + logging.log(level=1, message=message, use_color=use_color) + + @staticmethod + def error(message="", use_color=True, exit=True): + logging.log(level=0, message=message, use_color=use_color) + if exit: + sys.exit(-1) + + +def compare_value(a, b, cond): + if cond == 'equal': + if a != b: + return False + return True + if cond == 'greater_than': + if a <= b: + return False + return True + if cond == 'greater_equal': + if a < b: + return False + return True + if cond == 'less_equal': + if a > b: + return False + return True + if cond == 'less_than': + if a >= b: + return False + return True + + +def compare_attr(actual_value, target_value, attr_name, cond='equal'): + if not compare_value(actual_value, target_value, cond): + raise ValueError('Support {} {} {}, actually got {}=={}.'.format( + attr_name, cond, target_value, attr_name, actual_value)) + + +def compare_attr_between_dims(attr, dims, attr_name, cond='equal'): + if not compare_value(attr[dims[0]], attr[dims[1]], cond): + expect_info = 'Support {}[{}] {} {}[{}], '.format( + attr_name, dims[0], cond, attr_name, dims[1]) + actual_info = 'actually got {}[{}]=={}, not {} {}[{}]=={}.'.format( + attr_name, dims[0], attr[dims[0]], cond, attr_name, dims[1], + attr[dims[1]]) + raise ValueError(expect_info + actual_info) + + +def require_fixed_shape(op_name=None): + logging.error( + "[{}]Fixed shape is required, refer this doc for more information: https://github.com/PaddlePaddle/Paddle2ONNX/blob/develop/docs/zh/FAQ.md". + format(op_name)) diff --git a/paddle2onnx/utils/utils.h b/paddle2onnx/utils/utils.h new file mode 100644 index 0000000000..463760703b --- /dev/null +++ b/paddle2onnx/utils/utils.h @@ -0,0 +1,80 @@ +// Copyright (c) 2022 PaddlePaddle Authors. 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. + +#pragma once +#include + +#include +#include +#include + +namespace paddle2onnx { + +inline void Assert(bool condition, const std::string& message) { + if (!condition) { + fprintf(stderr, "[ERROR] %s\n", message.c_str()); + std::abort(); + } +} + +inline const std::string RequireOpset(const int32_t& opset_version) { + return "Requires the minimal opset version of " + + std::to_string(opset_version) + "."; +} + +class P2OLogger { + public: + P2OLogger() { + line_ = ""; + prefix_ = "[Paddle2ONNX]"; + verbose_ = true; + } + explicit P2OLogger(bool verbose, + const std::string& prefix = "[Paddle2ONNX]") { + verbose_ = verbose; + line_ = ""; + prefix_ = prefix; + } + + template + P2OLogger& operator<<(const T& val) { + if (!verbose_) { + return *this; + } + std::stringstream ss; + ss << val; + line_ += ss.str(); + return *this; + } + P2OLogger& operator<<(std::ostream& (*os)(std::ostream&)) { + if (!verbose_) { + return *this; + } + std::cout << prefix_ << " " << line_ << std::endl; + line_ = ""; + return *this; + } + ~P2OLogger() { + if (!verbose_ && line_ != "") { + std::cout << line_ << std::endl; + } + } + + private: + std::string line_; + std::string prefix_; + bool verbose_ = true; +}; + +} // namespace paddle2onnx diff --git a/scripts/clean_sdk.sh b/scripts/clean_sdk.sh new file mode 100644 index 0000000000..bb90b7a1e9 --- /dev/null +++ b/scripts/clean_sdk.sh @@ -0,0 +1,7 @@ +origin_install_dir=$1 + +rm -rf $origin_install_dir/include/onnx $origin_install_dir/include/paddle2onnx +mv $origin_install_dir/lib $origin_install_dir/lib_bak +mkdir $origin_install_dir/lib +cp $origin_install_dir/lib_bak/*fastdeploy* $origin_install_dir/lib +rm -rf $origin_install_dir/lib_bak diff --git a/third_party/onnx/.azure-pipelines/Linux-CI.yml b/third_party/onnx/.azure-pipelines/Linux-CI.yml new file mode 100644 index 0000000000..dd200ba335 --- /dev/null +++ b/third_party/onnx/.azure-pipelines/Linux-CI.yml @@ -0,0 +1,140 @@ +trigger: +- main + +jobs: +- job: 'Test' + pool: + vmImage: 'Ubuntu-18.04' + strategy: + matrix: + py39-ml-debug: + python.version: '3.9' + onnx_ml: 1 + onnx_debug: 1 + onnx_lite: 0 + py38: + python.version: '3.8' + onnx_ml: 0 + onnx_debug: 0 + onnx_lite: 1 + py38-ml: + python.version: '3.8' + onnx_ml: 1 + onnx_debug: 0 + onnx_lite: 1 + py37: + python.version: '3.7' + onnx_ml: 0 + onnx_debug: 0 + onnx_lite: 1 + py37-ml: + python.version: '3.7' + onnx_ml: 1 + onnx_debug: 0 + onnx_lite: 1 + maxParallel: 6 + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '$(python.version)' + addToPath: true + + - script: | + python -m pip -q install virtualenv + python -m virtualenv py$(python.version) + source py$(python.version)/bin/activate + + source workflow_scripts/protobuf/build_protobuf_unix.sh $(nproc) + + python -m pip install -q --upgrade pip + python -m pip install -q -r requirements-release.txt + + sudo apt-get install -qq -o=Dpkg::Use-Pty=0 -y --no-install-recommends dos2unix + git submodule update --init --recursive + export ONNX_BUILD_TESTS=1 + if [ '$(onnx_debug)' == '1' ]; then + export DEBUG=1 + fi + if [ '$(onnx_ml)' == '1' ]; then + export ONNX_ML=1 + fi + export CMAKE_ARGS="-DONNXIFI_DUMMY_BACKEND=ON -DONNX_WERROR=ON" + if [ '$(onnx_lite)' == '1' ]; then + export CMAKE_ARGS="${CMAKE_ARGS} -DONNX_USE_LITE_PROTO=ON" + fi + export ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI + python setup.py --quiet install + displayName: 'Install ONNX and dependencies' + + - script: | + source py$(python.version)/bin/activate + + # style check (flake8 and mypy) + pip install .[lint] + bash tools/style.sh + if [ $? -ne 0 ]; then + echo "style check failed" + exit 1 + fi + + # check line endings to be UNIX + find . -type f -regextype posix-extended -regex '.*\.(py|cpp|md|h|cc|proto|proto3|in)' | xargs dos2unix --quiet + git status + git diff --exit-code + + # check auto-gen files up-to-date + python onnx/defs/gen_doc.py + python onnx/gen_proto.py -l + python onnx/gen_proto.py -l --ml + python onnx/backend/test/stat_coverage.py + + git status + git diff --exit-code -- . ':(exclude)onnx/onnx-data.proto' ':(exclude)onnx/onnx-data.proto3' + if [ $? -ne 0 ]; then + echo "git diff returned failures" + exit 1 + fi + + # Do not hardcode onnx's namespace in the c++ source code, so that + # other libraries who statically link with onnx can hide onnx symbols + # in a private namespace. + ! grep -R --include='*.cc' --include='*.h' 'namespace onnx' . + ! grep -R --include='*.cc' --include='*.h' 'onnx::' . + + pytest + if [ $? -ne 0 ]; then + echo "pytest failed" + exit 1 + fi + + # onnx c++ API tests + export LD_LIBRARY_PATH="./.setuptools-cmake-build/:$LD_LIBRARY_PATH" + ./.setuptools-cmake-build/onnx_gtests + if [ $? -ne 0 ]; then + echo "onnx_gtests failed" + exit 1 + fi + + ./.setuptools-cmake-build/onnxifi_test_driver_gtests onnx/backend/test/data/node + if [ $? -ne 0 ]; then + echo "onnxifi_test_driver_gtests failed" + exit 1 + fi + + # Mypy only works with our generated _pb.py files when we install in develop mode, so let's do that + python -m pip uninstall -y onnx + rm -rf .setuptools-cmake-build + python -m pip install -q . + + displayName: 'Run ONNX tests' + + - script: | + source py$(python.version)/bin/activate + # onnx.checker all existing backend data + python workflow_scripts/test_generated_backend.py + # onnx.checker all generated backend data + python onnx/backend/test/cmd_tools.py generate-data + python workflow_scripts/test_generated_backend.py + + displayName: Test backend test data diff --git a/third_party/onnx/.azure-pipelines/MacOS-CI.yml b/third_party/onnx/.azure-pipelines/MacOS-CI.yml new file mode 100644 index 0000000000..e5ec5e930d --- /dev/null +++ b/third_party/onnx/.azure-pipelines/MacOS-CI.yml @@ -0,0 +1,105 @@ +trigger: +- main + +jobs: +- job: 'Test' + pool: + vmImage: 'macOS-10.15' + strategy: + matrix: + py39: + python.version: '3.9' + onnx_ml: 0 + onnx_debug: 0 + onnx_lite: 0 + py38: + python.version: '3.8' + onnx_ml: 0 + onnx_debug: 0 + onnx_lite: 1 + py38-ml: + python.version: '3.8' + onnx_ml: 1 + onnx_debug: 0 + onnx_lite: 1 + py38-ml-debug: + python.version: '3.8' + onnx_ml: 1 + onnx_debug: 1 + onnx_lite: 0 + py37-ml-debug: + python.version: '3.7' + onnx_ml: 1 + onnx_debug: 1 + onnx_lite: 0 + maxParallel: 6 + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '$(python.version)' + + - script: | + # Install protobuf 3.16.0 from source + export NUM_CORES=`sysctl -n hw.logicalcpu` + source workflow_scripts/protobuf/build_protobuf_unix.sh $NUM_CORES $(pwd)/protobuf/protobuf_install + + git submodule update --init --recursive + python -m pip install -q --upgrade pip + python -m pip install -q -r requirements-release.txt + export ONNX_BUILD_TESTS=1 + if [ '$(onnx_debug)' == '1' ]; then + export DEBUG=1 + fi + if [ '$(onnx_ml)' == '1' ]; then + export ONNX_ML=1 + fi + export CMAKE_ARGS="-DONNXIFI_DUMMY_BACKEND=ON -DONNX_WERROR=ON" + if [ '$(onnx_lite)' == '1' ]; then + export CMAKE_ARGS="${CMAKE_ARGS} -DONNX_USE_LITE_PROTO=ON" + fi + export ONNX_NAMESPACE=ONNX_NAMESPACE_FOO_BAR_FOR_CI + python setup.py -q install + displayName: 'Install dependencies and ONNX' + + - script: | + # check auto-gen files up-to-date + python onnx/defs/gen_doc.py + python onnx/gen_proto.py -l + python onnx/gen_proto.py -l --ml + python onnx/backend/test/stat_coverage.py + + git status + git diff --exit-code -- . ':(exclude)onnx/onnx-data.proto' ':(exclude)onnx/onnx-data.proto3' + if [ $? -ne 0 ]; then + echo "git diff returned failures" + exit 1 + fi + + # Do not hardcode onnx's namespace in the c++ source code, so that + # other libraries who statically link with onnx can hide onnx symbols + # in a private namespace. + ! grep -R --include='*.cc' --include='*.h' 'namespace onnx' . + ! grep -R --include='*.cc' --include='*.h' 'onnx::' . + + pytest + if [ $? -ne 0 ]; then + echo "pytest failed" + exit 1 + fi + + # onnx c++ API tests + export LD_LIBRARY_PATH="./.setuptools-cmake-build/:$LD_LIBRARY_PATH" + ./.setuptools-cmake-build/onnx_gtests + if [ $? -ne 0 ]; then + echo "onnx_gtests failed" + exit 1 + fi + + ./.setuptools-cmake-build/onnxifi_test_driver_gtests onnx/backend/test/data/node + if [ $? -ne 0 ]; then + echo "onnxifi_test_driver_gtests failed" + exit 1 + fi + + displayName: 'Run ONNX Tests' diff --git a/third_party/onnx/.azure-pipelines/Windows-CI.yml b/third_party/onnx/.azure-pipelines/Windows-CI.yml new file mode 100644 index 0000000000..38a2e6f176 --- /dev/null +++ b/third_party/onnx/.azure-pipelines/Windows-CI.yml @@ -0,0 +1,77 @@ +trigger: +- main + +jobs: + +- job: 'Test' + pool: + vmImage: 'windows-2019' + strategy: + matrix: + py39: + python.version: '3.9' + onnx_ml: 0 + onnx_verify_proto: 0 + py39_verify_proto: + python.version: '3.9' + onnx_ml: 0 + onnx_verify_proto: 1 + py38: + python.version: '3.8' + onnx_ml: 0 + onnx_verify_proto: 0 + py37: + python.version: '3.7' + onnx_ml: 0 + onnx_verify_proto: 0 + py37_onnx_ml: + python.version: '3.7' + onnx_ml: 1 + onnx_verify_proto: 0 + maxParallel: 4 + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '$(python.version)' + architecture: 'x64' + + - powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts" + displayName: Add conda to PATH + + - script: | + conda create --yes --quiet --name py$(python.version) python=$(python.version) + conda install -n py$(python.version) -y -c conda-forge numpy libprotobuf=3.16.0 + displayName: Create Anaconda environment + + - script: | + call activate py$(python.version) + python -m pip install -q --upgrade pip + python -m pip install -q -r requirements-release.txt + + git submodule update --init --recursive + set ONNX_BUILD_TESTS=1 + set ONNX_ML=$(onnx_ml) + set CMAKE_ARGS=-DONNX_USE_PROTOBUF_SHARED_LIBS=ON -DONNX_USE_LITE_PROTO=ON -DONNX_WERROR=ON + + python setup.py -q install + pytest + IF NOT %ERRORLEVEL% EQU 0 ( + @echo "pytest failed" + EXIT 1 + ) + + python onnx/defs/gen_doc.py + python onnx/gen_proto.py -l + python onnx/gen_proto.py -l --ml + + git diff --exit-code -- . :(exclude)onnx/onnx-data.proto :(exclude)onnx/onnx-data.proto3 + IF NOT %ERRORLEVEL% EQU 0 ( + @echo "git diff returned failures" + EXIT 1 + ) + + rm -rf .setuptools-cmake-build + + + displayName: Install and test ONNX diff --git a/third_party/onnx/.clang-format b/third_party/onnx/.clang-format new file mode 100644 index 0000000000..f5f354e5fd --- /dev/null +++ b/third_party/onnx/.clang-format @@ -0,0 +1,101 @@ +--- +Language: Cpp +AccessModifierOffset: -1 +AlignAfterOpenBracket: AlwaysBreak +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Left +AlignOperands: false +AlignTrailingComments: false +AllowAllParametersOfDeclarationOnNextLine: false +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: Empty +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: true +BinPackArguments: false +BinPackParameters: false +BraceWrapping: + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeInheritanceComma: false +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: false +ColumnLimit: 120 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - FOR_EACH_RANGE + - FOR_EACH + - BOOST_FOREACH +IncludeCategories: + - Regex: '^<.*\.h(pp)?>' + Priority: 1 + - Regex: '^<.*' + Priority: 2 + - Regex: '.*' + Priority: 3 +IncludeIsMainRegex: '(Test)?$' +IndentCaseLabels: true +IndentWidth: 2 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: false +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: false +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 1 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 200 +PointerAlignment: Left +ReflowComments: true +SortIncludes: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +TabWidth: 8 +UseTab: Never \ No newline at end of file diff --git a/third_party/onnx/.gitattributes b/third_party/onnx/.gitattributes new file mode 100644 index 0000000000..46239f68ad --- /dev/null +++ b/third_party/onnx/.gitattributes @@ -0,0 +1 @@ +*.pb binary linguist-detectable=false diff --git a/third_party/onnx/.gitignore b/third_party/onnx/.gitignore new file mode 100644 index 0000000000..cf345e7055 --- /dev/null +++ b/third_party/onnx/.gitignore @@ -0,0 +1,104 @@ +## General + +# Compiled Object files +*.slo +*.lo +*.o +*.cuo + +# Compiled Dynamic libraries +*.so +*.dylib +*.pyd + +# Compiled Static libraries +*.lai +*.la +*.a + +# Compiled protocol buffers +*.pb.h +*.pb.cc +onnx/*_pb2.py +onnx/*_pb.py +onnx/*_pb2.pyi +onnx/*_pb.pyi + +# Compiled python +*.pyc + +# Compiled MATLAB +*.mex* + +# IPython notebook checkpoints +.ipynb_checkpoints + +# Editor temporaries +*.swn +*.swo +*.swp +*~ + +# Sublime Text settings +*.sublime-workspace +*.sublime-project + +# Eclipse Project settings +*.*project +.settings + +# QtCreator files +*.user + +# PyCharm files +.idea + +# Visual Studio Code files +.vscode + +# OSX dir files +.DS_Store + +## ONNX + +# build, distribute, and bins (+ python proto bindings) +build +build_* +.build_debug/* +.build_release/* +.setuptools-cmake-build/* + +# setup.py intermediates +.eggs +dist +onnx.egg-info +*.ninja +.ninja_deps +.ninja_log +compile_commands.json + +# generated files +onnx/version.py +compile_commands.json +tools/protoc-gen-mypy.sh + +# test generated files +.cache +.coverage +onnx/examples/.coverage.nbval +.pytest_cache +test_report + +# autocomplete +.ycm_extra_conf.py + +# test coverage data files +*.gcov + +.mypy_cache +virtualenv +venv + +# direnv, posh-direnv +.envrc +.psenvrc diff --git a/third_party/onnx/.gitmodules b/third_party/onnx/.gitmodules new file mode 100644 index 0000000000..2b647e1a87 --- /dev/null +++ b/third_party/onnx/.gitmodules @@ -0,0 +1,7 @@ +[submodule "third_party/pybind11"] + path = third_party/pybind11 + url = https://github.com/pybind/pybind11.git + branch = master +[submodule "third_party/benchmark"] + path = third_party/benchmark + url = https://github.com/google/benchmark.git diff --git a/third_party/onnx/.lgtm.yml b/third_party/onnx/.lgtm.yml new file mode 100644 index 0000000000..fa1cabd919 --- /dev/null +++ b/third_party/onnx/.lgtm.yml @@ -0,0 +1,12 @@ +# By default, C/C++ extraction from LGTM.com uses Python 2 +# Add this file to make it use Python 3 +# Build protobuf from source with -fPIC is required here to prevent protobuf symbol error +extraction: + cpp: + before_index: + # Always use Python 3 + - cp `which python3` $LGTM_WORKSPACE/python + - PATH=$LGTM_WORKSPACE:$PATH + # Build protobuf from source with -fPIC + - mkdir protobuf && cd protobuf + - source ../workflow_scripts/protobuf/build_protobuf_unix.sh $(nproc) $(pwd)/protobuf_install diff --git a/third_party/onnx/CMakeLists.txt b/third_party/onnx/CMakeLists.txt new file mode 100644 index 0000000000..f914e78b1c --- /dev/null +++ b/third_party/onnx/CMakeLists.txt @@ -0,0 +1,714 @@ +# Minimum CMake required +cmake_minimum_required(VERSION 3.1) +include(cmake/Utils.cmake) +# Set default build type +if(NOT CMAKE_BUILD_TYPE) + message(STATUS "Build type not set - defaulting to Release") + set( + CMAKE_BUILD_TYPE "Release" + CACHE + STRING + "Choose the type of build from: Debug Release RelWithDebInfo MinSizeRel Coverage." + FORCE) +endif() +cmake_policy(SET CMP0063 NEW) + +# Project +project(onnx C CXX) +option(ONNX_BUILD_BENCHMARKS "Build ONNX micro-benchmarks" OFF) +option(ONNX_USE_PROTOBUF_SHARED_LIBS "Build ONNX using protobuf shared library. Sets PROTOBUF_USE_DLLS CMAKE Flag and Protobuf_USE_STATIC_LIBS. " OFF) + +option(BUILD_ONNX_PYTHON "Build Python binaries" OFF) +option(ONNX_GEN_PB_TYPE_STUBS "Generate protobuf python type stubs" ON) +option(ONNX_WERROR "Build with Werror" OFF) +option(ONNX_COVERAGE "Build with coverage instrumentation" OFF) +option(ONNX_BUILD_TESTS "Build ONNX C++ APIs Tests" OFF) +option(ONNX_USE_LITE_PROTO "Use lite protobuf instead of full." OFF) +option(ONNXIFI_ENABLE_EXT "Enable onnxifi extensions." OFF) +option(ONNX_DISABLE_EXCEPTIONS "Disable exception handling." OFF) +option(ONNX_DISABLE_STATIC_REGISTRATION "Disable static registration for onnx operator schemas." OFF) + +if(NOT DEFINED ONNX_ML) + if(DEFINED ENV{ONNX_ML}) + set(DEFAULT_ONNX_ML $ENV{ONNX_ML}) + else() + set(DEFAULT_ONNX_ML ON) + endif() + option(ONNX_ML "Enable traditional ML API." ${DEFAULT_ONNX_ML}) +endif() + +option(ONNXIFI_DUMMY_BACKEND "Use dummy backend in onnxifi test driver." OFF) + +if(NOT DEFINED ONNX_VERIFY_PROTO3) + if(DEFINED ENV{ONNX_VERIFY_PROTO3}) + set(PROTO3_ENABLED $ENV{ONNX_VERIFY_PROTO3}) + else() + set(PROTO3_ENABLED OFF) + endif() + option(ONNX_VERIFY_PROTO3 "Generate code by proto3" ${PROTO3_ENABLED}) +endif() + +if(ONNX_USE_PROTOBUF_SHARED_LIBS) + if(MSVC) + #TODO: if ONNX_USE_MSVC_STATIC_RUNTIME is ON, it may not work + add_definitions(-DPROTOBUF_USE_DLLS) + endif() + set(Protobuf_USE_STATIC_LIBS OFF) +else() + set(Protobuf_USE_STATIC_LIBS ON) +endif() + +# Set C++11 as standard for the whole project +if(NOT MSVC) + set(CMAKE_CXX_STANDARD 11) +endif(NOT MSVC) + +set(ONNX_ROOT ${PROJECT_SOURCE_DIR}) + +# Read ONNX version +file(READ "${PROJECT_SOURCE_DIR}/VERSION_NUMBER" ONNX_VERSION) +string(STRIP "${ONNX_VERSION}" ONNX_VERSION) + +if(NOT MSVC) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0") + if(ONNX_COVERAGE) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage") + endif() +endif() + +if(NOT ONNX_NAMESPACE) + set(ONNX_NAMESPACE "onnx") +endif() + +if(MSVC) + if(NOT ONNX_DISABLE_EXCEPTIONS) + string(APPEND CMAKE_CXX_FLAGS " /EHsc /wd26812") + string(APPEND CMAKE_C_FLAGS " /EHsc /wd26812") + endif() +endif() + +if(ONNX_DISABLE_EXCEPTIONS) + add_compile_definitions("ONNX_NO_EXCEPTIONS") + # Disable C++ exceptions. + if(MSVC) + string(REGEX REPLACE "/EHsc" "/EHs-c-" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") + add_definitions(-D_HAS_EXCEPTIONS=0) + else() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-unwind-tables -fno-asynchronous-unwind-tables") + endif() +endif() + +if(ONNX_WERROR) + if(MSVC) + string(APPEND CMAKE_CXX_FLAGS " /WX") + string(APPEND CMAKE_C_FLAGS " /WX") + else() + string(APPEND CMAKE_CXX_FLAGS " -Werror") + string(APPEND CMAKE_C_FLAGS " -Werror -Wno-error=incompatible-pointer-types") + endif() +endif() + +# find_package Python has replaced PythonInterp and PythonLibs since cmake 3.12 +# Use the following command in the future; now this is only compatible with the latest pybind11 +# find_package(Python ${PY_VERSION} COMPONENTS Interpreter Development REQUIRED) +find_package(PythonInterp ${PY_VERSION} REQUIRED) +find_package(PythonLibs ${PY_VERSION}) + +if(CMAKE_SYSTEM_NAME STREQUAL "AIX") + set(CMAKE_NO_SYSTEM_FROM_IMPORTED 1) +endif() + +if(ONNX_BUILD_TESTS) + list(APPEND CMAKE_MODULE_PATH ${ONNX_ROOT}/cmake/external) + include(googletest) +endif() + +if((ONNX_USE_LITE_PROTO AND TARGET protobuf::libprotobuf-lite) OR ((NOT ONNX_USE_LITE_PROTO) AND TARGET protobuf::libprotobuf)) + # Sometimes we need to use protoc compiled for host architecture while linking + # libprotobuf against target architecture. See https://github.com/caffe2/caffe + # 2/blob/96f35ad75480b25c1a23d6e9e97bccae9f7a7f9c/cmake/ProtoBuf.cmake#L92-L99 + if(EXISTS "${ONNX_CUSTOM_PROTOC_EXECUTABLE}") + message(STATUS "Using custom protoc executable") + set(ONNX_PROTOC_EXECUTABLE ${ONNX_CUSTOM_PROTOC_EXECUTABLE}) + else() + set(ONNX_PROTOC_EXECUTABLE $) + endif() +else() + # Customized version of find Protobuf. We need to avoid situations mentioned + # in https://github.com/caffe2/caffe2/blob/b7d983f255ef5496474f1ea188edb5e0ac4 + # 42761/cmake/ProtoBuf.cmake#L82-L92 The following section is stolen from + # cmake/ProtoBuf.cmake in Caffe2 + find_program(Protobuf_PROTOC_EXECUTABLE + NAMES protoc + DOC "The Google Protocol Buffers Compiler") + + # Only if protoc was found, seed the include directories and libraries. We + # assume that protoc is installed at PREFIX/bin. We use get_filename_component + # to resolve PREFIX. + if(Protobuf_PROTOC_EXECUTABLE) + set(ONNX_PROTOC_EXECUTABLE ${Protobuf_PROTOC_EXECUTABLE}) + get_filename_component(_PROTOBUF_INSTALL_PREFIX + ${Protobuf_PROTOC_EXECUTABLE} DIRECTORY) + get_filename_component(_PROTOBUF_INSTALL_PREFIX + ${_PROTOBUF_INSTALL_PREFIX}/.. REALPATH) + find_library(Protobuf_PROTOC_LIBRARY + NAMES protoc + PATHS ${_PROTOBUF_INSTALL_PREFIX}/lib + NO_DEFAULT_PATH) + if(ONNX_USE_LITE_PROTO) + find_library(Protobuf_LITE_LIBRARY + NAMES protobuf-lite + PATHS ${_PROTOBUF_INSTALL_PREFIX}/lib + NO_DEFAULT_PATH) + else() + find_library(Protobuf_LIBRARY + NAMES protobuf + PATHS ${_PROTOBUF_INSTALL_PREFIX}/lib + NO_DEFAULT_PATH) + endif(ONNX_USE_LITE_PROTO) + find_path(Protobuf_INCLUDE_DIR google/protobuf/service.h + PATHS ${_PROTOBUF_INSTALL_PREFIX}/include + NO_DEFAULT_PATH) + find_package(Protobuf REQUIRED) + endif() +endif() + +# Build the libraries with -fPIC +set(CMAKE_POSITION_INDEPENDENT_CODE ON) + +# function(RELATIVE_PROTOBUF_GENERATE_CPP SRCS HDRS ROOT_DIR) from https://githu +# b.com/tensorflow/tensorflow/blob/d2c3b873c6f8ff999a2e4ee707a84ff00d9c15a5/tens +# orflow/contrib/cmake/tf_core_framework.cmake to solve the problem that +# customized dir can't be specified when calling PROTOBUF_GENERATE_CPP. +function(RELATIVE_PROTOBUF_GENERATE_CPP NAME SRCS HDRS ROOT_DIR DEPEND) + if(NOT ARGN) + message( + SEND_ERROR + "Error: RELATIVE_PROTOBUF_GENERATE_CPP() called without any proto files" + ) + return() + endif() + + # Add ONNX_API prefix to protobuf classes and methods in all cases + set(ONNX_DLLEXPORT_STR "dllexport_decl=ONNX_API:") + + set(${SRCS}) + set(${HDRS}) + + set(GEN_PROTO_PY ${ROOT_DIR}/onnx/gen_proto.py) + foreach(INFILE ${ARGN}) + set(ABS_FILE ${ROOT_DIR}/${INFILE}) + get_filename_component(FILE_DIR ${ABS_FILE} DIRECTORY) + get_filename_component(FILE_WE ${INFILE} NAME_WE) + # "onnx-data" check is because we do not want to create/compile an "onnx-data-ml.proto" file + if(ONNX_ML AND NOT(FILE_WE STREQUAL "onnx-data")) + if(ONNX_NAMESPACE STREQUAL "onnx") + set(GENERATED_FILE_WE "${FILE_WE}-ml") + else() + set(GENERATED_FILE_WE "${FILE_WE}_${ONNX_NAMESPACE}-ml") + endif() + else() + if(ONNX_NAMESPACE STREQUAL "onnx") + set(GENERATED_FILE_WE "${FILE_WE}") + else() + set(GENERATED_FILE_WE "${FILE_WE}_${ONNX_NAMESPACE}") + endif() + endif() + file(RELATIVE_PATH REL_DIR ${ROOT_DIR} ${FILE_DIR}) + set(OUTPUT_PROTO_DIR "${CMAKE_CURRENT_BINARY_DIR}/${REL_DIR}") + + set(OUTPUT_PB_HEADER "${OUTPUT_PROTO_DIR}/${GENERATED_FILE_WE}.pb.h") + set(OUTPUT_PB_SRC "${OUTPUT_PROTO_DIR}/${GENERATED_FILE_WE}.pb.cc") + set(GENERATED_PROTO "${OUTPUT_PROTO_DIR}/${GENERATED_FILE_WE}.proto") + if(NOT (ONNX_NAMESPACE STREQUAL "onnx")) + # We need this dummy header generated by gen_proto.py when ONNX_NAMESPACE + # is not onnx + list(APPEND ${HDRS} "${OUTPUT_PROTO_DIR}/${GENERATED_FILE_WE}.pb.h") + endif() + list(APPEND ${SRCS} "${OUTPUT_PB_SRC}") + list(APPEND ${HDRS} "${OUTPUT_PB_HEADER}") + + if(NOT EXISTS "${OUTPUT_PROTO_DIR}") + file(MAKE_DIRECTORY "${OUTPUT_PROTO_DIR}") + endif() + + set(GEN_PROTO_ARGS + -p + "${ONNX_NAMESPACE}" + -o + "${OUTPUT_PROTO_DIR}" + "${FILE_WE}") + if(ONNX_ML) + list(APPEND GEN_PROTO_ARGS -m) + endif() + if(ONNX_USE_LITE_PROTO) + list(APPEND GEN_PROTO_ARGS -l) + endif() + if(ONNX_VERIFY_PROTO3) + if(NOT ONNX_PROTOC_EXECUTABLE) + message(FATAL_ERROR "Protobuf compiler not found") + endif() + list(APPEND GEN_PROTO_ARGS --protoc_path) + list(APPEND GEN_PROTO_ARGS "${ONNX_PROTOC_EXECUTABLE}") + endif() + + add_custom_command(OUTPUT "${GENERATED_PROTO}" + COMMAND "${PYTHON_EXECUTABLE}" "${GEN_PROTO_PY}" + ARGS ${GEN_PROTO_ARGS} + DEPENDS ${INFILE} + COMMENT "Running gen_proto.py on ${INFILE}" + VERBATIM) + message("Generated: ${GENERATED_PROTO}") + set(PROTOC_ARGS + ${GENERATED_PROTO} + -I + ${CMAKE_CURRENT_BINARY_DIR} + --cpp_out + ${ONNX_DLLEXPORT_STR}${CMAKE_CURRENT_BINARY_DIR}) + if(BUILD_ONNX_PYTHON) + list(APPEND PROTOC_ARGS --python_out + ${CMAKE_CURRENT_BINARY_DIR}) + if(ONNX_GEN_PB_TYPE_STUBS) + # Haven't figured out how to generate mypy stubs on Windows yet + if(NOT WIN32) + # use PYTHON_EXECUTABLE to python protoc-gen-mypy.py + configure_file( + ${ROOT_DIR}/tools/protoc-gen-mypy.sh.in + ${PROJECT_BINARY_DIR}/tools/protoc-gen-mypy.sh + @ONLY) + execute_process(COMMAND chmod +x ${PROJECT_BINARY_DIR}/tools/protoc-gen-mypy.sh) + configure_file( + ${ROOT_DIR}/tools/protoc-gen-mypy.py + ${PROJECT_BINARY_DIR}/tools/protoc-gen-mypy.py + COPYONLY) + set(PROTOC_MYPY_PLUGIN_FILE ${PROJECT_BINARY_DIR}/tools/protoc-gen-mypy.sh) + else() + set(PROTOC_MYPY_PLUGIN_FILE ${ROOT_DIR}/tools/protoc-gen-mypy.bat) + endif() + list(APPEND PROTOC_ARGS + --plugin + protoc-gen-mypy=${PROTOC_MYPY_PLUGIN_FILE} + --mypy_out + ${ONNX_DLLEXPORT_STR}${CMAKE_CURRENT_BINARY_DIR}) + endif() + endif() + if(NOT ONNX_PROTOC_EXECUTABLE) + message(FATAL_ERROR "Protobuf compiler not found") + endif() + if(ONNX_PROTO_POST_BUILD_SCRIPT) + add_custom_command( + OUTPUT "${OUTPUT_PB_SRC}" "${OUTPUT_PB_HEADER}" + COMMAND ${ONNX_PROTOC_EXECUTABLE} ARGS ${PROTOC_ARGS} + COMMAND "${CMAKE_COMMAND}" -DFILENAME=${OUTPUT_PB_HEADER} + -DNAMESPACES=${ONNX_NAMESPACE} -P + ${ONNX_PROTO_POST_BUILD_SCRIPT} + COMMAND "${CMAKE_COMMAND}" -DFILENAME=${OUTPUT_PB_SRC} + -DNAMESPACES=${ONNX_NAMESPACE} -P + ${ONNX_PROTO_POST_BUILD_SCRIPT} + DEPENDS ${GENERATED_PROTO} ${DEPEND} + COMMENT "Running C++ protocol buffer compiler on ${GENERATED_PROTO}" + VERBATIM) + else() + add_custom_command( + OUTPUT "${OUTPUT_PB_SRC}" "${OUTPUT_PB_HEADER}" + COMMAND ${ONNX_PROTOC_EXECUTABLE} ARGS ${PROTOC_ARGS} + DEPENDS ${GENERATED_PROTO} ${DEPEND} + COMMENT "Running C++ protocol buffer compiler on ${GENERATED_PROTO}" + VERBATIM) + endif() + add_custom_target(${NAME} DEPENDS ${OUTPUT_PB_SRC} ${OUTPUT_PB_HEADER}) + endforeach() + + set_source_files_properties(${${SRCS}} ${${HDRS}} PROPERTIES GENERATED TRUE) + set(${SRCS} ${${SRCS}} PARENT_SCOPE) + set(${HDRS} ${${HDRS}} PARENT_SCOPE) +endfunction() + +relative_protobuf_generate_cpp(gen_onnx_proto + __tmp_srcs + __tmp_hdrs + ${ONNX_ROOT} + "" + onnx/onnx.in.proto) +list(APPEND ONNX_PROTO_SRCS ${__tmp_srcs}) +list(APPEND ONNX_PROTO_HDRS ${__tmp_hdrs}) + +relative_protobuf_generate_cpp(gen_onnx_operators_proto + __tmp_srcs + __tmp_hdrs + ${ONNX_ROOT} + gen_onnx_proto + onnx/onnx-operators.in.proto) +list(APPEND ONNX_PROTO_SRCS ${__tmp_srcs}) +list(APPEND ONNX_PROTO_HDRS ${__tmp_hdrs}) + +relative_protobuf_generate_cpp(gen_onnx_data_proto + __tmp_srcs + __tmp_hdrs + ${ONNX_ROOT} + gen_onnx_proto + onnx/onnx-data.in.proto) +list(APPEND ONNX_PROTO_SRCS ${__tmp_srcs}) +list(APPEND ONNX_PROTO_HDRS ${__tmp_hdrs}) + +file(GLOB_RECURSE __tmp_srcs "${ONNX_ROOT}/onnx/*.h" "${ONNX_ROOT}/onnx/*.cc") +file(GLOB_RECURSE onnx_gtests_src "${ONNX_ROOT}/onnx/test/cpp/*.h" + "${ONNX_ROOT}/onnx/test/cpp/*.cc" + "${ONNX_ROOT}/onnx/backend/test/cpp/*.cc" + "${ONNX_ROOT}/onnx/backend/test/cpp/*.h") +list(REMOVE_ITEM __tmp_srcs "${ONNX_ROOT}/onnx/cpp2py_export.cc") +list(REMOVE_ITEM __tmp_srcs ${onnx_gtests_src}) +list(APPEND ONNX_SRCS ${__tmp_srcs}) + +add_library(onnx_proto ${ONNX_PROTO_SRCS} ${ONNX_PROTO_HDRS}) +add_dependencies(onnx_proto gen_onnx_operators_proto gen_onnx_data_proto) +target_include_directories(onnx_proto PUBLIC + $ + $ + $) + +if (MSVC) + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + set(EXTRA_FLAGS + "-Wno-implicit-function-declaration" + "-Wno-undefined-inline" + "-Wno-incompatible-pointer-types" + "-Wno-dllexport-explicit-instantiation-decl" + "-Wno-microsoft-unqualified-friend" + "-Wno-absolute-value" + "-Wno-unused-variable" + "-Wno-unknown-argument" + "-Wno-writable-strings" + "-Qunused-arguments") + else() + set(EXTRA_FLAGS "") + endif() + if (BUILD_SHARED_LIBS OR ONNX_BUILD_MAIN_LIB) + set(ONNX_API_DEFINE "-DONNX_API=__declspec(dllexport)") + else() + set(ONNX_API_DEFINE "-DONNX_API=") + endif() +else() + # On non-Windows, hide all symbols we don't need + set(ONNX_API_DEFINE "-DONNX_API=__attribute__\(\(__visibility__\(\"default\"\)\)\)") + set_target_properties(onnx_proto PROPERTIES CXX_VISIBILITY_PRESET hidden) + set_target_properties(onnx_proto PROPERTIES VISIBILITY_INLINES_HIDDEN 1) +endif() +target_compile_definitions(onnx_proto PRIVATE ${ONNX_API_DEFINE}) + +if(ONNX_USE_LITE_PROTO) + if(TARGET protobuf::libprotobuf-lite) + target_link_libraries(onnx_proto PUBLIC protobuf::libprotobuf-lite) + else() + target_link_libraries(onnx_proto PUBLIC ${PROTOBUF_LITE_LIBRARIES}) + endif() +else() + if(TARGET protobuf::libprotobuf) + target_link_libraries(onnx_proto PUBLIC protobuf::libprotobuf) + else() + target_link_libraries(onnx_proto PUBLIC ${PROTOBUF_LIBRARIES}) + endif() +endif() +add_onnx_global_defines(onnx_proto) + +if(CMAKE_SYSTEM_NAME STREQUAL "AIX") + # whole-archive linker option not available on AIX. + # So, create a object library + add_library(onnx OBJECT ${ONNX_SRCS}) +else() + add_library(onnx ${ONNX_SRCS}) +endif() + +target_include_directories(onnx PUBLIC + $ + $ + $) +target_link_libraries(onnx PUBLIC onnx_proto) +add_onnx_global_defines(onnx) + +if(BUILD_ONNX_PYTHON) + if("${PY_EXT_SUFFIX}" STREQUAL "") + if(MSVC) + set(PY_EXT_SUFFIX ".pyd") + else() + set(PY_EXT_SUFFIX ".so") + endif() + endif() + + add_library(onnx_cpp2py_export MODULE "${ONNX_ROOT}/onnx/cpp2py_export.cc") + set_target_properties(onnx_cpp2py_export PROPERTIES PREFIX "") + set_target_properties(onnx_cpp2py_export + PROPERTIES COMPILE_FLAGS "-fvisibility=hidden") + set_target_properties(onnx_cpp2py_export PROPERTIES SUFFIX ${PY_EXT_SUFFIX}) + set_target_properties(onnx_cpp2py_export + PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) + target_include_directories(onnx_cpp2py_export PRIVATE + $ + $ + $) + + # pybind11 is a header only lib + find_package(pybind11 2.2 CONFIG) + if(NOT pybind11_FOUND) + if(EXISTS "${ONNX_ROOT}/third_party/pybind11/include/pybind11/pybind11.h") + add_subdirectory("${ONNX_ROOT}/third_party/pybind11") + else() + message(FATAL_ERROR "cannot find pybind") + endif() + endif() + + target_include_directories(onnx_cpp2py_export PUBLIC + "${pybind11_INCLUDE_DIRS}" + "${PYTHON_INCLUDE_DIRS}") + + if(APPLE) + set_target_properties(onnx_cpp2py_export + PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") + target_link_libraries(onnx_cpp2py_export + PRIVATE -Wl,-force_load,$) + elseif(MSVC) + # In MSVC, we will add whole archive in default + target_link_libraries(onnx_cpp2py_export + PRIVATE -WHOLEARCHIVE:$) + elseif(CMAKE_SYSTEM_NAME STREQUAL "AIX") + # whole-archive linker option not available on AIX + target_sources(onnx_cpp2py_export + PRIVATE $) + else() + # Assume everything else is like gcc + target_link_libraries(onnx_cpp2py_export + PRIVATE "-Wl,--whole-archive" $ + "-Wl,--no-whole-archive") + set_target_properties(onnx_cpp2py_export + PROPERTIES LINK_FLAGS "-Wl,--exclude-libs,ALL") + endif() + + target_link_libraries(onnx_cpp2py_export PRIVATE onnx) + + if(MSVC) + target_link_libraries(onnx_cpp2py_export PRIVATE ${PYTHON_LIBRARIES}) + target_compile_options(onnx_cpp2py_export + PRIVATE /MP + /wd4244 # 'argument': conversion from 'google:: + # protobuf::uint64' to 'int', possible + # loss of data + /wd4267 # Conversion from 'size_t' to 'int', + # possible loss of data + /wd4996 # The second parameter is ignored. + ${EXTRA_FLAGS}) + if(ONNX_USE_PROTOBUF_SHARED_LIBS) + target_compile_options(onnx_cpp2py_export + PRIVATE /wd4251 # 'identifier' : class 'type1' needs to + # have dll-interface to be used by + # clients of class 'type2' + ) + endif() + add_msvc_runtime_flag(onnx_cpp2py_export) + add_onnx_global_defines(onnx_cpp2py_export) + endif() +endif() + +if(ONNX_BUILD_BENCHMARKS) + if(NOT TARGET benchmark) + # We will not need to test benchmark lib itself. + set(BENCHMARK_ENABLE_TESTING OFF + CACHE BOOL "Disable benchmark testing as we don't need it.") + # We will not need to install benchmark since we link it statically. + set(BENCHMARK_ENABLE_INSTALL OFF + CACHE BOOL + "Disable benchmark install to avoid overwriting vendor install.") + add_subdirectory(${PROJECT_SOURCE_DIR}/third_party/benchmark) + endif() + + add_executable(protobuf-bench tools/protobuf-bench.cc) + target_include_directories(protobuf-bench PUBLIC + $ + $ + $ + $) + target_link_libraries(protobuf-bench onnx_proto benchmark) +endif() + +# Export include directories +set(ONNX_INCLUDE_DIRS "${ONNX_ROOT}" "${CMAKE_CURRENT_BINARY_DIR}") +get_directory_property(hasParent PARENT_DIRECTORY) +if(hasParent) + set(ONNX_INCLUDE_DIRS ${ONNX_INCLUDE_DIRS} PARENT_SCOPE) +endif() + +if(MSVC) + target_compile_options(onnx_proto + PRIVATE /MP + /wd4244 #'argument': conversion from 'google:: + #protobuf::uint64' to 'int', possible + # loss of data + /wd4267 # Conversion from 'size_t' to 'int', + # possible loss of data + ${EXTRA_FLAGS}) + target_compile_options(onnx + PRIVATE /MP + /wd4244 # 'argument': conversion from 'google:: + # protobuf::uint64' to 'int', possible + # loss of data + /wd4267 # Conversion from 'size_t' to 'int', + # possible loss of data + /wd4996 # The second parameter is ignored. + ${EXTRA_FLAGS}) + if(ONNX_USE_PROTOBUF_SHARED_LIBS) + target_compile_options(onnx_proto + PRIVATE /wd4251 # 'identifier' : class 'type1' needs to + # have dll-interface to be used by + # clients of class 'type2' + ) + target_compile_options(onnx + PRIVATE /wd4251 # 'identifier' : class 'type1' needs to + # have dll-interface to be used by + # clients of class 'type2' + ) + endif() + add_msvc_runtime_flag(onnx_proto) + add_msvc_runtime_flag(onnx) + set(onnx_static_library_flags + -IGNORE:4221 # LNK4221: This object file does not define any previously + # undefined public symbols, so it will not be used by any + # link operation that consumes this library + ) + set_target_properties(onnx + PROPERTIES STATIC_LIBRARY_FLAGS + "${onnx_static_library_flags}") +elseif(APPLE) + +else() + target_compile_options(onnx PRIVATE -Wall -Wextra) +endif() + +if(APPLE) + set_target_properties(onnx PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") +endif() + +# ---[ ONNX Interface for Framework Integratin (ONNXIFI) +add_library(onnxifi INTERFACE) +target_include_directories(onnxifi INTERFACE + $ + $) + +# ---[ ONNXIFI loader +add_library(onnxifi_loader STATIC onnx/onnxifi_loader.c) +target_include_directories(onnxifi_loader PUBLIC + $ + $) +# Users of ONNX backend API would compile it with their toolchain, so it is +# implemented in standard C89 for maximum compatibility +set_target_properties(onnxifi_loader + PROPERTIES C_STANDARD + 90 + C_EXTENSIONS + NO) +target_link_libraries(onnxifi_loader PUBLIC onnxifi ${CMAKE_DL_LIBS}) +if(MSVC) + add_msvc_runtime_flag(onnxifi_loader) +endif() + +if (NOT ANDROID AND NOT IOS) + # ---[ ONNXIFI wrapper + add_library(onnxifi_wrapper MODULE onnx/onnxifi_wrapper.c) + if(MSVC) + add_msvc_runtime_flag(onnxifi_wrapper) + endif() + target_include_directories(onnxifi_wrapper PRIVATE + $ + $) + set_target_properties(onnxifi_wrapper PROPERTIES + C_STANDARD 99 + C_EXTENSIONS NO + OUTPUT_NAME "onnxifi" + POSITION_INDEPENDENT_CODE YES) + target_link_libraries(onnxifi_wrapper PRIVATE onnxifi_loader onnxifi) + if(DEFINED ONNXIFI_SEARCH_DIR) + target_compile_definitions(onnxifi_wrapper PRIVATE "ONNXIFI_SEARCH_DIR=\"${ONNXIFI_SEARCH_DIR}\"") + endif() + if(WIN32) + if(MSVC) + target_compile_definitions(onnxifi_wrapper PRIVATE "ONNXIFI_PUBLIC=__declspec(dllexport)") + else() + target_compile_definitions(onnxifi_wrapper PRIVATE "ONNXIFI_PUBLIC=__attribute__((__dllexport__))") + endif() + endif() + if(APPLE) + # By default CMake would use .so suffix on Mac + set_target_properties(onnxifi_wrapper PROPERTIES SUFFIX ".dylib") + endif() +endif() + +# ---[ ONNXIFI dummy backend +add_library(onnxifi_dummy SHARED onnx/onnxifi_dummy.c) + +if(ONNXIFI_ENABLE_EXT) + add_definitions(-DONNXIFI_ENABLE_EXT=ON) +endif() + +target_include_directories(onnxifi_dummy PRIVATE + $ + $) +target_link_libraries(onnxifi_dummy PUBLIC onnxifi ${CMAKE_DL_LIBS}) +target_compile_definitions(onnxifi_dummy PRIVATE ONNXIFI_BUILD_LIBRARY=TRUE) +if(MSVC) + add_msvc_runtime_flag(onnxifi_dummy) + + target_compile_options(onnxifi_dummy + PRIVATE /wd4113 # 'identifier1' differs in parameter + # lists from 'identifier2' + ) +endif() + +include(GNUInstallDirs) + +install(DIRECTORY ${ONNX_ROOT}/onnx + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} + FILES_MATCHING + PATTERN "*.h") +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/onnx + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} + FILES_MATCHING + PATTERN "*.h") + +configure_file( + ${PROJECT_SOURCE_DIR}/cmake/ONNXConfigVersion.cmake.in + ${PROJECT_BINARY_DIR}/ONNXConfigVersion.cmake + @ONLY) +configure_file( + ${PROJECT_SOURCE_DIR}/cmake/ONNXConfig.cmake.in + ${PROJECT_BINARY_DIR}/ONNXConfig.cmake + @ONLY) +install(FILES + ${PROJECT_BINARY_DIR}/ONNXConfigVersion.cmake + ${PROJECT_BINARY_DIR}/ONNXConfig.cmake + DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/ONNX + COMPONENT dev) +install(EXPORT ONNXTargets DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/ONNX") +install(TARGETS + onnx onnx_proto + onnxifi onnxifi_dummy onnxifi_loader + EXPORT ONNXTargets DESTINATION ${CMAKE_INSTALL_LIBDIR}) + +if(NOT ANDROID AND NOT IOS) + install(TARGETS onnxifi_wrapper + EXPORT ONNXTargets DESTINATION lib) +endif() + +if(ONNXIFI_DUMMY_BACKEND) + add_definitions(-DONNXIFI_DUMMY_BACKEND=1) +endif() + +if(ONNX_BUILD_TESTS) + include(${ONNX_ROOT}/cmake/unittest.cmake) +endif() + +# Support older g++ to use PRId64 +add_definitions(-D__STDC_FORMAT_MACROS) + +include(cmake/summary.cmake) +onnx_print_configuration_summary() diff --git a/third_party/onnx/CODEOWNERS b/third_party/onnx/CODEOWNERS new file mode 100644 index 0000000000..ea3d8d9a27 --- /dev/null +++ b/third_party/onnx/CODEOWNERS @@ -0,0 +1,10 @@ +* @onnx/sig-archinfra-approvers +/community @onnx/steering-committee +/onnx/defs @onnx/sig-operators-approvers +/onnx/backend/test @onnx/sig-operators-approvers +/docs/AddNewOp.md @onnx/sig-operators-approvers +/docs/TestCoverage*.md @onnx/sig-operators-approvers +/docs/Operators*.md @onnx/sig-operators-approvers +/docs/OpConventions.md @onnx/sig-operators-approvers +/docs/Broadcasting.md @onnx/sig-operators-approvers +/docs/Changelog*.md @onnx/sig-operators-approvers diff --git a/third_party/onnx/CODE_OF_CONDUCT.md b/third_party/onnx/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..f282992e0b --- /dev/null +++ b/third_party/onnx/CODE_OF_CONDUCT.md @@ -0,0 +1 @@ +The ONNX Code Of Conduct is described at https://onnx.ai/codeofconduct.html diff --git a/third_party/onnx/CONTRIBUTING.md b/third_party/onnx/CONTRIBUTING.md new file mode 100644 index 0000000000..4a214751c1 --- /dev/null +++ b/third_party/onnx/CONTRIBUTING.md @@ -0,0 +1,48 @@ + + +# ONNX Community Involvement and Contribution Guidelines + +ONNX is a community project and we welcome your contributions! In addition to contributing code, you can also contribute in many other ways: + +* Meetings and Discussions +Join SIGS, Working Groups, Community meetings to learn about what is needed and then where there is a good fit to interest and areas of expertise, find ways to actively contribute. Participate in [ONNX technical discussions](https://github.com/onnx/onnx/discussions) on GitHub. Join the ONNX Slack channels at LF AI and Data, help answer questions and welcome new members. + +* Use Cases and Tools +Develop use cases for ONNX and advocate for ONNX in developer conferences and meetups. Develop tools that import and export using the ONNX spec, and help grow the community of ONNX users. Become a champion for ONNX in your company or organization. + +* Roadmap and Features +Understand the ONNX roadmap document, feature priorities, and help implement them. Become an ONNX code and documentation contributor, and work towards committer status on important repos. + +* Releases and Model Zoo +Help in achieving a release of ONNX, including increasing the number of models in the ONNX Model Zoo that exercise ONNX features. + +* Publications and Blogs +Add to the growing number of arXiv papers that refer to ONNX. Create blogs, presentations, books, articles and other materials that help increase the adoption of ONNX, and grow the community of users and contributors. + +* Steering Committee +Attend ONNX Steering Committee meetings - they are open to all in the community. Help out where needed and appropriate on SC to-do items. Note that SIG and Working Groups leaders as well as others with demonstrated commitment and contributions to ONNX community may want to self-nominate during the annual SC election cycle. + +## Contributing code + +You can submit a pull request (PR) with your code. The [SIG](community/sigs.md) or [Working Group](community/working-groups.md) that is responsible for the area of the project your PR touches will review it and merge once any comments are addressed. + +### DCO +ONNX has adopted the [DCO](https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin). All code repositories under ONNX require a DCO. (ONNX previously used a CLA, which is being replaced with the DCO.) + +DCO is provided by including a sign-off-by line in commit messages. Using the `-s` flag for `git commit` will automatically append this line. For example, running `git commit -s -m 'commit info.'` it will produce a commit that has the message `commit info. Signed-off-by: My Name `. The DCO bot will ensure commits are signed with an email address that matches the commit author before they are eligible to be merged. + +If you are using a GUI like the GitHub web site or GitHub Desktop, you'll need to append the `Signed-off-by: My Name ` manually to each commit message. + +NOTE: the sign-off is needed for each commit in the PR, not at the PR level. + +If you have old commits that are not signed, use the following commands to squash the old PR (original branch) into a single commit. This is an easier way to signoff old commits in old PR. + +```bash +git checkout main +git checkout -b temporary_patch # create a new branch as temporary +git merge --squash original_patch # copy from old branch +git branch -d original_patch # remove old branch +git checkout -b original_patch # create a new branch with the same name (override) +git commit -m 'type your own commit msg' -s # signoff that single commit +git push origin original_patch -f # forcibly override the old branch` +``` diff --git a/third_party/onnx/LICENSE b/third_party/onnx/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/third_party/onnx/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/third_party/onnx/MANIFEST.in b/third_party/onnx/MANIFEST.in new file mode 100644 index 0000000000..ee04daa2cc --- /dev/null +++ b/third_party/onnx/MANIFEST.in @@ -0,0 +1,10 @@ +recursive-include onnx *.h *.c *.cc *.proto +recursive-include third_party * +include LICENSE +recursive-include onnx/backend/test/data * +recursive-include onnx/examples * +recursive-include cmake * +recursive-include tools * +include VERSION_NUMBER +include CMakeLists.txt +include requirements.txt diff --git a/third_party/onnx/README.md b/third_party/onnx/README.md new file mode 100644 index 0000000000..9765cbaa32 --- /dev/null +++ b/third_party/onnx/README.md @@ -0,0 +1,287 @@ + + +

+ + +[![Build Status](https://dev.azure.com/onnx-pipelines/onnx/_apis/build/status/Windows-CI?branchName=main)](https://dev.azure.com/onnx-pipelines/onnx/_build/latest?definitionId=5&branchName=main) +[![Build Status](https://dev.azure.com/onnx-pipelines/onnx/_apis/build/status/Linux-CI?branchName=main)](https://dev.azure.com/onnx-pipelines/onnx/_build/latest?definitionId=7&branchName=main) +[![Build Status](https://dev.azure.com/onnx-pipelines/onnx/_apis/build/status/MacOS-CI?branchName=main)](https://dev.azure.com/onnx-pipelines/onnx/_build/latest?definitionId=6&branchName=main) +[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3313/badge)](https://bestpractices.coreinfrastructure.org/projects/3313) + +[Open Neural Network Exchange (ONNX)](https://onnx.ai) is an open ecosystem that empowers AI developers +to choose the right tools as their project evolves. ONNX provides an open source format for AI models, both deep learning and traditional ML. It defines an extensible computation graph model, as well as definitions of built-in operators and standard +data types. Currently we focus on the capabilities needed for inferencing (scoring). + +ONNX is [widely supported](http://onnx.ai/supported-tools) and can be found in many frameworks, tools, and hardware. Enabling interoperability between different frameworks and streamlining the path from research to production helps increase the speed of innovation in the AI community. We invite the community to join us and further evolve ONNX. + +# Use ONNX +* [Tutorials for creating ONNX models](https://github.com/onnx/tutorials). +* [Pre-trained ONNX models](https://github.com/onnx/models) + +# Learn about the ONNX spec +* [Overview](docs/Overview.md) +* [ONNX intermediate representation spec](docs/IR.md) +* [Versioning principles of the spec](docs/Versioning.md) +* [Operators documentation](docs/Operators.md) +* [Python API Overview](docs/PythonAPIOverview.md) + +# Programming utilities for working with ONNX Graphs +* [Shape and Type Inference](docs/ShapeInference.md) +* [Graph Optimization](https://github.com/onnx/optimizer) +* [Opset Version Conversion](docs/VersionConverter.md) + +# NOTICE: ONNX now uses main branch as default branch +Here are the [steps](https://github.com/onnx/onnx/wiki/How-to-migrate-to-main-branch-in-local-repo) from ONNX wiki for migrating to main branch in local repo. + +# Contribute +ONNX is a [community project](community/readme.md). We encourage you to join the effort and contribute feedback, ideas, and code. You can participate in the [Special Interest Groups](community/sigs.md) and [Working Groups](community/working-groups.md) to shape the future of ONNX. + +Check out our [contribution guide](docs/CONTRIBUTING.md) to get started. + +If you think some operator should be added to ONNX specification, please read +[this document](docs/AddNewOp.md). + +# Discuss +We encourage you to open [Issues](https://github.com/onnx/onnx/issues), or use [Slack](https://lfaifoundation.slack.com/) (If you have not joined yet, please use this [link](https://join.slack.com/t/lfaifoundation/shared_invite/zt-o65errpw-gMTbwNr7FnNbVXNVFkmyNA) to join the group) for more real-time discussion. + +# Follow Us +Stay up to date with the latest ONNX news. [[Facebook](https://www.facebook.com/onnxai/)] [[Twitter](https://twitter.com/onnxai)] + + + + + + +# Installation + +## Prerequisites + +``` +numpy >= 1.16.6 +protobuf >= 3.12.2 +typing-extensions >= 3.6.2.1 +``` + +## Official Python packages +ONNX released packages are published in PyPi. +``` +pip install numpy protobuf==3.16.0 +pip install onnx +``` + +[Weekly packages](https://test.pypi.org/project/onnx-weekly/) are published in test pypi to enable experimentation and early testing. + + +## Conda packages +A binary build of ONNX is available from [Conda](https://conda.io), in [conda-forge](https://conda-forge.org/): +``` +conda install -c conda-forge numpy protobuf==3.16.0 libprotobuf=3.16.0 +conda install -c conda-forge onnx +``` + +You can also use the [onnx-dev docker image](https://hub.docker.com/r/onnx/onnx-dev) for a Linux-based installation without having to worry about dependency versioning. + + +## Build ONNX from Source +Before building from source uninstall any existing versions of onnx `pip uninstall onnx`. + +Generally speaking, you need to install [protobuf C/C++ libraries and tools](https://github.com/protocolbuffers/protobuf) before proceeding forward. Then depending on how you installed protobuf, you need to set environment variable CMAKE_ARGS to "-DONNX_USE_PROTOBUF_SHARED_LIBS=ON" or "-DONNX_USE_PROTOBUF_SHARED_LIBS=OFF". For example, you may need to run the following command: + +Linux: +```bash +export CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON" +``` +Windows: +```bat +set CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON" +``` + +The ON/OFF depends on what kind of protobuf library you have. Shared libraries are files ending with \*.dll/\*.so/\*.dylib. Static libraries are files ending with \*.a/\*.lib. This option depends on how you get your protobuf library and how it was built. And it is default OFF. You don't need to run the commands above if you'd prefer to use a static protobuf library. + + +### Windows +If you are building ONNX from source, it is recommended that you also build Protobuf locally as a static library. The version distributed with conda-forge is a DLL, but ONNX expects it to be a static library. Building protobuf locally also lets you control the version of protobuf. The tested and recommended version is 3.16.0. + +The instructions in this README assume you are using Visual Studio. It is recommended that you run all the commands from a shell started from "x64 Native Tools Command Prompt for VS 2019" and keep the build system generator for cmake (e.g., cmake -G "Visual Studio 16 2019") consistent while building protobuf as well as ONNX. + +You can get protobuf by running the following commands: +```bat +git clone https://github.com/protocolbuffers/protobuf.git +cd protobuf +git checkout v3.16.0 +cd cmake +cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX= -Dprotobuf_MSVC_STATIC_RUNTIME=OFF -Dprotobuf_BUILD_SHARED_LIBS=OFF -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_EXAMPLES=OFF . +msbuild protobuf.sln /m /p:Configuration=Release +msbuild INSTALL.vcxproj /p:Configuration=Release +``` +Then it will be built as a static library and installed to . Please add the bin directory(which contains protoc.exe) to your PATH. + +```bat +set PATH=/bin;%PATH% +``` + +Please note: if your protobuf_install_dir contains spaces, **do not** add quotation marks around it. + +Alternative: if you don't want to change your PATH, you can set ONNX_PROTOC_EXECUTABLE instead. +```bat +set CMAKE_ARGS=-DONNX_PROTOC_EXECUTABLE= +``` + +Then you can build ONNX as: +``` +git clone https://github.com/onnx/onnx.git +cd onnx +git submodule update --init --recursive +# prefer lite proto +set CMAKE_ARGS=-DONNX_USE_LITE_PROTO=ON +pip install -e . +``` +### Linux + +First, you need to install protobuf. + +Ubuntu users: the quickest way to install protobuf is to run + +```bash +apt-get install python3-pip python3-dev libprotobuf-dev protobuf-compiler +``` + +Then you can build ONNX as: +``` +export CMAKE_ARGS="-DONNX_USE_PROTOBUF_SHARED_LIBS=ON" +git clone --recursive https://github.com/onnx/onnx.git +cd onnx +# prefer lite proto +set CMAKE_ARGS=-DONNX_USE_LITE_PROTO=ON +pip install -e . +``` + +Otherwise, you may need to install it from source. You can use the following commands to do it: + +Debian/Ubuntu: +``` +git clone https://github.com/protocolbuffers/protobuf.git +cd protobuf +git checkout v3.16.0 +git submodule update --init --recursive +mkdir build_source && cd build_source +cmake ../cmake -Dprotobuf_BUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release +make -j$(nproc) +make install +``` + +CentOS/RHEL/Fedora: +``` +git clone https://github.com/protocolbuffers/protobuf.git +cd protobuf +git checkout v3.16.0 +git submodule update --init --recursive +mkdir build_source && cd build_source +cmake ../cmake -DCMAKE_INSTALL_LIBDIR=lib64 -Dprotobuf_BUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release +make -j$(nproc) +make install +``` + +Here "-DCMAKE_POSITION_INDEPENDENT_CODE=ON" is crucial. By default static libraries are built without "-fPIC" flag, they are not position independent code. But shared libraries must be position independent code. Python C/C++ extensions(like ONNX) are shared libraries. So if a static library was not built with "-fPIC", it can't be linked to such a shared library. + +Once build is successful, update PATH to include protobuf paths. + +Then you can build ONNX as: +``` +git clone https://github.com/onnx/onnx.git +cd onnx +git submodule update --init --recursive +# prefer lite proto +set CMAKE_ARGS=-DONNX_USE_LITE_PROTO=ON +pip install -e . +``` + +* **Mac** +``` +export NUM_CORES=`sysctl -n hw.ncpu` +brew update +brew install autoconf && brew install automake +wget https://github.com/protocolbuffers/protobuf/releases/download/v3.16.0/protobuf-cpp-3.16.0.tar.gz +tar -xvf protobuf-cpp-3.16.0.tar.gz +cd protobuf-3.16.0 +mkdir build_source && cd build_source +cmake ../cmake -Dprotobuf_BUILD_SHARED_LIBS=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release +make -j${NUM_CORES} +make install +``` + +Once build is successful, update PATH to include protobuf paths. + +Then you can build ONNX as: +``` +git clone --recursive https://github.com/onnx/onnx.git +cd onnx +# prefer lite proto +set CMAKE_ARGS=-DONNX_USE_LITE_PROTO=ON +pip install -e . +``` + + +## Verify Installation +After installation, run + +``` +python -c "import onnx" +``` + +to verify it works. + + +## Common Build Options +For full list refer to CMakeLists.txt +**Environment variables** +* `USE_MSVC_STATIC_RUNTIME` should be 1 or 0, not ON or OFF. When set to 1 onnx links statically to runtime library. +**Default**: USE_MSVC_STATIC_RUNTIME=0 + +* `DEBUG` should be 0 or 1. When set to 1 onnx is built in debug mode. or debug versions of the dependencies, you need to open the [CMakeLists file](CMakeLists.txt) and append a letter `d` at the end of the package name lines. For example, `NAMES protobuf-lite` would become `NAMES protobuf-lited`. +**Default**: Debug=0 + +**CMake variables** +* `ONNX_USE_PROTOBUF_SHARED_LIBS` should be ON or OFF. +**Default**: ONNX_USE_PROTOBUF_SHARED_LIBS=OFF USE_MSVC_STATIC_RUNTIME=0 +`ONNX_USE_PROTOBUF_SHARED_LIBS` determines how onnx links to protobuf libraries. + - When set to ON - onnx will dynamically link to protobuf shared libs, PROTOBUF_USE_DLLS will be defined as described [here](https://github.com/protocolbuffers/protobuf/blob/master/cmake/README.md#dlls-vs-static-linking), Protobuf_USE_STATIC_LIBS will be set to OFF and `USE_MSVC_STATIC_RUNTIME` must be 0. + - When set to OFF - onnx will link statically to protobuf, and Protobuf_USE_STATIC_LIBS will be set to ON (to force the use of the static libraries) and `USE_MSVC_STATIC_RUNTIME` can be 0 or 1. + +* `ONNX_USE_LITE_PROTO` should be ON or OFF. When set to ON onnx uses lite protobuf instead of full protobuf. +**Default**: ONNX_USE_LITE_PROTO=OFF + +* `ONNX_WERROR` should be ON or OFF. When set to ON warnings are treated as errors. +**Default**: ONNX_WERROR=OFF in local builds, ON in CI and release pipelines. + + +## Common Errors +* Note: the `import onnx` command does not work from the source checkout directory; in this case you'll see `ModuleNotFoundError: No module named 'onnx.onnx_cpp2py_export'`. Change into another directory to fix this error. + +* Building ONNX on Ubuntu works well, but on CentOS/RHEL and other ManyLinux systems, you might need to open the [CMakeLists file][CMakeLists] and replace all instances of `/lib` with `/lib64`. + +# Testing + +ONNX uses [pytest](https://docs.pytest.org) as test driver. In order to run tests, you will first need to install pytest: + +``` +pip install pytest nbval +``` + +After installing pytest, use the following command to run tests. + +``` +pytest +``` + +# Development + +Check out the [contributor guide](docs/CONTRIBUTING.md) for instructions. + +# License + +[Apache License v2.0](LICENSE) + +# Code of Conduct + +[ONNX Open Source Code of Conduct](https://onnx.ai/codeofconduct.html) diff --git a/third_party/onnx/RELEASE-MANAGEMENT.md b/third_party/onnx/RELEASE-MANAGEMENT.md new file mode 100644 index 0000000000..507cc8002e --- /dev/null +++ b/third_party/onnx/RELEASE-MANAGEMENT.md @@ -0,0 +1,71 @@ + + +# ONNX release management + +This describes the process by which versions of ONNX are officially released to the public. + +Releases +-------- + +Releases are versioned according to [ONNX Versioning](docs/Versioning.md). This describes IR and operator versioning policies, as well as propose how models themselves should be versioned. + +On a regular basis, new versions of ONNX are published, representing the aggregate of changes in the IR and operator sets. Such releases use semantic versioning to describe the progression of the standard. + +The GitHub repo for ONNX provides release branches where the project is stabilized as per the process described here. Release notes are used to communicate the stability and status of a release. The main branch will be used to continue work for subsequent releases. + +Major, minor and patch releases will have branch names and version numbers reflecting the nature of the change as per semantic versioning definitions. + +Workflow +-------- + +The following workflow describes the steps taken to release an update of ONNX, +and can be undertaken regardless of whether a major, minor or patch release is +to be produced. + +- The trigger for the workflow will typically be a time-based trigger based on + elapsed time (say every three months), but for the first release, we will + start the process in early November 2017. + +- The release manager will announce the intent of the process (to produce a + major, minor or patch update) and the overall timeline. A release branch is + created with the name rel-major#.minor#(.patch#), and any version + references in build scripts or version checks are updated. + +- The release manager announces the initial commit for testing. The first + period lasts a week; any regressions found should be fixed, typically via + the main branch. Incomplete features should be done or excised during this + period. A distribution can be made available with an -RC1 suffix. + +- The release manager announces a second round of testing (unless it's only a + patch update with no regressions found). Only critical bugs are fixed at + this point, or those introduced by patches from the first week. A third + weeek may be introduced at the release manager's discretion if significant + fixes need to be taken. Distributions with -RCn suffixes can be made + available if convenient. + +- Release notes are updated with final changes, and a file with sources is + provided along with a release on the GitHub project page. + +Testing +------- + +The release process really consists of communicating, testing to establish a +known state of the project, and distributing files. This section deals with +the second task. + +At the very least, the tests that are part of the /test folder should be run +under a variety of configurations. Issues fixed should ensure coverage in this +suite to avoid regressions. + +Send a Pull Request for updates to this section to include a configuration you +can help test if you care about one that's missing. + +The community is encouraged to perform additional testing during the test +periods. Bugs and issues should be filed in the ONNX GitHub repo. + +Distribution +------------ + +The distribution of files follows the basic procedures described in +[Creating Releases](https://help.github.com/articles/creating-releases/). + diff --git a/third_party/onnx/SECURITY.md b/third_party/onnx/SECURITY.md new file mode 100644 index 0000000000..d9497cd94e --- /dev/null +++ b/third_party/onnx/SECURITY.md @@ -0,0 +1,15 @@ + + +# Security Policy + +## Reporting a Vulnerability +If you think you have found a security vulnerability, please send a report to onnx-security@lists.lfaidata.foundation. Please do not post security vulnerabilities on Slack. + +We don't currently have a PGP key, unfortunately. + +An ONNX committer will send you a response indicating the next steps in handling your report. After the initial reply to your report, the committer will keep you informed of the progress towards a fix and full announcement, and may ask for additional information or guidance. + +Important: Please don't disclose the vulnerability before it has been fixed and announced, to protect our users. + +## Security announcements +Please subscribe to the [announcements mailing list](https://lists.lfaidata.foundation/g/onnx-announce), where we post notifications and remediation details for security vulnerabilities. diff --git a/third_party/onnx/VERSION_NUMBER b/third_party/onnx/VERSION_NUMBER new file mode 100644 index 0000000000..1cac385c6c --- /dev/null +++ b/third_party/onnx/VERSION_NUMBER @@ -0,0 +1 @@ +1.11.0 diff --git a/third_party/onnx/cmake/ONNXConfig.cmake.in b/third_party/onnx/cmake/ONNXConfig.cmake.in new file mode 100644 index 0000000000..27837e919b --- /dev/null +++ b/third_party/onnx/cmake/ONNXConfig.cmake.in @@ -0,0 +1,23 @@ +# - Config file for the ONNX package +# It defines the following variable(s) +# ONNX_INCLUDE_DIRS - include directories for FooBar +# as well as ONNX targets for other cmake libraries to use. + +# library version information +set(ONNX_VERSION "@ONNX_VERSION@") + +# import targets +include ("${CMAKE_CURRENT_LIST_DIR}/ONNXTargets.cmake") + +# include directory. +# +# Newer versions of CMake set the INTERFACE_INCLUDE_DIRECTORIES property +# of the imported targets. It is hence not necessary to add this path +# manually to the include search path for targets which link to gflags. +# The following lines are here for backward compatibility, in case one +# would like to use the old-style include path. +get_filename_component( + CMAKE_CURRENT_LIST_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component( + _INSTALL_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) +set(ONNX_INCLUDE_DIRS "${_INSTALL_PREFIX}/include") diff --git a/third_party/onnx/cmake/ONNXConfigVersion.cmake.in b/third_party/onnx/cmake/ONNXConfigVersion.cmake.in new file mode 100644 index 0000000000..03783c3a54 --- /dev/null +++ b/third_party/onnx/cmake/ONNXConfigVersion.cmake.in @@ -0,0 +1,11 @@ +set(PACKAGE_VERSION "@ONNX_VERSION@") + +# Check whether the requested PACKAGE_FIND_VERSION is compatible +if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() diff --git a/third_party/onnx/cmake/Utils.cmake b/third_party/onnx/cmake/Utils.cmake new file mode 100644 index 0000000000..c0c82475c3 --- /dev/null +++ b/third_party/onnx/cmake/Utils.cmake @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Add MSVC RunTime Flag +function(add_msvc_runtime_flag lib) + if(${ONNX_USE_MSVC_STATIC_RUNTIME}) + target_compile_options(${lib} PRIVATE $<$>:/MT> $<$:/MTd>) + else() + target_compile_options(${lib} PRIVATE $<$>:/MD> $<$:/MDd>) + endif() +endfunction() + +function(add_onnx_global_defines target) + target_compile_definitions(${target} PUBLIC "ONNX_NAMESPACE=${ONNX_NAMESPACE}") + + if(ONNX_ML) + target_compile_definitions(${target} PUBLIC "ONNX_ML=1") + endif() + + if(ONNX_USE_LITE_PROTO) + target_compile_definitions(${target} PUBLIC "ONNX_USE_LITE_PROTO=1") + endif() + + if(ONNX_DISABLE_STATIC_REGISTRATION) + target_compile_definitions(${target} PUBLIC "__ONNX_DISABLE_STATIC_REGISTRATION") + endif() +endfunction() + +function(add_whole_archive_flag lib output_var) + if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") + set(${output_var} -Wl,-force_load,$ PARENT_SCOPE) + elseif(MSVC) + # In MSVC, we will add whole archive in default. + set(${output_var} -WHOLEARCHIVE:$> + PARENT_SCOPE) + else() + # Assume everything else is like gcc + set(${output_var} + "-Wl,--whole-archive $ -Wl,--no-whole-archive" + PARENT_SCOPE) + endif() +endfunction() diff --git a/third_party/onnx/cmake/external/googletest.cmake b/third_party/onnx/cmake/external/googletest.cmake new file mode 100644 index 0000000000..d8131fb398 --- /dev/null +++ b/third_party/onnx/cmake/external/googletest.cmake @@ -0,0 +1,44 @@ +# SPDX-License-Identifier: Apache-2.0 + +include (ExternalProject) + +set(googletest_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/googletest/src/googletest/googletest/include) +set(googletest_URL https://github.com/google/googletest.git) +set(googletest_BUILD ${CMAKE_CURRENT_BINARY_DIR}/googletest/) +set(googletest_TAG e93da23920e5b6887d6a6a291c3a59f83f5b579e) +#0fe96607d85cf3a25ac40da369db62bbee2939a5 + +if(WIN32 AND CMAKE_BUILD_TYPE MATCHES Debug) + set(googletest_STATIC_LIBRARIES + ${CMAKE_CURRENT_BINARY_DIR}/googletest/src/googletest/googletest/Debug/gtestd.lib) +elseif(WIN32 AND NOT CMAKE_BUILD_TYPE MATCHES Debug) + set(googletest_STATIC_LIBRARIES + ${CMAKE_CURRENT_BINARY_DIR}/googletest/src/googletest/googletest/Release/gtest.lib) +elseif(CMAKE_BUILD_TYPE MATCHES Debug) + set(googletest_STATIC_LIBRARIES + ${CMAKE_CURRENT_BINARY_DIR}/googletest/src/googletest/googletest/libgtestd.a) +else() + set(googletest_STATIC_LIBRARIES + ${CMAKE_CURRENT_BINARY_DIR}/googletest/src/googletest/googletest/libgtest.a) +endif() + +if(ONNX_USE_MSVC_STATIC_RUNTIME) + set(ONNX_USE_MSVC_SHARED_RUNTIME OFF) +else() + set(ONNX_USE_MSVC_SHARED_RUNTIME ON) +endif() +ExternalProject_Add(googletest + PREFIX googletest + GIT_REPOSITORY ${googletest_URL} + GIT_TAG ${googletest_TAG} + DOWNLOAD_DIR "${DOWNLOAD_LOCATION}" + BUILD_IN_SOURCE 1 + BUILD_COMMAND ${CMAKE_COMMAND} --build . --config ${CMAKE_BUILD_TYPE} --target gtest + INSTALL_COMMAND "" + CMAKE_CACHE_ARGS + -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} + -DBUILD_GMOCK:BOOL=OFF + -DBUILD_GTEST:BOOL=ON + -Dgtest_force_shared_crt:BOOL=${ONNX_USE_MSVC_SHARED_RUNTIME} + BUILD_BYPRODUCTS ${googletest_STATIC_LIBRARIES} +) diff --git a/third_party/onnx/cmake/summary.cmake b/third_party/onnx/cmake/summary.cmake new file mode 100644 index 0000000000..74c7230c5a --- /dev/null +++ b/third_party/onnx/cmake/summary.cmake @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 + +# Prints accumulated ONNX configuration summary +function (onnx_print_configuration_summary) + message(STATUS "") + message(STATUS "******** Summary ********") + message(STATUS " CMake version : ${CMAKE_VERSION}") + message(STATUS " CMake command : ${CMAKE_COMMAND}") + message(STATUS " System : ${CMAKE_SYSTEM_NAME}") + message(STATUS " C++ compiler : ${CMAKE_CXX_COMPILER}") + message(STATUS " C++ compiler version : ${CMAKE_CXX_COMPILER_VERSION}") + message(STATUS " CXX flags : ${CMAKE_CXX_FLAGS}") + message(STATUS " Build type : ${CMAKE_BUILD_TYPE}") + get_directory_property(tmp DIRECTORY ${PROJECT_SOURCE_DIR} COMPILE_DEFINITIONS) + message(STATUS " Compile definitions : ${tmp}") + message(STATUS " CMAKE_PREFIX_PATH : ${CMAKE_PREFIX_PATH}") + message(STATUS " CMAKE_INSTALL_PREFIX : ${CMAKE_INSTALL_PREFIX}") + message(STATUS " CMAKE_MODULE_PATH : ${CMAKE_MODULE_PATH}") + message(STATUS "") + message(STATUS " ONNX version : ${ONNX_VERSION}") + message(STATUS " ONNX NAMESPACE : ${ONNX_NAMESPACE}") + message(STATUS " ONNX_USE_LITE_PROTO : ${ONNX_USE_LITE_PROTO}") + message(STATUS " USE_PROTOBUF_SHARED_LIBS : ${ONNX_USE_PROTOBUF_SHARED_LIBS}") + message(STATUS " Protobuf_USE_STATIC_LIBS : ${Protobuf_USE_STATIC_LIBS}") + message(STATUS " ONNX_DISABLE_EXCEPTIONS : ${ONNX_DISABLE_EXCEPTIONS}") + message(STATUS " ONNX_WERROR : ${ONNX_WERROR}") + message(STATUS " ONNX_BUILD_TESTS : ${ONNX_BUILD_TESTS}") + message(STATUS " ONNX_BUILD_BENCHMARKS : ${ONNX_BUILD_BENCHMARKS}") + message(STATUS " ONNXIFI_DUMMY_BACKEND : ${ONNXIFI_DUMMY_BACKEND}") + message(STATUS " ONNXIFI_ENABLE_EXT : ${ONNXIFI_ENABLE_EXT}") + message(STATUS "") + message(STATUS " Protobuf compiler : ${PROTOBUF_PROTOC_EXECUTABLE}") + message(STATUS " Protobuf includes : ${PROTOBUF_INCLUDE_DIRS}") + message(STATUS " Protobuf libraries : ${PROTOBUF_LIBRARIES}") + message(STATUS " BUILD_ONNX_PYTHON : ${BUILD_ONNX_PYTHON}") + if (${BUILD_ONNX_PYTHON}) + message(STATUS " Python version : ${PY_VERSION}") + message(STATUS " Python executable : ${PYTHON_EXECUTABLE}") + message(STATUS " Python includes : ${PYTHON_INCLUDE_DIR}") + endif() +endfunction() diff --git a/third_party/onnx/cmake/unittest.cmake b/third_party/onnx/cmake/unittest.cmake new file mode 100644 index 0000000000..83c6f96703 --- /dev/null +++ b/third_party/onnx/cmake/unittest.cmake @@ -0,0 +1,98 @@ +# SPDX-License-Identifier: Apache-2.0 + +set(UT_NAME ${PROJECT_NAME}_gtests) +set(ONNX_ROOT ${PROJECT_SOURCE_DIR}) +set(ONNXIFI_TEST_DRIVER onnxifi_test_driver_gtests) + +include(${ONNX_ROOT}/cmake/Utils.cmake) + +find_package(Threads) + +set(${UT_NAME}_libs ${googletest_STATIC_LIBRARIES}) +set(${ONNXIFI_TEST_DRIVER}_libs ${googletest_STATIC_LIBRARIES}) + +list(APPEND ${UT_NAME}_libs onnx) +list(APPEND ${UT_NAME}_libs onnx_proto) +list(APPEND ${UT_NAME}_libs onnxifi_loader) +list(APPEND ${UT_NAME}_libs onnxifi) +list(APPEND ${UT_NAME}_libs ${PROTOBUF_LIBRARIES}) + +list(APPEND ${ONNXIFI_TEST_DRIVER}_libs onnx) +list(APPEND ${ONNXIFI_TEST_DRIVER}_libs onnx_proto) +list(APPEND ${ONNXIFI_TEST_DRIVER}_libs onnxifi_loader) +list(APPEND ${ONNXIFI_TEST_DRIVER}_libs ${PROTOBUF_LIBRARIES}) +list(APPEND ${ONNXIFI_TEST_DRIVER}_libs onnxifi) + +file(GLOB_RECURSE ${UT_NAME}_src "${ONNX_ROOT}/onnx/test/cpp/*.cc") +file(GLOB_RECURSE ${ONNXIFI_TEST_DRIVER}_src "${ONNX_ROOT}/onnx/backend/test/cpp/*.h" "${ONNX_ROOT}/onnx/backend/test/cpp/*.cc") + +function(AddTest) + cmake_parse_arguments(_UT "" "TARGET" "LIBS;SOURCES" ${ARGN}) + + list(REMOVE_DUPLICATES _UT_LIBS) + list(REMOVE_DUPLICATES _UT_SOURCES) + + add_executable(${_UT_TARGET} ${_UT_SOURCES}) + add_dependencies(${_UT_TARGET} onnx onnx_proto googletest) + + target_include_directories(${_UT_TARGET} + PUBLIC ${googletest_INCLUDE_DIRS} + ${ONNX_INCLUDE_DIRS} + ${PROTOBUF_INCLUDE_DIRS} + ${ONNX_ROOT} + ${CMAKE_CURRENT_BINARY_DIR}) + target_link_libraries(${_UT_TARGET} ${_UT_LIBS} ${CMAKE_THREAD_LIBS_INIT}) + if(TARGET protobuf::libprotobuf) + target_link_libraries(${_UT_TARGET} protobuf::libprotobuf) + else() + target_link_libraries(${_UT_TARGET} ${PROTOBUF_LIBRARIES}) + endif() + + if(WIN32) + target_compile_options(${_UT_TARGET} + PRIVATE /EHsc # exception handling - C++ may throw, + # extern "C" will not + ) + add_msvc_runtime_flag(${_UT_TARGET}) + endif() + + if(MSVC) + target_compile_options(${_UT_TARGET} + PRIVATE /wd4146 # unary minus operator applied to + # unsigned type, result still + # unsigned from include\google\protob + # uf\wire_format_lite.h + /wd4244 # 'argument': conversion from 'google:: + # protobuf::uint64' to 'int', possible + # loss of data + /wd4267 # Conversion from 'size_t' to 'int', + # possible loss of data + /wd4996 # The second parameter is ignored. + ) + if(ONNX_USE_PROTOBUF_SHARED_LIBS) + target_compile_options(${_UT_TARGET} + PRIVATE /wd4251 # 'identifier' : class 'type1' needs to + # have dll-interface to be used by + # clients of class 'type2' + ) + endif() + endif() + + set(TEST_ARGS) + if(ONNX_GENERATE_TEST_REPORTS) + # generate a report file next to the test program + list( + APPEND + TEST_ARGS + "--gtest_output=xml:$.$.results.xml>" + ) + endif() + + add_test(NAME ${_UT_TARGET} + COMMAND ${_UT_TARGET} ${TEST_ARGS} + WORKING_DIRECTORY $) + +endfunction(AddTest) + +addtest(TARGET ${UT_NAME} SOURCES ${${UT_NAME}_src} LIBS ${${UT_NAME}_libs}) +addtest(TARGET ${ONNXIFI_TEST_DRIVER} SOURCES ${${ONNXIFI_TEST_DRIVER}_src} LIBS ${${ONNXIFI_TEST_DRIVER}_libs}) diff --git a/third_party/onnx/community/logo_request.md b/third_party/onnx/community/logo_request.md new file mode 100644 index 0000000000..5cee33d97d --- /dev/null +++ b/third_party/onnx/community/logo_request.md @@ -0,0 +1,12 @@ + + +## Member Company logos + +Member Companies as defined [here](readme.md#community-roles) can request their logo be displayed on https://onnx.ai and other materials. + +To have your logo displayed, submit a PR to https://github.com/onnx/onnx.github.io with the following: +1. Text of the PR must include written permission indicating the logo can be used on the onnx.ai website as well as in presentations showing ONNX Member Companies +2. A high quality logo file with transparent background needs to be committed in the "assets" directory. The image file should be 300dpi (best if physical printing is ever required) or a vector file which can be saved in any resolution. +3. The URL of your company or product web page. Ideally the page mentions ONNX. + +Member Companies may ask for their logo to be removed at any time and their status as Member Company rescinded. The Steering Committee also can vote to remove a Member Company of their status. diff --git a/third_party/onnx/community/readme.md b/third_party/onnx/community/readme.md new file mode 100644 index 0000000000..ec7b7a8cb4 --- /dev/null +++ b/third_party/onnx/community/readme.md @@ -0,0 +1,177 @@ + + +# ONNX Open Governance + +## TL;DR + +ONNX is rolling out open governance to encourage broader participation beyond the founding companies. We hope this will make the decision making process more transparent, enable better technical decisions with consideration of more viewpoints, and share the work of maintenance. We want ONNX to be the standard the whole community rallies to without reservations. + +ONNX open governance creates 3 roles: Member, Contributor, Approver. 3 structures are also created: Steering Committee, Special Interest Groups (SIGs), Working Groups. Contributors and Approvers can vote for the Steering Committee members. The Steering Committee charters SIGs and appoints SIG chairs. Every piece of ONNX belongs to some SIG. Contributors and Approvers participate in one or more SIGs. Our governance structured is based on the successful model of Kubernetes. + +The effort is bootstrapped with an initial Steering Committee and set of SIGs with the first elections to occur after 1 year. + +## Principles + +The ONNX community adheres to the following principles: + +* __Open__: ONNX is open source. See repository guidelines and CLA, below. +* __Welcoming and respectful__: See Code of Conduct, below. +* __Transparent and accessible__: Work and collaboration should be done in public. See SIG governance, below. +* __Merit__: Ideas and contributions are accepted according to their technical merit and alignment with project objectives, scope and design principles. Engineering investment >> corporate sponsorship +* __Speed__: Contributing the time and effort to ensure fast decision-making is key to ensuring that the specifications produced is aligned to the fast iteration of machine learning technologies. + +## Community Roles + +### Members +Members are individuals who are interested in or participate in the ONNX community. Members are able to follow and participate in all public modes of communication used by the ONNX community including but not limited to GitHub, Slack, Stack Overflow, email announcements and discussion aliases. Members are expected to adhere to the Code of Conduct but do not have any specific responsibilities. + +### Contributors +Contributors are Members who are active contributors in the community. They can have issues and PRs assigned to them. They also have voting privileges. Contributors can be active in many ways including but not limited to: + +* Authoring or reviewing PRs on GitHub +* Filing or commenting on issues on GitHub +* Contributing to SIG, subproject, or community discussions (e.g. Slack, meetings, email discussion forums, Stack Overflow, etc) +* Creator of content, promoting and advocating the ONNX specification + +A Member can become a Contributor by being sponsored by 2 existing Approvers from different companies. Contributors who are not active in the last 12 months will be removed. + +### Approvers +Approvers are Contributors who are experienced with some aspect of the project and with general software engineering principles. Approvers are responsible for reviewing contributions for acceptance by considering not just code quality but also holistic impact of the contribution including compatibility, performance, and interactions with other areas. + +Approvers need to be active Contributors for at least 3 months and be sponsored by a SIG chair with no objections from other SIG chairs. + +### Member Companies +Member Companies are organizations that support ONNX in one or more of the following ways: +* Having employees participate in SIGs, Working Groups, or the Steering Committee +* Hosting a workshop or meetup for ONNX +* Providing resources for building or hosting ONNX assets +* Doing media or PR activities to promote ONNX +* Shipping a product that supports ONNX + +Member Companies do not have any voting rights, except via their employees who are Contributors. Affiliates and subsidiaries are considered part of the Member Company and not as separate organizations. Being a Member Company does not by itself confer any compliance or certification to the Member Company's products. + +Member Companies can request their logo be displayed on the website and other materials by following these [instructions](logo_request.md). + +## Organizational Structure + +The ONNX community is organized in the following manner, with all governance and execution being planned and coordinated as follows: + +* **Steering Committee** is made up of a set number of people whose charter it is to define and iterate on the vision, goals, and governance process of the ONNX community. +* **Special Interest Groups (SIGs)** are persistent groups that are responsible for specific parts of the project. SIGs must have open and transparent proceedings. Anyone is welcome to participate and contribute provided they follow the Code of Conduct. The purpose of a SIG is to develop a set of goals to be achieved over a set period of time, and then to gather input, drive consensus and closure, implement code contributions, and other related activities to achieve the goal. SIGs are also responsible for ongoing maintenance of the code in their areas. +* **Working Groups** are temporary groups that are formed to address issues that cross SIG boundaries. Working groups do not own any code ownership or other long term artifacts. Working groups can report back and act through involved SIGs. + +### Steering Committee + +#### Role + +The Steering Committee has a set of rights and responsibilities including the following: + +* Define, evolve, and defend the vision, values, mission, and scope of the project. +* Define, evolve, and defend a Code of Conduct, which must include a neutral, unbiased process for resolving conflicts. +* Define and evolve project governance structures and policies, including how members become contributors, approvers, SIG chairs, etc. +* Charter and refine policy for defining new community groups (Special Interest Groups, Working Groups, and any future possible defined structure), and establish transparency and accountability policies for such groups. +* Decide, for the purpose of elections, who is a member of standing of the ONNX project, and what privileges that entails. +* Decide which functional areas and scope are part of the ONNX project, including accepting new or pruning old SIGs and Working Groups. +* Decide how and when official releases of ONNX artifacts are made and what they include. +* Declare releases when quality/feature/other requirements are met. +* Control access to, establish processes regarding, and provide a final escalation path for any ONNX repository, which currently includes all repositories under the ONNX GitHub organizations +* Control and delegate access to and establish processes regarding other project resources/assets, including artifact repositories, build and test infrastructure, web sites and their domains, blogs, social-media accounts, etc. +* Define any certification process. +* Manage the ONNX brand and any outbound marketing. +* Make decisions by majority vote if consensus cannot be reached. + +#### Structure + +The Steering Committee consists of 5 individuals. No single Member Company may have more than 1 representative. Members serve 1 year terms. + +The starting composition will be individuals from Microsoft, Facebook, Amazon, and 2 other Member Companies, who have been picked by the three founding members based on contributions and experience. + +After the initial term of each Steering Committee representative is completed, their seat will be open for any contributor in the community to be elected into the seat via a community vote. Only contributors may vote, but would be restricted to one vote per Member Company. Therefore, if a Member Company had three contributors in good standing, the three contributors would have to select who would vote on their behalf. + +If a member of the Steering Committee changes companies, by default they retain and may continue on with the role. However, should their company/organization ask this person to resign from the role, new elections will be held. If the employment change results in a single Member Company having more than one representative, then one of them must resign, and new elections are held. + +The Steering Committee will decide on and publish an election process within 3 months of formalizing this organizational structure. This will cover voting eligibility, eligibility for candidacy, election process and schedule. During this time period, the Steering Committee will also establish SIGs and Working Groups. + +A Steering Committee member can be removed due to Code of Conduct violations. + +### SIG - Special Interest Groups + +#### Role + +The ONNX project is organized primarily into Special Interest Groups, or SIGs. Each SIG is comprised of individuals from multiple companies and organizations, with a common purpose of advancing the project with respect to a specific topic. + +Our goal is to enable a distributed decision structure and code ownership, as well as providing focused forums for getting work done, making decisions, and on-boarding new contributors. Every identifiable part of the project (e.g., repository, subdirectory, API, test, issue, PR, Slack channel) is intended to be owned by some SIG. At the time of inception of this organizational structure, the following SIGs will be present: + +* Architecture & Infra + * This SIG is responsible for defining and maintaining the core ONNX format, the build and CI/CD systems for ONNX repositories, publishing release packages for ONNX, the onnx-docker repository, and creating tools to help integrate with and test against the ONNX standard. This SIG is also the defacto owner of files in the main ONNX repository unless explicitly owned by another SIG. +* Operator Standardization + * This SIG is responsible for determining the operators that are part of the ONNX spec (ONNX and ONNX-ML domains), ensuring high quality operator definitions and documentation, establishing criteria for adding new operators, managing ops domains and compliance tiers, and enforcing versioning mechanisms. +* Converters + * This SIG is responsible for developing and maintaining the various converter repositories under ONNX. +* Model zoo and tutorials + * This SIG is responsible for the respective repositories with the charter of providing a comprehensive collection of state of the art ONNX models from a variety of sources and making it easy for users to get started with ONNX and the ecosystem around it. + +#### Structure + +SIGs must have at least one, and may have up to two SIG chairs at any given time. SIG chairs are intended to be organizers and facilitators, responsible for the operation of the SIG and for communication and coordination with the other SIGs, the Steering Committee, and the broader community. All SIG chairs are appointed by the Steering Committee. If there are more than two contributors being considered for a particular SIG, the Steering Committee will vote on and resolve who the chairs would be. Candidates need to be Approvers. + +Each SIG must have a charter that specifies its scope (topics, subsystems, code repos and directories), responsibilities, and areas of authority. Charters are submitted to the ONNX GitHub via PR for review and approval by the Steering Committee who will be looking to ensure the scope of the SIG as represented in the charter is reasonable. All SIGs are expected to follow the standards established by the Steering Committee for how Contributors are roles of authority/leadership are selected/granted, how decisions are made, and how conflicts are resolved. + +A primary reason that SIGs exist is as forums for collaboration. Much work in a SIG should stay local within that SIG. However, SIGs must communicate in the open, ensure other SIGs and community members can find meeting notes, discussions, designs, and decisions, and periodically communicate a high-level summary of the SIG's work to the community. SIGs are also responsible to: + +* Meet regularly, at least monthly +* Keep up-to-date meeting notes, linked from the SIG's page in the community repo +* Announce meeting agenda and minutes after each meeting, on their SIG mailing list and/or Slack channel +* Ensure the SIG's mailing list is archived (i.e on GitHub) +* Report activity in overall ONNX community meetings +* Participate in release planning meetings, retrospective, etc (if relevant) +* Actively triage issues, PRs, test failures, etc. related to code and tests owned by the SIG +* Use the above forums as the primary means of working, communicating, and collaborating, as opposed to private emails and meetings + +#### Decision making + +When it is time to formalize the work-product from a SIG, votes are taken from every contributor who participates in the SIG. The list of active contributors is determined by the one (or two) SIG leads to ensure that only those who have actively participated in the SIG can vote. At this time there is no restrictions on how many contributors from any one Member Company can participate (and hence vote). The Steering Committee will monitor how the community behaves and apply constraints if needed in the future. + +While most work shouldn’t require expensive coordination with other SIGs, there will be efforts (features, refactoring, etc.) that cross SIG boundaries. In this case, it is expected that the SIGs coordinate with each other and come to mutually agreed solutions. In some cases, it may make sense to form a Working Group for joint work. Cross-SIG coordination will naturally require more time and implies a certain amount of overhead. This is intentional to encourage changes to be well encapsulated whenever possible. + +### WG - Working Groups + +Working Groups (WGs) are primarily used to facilitate topics of discussion that cross SIG lines, or are topics which are short-lived and require a limited set of decisions to be agreed upon. Working groups: + +* do not own code +* have a clear goal measured through specific deliverables +* will be disbanded after the goal is achieved + +Working Groups can create specifications, recommendations, or implementations for submission to the relevant SIGs for approval and acceptance. At time of inception of this organizational structure, the following WGs will be present: + + * Edge / Mobile + * Training + * Quantization + * Data Processing + +Working Groups are formed by submitting a proposal via PR to the Steering Committee. The proposal should cover: + +* what is the exact problem being worked on +* what is the exit criteria +* who are the chairs (up to 2) +* what are the meeting and discussion mechanics + +Working Groups are disbanded when there is no activity for more than *3 months* or when the chair informs the Steering Committee. + +## Repository Guidelines + +All repositories under the ONNX github org: + +* Must adopt the ONNX Code of Conduct +* All code projects use the Apache 2.0 license. Documentation repositories must use the Creative Commons License version 4.0. +* Must adopt the DCO bot +* All OWNERS must be members of standing as defined by ability to vote in ONNX steering committee elections +* Repository must be approved by the Steering Committee + +Repositories can be removed when they are inactive by archiving them. + +(Code repositories previously used the MIT license and moved to Apache 2.0 in October 2020.) + +## CLA / DCO + +As of October 2020, the CLA (https://cla-assistant.io/onnx/onnx) has been retired. All commits are subject to the DCO (https://www.developercertificate.com/) and need to be signed. diff --git a/third_party/onnx/community/repo_guidelines.md b/third_party/onnx/community/repo_guidelines.md new file mode 100644 index 0000000000..15f0a02f0d --- /dev/null +++ b/third_party/onnx/community/repo_guidelines.md @@ -0,0 +1,35 @@ + + +# Repositories under ONNX GitHub organization + +The ONNX GitHub organization contains a number of repositories. Every repository is owned by a SIG and the Steering Committee is responsible for managing these repos. Requests for creating, transferring, modifying, or archiving repositories can be made by filing an issue a request against https://github.com/onnx/steering-committee. + +## Rules for all repos + +* Must be owned and managed by one of the ONNX SIGs +* Must be actively maintained +* Must adopt the ONNX Code of Conduct +* Must adopt the standard ONNX license(s) +* Must adopt the ONNX CLA bot +* Must adopt all ONNX automation (like LGTM) +* Must have CI or other automation in place for repos containing code to ensure quality +* All OWNERS must be members of standing as defined by ability to vote in Steering Committee elections. + +## Requirements for new, contributed repos + +We are happy to accept contributions as repos under the ONNX organization of new projects that meet the following requirements: + +* Project is closely related to ONNX +* Adds value to the ONNX ecosystem +* Determined to need a new repo rather than a folder in an existing repo +* All contributors must have signed the ONNX CLA +* Licenses of dependencies must be acceptable +* Committment to maintain the repo +* Approval of the SIG that will own the repo +* Approval of the Steering Committee + +If you want to contribute a repository, you should first work with the SIG that will own it. Then the SIG can work with the Steering Committee to finalize. + +## Archiving repos + +Repositories that are inactive or unneeded will be archived. The SIG that owns the repo is responsible for deciding when it should be archived. SIGs should regularly validate the repos they own are still active and necessary. diff --git a/third_party/onnx/community/sc-election-guidelines.md b/third_party/onnx/community/sc-election-guidelines.md new file mode 100644 index 0000000000..99adce30c7 --- /dev/null +++ b/third_party/onnx/community/sc-election-guidelines.md @@ -0,0 +1,67 @@ + + +# ONNX Steering Commitee election guideline + +## Introduction + +To encourage community participation and wider adoption in the industry, ONNX has introduced [open governance](https://github.com/onnx/onnx/wiki/Expanded-ONNX-Steering-Committee-Announced!) in March 2018. The governance has three defined structures to propel the development of ONNX project forward: [Steering Committee](/community/readme.md#steering-committee), [Special Interest Groups (SIGs)](/community/readme.md#sig---special-interest-groups), and [Working Groups (WGs)](/community/readme.md#wg---working-groups). While SIGs and WGs primarily focus on the techinical roadmap of ONNX, the Steering Committe is responsible for setting the vision and governance process of the ONNX community. + +For the first year of its ONNX open governance, representatives from Facebook, Microsoft, AWS, Intel and Nvidia are chosen to serve as the ONNX Steering Committee to help guide the project. The Steering Committee will be elected by the [Contributors](/community/readme.md#community-roles) in its second year and will be re-elected every year. + +This document is created to provide guidelines for the election process to ensure maximum transparency and fairness. + + +## Timeline + +Candidate applications will be accepted in April, and the election will be held in May. The new term for Steering Committee begins on June 1st of the corresponding year. The following table outlines the schedule for the election process. + +| Schedule | Event | +|:-------------|:--------------------| +| 1st Monday of April| Application for Steering Committee candidates open. | +| 3rd Monday of April| Candidates and their applications posted on github. Campaigning session held over video conference with an option to pre-record.| +| 1st Monday of May| Election begins. | +| 2nd Monday of May| Election closes, and votes counted. Election results announced in the same week.| +| 3rd Monday of May| Previous Steering Committee to meet the newly elected Committee for official transition.| +| June 1 | New term begins with elected Steering Committee. Steering Committee Emeritus members help with the transition for the month of June. | + + +## Eligibility + +### Eligibility for Steering Committee candidacy +Candidates will be self-nominated, and they do not necessarly need to be a [Contributor](/community/readme.md#community-roles) to the ONNX project. The duties of the Steering Committee extend beyond simply contributing code to the ONNX project. + + +### Eligibility for voting + +To participate in the Steering commitee election, you must be a Contributor to the ONNX project. As defined in the community guideline, Contributor is sponsored by 2 approvers from different companies. + +Contributors are further required to submit their github handle, email address, and affiliated company name to be eligible for voting. Any Contributor who has not submitted their information by before April 31st will not be able to participate in the election. The Steering Committee is currently reviewing options for collecting contributor information, and the best option will be notified to the Contributors shortly. + +## Candidacy process + +## Voting process + +### General election procedure +In order to promote fairness, the Steering Committee has decided to limit 1 vote per Member Company. Contributors will be able to vote individually, but their votes will be rolled up to represent the vote of associated Member Company. This procedure will prevent large companies with lots of Contributors from dominating the election results. + +### Voting mechanics and algorithm + +The election will use [Condorcet ranking](https://en.wikipedia.org/wiki/Condorcet_method) with [Schulze method](https://en.wikipedia.org/wiki/Schulze_method). Condorcet ranking allows voters to indicate ranked preference for candidates, and Schultz method provides an algorithm to tally the overall preference. + +For ONNX Steering Committee election, the Condorcet ranking with Schulze method will be performed twice. The individual Contributor votes gets tallied first to Member Companies, and the results of the Member Company votes are ranked again using the same method. + +### Voting platform +We will use Condorcet Internet Voting Service ([civs.cs.cornell.edu](https://civs.cs.cornell.edu/)) to collect votes from Contributors. + +After votes are casted, the results of individual votes will be uploaded to ONNX Github election directory to ensure transparency. + +## Election officers and Steering Committee emeritus members + +### Election officers +Two election officers will be chosen from the current Steering committee to oversee the election process. They are responsible for overseeing the progress of the election and ensure the process is correctly implemented. Their duties include coordinating election as shown in the timeline above, tallying votes and announcing results for the ONNX community. + +### Steering Committee emeritus members +Two Steering Committee members will remain as emeritus members for the newly elected Committee to help with transition process for 1 month. If previous Steering Committee members are relected, then they will guide the transition for the new members, and there will not be a separate Steering Committe emeritus members. + + + diff --git a/third_party/onnx/community/sigs.md b/third_party/onnx/community/sigs.md new file mode 100644 index 0000000000..c294d388f9 --- /dev/null +++ b/third_party/onnx/community/sigs.md @@ -0,0 +1,20 @@ + + +# SIGs - Special Interest Groups + +As described in the ONNX [governance](/community/readme.md#sig---special-interest-groups), Special Interest Groups (SIGs) are persistent groups responsible for specific parts of the project. SIGs have open and transparent proceedings to develop goals and implement code contributions. SIGs are also responsible for ongoing maintenance of the code in their areas. + +## Joining a SIG + +If you are interested in participating, please [join the discussion](https://slack.lfai.foundation/) in the respective Slack channels. Details about any upcoming meetings will also be shared in the Slack channels. SIG artifacts can be found in the [sigs repository](https://github.com/onnx/sigs). + +You can find the schedule of SIG meetings on the [LF AI calendar](https://wiki.lfai.foundation/pages/viewpage.action?pageId=18481196) + +## Current SIGs + +| Name | Responsibilities | +| ---- | ---------------- | +| [Architecture & Infra](https://lfaifoundation.slack.com/archives/C018Y2QG7V2) | Defining and maintaining the core ONNX format, the build and CI/CD systems for ONNX repositories, publishing release packages for ONNX, the onnx-docker repository, and creating tools to help integrate with and test against the ONNX standard. This SIG is also the defacto owner of files in the main ONNX repository unless explicitly owned by another SIG. | +| [Operators](https://lfaifoundation.slack.com/archives/C018Y2RAY4C) | Determining the operators that are part of the ONNX spec (ONNX and ONNX-ML domains), ensuring high quality operator definitions and documentation, establishing criteria for adding new operators, managing ops domains and compliance tiers, and enforcing versioning mechanisms. | +| [Converters](https://lfaifoundation.slack.com/archives/C0171FSKZBN) | Developing and maintaining the various converter repositories under ONNX. | +| [Models and tutorials](https://lfaifoundation.slack.com/archives/C018RE2BRBL) | Providing a comprehensive collection of state of the art ONNX models from a variety of sources and making it easy for users to get started with ONNX and the ecosystem around it. | diff --git a/third_party/onnx/community/working-groups.md b/third_party/onnx/community/working-groups.md new file mode 100644 index 0000000000..4d03b35997 --- /dev/null +++ b/third_party/onnx/community/working-groups.md @@ -0,0 +1,37 @@ + + +# Working Groups + +As described in the ONNX [governance](/community/readme.md#wg---working-groups), Working Groups (WGs) are temporary groups formed to address issues that cross SIG boundaries. Working Groups have a have a clear goal measured through specific deliverables and disband after the goal is achieved. Working groups do not own artifacts long term; they create specifications, recommendations, and/or code implementations for submission to the relevant SIGs for approval and acceptance. + +## Proposing a new working group +New Working Groups are created when there is sufficient interest in a topic area and someone volunteers to be the chair for the group and submits a proposal to the steering committee. The chair facilitates the discussion and helps synthesize proposals and decisions. + +## Joining a working group +Working Groups have most of their discussions on Slack. If you are interested in participating, please join the discussion in the respective Slack channels. Details about any upcoming meetings will also be shared in the Slack channel. Working Group artifacts can be found in the [working-groups repository](https://github.com/onnx/working-groups). + +You can find the schedule of meetings on the [LF AI wiki](https://wiki.lfai.foundation/pages/viewpage.action?pageId=18481196) + +## Active working groups + +| Working Group | Objectives | +| ------------------ | ------------- | +| [Release](https://lfaifoundation.slack.com/archives/C018VGGJUGK) | Improve the release process for ONNX | +| [Training](https://lfaifoundation.slack.com/archives/C018K560U14) | Expand ONNX to support training as well as inference | +| [Preprocessing](https://lfaifoundation.slack.com/archives/C02AANGFBJB) | Make data preprocessing part of ONNX | + +## Completed working groups + +| Working Group | Objectives | Status | +| ------------------ | ------------- | ------ | +| [Control Flow and Loops](https://gitter.im/onnx/ControlFlowWG) | Enable dynamic control structures to enable advanced models for NLP, speech, and video/image processing | Completed - If, Loop, and Scan operators were added in ONNX 1.3 release. | +| [Quantization](https://gitter.im/onnx/quantization) | Enhance ONNX to support quantized data types and operators on a variety of runtimes and hardware devices | Completed - added in ONNX 1.5 release. | +| [Foundation](https://gitter.im/onnx/foundation) | Identify and evaluate non-profit foundation options for the ONNX consortium. Execute on best option. | Completed - ONNX joined LF AI in November 2019| + +## Inactive working groups + +| Working Group | Objectives | Status | +| ------------------ | ------------- | ------ | +| [Testing/Compliance](https://gitter.im/onnx/test_compliance) | Create tools, tests and APIs to ensure models and backends comply with the ONNX specification | became part of the ArchInfra SIG for now | +| [Edge/Mobile](https://gitter.im/onnx/edge) | Enable deployment of ONNX models to edge platforms by identifying the ONNX operators that must be supported by mobile and IoT runtimes, defining tool chain requirements, and contributing to ONNX compatibility tests | Stopped as of January 2020 | +| [Data Pipelines](https://gitter.im/onnx/pipelines) | Define new operators for processing the data that goes in and comes out | No recent activity | diff --git a/third_party/onnx/docs/AddNewOp.md b/third_party/onnx/docs/AddNewOp.md new file mode 100644 index 0000000000..3f87cb65e6 --- /dev/null +++ b/third_party/onnx/docs/AddNewOp.md @@ -0,0 +1,98 @@ + + +# Table of Contents +1. [New Operator or Function](#new_operator_or_function) + 1. [Step 1: Proposing a new operator/function](#step1_new_operator_or_function) + 2. [Step 2: Submit PR](#step2_new_operator_or_function) + 3. [Step 3: PR Review by Operators SIG](#step3_new_operator_or_function) + 4. [Step 4: ONNX release](#step4_new_operator_or_function) + +2. [Removing Operator or Function](#removing_operator_or_function) + 1. [Removing operator](#removing_operator) + 2. [Removing function](#removing_function) + 3. [Document removing operator or function](#document_removing_operator_or_function) + +# Proposing and submitting a new operator or function to ONNX + +Operators are the basic building blocks that define ONNX model. With a rich set of operators, ONNX can describe most DNN and ML models from various frameworks. Functions allow for composing complex operators from more primitive operators. The ONNX specification includes a core set of operators that enable many models. It is a non-goal to add all possible operators, however more operators are added as needed to cover evolving needs. + +In this document, we describe the process of accepting a new proposed operator and how to properly submit a new operator as part of ONNX standard. The goal is to improve on what we currently have based on our experience, learning and feedbacks we gathered from the community. + +## 4 steps to add an operator +1. Decide what to propose +2. Submit PR for new operator/function +3. Review of PR by Operators SIG +4. Merging of PR and inclusion in next ONNX release + +## Step 1: Proposing a new operator/function +In order to propose a new operator/function, the following is needed: +1. If the operator can be composed by other ONNX operators, then it should be a function and not an operator (we have a function in ONNX : MeanVarianceNormalization). +2. If the operators can be split to new primitives, propose those primitives instead and make the operator a function. +3. Based on a model. This will help us understand the usage and that it solves an actual problem. For the case of the model being private or IP and can't be shared, the operator doesn't belong to the standard and should be implemented as custom OP. +4. The operator needs to be implemented by at-least one (well-known) framework. This help us to understand the actual behavior of the operator and its usage. +5. Operator signature and behavior: + 1. If the operator is available in numpy, prefer numpy semantics. + 2. If the operator is available in more than one frameworks, make sure that your design is general and cover those frameworks. +6. Prefer attributes over inputs. + +## Step 2: Submit PR +Once the criteria of proposing new operator/function has been satisfied, you will need to submit a PR for the new operator/function. Here the expectation of what the PR should include. The reviewer is expected to verify the completeness of the PR before signoff. +1. Description: + 1. Write a detailed description about the operator, and its expected behavior. Pretty much, the description should be clear enough to avoid confusion between implementors. + 2. Add an example in the description to illustrate the usage. + 3. Add reference to the source of the operator in the corresponding framework in the description (if possible). + 4. Write the mathematic formula or a pseudocode in the description. The core algorithm needs to be very clear. +2. Write a reference implementation in Python, this reference implementation should cover all the expected behavior of the operator. Only in extremely rare case, we will waive this requirement. +3. Operator version: check out our +[versioning doc](/docs/Versioning.md#operator-versioning) +4. Write unit test, that cover main usage and corner cases. + 1. The testing examples will be extracted to the doc. + 2. We also generate binary data for it. + 3. Example: [onnx/backend/test/case/node/abs.py](/onnx/backend/test/case/node/abs.py) +5. Add at least one automatic upgrade test for your operator in [onnx/test/automatic_upgrade_test.py](/onnx/test/automatic_upgrade_test.py) using `_test_op_upgrade`. These tests create a given operator at a given opset version (usually the version the operator was introduced in) and test that the version converter is able to convert them to the highest available version. So for a new operator `_test_op_upgrade` will not test anything, but as soon as the operator gets updated in a future opset the test will autoamtically become nontrivial. +6. Update the documentation and generate the test data. + 1. Running [the script](/tools/update_doc.sh) +to update the doc and generate the test data. +7. Shape Inference function + 1. Please provide a shape inference function in cases where it is meaningful and applicable. + 2. In cases where shape inference is not possible, it must have logic to perform +rank inference at the very least (adding right amount of dimensions to the output shape) + 3. Shape inference functions must be accompanied by unit tests ([onnx/test/shape_inference_test.py](/onnx/test/shape_inference_test.py)). + 4. You can refer to the shape inference function for the `TopK` operator while implementing your own function ([onnx/defs/math/defs.cc](/onnx/defs/math/defs.cc)) + +### Example to Follow +[PR 1959](https://github.com/onnx/onnx/pull/1959) is a good example to follow. + +## Step 3: PR Review by Operators SIG +The [Operators SIG](https://github.com/onnx/sigs/tree/main/operators) is responsible for the operators/functions in the ONNX specification. The SIG regularly meets and reviews PRs. + +### Sign-off +At least two sign-off from the Operators SIG [contributors](https://github.com/onnx/onnx/tree/main/community#community-roles). + +## Step 4: ONNX release +Once the PR is reviewed and signed off by the Operators SIG, it will be merged. Your new operator/function will be part of the main branch and available to anyone building from source. These are not official releases. ONNX periodically releases official new versions that are a snapshot of the main branch. Your new operator/function will be part of that release. + +# Removing operator or function +There are a lot of reasons for removing existing ONNX operator or function, such us being replaced with different operator or can be decomposed by a set of other operators. This document describes the criteria of removing an existing ONNX operator from the standard. + +## Removing operator +Any operator in ONNX was added because it was required by a model and/or framework. In order to deprecate such an operator we need to do the following. +* Operator can’t be deprecated unless there is a replacement. + * Replacement can be a more general operator that supersedes the old one. + * Or a set of primitive operators that together can implement the same functionality and behavior of the deprecated operator (Function). +* If the deprecated operator can be decomposed by existing operators then it must be converted to a function. +* If replacement isn’t in ONNX standard yet, then add the replacement operator or set of operators first. +* Add a version adapter which turns the operator into its replacement for the version converter. Example: [onnx/version_converter/adapters/upsample_9_10.h](/onnx/version_converter/adapters/upsample_9_10.h) +* No grace period is needed for deprecated operators. + +## Removing function +Function, by definition, is composed of ONNX primitives; however, function could have been accelerated by framework or runtime that support ONNX. So, removing function is not recommended, with the exception of adding another single function which supersede its functionality. + +## Document removing operator or function +To make sure everyone is aware of the deprecation, the following need to happen: +* Any removed operator or function from ONNX need to be mentioned in the release note. +* Their old documentation needs to be updated to show the new replacement and the mapping between the old to the new. + * Only `def.cc` need to be remove, `old.cc` will remain. + * `old.cc` need to be updated with the mapping to the replacement. +* ONNX checker need to be updated to error with a proper message. +* All removed operators need to be appended at the end of the `operator.md` file. diff --git a/third_party/onnx/docs/Broadcasting.md b/third_party/onnx/docs/Broadcasting.md new file mode 100644 index 0000000000..02be7251f6 --- /dev/null +++ b/third_party/onnx/docs/Broadcasting.md @@ -0,0 +1,72 @@ + + +# Broadcasting in ONNX + +In ONNX, element-wise operators can take inputs with different shape, +as long as the input tensors are broadcastable to the same shape. +ONNX supports two types of broadcasting: multidirectional broadcasting and +unidirectional broadcasting. We will introduce these two types of broadcasting +respectively in the following sections. + + +## Multidirectional Broadcasting + +In ONNX, a set of tensors are multidirectional broadcastable to the same shape +if one of the following is true: +- The tensors all have exactly the same shape. +- The tensors all have the same number of dimensions and the length of +each dimensions is either a common length or 1. +- The tensors that have too few dimensions can have their shapes prepended +with a dimension of length 1 to satisfy property 2. + +For example, the following tensor shapes are supported by multidirectional broadcasting: + +- shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (2, 3, 4, 5), shape(B) = (5,), ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (4, 5), shape(B) = (2, 3, 4, 5), ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (1, 4, 5), shape(B) = (2, 3, 1, 1), ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (3, 4, 5), shape(B) = (2, 1, 1, 1), ==> shape(result) = (2, 3, 4, 5) + +Multidirectional broadcasting is the same as [Numpy's broadcasting](https://docs.scipy.org/doc/numpy/user/basics.broadcasting.html#general-broadcasting-rules). + +Multidirectional broadcasting is supported by the following operators in ONNX: +- [Add](Operators.md#Add) +- [And](Operators.md#And) +- [Div](Operators.md#Div) +- [Equal](Operators.md#Equal) +- [Greater](Operators.md#Greater) +- [Less](Operators.md#Less) +- [Max](Operators.md#Max) +- [Mean](Operators.md#Mean) +- [Min](Operators.md#Min) +- [Mul](Operators.md#Mul) +- [Or](Operators.md#Or) +- [Pow](Operators.md#Pow) +- [Sub](Operators.md#Sub) +- [Sum](Operators.md#Sum) +- [Where](Operators.md#Where) +- [Xor](Operators.md#Xor) + +## Unidirectional Broadcasting + +In ONNX, tensor B is unidirectional broadcastable to tensor A +if one of the following is true: +- Tensor A and B both have exactly the same shape. +- Tensor A and B all have the same number of dimensions and the length of +each dimensions is either a common length or B's length is 1. +- Tensor B has too few dimensions, and B can have its shapes prepended +with a dimension of length 1 to satisfy property 2. + +When unidirectional broadcasting happens, the output's shape is the same as +the shape of A (i.e., the larger shape of two input tensors). + +In the following examples, tensor B is unidirectional broadcastable to tensor A: + +- shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (2, 3, 4, 5), shape(B) = (5,), ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (2, 3, 4, 5), shape(B) = (2, 1, 1, 5), ==> shape(result) = (2, 3, 4, 5) +- shape(A) = (2, 3, 4, 5), shape(B) = (1, 3, 1, 5), ==> shape(result) = (2, 3, 4, 5) + +Unidirectional broadcasting is supported by the following operators in ONNX: +- [Gemm](Operators.md#Gemm) +- [PRelu](Operators.md#PRelu) diff --git a/third_party/onnx/docs/CIPipelines.md b/third_party/onnx/docs/CIPipelines.md new file mode 100644 index 0000000000..1fdec6a836 --- /dev/null +++ b/third_party/onnx/docs/CIPipelines.md @@ -0,0 +1,32 @@ + + +## ONNX CI Pipelines + +* CI pipelines matrix: + + |   | When it runs | Config | Test | + -- | -- | -- | -- | + [Linux-CI](/.azure-pipelines/Linux-CI.yml) | Every PR |
  • Ubuntu-18.04
  • DEBUG=1 or 0
  • ONNX_USE_LITE_PROTO=ON or OFF
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_BUILD_TESTS=1
  • ONNX_WERROR=ON
  • ONNX_ML=1 or 0
|
  • ONNX C++ tests
  • Style check (flake8 and mypy)
  • Test doc generation
  • Test proto generation
  • Verify backend node data
  • Verify node test generation
| + [Windows-CI](/.azure-pipelines/Windows-CI.yml) | Every PR  |
  • vs2017-win2016
  • ONNX_USE_LITE_PROTO=ON
  • ONNX_USE_PROTOBUF_SHARED_LIBS=ON
  • ONNX_BUILD_TESTS=1
  • ONNX_WERROR=ON
  • ONNX_ML=1 or 0
|
  • Test building ONNX in conda environment
  • Test doc generation
  • Test proto generation
| + [Mac-CI](/.azure-pipelines/MacOS-CI.yml) | Every PR  |
  • macOS-10.14
  • DEBUG=1
  • ONNX_USE_LITE_PROTO=ON or OFF
  • ONNX_ML=1 or 0
  • ONNX_BUILD_TESTS=1
  • ONNX_WERROR=ON
|
  • ONNX C++ tests
  • Test doc generation
  • Test proto generation
| + [Windows_No_Exception CI](/.github/workflows/win_no_exception_ci.yml) | Every PR  |
  • vs2019-winlatest
  • ONNX_DISABLE_EXCEPTIONS=ON
  • ONNX_USE_LITE_PROTO=ON
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
  • ONNX_USE_MSVC_STATIC_RUNTIME=ON
  • ONNX_DISABLE_STATIC_REGISTRATION=ON or OFF
|
  • Only ONNX C++ tests
  • Test selective schema loading
| + [WindowsRelease](/.github/workflows/release_win.yml) |
  • Main branch
  • Release branch
  • Weekly(1)
|
  • Latest Windows
  • x86 and x64
  • ONNX_USE_LITE_PROTO=ON
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
  • ONNX_USE_MSVC_STATIC_RUNTIME=OFF
|
  • Release Windows wheel
  • Release onnx-weekly package
  • Verify backend node data
  • Verify node test generation
  • Verify with different dependency versions - latest numpy version, latest and min supported protobuf version(2)
  • Verify ONNX with the latest [ort-nightly](https://test.pypi.org/project/ort-nightly/)(3).
| + [LinuxRelease_aarch64](/.github/workflows/release_linux_aarch64.yml) |
  • Main branch
  • Release branch
  • Weekly
  |
  • Latest manylinux2014_aarch64
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
|
  • Release Linux aarch64 wheel
  • Release onnx-weekly package
  • Verify backend node data
  • Verify node test generation
  • Verify with different dependency versions - latest numpy version, latest and min supported protobuf version
  • Verify ONNX with the latest ort-nightly.
| + [LinuxRelease_x86_64](/.github/workflows/release_linux_x86_64.yml) |
  • Main branch
  • Release branch
  • Weekly
|
  • Latest LinuxRelease_x86_64
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
|
  • Release Linux x86_64 wheel
  • Release onnx-weekly package
  • Test TEST_HUB=1(4)
  • Verify backend node data
  • Verify node test generation
  • Verify with different dependency versions - latest numpy version, latest and min supported protobuf version
  • Verify ONNX with the latest ort-nightly.
| + [MacRelease](/.github/workflows/release_win.yml) |
  • Main branch
  • Release branch
  • Weekly
|
  • macos-10.15
  • MACOSX_DEPLOYMENT_TARGET=10.12(5)
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
|
  • Release Mac wheel
  • Release onnx-weekly package
  • Verify backend node data
  • Verify node test generation
  • Verify with different dependency versions - latest numpy version, latest and min supported protobuf version
  • Verify ONNX with the latest ort-nightly.
  • Test source distribution generation
  • Test build with source distribution
  • Release onnx-weekly source distribution
+ [Weekly CI with latest onnx.checker](/.github/workflows/weekly_mac_ci.yml) | weekly(6) |
  • macos-latest
  • MACOSX_DEPLOYMENT_TARGET=10.15
  • ONNX_USE_PROTOBUF_SHARED_LIBS=OFF
  • ONNX_ML=1
|
  • Test latest ONNX checker
  • Test latest ONNX shape inference
  • With all models from [onnx/models](https://github.com/onnx/models)(7)
| + + * (1) When the release CIs will run: + * After a PR has been merged into main/rel-* branch + * Run weekly (Sunday midnight) and release Python wheel to [onnx-weekly](https://test.pypi.org/project/onnx-weekly/) package on TestPyPI. + * Any PR targeting rel-* branch + * To manually run them, add a PR label "run release CIs" (only maintainers have permission). + * (2) Minimum supported versions are listed [here](/requirements.txt). + * (3) [Test](/onnx/test/test_with_ort.py) ONNX Python wheel with `onnxruntime.InferenceSession` from latest ONNXRuntime. Please note that ort-nightly does not support Windows-x86 thus its verification is skipped. + * (4) TEST_HUB=1 will test [onnx.hub](/onnx/test/hub_test.py) by using this API to download an ONNX model from onnx/models. This test is restricted to only 1 pipeline for saving quota usage. + * (5) Although the build environment is macos-10.15, use MACOSX_DEPLOYMENT_TARGET=10.12 and -p [macosx_10_12_x86_64](https://github.com/onnx/onnx/blob/2e048660ffa8243596aaf3338e60c7c0575458f2/.github/workflows/release_mac.yml#L74) to force the wheel to support 10.12+. + + * (6): + * The ONNX Model Zoo test will run weekly (Sunday midnight) + * To manually trigger it, add a PR label "test ONNX Model Zoo" (only maintainers have permission). Please note that it will need a lot of download bandwidth from [onnx/models](https://github.com/onnx/models) so use it with caution. + * (7) Some old deprecated models (opset-1) are [skipped](/workflow_scripts/config.py). diff --git a/third_party/onnx/docs/CONTRIBUTING.md b/third_party/onnx/docs/CONTRIBUTING.md new file mode 100644 index 0000000000..9b0c2aeac9 --- /dev/null +++ b/third_party/onnx/docs/CONTRIBUTING.md @@ -0,0 +1,118 @@ + + +# Development + +To build ONNX from source please follow the instructions listed [here](https://github.com/onnx/onnx#build-onnx-from-source). + +Then, after you have made changes to Python and C++ files: + +- `Python files`: the changes are effective immediately in your installation. You don't need to install these again. +- `C++ files`: you need to install these again to trigger the native extension build. + +Assuming build succeed in the initial step, simply running +``` +pip install -e . +``` +from onnx root dir should work. + +## Folder structure + +- `onnx/`: the main folder that all code lies under + - `onnx.proto`: the protobuf that contains all the structures + - `checker.py`: a utility to check whether a serialized ONNX proto is legal + - `shape_inference.py`: a utility to infer types and shapes for ONNX models + - `version_converter.py`: a utility to upgrade or downgrade version for ONNX models + - `parser.py`: a utility to create an ONNX model or graph from a textual representation + - `hub.py`: a utility for downloading models from [ONNX Model Zoo](https://github.com/onnx/models) + - `compose.py`: a utility to merge ONNX models + - `helper.py`: tools for graph operation + - `defs/`: a subfolder that defines the ONNX operators + - `test/`: test files + +## Generated operator documentation + +[Operator docs in Operators.md](Operators.md) are automatically generated based on C++ operator definitions and backend Python snippets. To refresh these docs, run the following commands from the repo root and commit the results. Note `ONNX_ML=0` updates Operators.md whereas `ONNX_ML=1` updates Operators-ml.md: + +``` +set ONNX_ML=0 +pip install setup.py +python onnx/defs/gen_doc.py +``` + +## Adding a new operator + +ONNX is an open standard, and we encourage developers to contribute high +quality operators to ONNX specification. +Before proposing a new operator, please read [the tutorial](AddNewOp.md). + +# Code style + +We use flake8, mypy, and clang-format for checking code format. +*Note: You'll find the versions of these tools in `setup.py`.* +You can run these checks by: + +``` +pip install -e .[lint] + +./tools/style.sh +``` + +# Testing + +ONNX uses [pytest](https://docs.pytest.org) as a test driver. To run tests, you'll first need to install pytest: + +``` +pip install pytest nbval +``` + +After installing pytest, run from the root of the repo: + +``` +pytest +``` + +to begin the tests. + +You'll need to regenerate test coverage too, by running this command from the root of the repo: + +``` +python onnx\backend\test\stat_coverage.py +``` + +## Cpp tests (googletest) + +Some functionalities are tested with googletest. Those tests are listed in `test/cpp`, and include tests for shape inference, data propagation, parser, and others. + +To run them, first build ONNX with `-DONNX_BUILD_TESTS=1` or `ONNX_BUILD_TESTS=1 pip install -e .` and then run `.setuptools-cmake-build/onnx_gtests`. + +# Static typing (mypy) + +We use [mypy](http://mypy-lang.org/) to run static type checks on the onnx code base. To check that your code passes, you'll first need to install the mypy type checker. If you're using python 3, call from your onnx source folder: + +``` +pip install -e .[lint] +``` + +*Note: You'll find the version we're currently using in `setup.py`.* + +After having installed mypy, you can run the type checks: + +``` +python setup.py typecheck +``` +# CI Pipelines + +Every PR needs to pass CIs before merge. CI pipelines details are [here](CIPipelines.md). + +# Other developer documentation + +* [How to implement ONNX backend (ONNX to something converter)](ImplementingAnOnnxBackend.md) +* [Backend test infrastructure and how to add tests](OnnxBackendTest.md) + +# License + +[Apache License v2.0](/LICENSE) + +# Code of Conduct + +[ONNX Open Source Code of Conduct](http://onnx.ai/codeofconduct.html) diff --git a/third_party/onnx/docs/Changelog-ml.md b/third_party/onnx/docs/Changelog-ml.md new file mode 100644 index 0000000000..30f5beca97 --- /dev/null +++ b/third_party/onnx/docs/Changelog-ml.md @@ -0,0 +1,1149 @@ + +## Operator Changelog +*This file is automatically generated from the + [def files](/onnx/defs) via [this script](/onnx/defs/gen_doc.py). + Do not modify directly and instead edit operator definitions.* + +For an operator input/output's differentiability, it can be differentiable, + non-differentiable, or undefined. If a variable's differentiability + is not specified, that variable has undefined differentiability. + +# ai.onnx.ml +## Version 1 of the 'ai.onnx.ml' operator set +### **ai.onnx.ml.ArrayFeatureExtractor-1** + + Select elements of the input tensor based on the indices passed.
+ The indices are applied to the last axes of the tensor. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Inputs + +
+
X : T
+
Data to be selected
+
Y : tensor(int64)
+
The indices, based on 0 as the first index of any dimension.
+
+ +#### Outputs + +
+
Z : T
+
Selected output data as an array
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32), tensor(string)
+
The input must be a tensor of a numeric type or string. The output will be of the same tensor type.
+
+ +### **ai.onnx.ml.Binarizer-1** + + Maps the values of the input tensor to either 0 or 1, element-wise, based on the outcome of a comparison against a threshold value. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
threshold : float (default is 0.0)
+
Values greater than this are mapped to 1, others to 0.
+
+ +#### Inputs + +
+
X : T
+
Data to be binarized
+
+ +#### Outputs + +
+
Y : T
+
Binarized output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type. The output will be of the same tensor type.
+
+ +### **ai.onnx.ml.CastMap-1** + + Converts a map to a tensor.
The map key must be an int64 and the values will be ordered + in ascending order based on this key.
The operator supports dense packing or sparse packing. + If using sparse packing, the key cannot exceed the max_map-1 value. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cast_to : string (default is TO_FLOAT)
+
A string indicating the desired element type of the output tensor, one of 'TO_FLOAT', 'TO_STRING', 'TO_INT64'.
+
map_form : string (default is DENSE)
+
Indicates whether to only output as many values as are in the input (dense), or position the input based on using the key of the map as the index of the output (sparse).
One of 'DENSE', 'SPARSE'.
+
max_map : int (default is 1)
+
If the value of map_form is 'SPARSE,' this attribute indicates the total length of the output tensor.
+
+ +#### Inputs + +
+
X : T1
+
The input map that is to be cast to a tensor
+
+ +#### Outputs + +
+
Y : T2
+
A tensor representing the same data as the input map, ordered by their keys
+
+ +#### Type Constraints + +
+
T1 : map(int64, string), map(int64, float)
+
The input must be an integer map to either string or float.
+
T2 : tensor(string), tensor(float), tensor(int64)
+
The output is a 1-D tensor of string, float, or integer.
+
+ +### **ai.onnx.ml.CategoryMapper-1** + + Converts strings to integers and vice versa.
+ Two sequences of equal length are used to map between integers and strings, + with strings and integers at the same index detailing the mapping.
+ Each operator converts either integers to strings or strings to integers, depending + on which default value attribute is provided. Only one default value attribute + should be defined.
+ If the string default value is set, it will convert integers to strings. + If the int default value is set, it will convert strings to integers. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cats_int64s : list of ints
+
The integers of the map. This sequence must be the same length as the 'cats_strings' sequence.
+
cats_strings : list of strings
+
The strings of the map. This sequence must be the same length as the 'cats_int64s' sequence
+
default_int64 : int (default is -1)
+
An integer to use when an input string value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
default_string : string (default is _Unused)
+
A string to use when an input integer value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
+ +#### Inputs + +
+
X : T1
+
Input data
+
+ +#### Outputs + +
+
Y : T2
+
Output data. If strings are input, the output values are integers, and vice versa.
+
+ +#### Type Constraints + +
+
T1 : tensor(string), tensor(int64)
+
The input must be a tensor of strings or integers, either [N,C] or [C].
+
T2 : tensor(string), tensor(int64)
+
The output is a tensor of strings or integers. Its shape will be the same as the input shape.
+
+ +### **ai.onnx.ml.DictVectorizer-1** + + Uses an index mapping to convert a dictionary to an array.
+ Given a dictionary, each key is looked up in the vocabulary attribute corresponding to + the key type. The index into the vocabulary array at which the key is found is then + used to index the output 1-D tensor 'Y' and insert into it the value found in the dictionary 'X'.
+ The key type of the input map must correspond to the element type of the defined vocabulary attribute. + Therefore, the output array will be equal in length to the index mapping vector parameter. + All keys in the input dictionary must be present in the index mapping vector. + For each item in the input dictionary, insert its value in the output array. + Any keys not present in the input dictionary, will be zero in the output array.
+ For example: if the ``string_vocabulary`` parameter is set to ``["a", "c", "b", "z"]``, + then an input of ``{"a": 4, "c": 8}`` will produce an output of ``[4, 8, 0, 0]``. + + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
int64_vocabulary : list of ints
+
An integer vocabulary array.
One and only one of the vocabularies must be defined.
+
string_vocabulary : list of strings
+
A string vocabulary array.
One and only one of the vocabularies must be defined.
+
+ +#### Inputs + +
+
X : T1
+
A dictionary.
+
+ +#### Outputs + +
+
Y : T2
+
A 1-D tensor holding values from the input dictionary.
+
+ +#### Type Constraints + +
+
T1 : map(string, int64), map(int64, string), map(int64, float), map(int64, double), map(string, float), map(string, double)
+
The input must be a map from strings or integers to either strings or a numeric type. The key and value types cannot be the same.
+
T2 : tensor(int64), tensor(float), tensor(double), tensor(string)
+
The output will be a tensor of the value type of the input map. It's shape will be [1,C], where C is the length of the input dictionary.
+
+ +### **ai.onnx.ml.FeatureVectorizer-1** + + Concatenates input tensors into one continuous output.
+ All input shapes are 2-D and are concatenated along the second dimention. 1-D tensors are treated as [1,C]. + Inputs are copied to the output maintaining the order of the input arguments.
+ All inputs must be integers or floats, while the output will be all floating point values. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
inputdimensions : list of ints
+
The size of each input in the input list
+
+ +#### Inputs (1 - ∞) + +
+
X (variadic) : T1
+
An ordered collection of tensors, all with the same element type.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
The output array, elements ordered as the inputs.
+
+ +#### Type Constraints + +
+
T1 : tensor(int32), tensor(int64), tensor(float), tensor(double)
+
The input type must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.Imputer-1** + + Replaces inputs that equal one value with another, leaving all other elements alone.
+ This operator is typically used to replace missing values in situations where they have a canonical + representation, such as -1, 0, NaN, or some extreme value.
+ One and only one of imputed_value_floats or imputed_value_int64s should be defined -- floats if the input tensor + holds floats, integers if the input tensor holds integers. The imputed values must all fit within the + width of the tensor element type. One and only one of the replaced_value_float or replaced_value_int64 should be defined, + which one depends on whether floats or integers are being processed.
+ The imputed_value attribute length can be 1 element, or it can have one element per input feature.
In other words, if the input tensor has the shape [*,F], then the length of the attribute array may be 1 or F. If it is 1, then it is broadcast along the last dimension and applied to each feature. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
imputed_value_floats : list of floats
+
Value(s) to change to
+
imputed_value_int64s : list of ints
+
Value(s) to change to.
+
replaced_value_float : float (default is 0.0)
+
A value that needs replacing.
+
replaced_value_int64 : int (default is 0)
+
A value that needs replacing.
+
+ +#### Inputs + +
+
X : T
+
Data to be processed.
+
+ +#### Outputs + +
+
Y : T
+
Imputed output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type, either [N,C] or [C]. The output type will be of the same tensor type and shape.
+
+ +### **ai.onnx.ml.LabelEncoder-1** + + Converts strings to integers and vice versa.
+ If the string default value is set, it will convert integers to strings. + If the int default value is set, it will convert strings to integers.
+ Each operator converts either integers to strings or strings to integers, depending + on which default value attribute is provided. Only one default value attribute + should be defined.
+ When converting from integers to strings, the string is fetched from the + 'classes_strings' list, by simple indexing.
+ When converting from strings to integers, the string is looked up in the list + and the index at which it is found is used as the converted value. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classes_strings : list of strings
+
A list of labels.
+
default_int64 : int (default is -1)
+
An integer to use when an input string value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
default_string : string (default is _Unused)
+
A string to use when an input integer value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
+ +#### Inputs + +
+
X : T1
+
Input data.
+
+ +#### Outputs + +
+
Y : T2
+
Output data. If strings are input, the output values are integers, and vice versa.
+
+ +#### Type Constraints + +
+
T1 : tensor(string), tensor(int64)
+
The input type must be a tensor of integers or strings, of any shape.
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, and will have the same shape as the input.
+
+ +### **ai.onnx.ml.LinearClassifier-1** + + Linear classifier + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_ints : list of ints
+
Class labels when using integer labels. One and only one 'classlabels' attribute must be defined.
+
classlabels_strings : list of strings
+
Class labels when using string labels. One and only one 'classlabels' attribute must be defined.
+
coefficients : list of floats (required)
+
A collection of weights of the model(s).
+
intercepts : list of floats
+
A collection of intercepts.
+
multi_class : int (default is 0)
+
Indicates whether to do OvR or multinomial (0=OvR is the default).
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the scores vector.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
+ +#### Inputs + +
+
X : T1
+
Data to be classified.
+
+ +#### Outputs + +
+
Y : T2
+
Classification outputs (one class per example).
+
Z : tensor(float)
+
Classification scores ([N,E] - one score for each class and example
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type, and of of shape [N,C] or [C]. In the latter case, it will be treated as [1,C]
+
T2 : tensor(string), tensor(int64)
+
The output will be a tensor of strings or integers.
+
+ +### **ai.onnx.ml.LinearRegressor-1** + + Generalized linear regression evaluation.
+ If targets is set to 1 (default) then univariate regression is performed.
+ If targets is set to M then M sets of coefficients must be passed in as a sequence + and M results will be output for each input n in N.
+ The coefficients array is of length n, and the coefficients for each target are contiguous. + Intercepts are optional but if provided must match the number of targets. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
coefficients : list of floats
+
Weights of the model(s).
+
intercepts : list of floats
+
Weights of the intercepts, if used.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the regression output vector.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
targets : int (default is 1)
+
The total number of regression targets, 1 if not defined.
+
+ +#### Inputs + +
+
X : T
+
Data to be regressed.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Regression outputs (one per target, per example).
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.Normalizer-1** + + Normalize the input. There are three normalization modes, which have the corresponding formulas, + defined using element-wise infix operators '/' and '^' and tensor-wide functions 'max' and 'sum':
+
+ Max: Y = X / max(X)
+ L1: Y = X / sum(X)
+ L2: Y = sqrt(X^2 / sum(X^2)}
+ In all modes, if the divisor is zero, Y == X. +
+ For batches, that is, [N,C] tensors, normalization is done along the C axis. In other words, each row + of the batch is normalized independently. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
norm : string (default is MAX)
+
One of 'MAX,' 'L1,' 'L2'
+
+ +#### Inputs + +
+
X : T
+
Data to be encoded, a tensor of shape [N,C] or [C]
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Encoded output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.OneHotEncoder-1** + + Replace each input element with an array of ones and zeros, where a single + one is placed at the index of the category that was passed in. The total category count + will determine the size of the extra dimension of the output array Y.
+ For example, if we pass a tensor with a single value of 4, and a category count of 8, + the output will be a tensor with ``[0,0,0,0,1,0,0,0]``.
+ This operator assumes every input feature is from the same set of categories.
+ If the input is a tensor of float, int32, or double, the data will be cast + to integers and the cats_int64s category list will be used for the lookups. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cats_int64s : list of ints
+
List of categories, ints.
One and only one of the 'cats_*' attributes must be defined.
+
cats_strings : list of strings
+
List of categories, strings.
One and only one of the 'cats_*' attributes must be defined.
+
zeros : int (default is 1)
+
If true and category is not present, will return all zeros; if false and a category if not found, the operator will fail.
+
+ +#### Inputs + +
+
X : T
+
Data to be encoded.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Encoded output data, having one more dimension than X.
+
+ +#### Type Constraints + +
+
T : tensor(string), tensor(int64), tensor(int32), tensor(float), tensor(double)
+
The input must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.SVMClassifier-1** + + Support Vector Machine classifier + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_ints : list of ints
+
Class labels if using integer labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
Class labels if using string labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
coefficients : list of floats
+
+
kernel_params : list of floats
+
List of 3 elements containing gamma, coef0, and degree, in that order. Zero if unused for the kernel.
+
kernel_type : string (default is LINEAR)
+
The kernel type, one of 'LINEAR,' 'POLY,' 'RBF,' 'SIGMOID'.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
prob_a : list of floats
+
First set of probability coefficients.
+
prob_b : list of floats
+
Second set of probability coefficients. This array must be same size as prob_a.
If these are provided then output Z are probability estimates, otherwise they are raw scores.
+
rho : list of floats
+
+
support_vectors : list of floats
+
+
vectors_per_class : list of ints
+
+
+ +#### Inputs + +
+
X : T1
+
Data to be classified.
+
+ +#### Outputs + +
+
Y : T2
+
Classification outputs (one class per example).
+
Z : tensor(float)
+
Class scores (one per class per example), if prob_a and prob_b are provided they are probabilities for each class, otherwise they are raw scores.
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type, either [C] or [N,C].
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, depending on which of the the classlabels_* attributes is used. Its size will match the bactch size of the input.
+
+ +### **ai.onnx.ml.SVMRegressor-1** + + Support Vector Machine regression prediction and one-class SVM anomaly detection. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
coefficients : list of floats
+
Support vector coefficients.
+
kernel_params : list of floats
+
List of 3 elements containing gamma, coef0, and degree, in that order. Zero if unused for the kernel.
+
kernel_type : string (default is LINEAR)
+
The kernel type, one of 'LINEAR,' 'POLY,' 'RBF,' 'SIGMOID'.
+
n_supports : int (default is 0)
+
The number of support vectors.
+
one_class : int (default is 0)
+
Flag indicating whether the regression is a one-class SVM or not.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT.'
+
rho : list of floats
+
+
support_vectors : list of floats
+
Chosen support vectors
+
+ +#### Inputs + +
+
X : T
+
Data to be regressed.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Regression outputs (one score per target per example).
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type, either [C] or [N,C].
+
+ +### **ai.onnx.ml.Scaler-1** + + Rescale input data, for example to standardize features by removing the mean and scaling to unit variance. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
offset : list of floats
+
First, offset by this.
Can be length of features in an [N,F] tensor or length 1, in which case it applies to all features, regardless of dimension count.
+
scale : list of floats
+
Second, multiply by this.
Can be length of features in an [N,F] tensor or length 1, in which case it applies to all features, regardless of dimension count.
Must be same length as 'offset'
+
+ +#### Inputs + +
+
X : T
+
Data to be scaled.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Scaled output data.
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.TreeEnsembleClassifier-1** + + Tree Ensemble classifier. Returns the top class for each of N inputs.
+ The attributes named 'nodes_X' form a sequence of tuples, associated by + index into the sequences, which must all be of equal length. These tuples + define the nodes.
+ Similarly, all fields prefixed with 'class_' are tuples of votes at the leaves. + A leaf may have multiple votes, where each vote is weighted by + the associated class_weights index.
+ One and only one of classlabels_strings or classlabels_int64s + will be defined. The class_ids are indices into this list. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
class_ids : list of ints
+
The index of the class list that each weight is for.
+
class_nodeids : list of ints
+
node id that this weight is for.
+
class_treeids : list of ints
+
The id of the tree that this node is in.
+
class_weights : list of floats
+
The weight for the class in class_id.
+
classlabels_int64s : list of ints
+
Class labels if using integer labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
Class labels if using string labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false.
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a missing value: if a value is missing (NaN), use the 'true' or 'false' branch based on the value in this array.
This attribute may be left undefined, and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Ids may restart at zero for each tree, but it not required to.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true.
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT.'
+
+ +#### Inputs + +
+
X : T1
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : T2
+
N, Top class for each point
+
Z : tensor(float)
+
The class score for each class, for each point, a tensor of shape [N,E].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, depending on which of the the classlabels_* attributes is used.
+
+ +### **ai.onnx.ml.TreeEnsembleRegressor-1** + + Tree Ensemble regressor. Returns the regressed values for each input in N.
+ All args with nodes_ are fields of a tuple of tree nodes, and + it is assumed they are the same length, and an index i will decode the + tuple across these inputs. Each node id can appear only once + for each tree id.
+ All fields prefixed with target_ are tuples of votes at the leaves.
+ A leaf may have multiple votes, where each vote is weighted by + the associated target_weights index.
+ All trees must have their node ids start at 0 and increment by 1.
+ Mode enum is BRANCH_LEQ, BRANCH_LT, BRANCH_GTE, BRANCH_GT, BRANCH_EQ, BRANCH_NEQ, LEAF + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
aggregate_function : string (default is SUM)
+
Defines how to aggregate leaf values within a target.
One of 'AVERAGE,' 'SUM,' 'MIN,' 'MAX.'
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
n_targets : int
+
The total number of targets.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a NaN: use the 'true' (if the attribute value is 1) or 'false' (if the attribute value is 0) branch based on the value in this array.
This attribute may be left undefined and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Node ids must restart at zero for each tree and increase sequentially.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
target_ids : list of ints
+
The index of the target that each weight is for
+
target_nodeids : list of ints
+
The node id of each weight
+
target_treeids : list of ints
+
The id of the tree that each node is in.
+
target_weights : list of floats
+
The weight for each target
+
+ +#### Inputs + +
+
X : T
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : tensor(float)
+
N classes
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
+ +### **ai.onnx.ml.ZipMap-1** + + Creates a map from the input and the attributes.
+ The values are provided by the input tensor, while the keys are specified by the attributes. + Must provide keys in either classlabels_strings or classlabels_int64s (but not both).
+ The columns of the tensor correspond one-by-one to the keys specified by the attributes. There must be as many columns as keys.
+ +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_int64s : list of ints
+
The keys when using int keys.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
The keys when using string keys.
One and only one of the 'classlabels_*' attributes must be defined.
+
+ +#### Inputs + +
+
X : tensor(float)
+
The input values
+
+ +#### Outputs + +
+
Z : T
+
The output map
+
+ +#### Type Constraints + +
+
T : seq(map(string, float)), seq(map(int64, float))
+
The output will be a sequence of string or integer maps to float.
+
+ +## Version 2 of the 'ai.onnx.ml' operator set +### **ai.onnx.ml.LabelEncoder-2** + + Maps each element in the input tensor to another value.
+ The mapping is determined by the two parallel attributes, 'keys_*' and + 'values_*' attribute. The i-th value in the specified 'keys_*' attribute + would be mapped to the i-th value in the specified 'values_*' attribute. It + implies that input's element type and the element type of the specified + 'keys_*' should be identical while the output type is identical to the + specified 'values_*' attribute. If an input element can not be found in the + specified 'keys_*' attribute, the 'default_*' that matches the specified + 'values_*' attribute may be used as its output value.
+ Let's consider an example which maps a string tensor to an integer tensor. + Assume and 'keys_strings' is ["Amy", "Sally"], 'values_int64s' is [5, 6], + and 'default_int64' is '-1'. The input ["Dori", "Amy", "Amy", "Sally", + "Sally"] would be mapped to [-1, 5, 5, 6, 6].
+ Since this operator is an one-to-one mapping, its input and output shapes + are the same. Notice that only one of 'keys_*'/'values_*' can be set.
+ For key look-up, bit-wise comparison is used so even a float NaN can be + mapped to a value in 'values_*' attribute.
+ +#### Version + +This version of the operator has been available since version 2 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
default_float : float (default is -0.0)
+
A float.
+
default_int64 : int (default is -1)
+
An integer.
+
default_string : string (default is _Unused)
+
A string.
+
keys_floats : list of floats
+
A list of floats.
+
keys_int64s : list of ints
+
A list of ints.
+
keys_strings : list of strings
+
A list of strings. One and only one of 'keys_*'s should be set.
+
values_floats : list of floats
+
A list of floats.
+
values_int64s : list of ints
+
A list of ints.
+
values_strings : list of strings
+
A list of strings. One and only one of 'value_*'s should be set.
+
+ +#### Inputs + +
+
X : T1
+
Input data. It can be either tensor or scalar.
+
+ +#### Outputs + +
+
Y : T2
+
Output data.
+
+ +#### Type Constraints + +
+
T1 : tensor(string), tensor(int64), tensor(float)
+
The input type is a tensor of any shape.
+
T2 : tensor(string), tensor(int64), tensor(float)
+
Output type is determined by the specified 'values_*' attribute.
+
+ +## Version 3 of the 'ai.onnx.ml' operator set +### **ai.onnx.ml.TreeEnsembleClassifier-3** + + Tree Ensemble classifier. Returns the top class for each of N inputs.
+ The attributes named 'nodes_X' form a sequence of tuples, associated by + index into the sequences, which must all be of equal length. These tuples + define the nodes.
+ Similarly, all fields prefixed with 'class_' are tuples of votes at the leaves. + A leaf may have multiple votes, where each vote is weighted by + the associated class_weights index.
+ One and only one of classlabels_strings or classlabels_int64s + will be defined. The class_ids are indices into this list. + All fields ending with _as_tensor can be used instead of the + same parameter without the suffix if the element type is double and not float. + +#### Version + +This version of the operator has been available since version 3 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
base_values_as_tensor : tensor
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
class_ids : list of ints
+
The index of the class list that each weight is for.
+
class_nodeids : list of ints
+
node id that this weight is for.
+
class_treeids : list of ints
+
The id of the tree that this node is in.
+
class_weights : list of floats
+
The weight for the class in class_id.
+
class_weights_as_tensor : tensor
+
The weight for the class in class_id.
+
classlabels_int64s : list of ints
+
Class labels if using integer labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
Class labels if using string labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false.
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_hitrates_as_tensor : tensor
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a missing value: if a value is missing (NaN), use the 'true' or 'false' branch based on the value in this array.
This attribute may be left undefined, and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Ids may restart at zero for each tree, but it not required to.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true.
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
nodes_values_as_tensor : tensor
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT.'
+
+ +#### Inputs + +
+
X : T1
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : T2
+
N, Top class for each point
+
Z : tensor(float)
+
The class score for each class, for each point, a tensor of shape [N,E].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, depending on which of the the classlabels_* attributes is used.
+
+ +### **ai.onnx.ml.TreeEnsembleRegressor-3** + + Tree Ensemble regressor. Returns the regressed values for each input in N.
+ All args with nodes_ are fields of a tuple of tree nodes, and + it is assumed they are the same length, and an index i will decode the + tuple across these inputs. Each node id can appear only once + for each tree id.
+ All fields prefixed with target_ are tuples of votes at the leaves.
+ A leaf may have multiple votes, where each vote is weighted by + the associated target_weights index.
+ All fields ending with _as_tensor can be used instead of the + same parameter without the suffix if the element type is double and not float. + All trees must have their node ids start at 0 and increment by 1.
+ Mode enum is BRANCH_LEQ, BRANCH_LT, BRANCH_GTE, BRANCH_GT, BRANCH_EQ, BRANCH_NEQ, LEAF + +#### Version + +This version of the operator has been available since version 3 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
aggregate_function : string (default is SUM)
+
Defines how to aggregate leaf values within a target.
One of 'AVERAGE,' 'SUM,' 'MIN,' 'MAX.'
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
base_values_as_tensor : tensor
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
n_targets : int
+
The total number of targets.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_hitrates_as_tensor : tensor
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a NaN: use the 'true' (if the attribute value is 1) or 'false' (if the attribute value is 0) branch based on the value in this array.
This attribute may be left undefined and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Node ids must restart at zero for each tree and increase sequentially.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
nodes_values_as_tensor : tensor
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
target_ids : list of ints
+
The index of the target that each weight is for
+
target_nodeids : list of ints
+
The node id of each weight
+
target_treeids : list of ints
+
The id of the tree that each node is in.
+
target_weights : list of floats
+
The weight for each target
+
target_weights_as_tensor : tensor
+
The weight for each target
+
+ +#### Inputs + +
+
X : T
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : tensor(float)
+
N classes
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
+ diff --git a/third_party/onnx/docs/Changelog.md b/third_party/onnx/docs/Changelog.md new file mode 100644 index 0000000000..51fa7cf23d --- /dev/null +++ b/third_party/onnx/docs/Changelog.md @@ -0,0 +1,21442 @@ + +## Operator Changelog +*This file is automatically generated from the + [def files](/onnx/defs) via [this script](/onnx/defs/gen_doc.py). + Do not modify directly and instead edit operator definitions.* + +For an operator input/output's differentiability, it can be differentiable, + non-differentiable, or undefined. If a variable's differentiability + is not specified, that variable has undefined differentiability. + +# ai.onnx (default) +## Version 1 of the default ONNX operator set +### **Abs-1** + + Absolute takes one input data (Tensor) and produces one output data + (Tensor) where the absolute is, y = abs(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Add-1** + + Performs element-wise binary addition (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **And-1** + + Returns the tensor resulted from performing the `and` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **ArgMax-1** + + Computes the indices of the max elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulted tensor have the reduced dimension pruned. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **ArgMin-1** + + Computes the indices of the min elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulted tensor have the reduced dimension pruned. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **AveragePool-1** + + AveragePool consumes an input tensor X and applies average pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + average pooling consisting of computing the average on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is divided by the number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **BatchNormalization-1** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + there are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, mean, var, saved_mean, saved_var (training mode) + Output case #2: Y (test mode) + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints (required)
+
legacy optimization attribute.
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero, default is 1e-5f.
+
is_test : int (default is 0)
+
If set to nonzero, run spatial batch normalization in test mode, default is 0.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum), default is 0.9f.
+
spatial : int (default is 1)
+
If true, compute the mean and variance across all spatial elements If false, compute the mean and variance across per feature.Default is 1.
+
+ +#### Inputs + +
+
X : T
+
The input 4-dimensional tensor of shape NCHW.
+
scale : T
+
The scale as a 1-dimensional tensor of size C to be applied to the output.
+
B : T
+
The bias as a 1-dimensional tensor of size C to be applied to the output.
+
mean : T
+
The running mean (training) or the estimated mean (testing) as a 1-dimensional tensor of size C.
+
var : T
+
The running variance (training) or the estimated variance (testing) as a 1-dimensional tensor of size C.
+
+ +#### Outputs (1 - 5) + +
+
Y : T
+
The output 4-dimensional tensor of the same shape as X.
+
mean (optional) : T
+
The running mean after the BatchNormalization operator. Must be in-place with the input mean. Should not be used for testing.
+
var (optional) : T
+
The running variance after the BatchNormalization operator. Must be in-place with the input var. Should not be used for testing.
+
saved_mean (optional) : T
+
Saved mean used during training to speed up gradient computation. Should not be used for testing.
+
saved_var (optional) : T
+
Saved variance used during training to speed up gradient computation. Should not be used for testing.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Cast-1** + + The operator casts the elements of a given input tensor to a data type + specified by the 'to' argument and returns an output tensor of the same size in + the converted type. The 'to' argument must be one of the data types specified + in the 'DataType' enum field in the TensorProto message. + NOTE: Casting to and from strings is not supported yet. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
to : string (required)
+
The data type to which the elements of the input tensor are cast. Strictly must be one of the types from DataType enum in TensorProto
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to be cast.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor with the same shape as input with type specified by the 'to' argument
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain input types. Casting from strings and complex are not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types. Casting to strings and complex are not supported.
+
+ +### **Ceil-1** + + Ceil takes one input data (Tensor) and produces one output data + (Tensor) where the ceil is, y = ceil(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Clip-1** + + Clip operator limits the given input within an interval. The interval is + specified with arguments 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max() respectively. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
max : float
+
Maximum value, above which element is replaced by max
+
min : float
+
Minimum value, under which element is replaced by min
+
+ +#### Inputs + +
+
input : T
+
Input tensor whose elements to be clipped
+
+ +#### Outputs + +
+
output : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Concat-1** + + Concatenate a list of tensors into a single tensor + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
Which axis to concat on. Default value is 1.
+
+ +#### Inputs (1 - ∞) + +
+
inputs (variadic) : T
+
List of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **Constant-1** + + A constant tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
value : tensor (required)
+
The value for the elements of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Conv-1** + + The convolution operator consumes an input tensor and a filter, and + computes the output. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
W : T
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. X.shape[1] == (W.shape[1] * group) == C (assuming zero based indices for the shape array). Or in other words FILTER_IN_CHANNEL should be equal to DATA_CHANNEL.
+
B (optional) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ConvTranspose-1** + + The convolution transpose operator consumes an input tensor and a filter, + and computes the output. + + If the pads parameter is provided the shape of the output is calculated via the following equation: + + output_shape[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - pads[start_i] - pads[end_i] + + output_shape can also be explicitly specified in which case pads values are auto generated using these equations: + + total_padding[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - output_shape[i] + If (auto_pads != SAME_UPPER): pads[start_i] = total_padding[i]/2; pads[end_i] = total_padding[i] - (total_padding[i]/2) + Else: pads[start_i] = total_padding[i] - (total_padding[i]/2); pads[end_i] = (total_padding[i]/2). + + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
output_padding : list of ints
+
The zero-padding added to one side of the output. This is also called adjs/adjustment in some frameworks.
+
output_shape : list of ints
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If output_shape is specified pads values are ignored. See doc for details for equations to generate pads
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn)
+
W : T
+
The weight tensor that will be used in the convolutions; has size (C x M/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the weight shape will be (C x M/group x k1 x k2 x ... x kn), where (k1 x k2 x ... x kn) is the dimension of the kernel. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
B (optional) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, pad lengths and group count. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **DepthToSpace-1** + + DepthToSpace rearranges (permutes) data from depth into blocks of spatial data. + This is the reverse transformation of SpaceToDepth. More specifically, this op outputs a copy of + the input tensor where values from the depth dimension are moved in spatial blocks to the height + and width dimensions. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
+ +#### Inputs + +
+
input : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output : T
+
Output tensor of [N, C/(blocksize * blocksize), H * blocksize, W * blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Div-1** + + Performs element-wise binary division (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Dropout-1** + + Dropout takes one input data (Tensor) and produces two Tensor outputs, + output (Tensor) and mask (Tensor). Depending on whether it is in + test mode or not, the output Y will either be a random dropout, or a simple + copy of the input. Note that our implementation of Dropout does scaling in + the training phase, so during testing nothing needs to be done. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
is_test : int (default is 0)
+
(int, default 0) if nonzero, run dropout in test mode where the output is simply Y = X.
+
ratio : float (default is 0.5)
+
(float, default 0.5) the ratio of random dropout
+
+ +#### Inputs + +
+
data : T
+
The input data as Tensor.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
The output.
+
mask (optional) : T
+
The output mask. If is_test is nonzero, this output is not filled.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Elu-1** + + Elu takes one input data (Tensor) and produces one output data + (Tensor) where the function `f(x) = alpha * (exp(x) - 1.) for x < + 0`, `f(x) = x for x >= 0`., is applied to the tensor elementwise. + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Coefficient of ELU default to 1.0.
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
1D input tensor
+
+ +#### Outputs + +
+
Y : T
+
1D input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Equal-1** + + Returns the tensor resulted from performing the `equal` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(int32), tensor(int64)
+
Constrain input to integral tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Exp-1** + + Calculates the exponential of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The exponential of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Flatten-1** + + Flattens the input tensor into a 2D matrix. If input tensor has shape + (d_0, d_1, ... d_n) then the output will have shape + (d_0 X d_1 ... d_(axis-1), d_axis X d_(axis+1) ... X dn). + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Indicate up to which input dimensions (exclusive) should be flattened to the outer dimension of the output. The value for axis must be in the range [0, R], where R is the rank of the input tensor. When axis = 0, the shape of the output tensor is (1, (d_0 X d_1 ... d_n), where the shape of the input tensor is (d_0, d_1, ... d_n).
+
+ +#### Inputs + +
+
input : T
+
A tensor of rank >= axis.
+
+ +#### Outputs + +
+
output : T
+
A 2D tensor with the contents of the input tensor, with input dimensions up to axis flattened to the outer dimension of the output and remaining input dimensions flattened into the inner dimension of the output.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Floor-1** + + Floor takes one input data (Tensor) and produces one output data + (Tensor) where the floor is, y = floor(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **GRU-1** + + Computes an one-layer GRU. This operator is usually supported via some custom + implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `z` - update gate + + `r` - reset gate + + `h` - hidden gate + + `t` - time step (t-1 means previous time step) + + `W[zrh]` - W parameter weight matrix for update, reset, and hidden gates + + `R[zrh]` - R recurrence weight matrix for update, reset, and hidden gates + + `Wb[zrh]` - W bias vectors for update, reset, and hidden gates + + `Rb[zrh]` - R bias vectors for update, reset, and hidden gates + + `WB[zrh]` - W parameter weight matrix for backward update, reset, and hidden gates + + `RB[zrh]` - R recurrence weight matrix for backward update, reset, and hidden gates + + `WBb[zrh]` - W bias vectors for backward update, reset, and hidden gates + + `RBb[zrh]` - R bias vectors for backward update, reset, and hidden gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh): + + - zt = f(Xt*(Wz^T) + Ht-1*Rz + Wbz + Rbz) + + - rt = f(Xt*(Wr^T) + Ht-1*Rr + Wbr + Rbr) + + - ht = g(Xt*(Wh^T) + (rt (.) Ht-1)*Rh + Rbh + Wbh) # default, when linear_before_reset = 0 + + - ht = g(Xt*(Wh^T) + (rt (.) (Ht-1*Rh + Rbh) + Wbh) # when linear_before_reset != 0 + + - Ht = (1 - zt) (.) ht + zt (.) Ht-1 + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM.
+
activations : list of strings
+
A list of 2 (or 4 if bidirectional) activation functions for update, reset, and hidden gates. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is foward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
output_sequence : int (default is 0)
+
The sequence output for the hidden is optional if 0. Default 0.
+
+ +#### Inputs (3 - 6) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for the gates. Concatenation of `W[zrh]` and `WB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `R[zrh]` and `RB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for the gates. Concatenation of `[Wb[zrh], Rb[zrh]]` and `[WBb[zrh], RBb[zrh]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 6*hidden_size]`. Optional: If not specified - assumed to be 0
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`. It is optional if `output_sequence` is 0.
+
Y_h : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Gather-1** + + Given `data` tensor of rank r >= 1, and `indices` tensor of rank q, gather + entries of the axis dimension of `data` (by default outer-most one as axis=0) indexed by `indices`, and concatenates + them in an output tensor of rank q + (r - 1). + Example 1: + ``` + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + indices = [ + [0, 1], + [1, 2], + ] + output = [ + [ + [1.0, 1.2], + [2.3, 3.4], + ], + [ + [2.3, 3.4], + [4.5, 5.7], + ], + ] + ``` + Example 2: + ``` + data = [ + [1.0, 1.2, 1.9], + [2.3, 3.4, 3.9], + [4.5, 5.7, 5.9], + ] + indices = [ + [0, 2], + ] + axis = 1, + output = [ + [ + [1.0, 1.9], + [2.3, 3.9], + [4.5, 5.9], + ], + ] + ``` + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1]
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : Tind
+
Tensor of int32/int64 indices, of any rank q. All index values are expected to be within bounds. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank q + (r - 1).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **Gemm-1** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + Compute Y = alpha * A * B + beta * C, where input tensor A has + dimension (M X K), input tensor B has dimension (K X N), input tensor C and + output tensor Y have dimension (M X N). + If attribute broadcast is non-zero, input tensor C will be broadcasted to match + the dimension requirement. A will be transposed before doing the computation + if attribute transA is non-zero, same for B and transB. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B, the default value is 1.0.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C, the default value is 1.0.
+
broadcast : int (default is 0)
+
Whether C should be broadcasted
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs + +
+
A : T
+
Input tensor A
+
B : T
+
Input tensor B
+
C : T
+
Input tensor C, can be inplace.
+
+ +#### Outputs + +
+
Y : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **GlobalAveragePool-1** + + GlobalAveragePool consumes an input tensor X and applies average pooling across + the values in the same channel. This is equivalent to AveragePool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **GlobalLpPool-1** + + GlobalLpPool consumes an input tensor X and applies lp pool pooling across the + the values in the same channel. This is equivalent to LpPool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
p : float (default is 2.0)
+
p value of the Lp norm used to pool over the input data, default is 2.0.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimension are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from pooling across the input tensor. Dimensions will be N x C x 1 x 1
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **GlobalMaxPool-1** + + GlobalMaxPool consumes an input tensor X and applies max pooling across + the values in the same channel. This is equivalent to MaxPool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Greater-1** + + Returns the tensor resulted from performing the `greater` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input to float tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **HardSigmoid-1** + + HardSigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the HardSigmoid function, y = max(0, min(1, alpha * x + beta)), + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.2)
+
Value of alpha default to 0.2
+
beta : float (default is 0.5)
+
Value of beta default to 0.5
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Hardmax-1** + + The operator computes the hardmax (1 for the first maximum value, and 0 for all others) values for each layer in the batch + of the given input. The input is a 2-D tensor (Tensor) of size + (batch_size x input_feature_dimensions). The output tensor has the same shape + and contains the hardmax values of the corresponding input. + + Input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Identity-1** + + Identity operator + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
Tensor to copy input into.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **If-1** + + If conditional + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
else_branch : graph (required)
+
Graph to run if condition is false. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the then_branch.
+
then_branch : graph (required)
+
Graph to run if condition is true. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the else_branch.
+
+ +#### Inputs + +
+
cond : B
+
Condition for the if
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : V
+
Values that are live-out to the enclosing scope. The return values in the `then_branch` and `else_branch` must be of the same shape and same data type.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
B : tensor(bool)
+
Only bool
+
+ +### **InstanceNormalization-1** + + Carries out instance normalization as described in the paper + https://arxiv.org/abs/1607.08022. + + y = scale * (x - mean) / sqrt(variance + epsilon) + B, + where mean and variance are computed per instance per channel. + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero, default is 1e-5f.
+
+ +#### Inputs + +
+
input : T
+
The input 4-dimensional tensor of shape NCHW.
+
scale : T
+
The input 1-dimensional scale tensor of size C.
+
B : T
+
The input 1-dimensional bias tensor of size C.
+
+ +#### Outputs + +
+
output : T
+
The output 4-dimensional tensor of the same shape as input.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LRN-1** + + Local Response Normalization proposed in the [AlexNet paper](https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf). + It normalizes over local input regions. + The local region is defined across the channels. For an element X[n, c, d1, ..., dk] in a tensor + of shape (N x C x D1 x D2, ..., Dk), its region is + {X[n, i, d1, ..., dk] | max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2))}. + + square_sum[n, c, d1, ..., dk] = sum(X[n, i, d1, ..., dk] ^ 2), + where max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2)). + + Y[n, c, d1, ..., dk] = X[n, c, d1, ..., dk] / (bias + alpha / size * square_sum[n, c, d1, ..., dk] ) ^ beta + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.0001)
+
Scaling parameter.
+
beta : float (default is 0.75)
+
The exponent.
+
bias : float (default is 1.0)
+
+
size : int (required)
+
The number of channels to sum over
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y : T
+
Output tensor, which has the shape and type as input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LSTM-1** + + Computes an one-layer LSTM. This operator is usually supported via some + custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `o` - output gate + + `f` - forget gate + + `c` - cell gate + + `t` - time step (t-1 means previous time step) + + `W[iofc]` - W parameter weight matrix for input, output, forget, and cell gates + + `R[iofc]` - R recurrence weight matrix for input, output, forget, and cell gates + + `Wb[iofc]` - W bias vectors for input, output, forget, and cell gates + + `Rb[iofc]` - R bias vectors for input, output, forget, and cell gates + + `P[iof]` - P peephole weight vector for input, output, and forget gates + + `WB[iofc]` - W parameter weight matrix for backward input, output, forget, and cell gates + + `RB[iofc]` - R recurrence weight matrix for backward input, output, forget, and cell gates + + `WBb[iofc]` - W bias vectors for backward input, output, forget, and cell gates + + `RBb[iofc]` - R bias vectors for backward input, output, forget, and cell gates + + `PB[iof]` - P peephole weight vector for backward input, output, and forget gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh, h=Tanh): + + - it = f(Xt*(Wi^T) + Ht-1*Ri + Pi (.) Ct-1 + Wbi + Rbi) + + - ft = f(Xt*(Wf^T) + Ht-1*Rf + Pf (.) Ct-1 + Wbf + Rbf) + + - ct = g(Xt*(Wc^T) + Ht-1*Rc + Wbc + Rbc) + + - Ct = ft (.) Ct-1 + it (.) ct + + - ot = f(Xt*(Wo^T) + Ht-1*Ro + Po (.) Ct + Wbo + Rbo) + + - Ht = ot (.) h(Ct) + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 3 (or 6 if bidirectional) activation functions for input, output, forget, cell, and hidden. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
input_forget : int (default is 0)
+
Couple the input and forget gates if 1, default 0.
+
output_sequence : int (default is 0)
+
The sequence output for the hidden is optional if 0. Default 0.
+
+ +#### Inputs (3 - 8) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for the gates. Concatenation of `W[iofc]` and `WB[iofc]` (if bidirectional) along dimension 0. The tensor has shape `[num_directions, 4*hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `R[iofc]` and `RB[iofc]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 4*hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for input gate. Concatenation of `[Wb[iofc], Rb[iofc]]`, and `[WBb[iofc], RBb[iofc]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 8*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
initial_c (optional) : T
+
Optional initial value of the cell. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
P (optional) : T
+
The weight tensor for peepholes. Concatenation of `P[iof]` and `PB[iof]` (if bidirectional) along dimension 0. It has shape `[num_directions, 3*hidde_size]`. Optional: If not specified - assumed to be 0.
+
+ +#### Outputs (0 - 3) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`. It is optional if `output_sequence` is 0.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
Y_c (optional) : T
+
The last output value of the cell. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **LeakyRelu-1** + + LeakyRelu takes input data (Tensor) and an argument alpha, and produces one + output data (Tensor) where the function `f(x) = alpha * x for x < 0`, + `f(x) = x for x >= 0`, is applied to the data tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.01)
+
Coefficient of leakage default to 0.01.
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Less-1** + + Returns the tensor resulted from performing the `less` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input to float tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Log-1** + + Calculates the natural log of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The natural log of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LogSoftmax-1** + + The operator computes the logsoftmax (log of softmax) values for each layer in the batch + of the given input. The input is a 2-D tensor (Tensor) of size + (batch_size x input_feature_dimensions). The output tensor has the same shape + and contains the logsoftmax values of the corresponding input. + + Input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Loop-1** + + Generic Looping construct. This loop has multiple termination conditions: + + 1) Trip count. Iteration count specified at runtime. Set by + specifying the input M. Optional. Set to empty string to omit. + Note that a static trip count (specified at graph construction time) can be + specified by passing in a constant node for input M. + 2) Loop termination condition. This is an input to the op that determines + whether to run the first iteration and also a loop-carried dependency for + the body graph. The body graph must yield a value for the condition variable, + whether this input is provided or not. + + This table summarizes the operating modes of this operator with equivalent + C-style code: + + Operator inputs defined as (max_trip_count, condition_var). + + input ("", ""): + for (int i=0; ; ++i) { + cond = ... // Note this value is ignored, but is required in the body + } + + input ("", cond) // Note this is analogous to a while loop + bool cond = ...; + for (int i=0; cond; ++i) { + cond = ...; + } + + input ("", 1) // Note this is analogous to a do-while loop + bool cond = true + for (int i=0; cond; ++i) { + cond = ...; + } + + input (trip_count, "") // Note this is analogous to a for loop + int trip_count = ... + for (int i=0; i < trip_count; ++i) { + cond = ...; // ignored + } + + input (trip_count, cond) + int trip_count = ...; + bool cond = ...; + for (int i=0; i < trip_count && cond; ++i) { + cond = ...; + } + + + *Sample usage - cond as well as trip count* + + graph predict-net { + %a = Constant[value = ]() + %b = Constant[value = ]() + %keepgoing = Constant[value = ]() + %max_trip_count = Constant[value = ]() + %keepgoing_out, %b_out, %user_defined_vals = Loop[body = ](%max_trip_count, %keepgoing, %b) + return + } + + graph body-net ( + %i[INT32, scalar] + %keepgoing[BOOL, scalar] + %b[INT32, scalar] + ) { + %my_local = Add(%a, %b) + %b_out = Sub(%a, %b) + %keepgoing_out = Greater(%my_local, %b_out) + %user_defined_vals = Add(%b, %b) + return %keepgoing_out, %b_out, %user_defined_vals + } + + *Sample equivalent C code* + + { + /* User-defined code (enclosing scope) */ + int a = 3, b = 6; + bool keepgoing = true; // Analogous to input cond + /* End user-defined code */ + + /* Implicitly-defined code */ + const int max_trip_count = 10; // Analogous to input M + int user_defined_vals[]; // Imagine this is resizable + /* End implicitly-defined code */ + for (int i=0; i < max_trip_count && keepgoing; ++i) { + /* User-defined code (loop body) */ + int my_local = a + b; // Reading values in the enclosing scope is fine + b = a - b; // writes fine if we specify b as a loop-carried dependency + keepgoing = my_local > b; // keepgoing is a loop-carried dependency + user_defined_vals[i] = b + b; + /* End user-defined code */ + } + // my_local = 123; // Can't do this. my_local was defined in the the body + + // These below values are live-out from the loop and therefore accessible + b_out; user_defined_vals; keepgoing_out; + } + + There are several things of note in this code snippet: + + 1) Values from the enclosing scope (i.e. variable a here) are in scope and can + be referenced in the inputs of the loop. + 2) Any variables which you wish to make available in the enclosing scope (i.e. + the variables b and keepgoing) must be declared as either loop-carried + dependencies (both at the op inputs and output and at the body net input and + output) or scan_outputs. + 3) Values created in the body cannot be accessed in the enclosing scope. + + Note that the semantics of this op support "diagonal" or "wavefront" execution. + (See Step 3 here for an example: + https://devblogs.nvidia.com/optimizing-recurrent-neural-networks-cudnn-5/). + Frontends should emit multi-layer RNNs as a series of While operators (with + time being the inner looping dimension), with each successive layer consuming + the scan_outputs from the previous layer, possibly going through several + point-wise operators (e.g. dropout, residual connections, linear layer). + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has 2+N inputs: (iteration_num, condition, loop carried dependencies...). It has 1+N+K outputs: (condition, loop carried dependencies..., scan_outputs...). Each scan_output is created by concatenating the value of the specified output value at the end of each iteration of the loop. It is an error if the dimensions or data type of these scan_outputs change across loop iterations.
+
+ +#### Inputs (3 - ∞) + +
+
M (optional) : I
+
A maximum trip-count for the loop specified at runtime. Optional. Pass empty string to skip.
+
cond (optional) : B
+
A boolean termination condition. Optional. Pass empty string to skip.
+
v_initial (variadic, heterogeneous) : V
+
The initial values of any loop-carried dependencies (values that change across loop iterations)
+
+ +#### Outputs (1 - ∞) + +
+
v_final_and_scan_outputs (variadic, heterogeneous) : V
+
Final N loop carried dependency values then K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
I : tensor(int64)
+
tensor of int64, which should be a scalar.
+
B : tensor(bool)
+
tensor of bool, which should be a scalar.
+
+ +### **LpNormalization-1** + + Given a matrix, apply Lp-normalization along the provided axis. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
The axis on which to apply normalization, -1 mean last axis.
+
p : int (default is 2)
+
The order of the normalization, only 1 or 2 are supported.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input matrix
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Matrix after normalization
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LpPool-1** + + LpPool consumes an input tensor X and applies Lp pooling across the + the tensor according to kernel sizes, stride sizes, and pad lengths. + Lp pooling consisting of computing the Lp norm on all values of a subset + of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding. DEPRECATION NOTE: auto_pad is only intended to support legacy uses, and for framework authors, one is explicitly encouraged to use explicit padding specified in the pads attribute.
+
kernel_shape : list of ints
+
The size of the kernel along each axis.
+
p : float (default is 2.0)
+
p value of the Lp norm used to pool over the input data, default is 2.0.
+
pads : list of ints
+
Padding for the beginning and ending along each axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute.
+
strides : list of ints
+
Stride along each axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimension are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from Lp pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **MatMul-1** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
N-dimensional matrix A
+
B : T
+
N-dimensional matrix B
+
+ +#### Outputs + +
+
Y : T
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Max-1** + + Element-wise max of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Max.
+
+ +#### Outputs + +
+
max : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **MaxPool-1** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **MaxRoiPool-1** + + ROI max pool consumes an input tensor X and region of interests (RoIs) to + apply max pooling across each RoI, to produce output 4-D tensor of shape + (num_rois, channels, pooled_shape[0], pooled_shape[1]). + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
pooled_shape : list of ints (required)
+
ROI pool output shape (height, width).
+
spatial_scale : float (default is 1.0)
+
Multiplicative spatial scale factor to translate ROI coordinates from their input scale to the scale used when pooling.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data.
+
rois (non-differentiable) : T
+
RoIs (Regions of Interest) to pool over. Should be a 2-D tensor of shape (num_rois, 5) given as [[batch_id, x1, y1, x2, y2], ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
RoI pooled output 4-D tensor of shape (num_rois, channels, pooled_shape[0], pooled_shape[1]).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Mean-1** + + Element-wise mean of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Mean.
+
+ +#### Outputs + +
+
mean : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Min-1** + + Element-wise min of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Min
+
+ +#### Outputs + +
+
min : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Mul-1** + + Performs element-wise binary multiplication (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Neg-1** + + Neg takes one input data (Tensor) and produces one output data + (Tensor) where each element flipped sign, y = -x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Not-1** + + Returns the negation of the input tensor element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input/output to boolean tensors.
+
+ +### **Or-1** + + Returns the tensor resulted from performing the `or` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **PRelu-1** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
slope : T
+
Slope tensor. If `Slope` is of size 1, the value is sharedacross different channels
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Pad-1** + + Given `data` tensor, paddings, mode, and value. + Example: + Insert 0 paddings to the beginning of the second dimension. + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + paddings = [0, 0, 2, 0] + output = [ + [ + [0.0, 0.0, 1.0, 1.2], + [0.0, 0.0, 2.3, 3.4], + [0.0, 0.0, 4.5, 5.7], + ], + ] + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is constant)
+
Three modes: constant(default), reflect, edge
+
paddings : list of ints (required)
+
List of integers indicate the padding element count at the beginning and end of each axis, for 2D it is the number of pixel. `paddings` rank should be double of the input's rank. `paddings` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.
+
value : float (default is 0.0)
+
One float, indicates the value to be filled, default is 0
+
+ +#### Inputs + +
+
data : T
+
Input tensor.
+
+ +#### Outputs + +
+
output : T
+
Tensor after padding.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Pow-1** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
+ +#### Inputs + +
+
X : T
+
Input tensor of any shape, base of the exponent.
+
Y : T
+
Input tensor of any shape broadcastable to X shape, the exponent component.
+
+ +#### Outputs + +
+
Z : T
+
Output tensor (same size as X)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **RNN-1** + + Computes an one-layer simple RNN. This operator is usually supported + via some custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `t` - time step (t-1 means previous time step) + + `Wi` - W parameter weight matrix for input gate + + `Ri` - R recurrence weight matrix for input gate + + `Wbi` - W parameter bias vector for input gate + + `Rbi` - R parameter bias vector for input gate + + `WBi` - W parameter weight matrix for backward input gate + + `RBi` - R recurrence weight matrix for backward input gate + + `WBbi` - WR bias vectors for backward input gate + + `RBbi` - RR bias vectors for backward input gate + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Tanh): + + - Ht = f(Xt*(Wi^T) + Ht-1*Ri + Wbi + Rbi) + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings (default is ['Tanh', 'Tanh'])
+
One (or two if bidirectional) activation function for input gate. The activation function must be one of the activation functions specified above. Optional: Default `Tanh` if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
output_sequence : int (default is 0)
+
The sequence output for the hidden is optional if 0. Default 0.
+
+ +#### Inputs (3 - 6) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for input gate. Concatenation of `Wi` and `WBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `Ri` and `RBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for input gate. Concatenation of `[Wbi, Rbi]` and `[WBbi, RBbi]` (if bidirectional). The tensor has shape `[num_directions, 2*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`. It is optional if `output_sequence` is 0.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **RandomNormal-1** + + Generate a tensor with random values drawn from a normal distribution. The shape + of the tensor is specified by the `shape` argument and the parameter of the normal distribution + specified by `mean` and `scale`. + + The data type is specified by the 'dtype' argument. The 'dtype' argument must + be one of the data types specified in the 'DataType' enum field in the + TensorProto message. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 1)
+
The data type for the elements of the output tensor. Default is TensorProto::FLOAT.
+
mean : float (default is 0.0)
+
The mean of the normal distribution.
+
scale : float (default is 1.0)
+
The standard deviation of the normal distribution.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
shape : list of ints (required)
+
The shape of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor of random values drawn from normal distribution
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **RandomNormalLike-1** + + Generate a tensor with random values drawn from a normal distribution. + The shape of the output tensor is copied from the shape of the input tensor, + and the parameters of the normal distribution are specified by `mean` and `scale`. + + The data type is specified by the 'dtype' argument, or copied from the input tensor if not provided. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message, and be valid as an output type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use the data type of the input tensor.
+
mean : float (default is 0.0)
+
The mean of the normal distribution.
+
scale : float (default is 1.0)
+
The standard deviation of the normal distribution.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to copy shape and optionally type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of random values drawn from normal distribution
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type. If the dtype attribute is not provided this must be a valid output type.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **RandomUniform-1** + + Generate a tensor with random values drawn from a uniform distribution. The shape + of the tensor is specified by the `shape` argument and the range by `low` and `high`. + + The data type is specified by the 'dtype' argument. The 'dtype' argument must + be one of the data types specified in the 'DataType' enum field in the + TensorProto message. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 1)
+
The data type for the elements of the output tensor. If not specified, default is TensorProto::FLOAT.
+
high : float (default is 1.0)
+
Upper boundary of the output values.
+
low : float (default is 0.0)
+
Lower boundary of the output values.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
shape : list of ints (required)
+
The shape of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor of random values drawn from uniform distribution
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **RandomUniformLike-1** + + Generate a tensor with random values drawn from a uniform distribution. + The shape of the output tensor is copied from the shape of the input tensor, + and the parameters of the uniform distribution are specified by `low` and `high`. + + The data type is specified by the 'dtype' argument, or copied from the input tensor if not provided. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message and be valid as an output type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use the data type of the input tensor.
+
high : float (default is 1.0)
+
Upper boundary of the output values.
+
low : float (default is 0.0)
+
Lower boundary of the output values.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to copy shape and optionally type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of random values drawn from uniform distribution
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type. If the dtype attribute is not provided this must be a valid output type.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **Reciprocal-1** + + Reciprocal takes one input data (Tensor) and produces one output data + (Tensor) where the reciprocal is, y = 1/x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ReduceL1-1** + + Computes the L1 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceL2-1** + + Computes the L2 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSum-1** + + Computes the log sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSumExp-1** + + Computes the log sum exponent of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMax-1** + + Computes the max of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMean-1** + + Computes the mean of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMin-1** + + Computes the min of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceProd-1** + + Computes the product of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSum-1** + + Computes the sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSumSquare-1** + + Computes the sum square of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor.
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Relu-1** + + Relu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = max(0, x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Reshape-1** + + Reshape the input tensor similar to numpy.reshape. + It takes a tensor as input and an argument `shape`. It outputs the reshaped tensor. + At most one dimension of the new shape can be -1. In this case, the value is + inferred from the size of the tensor and the remaining dimensions. A dimension + could also be 0, in which case the actual dimension value is unchanged (i.e. taken + from the input tensor). Shape (second input) could be an empty shape, which means converting to a scalar. + The input tensor's shape and the output tensor's shape are required to have the same number of elements. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
shape : list of ints
+
New shape
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reshaped : T
+
Reshaped data.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Selu-1** + + Selu takes one input data (Tensor) and produces one output data + (Tensor) where the scaled exponential linear unit function, + `y = gamma * (alpha * e^x - alpha) for x <= 0`, `y = gamma * x for x > 0`, + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.6732)
+
Coefficient of SELU default to 1.6732.
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
gamma : float (default is 1.0507)
+
Coefficient of SELU default to 1.0507.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Shape-1** + + Takes a tensor as input and outputs an 1D int64 tensor containing the shape of the input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
shape : T1
+
Shape of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor.
+
+ +### **Sigmoid-1** + + Sigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the sigmoid function, y = 1 / (1 + exp(-x)), is applied to the + tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Size-1** + + Takes a tensor as input and outputs a int64 scalar that equals to the total number of elements of the input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
size : T1
+
Total number of elements of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor, which should be a scalar though.
+
+ +### **Slice-1** + + Produces a slice of the input tensor along multiple axes. Similar to numpy: + https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html + Slices uses `axes`, `starts` and `ends` attributes to specify the start and end + dimension for each axis in the list of axes, it uses this information to + slice the input `data` tensor. If a negative value is passed for any of the + start or end indices, it represent number of elements before the end of that + dimension. If the value passed to start or end is larger than the `n` (the + number of elements in this dimension), it represents `n`. For slicing to the + end of a dimension with unknown size, it is recommended to pass in `INT_MAX`. + If `axes` are omitted, they are set to `[0, ..., ndim-1]`. + Example 1: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + axes = [0, 1] + starts = [1, 0] + ends = [2, 3] + result = [ + [5, 6, 7], + ] + Example 2: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + starts = [0, 1] + ends = [-1, 1000] + result = [ + [2, 3, 4], + ] + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
Axes that `starts` and `ends` apply to. It's optional. If not present, will be treated as [0, 1, ..., len(`starts`) - 1].
+
ends : list of ints (required)
+
Ending indices (exclusive) of corresponding axis in axes`
+
starts : list of ints (required)
+
Starting indices of corresponding axis in `axes`
+
+ +#### Inputs + +
+
data : T
+
Tensor of data to extract slices from.
+
+ +#### Outputs + +
+
output : T
+
Sliced data tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Softmax-1** + + The operator computes the softmax (normalized exponential) values for each layer in the batch + of the given input. The input is a 2-D tensor (Tensor) of size + (batch_size x input_feature_dimensions). The output tensor has the same shape + and contains the softmax values of the corresponding input. + + Input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Softplus-1** + + Softplus takes one input data (Tensor) and produces one output data + (Tensor) where the softplus function, y = ln(exp(x) + 1), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
1D input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
1D input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Softsign-1** + + Calculates the softsign (x/(1+|x|)) of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The softsign (x/(1+|x|)) values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **SpaceToDepth-1** + + SpaceToDepth rearranges blocks of spatial data into depth. More specifically, + this op outputs a copy of the input tensor where values from the height and width dimensions + are moved to the depth dimension. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
+ +#### Inputs + +
+
input : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output : T
+
Output tensor of [N, C * blocksize * blocksize, H/blocksize, W/blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Split-1** + + Split a tensor into a list of tensors, along the specified + 'axis'. The lengths of the split can be specified using argument 'axis' or + optional second input blob to the operator. Otherwise, the tensor is split + to equal sized parts. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
Which axis to split on
+
split : list of ints
+
length of each output
+
+ +#### Inputs (1 - 2) + +
+
input : T
+
The tensor to split
+
split (optional) : T
+
Optional list of output lengths (see also arg 'split')
+
+ +#### Outputs (1 - ∞) + +
+
outputs... (variadic) : T
+
One or more outputs forming list of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
+ +### **Sqrt-1** + + Square root takes one input data (Tensor) and produces one output data + (Tensor) where the square root is, y = x^0.5, is applied to + the tensor elementwise. If x is negative, then it will return NaN. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Squeeze-1** + + Remove single-dimensional entries from the shape of a tensor. + Takes a parameter `axes` with a list of axes to squeeze. + If `axes` is not provided, all the single dimensions will be removed from + the shape. If an axis is selected with shape entry not equal to one, an error is raised. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
List of non-negative integers, indicate the dimensions to squeeze.
+
+ +#### Inputs + +
+
data : T
+
Tensors with at least max(dims) dimensions.
+
+ +#### Outputs + +
+
squeezed : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Sub-1** + + Performs element-wise binary subtraction (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Sum-1** + + Element-wise sum of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Sum.
+
+ +#### Outputs + +
+
sum : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Tanh-1** + + Calculates the hyperbolic tangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
consumed_inputs : list of ints
+
legacy optimization attribute.
+
+ +#### Inputs + +
+
input : T
+
1-D input tensor
+
+ +#### Outputs + +
+
output : T
+
The hyperbolic tangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Tile-1** + + Repeat the elements of a tensor along an axis. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor of any shape.
+
tiles : T
+
Number of repeated copies to make of the input tensor.
+
axis : T
+
Axis along which to repeat.
+
+ +#### Outputs + +
+
output : T
+
Output tensor of same shape and type as input.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T1 : tensor(int64)
+
Constrain tiles and axis's type to int64 tensors.
+
+ +### **TopK-1** + + Retrieve the top-K elements along a specified axis. Given an input tensor of + shape [a_1, a_2, ..., a_n, r] and integer argument k, return two outputs: + -Value tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] + which contains the values of the top k elements along the specified axis + -Index tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] which + contains the indices of the top k elements (original indices from the input + tensor). + Given two equivalent values, this operator uses the indices along the axis as + a tiebreaker. That is, the element with the lower index will appear first. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
Dimension on which to do the sort.
+
k : int (required)
+
Number of top elements to retrieve
+
+ +#### Inputs + +
+
X : T
+
Tensor of shape [a_1, a_2, ..., a_n, r]
+
+ +#### Outputs + +
+
Values : T
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing top K values from the input tensor
+
Indices : I
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing the corresponding input tensor indices for the top K values.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Transpose-1** + + Transpose the input tensor similar to numpy.transpose. For example, when + perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape + will be (2, 1, 3). + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
perm : list of ints
+
A list of integers. By default, reverse the dimensions, otherwise permute the axes according to the values given.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
transposed : T
+
Transposed output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Unsqueeze-1** + + Insert single-dimensional entries to the shape of a tensor. + Takes one required argument `axes`, a list of dimensions that will be inserted. + Dimension indices in `axes` are as seen in the output tensor. For example: + Given a tensor such that tensor with shape [3, 4, 5], then + Unsqueeze(tensor, axes=[0, 4]) has shape [1, 3, 4, 5, 1] + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints (required)
+
List of non-negative integers, indicate the dimensions to be inserted
+
+ +#### Inputs + +
+
data : T
+
Original tensor
+
+ +#### Outputs + +
+
expanded : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Upsample-1** + + Upsample the input tensor. + The width and height of the output tensor are: + output_width = floor(input_width * width_scale), + output_height = floor(input_height * height_scale). + Example: + Given `data` tensor, width_scale, height_scale, mode, + Upsample the input 4-D tensor in nearest mode: + data = [[[ + [1, 2], + [3, 4] + ]]] + width_scale = 2 + height_scale = 2 + mode = "nearest" + output = [[[ + [1, 1, 2, 2], + [1, 1, 2, 2], + [3, 3, 4, 4], + [3, 3, 4, 4] + ]]] + +#### Version + +No versioning maintained for experimental ops. +#### Attributes + +
+
height_scale : float (required)
+
The scale along height dimension. It takes value greater than or equal to 1.
+
mode : string (default is nearest)
+
Two interpolation modes: nearest(default), bilinear
+
width_scale : float (required)
+
The scale along width dimension. It takes value greater than or equal to 1.
+
+ +#### Inputs + +
+
X : T
+
4-D tensor, [N,C,H,W]
+
+ +#### Outputs + +
+
Y : T
+
4-D tensor after resizing, [N,C,H,W]
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain output types to bool, int32, int64, float16, float, double tensors.
+
+ +### **Xor-1** + + Returns the tensor resulted from performing the `xor` logical operation + elementwise on the input tensors `A` and `B`. + + If broadcasting is enabled, the right-hand-side argument will be broadcasted + to match the shape of left-hand-side argument. See the doc of `Add` for a + detailed description of the broadcasting rules. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions.
+
broadcast : int (default is 0)
+
Enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
Left input tensor for the logical operator.
+
B : T
+
Right input tensor for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +## Version 2 of the default ONNX operator set +### **GlobalLpPool-2** + + GlobalLpPool consumes an input tensor X and applies lp pool pooling across + the values in the same channel. This is equivalent to LpPool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 2 of the default ONNX operator set. + +#### Attributes + +
+
p : int (default is 2)
+
p value of the Lp norm used to pool over the input data.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LpPool-2** + + LpPool consumes an input tensor X and applies Lp pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + Lp pooling consisting of computing the Lp norm on all values of a subset + of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. + +#### Version + +This version of the operator has been available since version 2 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
p : int (default is 2)
+
p value of the Lp norm used to pool over the input data.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from Lp pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Pad-2** + + Given `data` tensor, pads, mode, and value. + Example: + Insert 0 pads to the beginning of the second dimension. + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + pads = [0, 2, 0, 0] + output = [ + [ + [0.0, 0.0, 1.0, 1.2], + [0.0, 0.0, 2.3, 3.4], + [0.0, 0.0, 4.5, 5.7], + ], + ] + +#### Version + +This version of the operator has been available since version 2 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is constant)
+
Three modes: constant(default), reflect, edge
+
pads : list of ints (required)
+
List of integers indicating the number of padding elements to add or remove (if negative) at the beginning and end of each axis. For 2D it is the number of pixels. `pads` rank should be double of the input's rank. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.
+
value : float (default is 0.0)
+
One float, indicates the value to be filled.
+
+ +#### Inputs + +
+
data : T
+
Input tensor.
+
+ +#### Outputs + +
+
output : T
+
Tensor after padding.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Split-2** + + Split a tensor into a list of tensors, along the specified + 'axis'. Lengths of the parts can be specified using argument 'split'. + Otherwise, the tensor is split to equal sized parts. + +#### Version + +This version of the operator has been available since version 2 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on.
+
split : list of ints
+
length of each output
+
+ +#### Inputs + +
+
input : T
+
The tensor to split
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic) : T
+
One or more outputs forming list of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 3 of the default ONNX operator set +### **GRU-3** + + Computes an one-layer GRU. This operator is usually supported via some custom + implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `z` - update gate + + `r` - reset gate + + `h` - hidden gate + + `t` - time step (t-1 means previous time step) + + `W[zrh]` - W parameter weight matrix for update, reset, and hidden gates + + `R[zrh]` - R recurrence weight matrix for update, reset, and hidden gates + + `Wb[zrh]` - W bias vectors for update, reset, and hidden gates + + `Rb[zrh]` - R bias vectors for update, reset, and hidden gates + + `WB[zrh]` - W parameter weight matrix for backward update, reset, and hidden gates + + `RB[zrh]` - R recurrence weight matrix for backward update, reset, and hidden gates + + `WBb[zrh]` - W bias vectors for backward update, reset, and hidden gates + + `RBb[zrh]` - R bias vectors for backward update, reset, and hidden gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh): + + - zt = f(Xt*(Wz^T) + Ht-1*Rz + Wbz + Rbz) + + - rt = f(Xt*(Wr^T) + Ht-1*Rr + Wbr + Rbr) + + - ht = g(Xt*(Wh^T) + (rt (.) Ht-1)*Rh + Rbh + Wbh) # default, when linear_before_reset = 0 + + - ht = g(Xt*(Wh^T) + (rt (.) (Ht-1*Rh + Rbh) + Wbh) # when linear_before_reset != 0 + + - Ht = (1 - zt) (.) ht + zt (.) Ht-1 + +#### Version + +This version of the operator has been available since version 3 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 2 (or 4 if bidirectional) activation functions for update, reset, and hidden gates. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
linear_before_reset : int (default is 0)
+
When computing the output of the hidden gate, apply the linear transformation before multiplying by the output of the reset gate.
+
output_sequence : int (default is 0)
+
The sequence output for the hidden is optional if 0. Default 0.
+
+ +#### Inputs (3 - 6) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for the gates. Concatenation of `W[zrh]` and `WB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `R[zrh]` and `RB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for the gates. Concatenation of `[Wb[zrh], Rb[zrh]]` and `[WBb[zrh], RBb[zrh]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 6*hidden_size]`. Optional: If not specified - assumed to be 0
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`. It is optional if `output_sequence` is 0.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +## Version 4 of the default ONNX operator set +### **Concat-4** + + Concatenate a list of tensors into a single tensor + +#### Version + +This version of the operator has been available since version 4 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on
+
+ +#### Inputs (1 - ∞) + +
+
inputs (variadic) : T
+
List of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ +## Version 5 of the default ONNX operator set +### **Reshape-5** + + Reshape the input tensor similar to numpy.reshape. + First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor. + At most one dimension of the new shape can be -1. In this case, the value is + inferred from the size of the tensor and the remaining dimensions. A dimension + could also be 0, in which case the actual dimension value is unchanged (i.e. taken + from the input tensor). Shape (second input) could be an empty shape, which means converting to a scalar. + The input tensor's shape and the output tensor's shape are required to have the same number of elements. + +#### Version + +This version of the operator has been available since version 5 of the default ONNX operator set. + +#### Inputs + +
+
data : T
+
An input tensor.
+
shape : tensor(int64)
+
Specified shape for output.
+
+ +#### Outputs + +
+
reshaped : T
+
Reshaped data.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 6 of the default ONNX operator set +### **Abs-6** + + Absolute takes one input data (Tensor) and produces one output data + (Tensor) where the absolute is, y = abs(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Add-6** + + Performs element-wise binary addition (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **BatchNormalization-6** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + there are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, mean, var, saved_mean, saved_var (training mode) + Output case #2: Y (test mode) + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero, default is 1e-5f.
+
is_test : int (default is 0)
+
If set to nonzero, run spatial batch normalization in test mode, default is 0.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum), default is 0.9f.
+
spatial : int (default is 1)
+
If true, compute the mean and variance across all spatial elements If false, compute the mean and variance across per feature.Default is 1.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
scale : T
+
The scale as a 1-dimensional tensor of size C to be applied to the output.
+
B : T
+
The bias as a 1-dimensional tensor of size C to be applied to the output.
+
mean : T
+
The running mean (training) or the estimated mean (testing) as a 1-dimensional tensor of size C.
+
var : T
+
The running variance (training) or the estimated variance (testing) as a 1-dimensional tensor of size C.
+
+ +#### Outputs (1 - 5) + +
+
Y : T
+
The output tensor of the same shape as X.
+
mean (optional) : T
+
The running mean after the BatchNormalization operator. Must be in-place with the input mean. Should not be used for testing.
+
var (optional) : T
+
The running variance after the BatchNormalization operator. Must be in-place with the input var. Should not be used for testing.
+
saved_mean (optional) : T
+
Saved mean used during training to speed up gradient computation. Should not be used for testing.
+
saved_var (optional) : T
+
Saved variance used during training to speed up gradient computation. Should not be used for testing.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Cast-6** + + The operator casts the elements of a given input tensor to a data type + specified by the 'to' argument and returns an output tensor of the same size in + the converted type. The 'to' argument must be one of the data types specified + in the 'DataType' enum field in the TensorProto message. + NOTE: Casting to and from strings is not supported yet. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
to : int (required)
+
The data type to which the elements of the input tensor are cast. Strictly must be one of the types from DataType enum in TensorProto
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to be cast.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor with the same shape as input with type specified by the 'to' argument
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain input types. Casting from strings and complex are not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types. Casting to strings and complex are not supported.
+
+ +### **Ceil-6** + + Ceil takes one input data (Tensor) and produces one output data + (Tensor) where the ceil is, y = ceil(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Clip-6** + + Clip operator limits the given input within an interval. The interval is + specified with arguments 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max() respectively. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
max : float (default is (3.402823e+38))
+
Maximum value, above which element is replaced by max
+
min : float (default is (-3.402823e+38))
+
Minimum value, under which element is replaced by min
+
+ +#### Inputs + +
+
input : T
+
Input tensor whose elements to be clipped
+
+ +#### Outputs + +
+
output : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Div-6** + + Performs element-wise binary division (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Dropout-6** + + Dropout takes one input data (Tensor) and produces two Tensor outputs, + output (Tensor) and mask (Tensor). Depending on whether it is in + test mode or not, the output Y will either be a random dropout, or a simple + copy of the input. Note that our implementation of Dropout does scaling in + the training phase, so during testing nothing needs to be done. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
is_test : int (default is 0)
+
(int, default 0) if nonzero, run dropout in test mode where the output is simply Y = X.
+
ratio : float (default is 0.5)
+
(float, default 0.5) the ratio of random dropout
+
+ +#### Inputs + +
+
data : T
+
The input data as Tensor.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
The output.
+
mask (optional) : T
+
The output mask. If is_test is nonzero, this output is not filled.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Elu-6** + + Elu takes one input data (Tensor) and produces one output data + (Tensor) where the function `f(x) = alpha * (exp(x) - 1.) for x < + 0`, `f(x) = x for x >= 0`., is applied to the tensor elementwise. + + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Coefficient of ELU.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
1D input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
1D output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Exp-6** + + Calculates the exponential of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The exponential of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Floor-6** + + Floor takes one input data (Tensor) and produces one output data + (Tensor) where the floor is, y = floor(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Gemm-6** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + Compute Y = alpha * A * B + beta * C, where input tensor A has + dimension (M X K), input tensor B has dimension (K X N), input tensor C and + output tensor Y have dimension (M X N). + If attribute broadcast is non-zero, input tensor C will be broadcasted to match + the dimension requirement. A will be transposed before doing the computation + if attribute transA is non-zero, same for B and transB. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B, the default value is 1.0.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C, the default value is 1.0.
+
broadcast : int (default is 0)
+
Whether C should be broadcasted
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs + +
+
A : T
+
Input tensor A
+
B : T
+
Input tensor B
+
C : T
+
Input tensor C
+
+ +#### Outputs + +
+
Y : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **HardSigmoid-6** + + HardSigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the HardSigmoid function, y = max(0, min(1, alpha * x + beta)), + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.2)
+
Value of alpha.
+
beta : float (default is 0.5)
+
Value of beta.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **InstanceNormalization-6** + + Carries out instance normalization as described in the paper + https://arxiv.org/abs/1607.08022. + + y = scale * (x - mean) / sqrt(variance + epsilon) + B, + where mean and variance are computed per instance per channel. + + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
scale (differentiable) : T
+
The input 1-dimensional scale tensor of size C.
+
B (differentiable) : T
+
The input 1-dimensional bias tensor of size C.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output tensor of the same shape as input.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LeakyRelu-6** + + LeakyRelu takes input data (Tensor) and an argument alpha, and produces one + output data (Tensor) where the function `f(x) = alpha * x for x < 0`, + `f(x) = x for x >= 0`, is applied to the data tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.01)
+
Coefficient of leakage.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Log-6** + + Calculates the natural log of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The natural log of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Max-6** + + Element-wise max of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Max.
+
+ +#### Outputs + +
+
max : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Mean-6** + + Element-wise mean of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Mean.
+
+ +#### Outputs + +
+
mean : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Min-6** + + Element-wise min of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Min
+
+ +#### Outputs + +
+
min : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Mul-6** + + Performs element-wise binary multiplication (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Neg-6** + + Neg takes one input data (Tensor) and produces one output data + (Tensor) where each element flipped sign, y = -x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(int32), tensor(int8), tensor(int16), tensor(int64), tensor(float16), tensor(double)
+
Constrain input and output types to signed numeric tensors.
+
+ +### **PRelu-6** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
slope : T
+
Slope tensor. If `Slope` is of size 1, the value is sharedacross different channels
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Reciprocal-6** + + Reciprocal takes one input data (Tensor) and produces one output data + (Tensor) where the reciprocal is, y = 1/x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Relu-6** + + Relu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = max(0, x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Selu-6** + + Selu takes one input data (Tensor) and produces one output data + (Tensor) where the scaled exponential linear unit function, + `y = gamma * (alpha * e^x - alpha) for x <= 0`, `y = gamma * x for x > 0`, + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.67326)
+
Coefficient of SELU default to 1.67326319217681884765625 (i.e., float32 approximation of 1.6732632423543772848170429916717).
+
gamma : float (default is 1.0507)
+
Coefficient of SELU default to 1.05070102214813232421875 (i.e., float32 approximation of 1.0507009873554804934193349852946).
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Sigmoid-6** + + Sigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the sigmoid function, y = 1 / (1 + exp(-x)), is applied to the + tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Sqrt-6** + + Square root takes one input data (Tensor) and produces one output data + (Tensor) where the square root is, y = x^0.5, is applied to + the tensor elementwise. If x is negative, then it will return NaN. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Sub-6** + + Performs element-wise binary subtraction (with limited broadcast support). + + If necessary the right-hand-side argument will be broadcasted to match the + shape of left-hand-side argument. When broadcasting is specified, the second + tensor can either be of element size 1 (including a scalar tensor and any + tensor with rank equal to or smaller than the first tensor), or having its + shape as a contiguous subset of the first tensor's shape. The starting of the + mutually equal shape is specified by the argument "axis", and if it is not set, + suffix matching is assumed. 1-dim expansion doesn't work yet. + + For example, the following tensor shapes are supported (with broadcast=1): + + shape(A) = (2, 3, 4, 5), shape(B) = (,), i.e. B is a scalar tensor + shape(A) = (2, 3, 4, 5), shape(B) = (1, 1), i.e. B is an 1-element tensor + shape(A) = (2, 3, 4, 5), shape(B) = (5,) + shape(A) = (2, 3, 4, 5), shape(B) = (4, 5) + shape(A) = (2, 3, 4, 5), shape(B) = (3, 4), with axis=1 + shape(A) = (2, 3, 4, 5), shape(B) = (2), with axis=0 + + Attribute `broadcast=1` needs to be passed to enable broadcasting. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
If set, defines the broadcast dimensions. See doc for details.
+
broadcast : int (default is 0)
+
Pass 1 to enable broadcasting
+
+ +#### Inputs + +
+
A : T
+
First operand, should share the type with the second operand.
+
B : T
+
Second operand. With broadcasting can be of smaller size than A. If broadcasting is disabled it should be of the same size.
+
+ +#### Outputs + +
+
C : T
+
Result, has same dimensions and type as A
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Sum-6** + + Element-wise sum of each of the input tensors. All inputs and outputs must + have the same shape and data type. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for Sum.
+
+ +#### Outputs + +
+
sum : T
+
Output tensor. Same dimension as inputs.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Tanh-6** + + Calculates the hyperbolic tangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The hyperbolic tangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Tile-6** + + Constructs a tensor by tiling a given tensor. + This is the same as function `tile` in Numpy, but no broadcast. + For example A = [[1, 2], [3, 4]], B = [1, 2], tile(A, B) = [[1, 2, 1, 2], [3, 4, 3, 4]] + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor of any shape.
+
repeats : T1
+
1D int64 tensor of the same length as input's dimension number, includes numbers of repeated copies along input's dimensions.
+
+ +#### Outputs + +
+
output : T
+
Output tensor of the same dimensions and type as tensor input. output_dim[i] = input_dim[i] * repeats[i]
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(int64)
+
Constrain repeat's type to int64 tensors.
+
+ +## Version 7 of the default ONNX operator set +### **Acos-7** + + Calculates the arccosine (inverse of cosine) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arccosine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Add-7** + + Performs element-wise binary addition (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First operand.
+
B : T
+
Second operand.
+
+ +#### Outputs + +
+
C : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **And-7** + + Returns the tensor resulted from performing the `and` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Asin-7** + + Calculates the arcsine (inverse of sine) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arcsine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Atan-7** + + Calculates the arctangent (inverse of tangent) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arctangent of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **AveragePool-7** + + AveragePool consumes an input tensor X and applies average pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + average pooling consisting of computing the average on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is divided by the number of elements (exclude pad when attribute count_include_pad is zero). + + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
count_include_pad : int (default is 0)
+
Whether include pad pixels when calculating values for the edges. Default is 0, doesn't count include pad.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **BatchNormalization-7** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + there are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, mean, var, saved_mean, saved_var (training mode) + Output case #2: Y (test mode) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum).
+
spatial : int (default is 1)
+
If true, compute the mean and variance across per activation. If false, compute the mean and variance across per feature over each mini-batch.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
scale : T
+
If spatial is true, the dimension of scale is (C). If spatial is false, the dimensions of scale are (C x D1 x ... x Dn)
+
B : T
+
If spatial is true, the dimension of bias is (C). If spatial is false, the dimensions of bias are (C x D1 x ... x Dn)
+
mean : T
+
If spatial is true, the dimension of the running mean (training) or the estimated mean (testing) is (C). If spatial is false, the dimensions of the running mean (training) or the estimated mean (testing) are (C x D1 x ... x Dn).
+
var : T
+
If spatial is true, the dimension of the running variance(training) or the estimated variance (testing) is (C). If spatial is false, the dimensions of the running variance(training) or the estimated variance (testing) are (C x D1 x ... x Dn).
+
+ +#### Outputs (1 - 5) + +
+
Y : T
+
The output tensor of the same shape as X
+
mean (optional) : T
+
The running mean after the BatchNormalization operator.
+
var (optional) : T
+
The running variance after the BatchNormalization operator.
+
saved_mean (optional) : T
+
Saved mean used during training to speed up gradient computation.
+
saved_var (optional) : T
+
Saved variance used during training to speed up gradient computation.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Cos-7** + + Calculates the cosine of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The cosine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Div-7** + + Performs element-wise binary division (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First operand.
+
B : T
+
Second operand.
+
+ +#### Outputs + +
+
C : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Dropout-7** + + Dropout takes one input data (Tensor) and produces two Tensor outputs, + output (Tensor) and mask (Tensor). Depending on whether it is in + test mode or not, the output Y will either be a random dropout, or a simple + copy of the input. Note that our implementation of Dropout does scaling in + the training phase, so during testing nothing needs to be done. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
ratio : float (default is 0.5)
+
The ratio of random dropout
+
+ +#### Inputs + +
+
data : T
+
The input data as Tensor.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
The output.
+
mask (optional) : T
+
The output mask.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Equal-7** + + Returns the tensor resulted from performing the `equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(int32), tensor(int64)
+
Constrain input to integral tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **GRU-7** + + Computes an one-layer GRU. This operator is usually supported via some custom + implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `z` - update gate + + `r` - reset gate + + `h` - hidden gate + + `t` - time step (t-1 means previous time step) + + `W[zrh]` - W parameter weight matrix for update, reset, and hidden gates + + `R[zrh]` - R recurrence weight matrix for update, reset, and hidden gates + + `Wb[zrh]` - W bias vectors for update, reset, and hidden gates + + `Rb[zrh]` - R bias vectors for update, reset, and hidden gates + + `WB[zrh]` - W parameter weight matrix for backward update, reset, and hidden gates + + `RB[zrh]` - R recurrence weight matrix for backward update, reset, and hidden gates + + `WBb[zrh]` - W bias vectors for backward update, reset, and hidden gates + + `RBb[zrh]` - R bias vectors for backward update, reset, and hidden gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh): + + - zt = f(Xt*(Wz^T) + Ht-1*(Rz^T) + Wbz + Rbz) + + - rt = f(Xt*(Wr^T) + Ht-1*(Rr^T) + Wbr + Rbr) + + - ht = g(Xt*(Wh^T) + (rt (.) Ht-1)*(Rh^T) + Rbh + Wbh) # default, when linear_before_reset = 0 + + - ht = g(Xt*(Wh^T) + (rt (.) (Ht-1*(Rh^T) + Rbh)) + Wbh) # when linear_before_reset != 0 + + - Ht = (1 - zt) (.) ht + zt (.) Ht-1 + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 2 (or 4 if bidirectional) activation functions for update, reset, and hidden gates. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
linear_before_reset : int (default is 0)
+
When computing the output of the hidden gate, apply the linear transformation before multiplying by the output of the reset gate.
+
+ +#### Inputs (3 - 6) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for the gates. Concatenation of `W[zrh]` and `WB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `R[zrh]` and `RB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for the gates. Concatenation of `[Wb[zrh], Rb[zrh]]` and `[WBb[zrh], RBb[zrh]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 6*hidden_size]`. Optional: If not specified - assumed to be 0
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Gemm-7** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + + A' = transpose(A) if transA else A + + B' = transpose(B) if transB else B + + Compute Y = alpha * A' * B' + beta * C, where input tensor A has shape (M, K) or (K, M), + input tensor B has shape (K, N) or (N, K), input tensor C is broadcastable to shape (M, N), + and output tensor Y has shape (M, N). A will be transposed before doing the + computation if attribute transA is non-zero, same for B and transB. + This operator supports **unidirectional broadcasting** (tensor C should be unidirectional broadcastable to tensor A * B); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C.
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs + +
+
A : T
+
Input tensor A. The shape of A should be (M, K) if transA is 0, or (K, M) if transA is non-zero.
+
B : T
+
Input tensor B. The shape of B should be (K, N) if transB is 0, or (N, K) if transB is non-zero.
+
C : T
+
Input tensor C. The shape of C should be unidirectional broadcastable to (M, N).
+
+ +#### Outputs + +
+
Y : T
+
Output tensor of shape (M, N).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Greater-7** + + Returns the tensor resulted from performing the `greater` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input to float tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **LSTM-7** + + Computes an one-layer LSTM. This operator is usually supported via some + custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `o` - output gate + + `f` - forget gate + + `c` - cell gate + + `t` - time step (t-1 means previous time step) + + `W[iofc]` - W parameter weight matrix for input, output, forget, and cell gates + + `R[iofc]` - R recurrence weight matrix for input, output, forget, and cell gates + + `Wb[iofc]` - W bias vectors for input, output, forget, and cell gates + + `Rb[iofc]` - R bias vectors for input, output, forget, and cell gates + + `P[iof]` - P peephole weight vector for input, output, and forget gates + + `WB[iofc]` - W parameter weight matrix for backward input, output, forget, and cell gates + + `RB[iofc]` - R recurrence weight matrix for backward input, output, forget, and cell gates + + `WBb[iofc]` - W bias vectors for backward input, output, forget, and cell gates + + `RBb[iofc]` - R bias vectors for backward input, output, forget, and cell gates + + `PB[iof]` - P peephole weight vector for backward input, output, and forget gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh, h=Tanh): + + - it = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Pi (.) Ct-1 + Wbi + Rbi) + + - ft = f(Xt*(Wf^T) + Ht-1*(Rf^T) + Pf (.) Ct-1 + Wbf + Rbf) + + - ct = g(Xt*(Wc^T) + Ht-1*(Rc^T) + Wbc + Rbc) + + - Ct = ft (.) Ct-1 + it (.) ct + + - ot = f(Xt*(Wo^T) + Ht-1*(Ro^T) + Po (.) Ct + Wbo + Rbo) + + - Ht = ot (.) h(Ct) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 3 (or 6 if bidirectional) activation functions for input, output, forget, cell, and hidden. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
input_forget : int (default is 0)
+
Couple the input and forget gates if 1.
+
+ +#### Inputs (3 - 8) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for the gates. Concatenation of `W[iofc]` and `WB[iofc]` (if bidirectional) along dimension 0. The tensor has shape `[num_directions, 4*hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `R[iofc]` and `RB[iofc]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 4*hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for input gate. Concatenation of `[Wb[iofc], Rb[iofc]]`, and `[WBb[iofc], RBb[iofc]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 8*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
initial_c (optional) : T
+
Optional initial value of the cell. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
P (optional) : T
+
The weight tensor for peepholes. Concatenation of `P[iof]` and `PB[iof]` (if bidirectional) along dimension 0. It has shape `[num_directions, 3*hidde_size]`. Optional: If not specified - assumed to be 0.
+
+ +#### Outputs (0 - 3) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
Y_c (optional) : T
+
The last output value of the cell. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Less-7** + + Returns the tensor resulted from performing the `less` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input to float tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Mul-7** + + Performs element-wise binary multiplication (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First operand.
+
B : T
+
Second operand.
+
+ +#### Outputs + +
+
C : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Multinomial-7** + + Generate a tensor of samples from a multinomial distribution according to the probabilities + of each of the possible outcomes. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 6)
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use int32.
+
sample_size : int (default is 1)
+
Number of times to sample.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor with shape [batch_size, class_size], where class_size is the number of all possible outcomes. Each value along the axis zero represents the unnormalized log-probability of each corresponding outcome in a batch.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor with shape [batch_size, sample_size], where sample_size is the number of times to sample. Each value along the axis zero represents the outcome of the corresponding sample in a batch.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(int32), tensor(int64)
+
Constrain output types to integral tensors.
+
+ +### **Or-7** + + Returns the tensor resulted from performing the `or` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **PRelu-7** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + This operator supports **unidirectional broadcasting** (tensor slope should be unidirectional broadcastable to input tensor X); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
Input tensor
+
slope : T
+
Slope tensor. The shape of slope can be smaller then first input X; if so, its shape must be unidirectional broadcastable to X
+
+ +#### Outputs + +
+
Y : T
+
Output tensor (same size as X)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Pow-7** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
First operand, base of the exponent.
+
Y : T
+
Second operand, power of the exponent.
+
+ +#### Outputs + +
+
Z : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **RNN-7** + + Computes an one-layer simple RNN. This operator is usually supported + via some custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `t` - time step (t-1 means previous time step) + + `Wi` - W parameter weight matrix for input gate + + `Ri` - R recurrence weight matrix for input gate + + `Wbi` - W parameter bias vector for input gate + + `Rbi` - R parameter bias vector for input gate + + `WBi` - W parameter weight matrix for backward input gate + + `RBi` - R recurrence weight matrix for backward input gate + + `WBbi` - WR bias vectors for backward input gate + + `RBbi` - RR bias vectors for backward input gate + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Tanh): + + - Ht = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Wbi + Rbi) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings (default is ['Tanh', 'Tanh'])
+
One (or two if bidirectional) activation function for input gate. The activation function must be one of the activation functions specified above. Optional: Default `Tanh` if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
+ +#### Inputs (3 - 6) + +
+
X : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W : T
+
The weight tensor for input gate. Concatenation of `Wi` and `WBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, input_size]`.
+
R : T
+
The recurrence weight tensor. Concatenation of `Ri` and `RBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, hidden_size]`.
+
B (optional) : T
+
The bias tensor for input gate. Concatenation of `[Wbi, Rbi]` and `[WBbi, RBbi]` (if bidirectional). The tensor has shape `[num_directions, 2*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Sin-7** + + Calculates the sine of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The sine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Sub-7** + + Performs element-wise binary subtraction (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First operand.
+
B : T
+
Second operand.
+
+ +#### Outputs + +
+
C : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Tan-7** + + Calculates the tangent of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The tangent of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Upsample-7** + + Upsample the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * scale). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is nearest)
+
Two interpolation modes: nearest (default), and linear (including bilinear, trilinear, etc)
+
scales : list of floats (required)
+
The scale array along each dimension. It takes value greater than or equal to 1. The number of elements of 'scales' should be the same as the rank of input 'X'.
+
+ +#### Inputs + +
+
X : T
+
N-D tensor
+
+ +#### Outputs + +
+
Y : T
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Xor-7** + + Returns the tensor resulted from performing the `xor` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +## Version 8 of the default ONNX operator set +### **Expand-8** + + Broadcast the input tensor following the given shape and the broadcast rule. + The broadcast rule is similar to numpy.array(input) * numpy.ones(shape): + Dimensions are right alignment; + Two corresponding dimensions must have the same value, or one of them is equal to 1. + Also, this operator is similar to numpy.broadcast_to(input, shape), + but the major difference is numpy.broadcast_to() does not allow shape to be smaller than input.size(). + It is possible that the output.shape is not equal to shape, when some dimensions in shape is equal to 1, + or the shape.ndim < input.shape.ndim. + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
shape : tensor(int64)
+
A 1-D tensor indicates the shape you want to expand to, following the broadcast rule
+
+ +#### Outputs + +
+
output : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensors.
+
+ +### **Max-8** + + Element-wise max of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for max.
+
+ +#### Outputs + +
+
max : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **MaxPool-8** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
storage_order : int (default is 0)
+
The storage order of the tensor. 0 is row major, and 1 is column major.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs (1 - 2) + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
Indices (optional) : I
+
Indices tensor from max pooling across the input tensor. The dimensions of indices are the same as output tensor. The values in indices of are the indices of the selected values during pooling. The indices are computed as flatten 1-D tensor, and the indices do not consider padding. So the values in indices are in [0, N x C x D1 x ... x Dn).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Mean-8** + + Element-wise mean of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for mean.
+
+ +#### Outputs + +
+
mean : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Min-8** + + Element-wise min of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for min.
+
+ +#### Outputs + +
+
min : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Scan-8** + + Scan can be used to iterate over one or more scan_input tensors, + constructing zero or more scan_output tensors. It combines ideas from general recurrences, + functional programming constructs such as scan, fold, map, and zip, and is intended to enable + generalizations of RNN-like constructs for sequence-to-sequence processing. + Other tensors (referred to as state_variables here) can be used to carry a state + when iterating from one element to another (similar to hidden-state in RNNs, also referred + to as loop-carried dependences in the context of loops). All these tensors are required to + have the same shape in each iteration of the loop (a restriction imposed to enable efficient + memory allocation). Many common usages involve a single scan_input tensor (where functionality + similar to scan, fold and map can be obtained). When more than one scan_input is used, + a behavior similar to zip is obtained. + + The attribute body must be a graph, specifying the computation to be performed in + every iteration. It takes as input the current values of the state_variables and + the current iterated element of the scan_inputs. It must return the (updated) values + of the state_variables and zero or more scan_output_element tensors. The values of the + scan_output_element tensors are concatenated over all the iterations to produce the + scan_output values of the scan construct (similar to the concatenated intermediate + hidden-state values of RNN-like constructs). + + The scan operation returns the final values of the state_variables as well as the + scan_outputs. + + The operation supports batching, and the batch-axis is required to be 0. + When multiple scan_input tensors are used, they must all have the same batch-size, + and they must all have the same maximum-sequence-length (the dimensionality of the + sequence axis or scan axis). The sequence axis or scan axis is required to be 1. + + The operation has an optional sequence_lens input (of shape [BATCH_SIZE]) to + allow variable length sequences of length <= the maximum-sequence-length. If this + input is not specified, all sequences are assumed to be of length equal to + maximum-sequence-length. For variable length input sequences, the scan_outputs + will consist of a sequence of same length as the input, padded to the + maximum-sequence-length. + + The optional attribute directions can be used to scan a sequence in the reverse direction. + If this attribute is omitted, all sequences are scanned in the forward direction. + A bidirectional scan be performed by specifying the same tensor input twice in the + scan_inputs, once with a forward direction, and once with a backward direction. + + Note that because of the ONNX restriction that only the last parameter of an operator can + be variadic, the initial-states and scan-inputs are listed together as one input parameter. + Similarly, the final-states and scan-outputs are listed together as one output parameter. + The attribute num_scan_inputs indicates the number M of scan-inputs. + + The behavior of + + Scan < + num_scan_inputs = m, + body = loop-body + > (sequence_lengths, init_1, ..., init_n, scan_1, ..., scan_m) + + is equivalent to the following pseudo-code: + + // T.shape[0] denotes the batch-size of T + // The batch-size of scan_1, ..., scan_m are all required to be equal + batch_size = scan_1.shape[0]; + + // scan_i.shape[1] denotes the (max) sequence-length of scan_i + // scan_i.shape[1] is required to be equal to scan_j.shape[1] for all i,j. + max_sequence_length = scan_1.shape[1]; + + for (int batch = 0; batch < batch_size; ++batch) { + // initialize state-variables + st_1 = init_1; ... st_n = init_n; + // initialize scan-output variables: [] denotes an empty tensor + scan_out_1 = []; ...; scan_out_k = []; + // identify number of iterations: + N = (sequence_lengths specified) ? sequence_lengths[batch] : max_sequence_length; + + // execute loop + for (int t = 0; t < N; ++t) { + // generate the scan-input elements: the notation T[t] indicates the sub-tensor + // of rank one less than T obtained by indexing T at position t along axis k. + si_1 = (scan_1[batch])[t]; + ... ; + si_m = (scan_m[batch])[t]; + // execute loop-body + st_1, ..., st_n, so_1, ..., so_k = loop-body(st_1, ..., st_n, si_1, ..., si_m) + // accumulate the scan-output elements + scan_out_1 = Concat(scan_out_1, so_1); ... ; scan_out_k = Concat(scan_out_k, so_k); + } + // accumulate the outputs for this batch: + bst_1[batch] = st_1; ..., bst_n[batch] = st_n; + // Note scan-outputs will have size max_sequence_length, but only first N values will be meaningful. + // The remaining values have an undefined value. + b_scan_out_1[batch] = scan_out_1; ...; b_scan_out_k[batch] = scan_out_k; + } + return bst_1, ..., bst_n, b_scan_out_1, ..., b_scan_out_k; + + + + *Sample usage: Encoding RNN using a Scan* + + The following example shows how a simple RNN over an input tensor %X, with weight tensor %Wi, + recurrence weight tensor %Ri, bias tensors %Wbi and %Rbi, and initial hidden-state %H_0 can + be encoded as a ScanLoop. Note that the loop-body is a nested graph, and it directly computes + %Wi, %Ri, %Wbi, and %Rbi (typically constants or initializers in the body graph). If these + values are computed in the outer graph, they need to be passed in as extra state_variables. + + graph rnn-encoding { + %H_0 = ... + %X = ... + %Y_h, %Y = Scan[body = , num_scan_inputs=1]("", %H_0, %X) + return %Y, %Y_h + } + + graph rnn-cell-1 ( + %H_tminus1[FLOAT, tensor] + %X_t[FLOAT, tensor] + ) { + %Wi = ... + %Ri = ... + %Wbi = ... + %Rbi = ... + %t1 = X_t * (Wi^T) + %t2 = H_tminus1*(Ri^T) + %t3 = Add(%t1, %t2) + %t4 = Add(%t3, %Wbi) + %t5 = Add(%t4, %Rbi) + %Ht = Tanh(%t5) + %Accumulate = Identity(%Ht) + return %Ht, %Accumulate + } + + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has N+M inputs: (loop state variables..., scan_input_elts...). It has N+K outputs: (loop state variables..., scan_output_elts...). Each scan_output is created by concatenating the value of the specified scan_output_elt value at the end of each iteration of the loop. It is an error if the dimensions of these values change across loop iterations.
+
directions : list of ints
+
An optional list of M flags. The i-th element of the list specifies the direction to be scanned for the i-th scan_input tensor: 0 indicates forward direction and 1 indicates reverse direction. If omitted, all scan_input tensors will be scanned in the forward direction.
+
num_scan_inputs : int (required)
+
An attribute specifying the number of scan_inputs M.
+
+ +#### Inputs (2 - ∞) + +
+
sequence_lens (optional) : I
+
Optional tensor specifying lengths of the sequences in a batch. If this input is not specified, all sequences are assumed to be of the maximum sequence length (the dimension of the sequence axis of the scan_input tensors).
+
initial_state_and_scan_inputs (variadic, heterogeneous) : V
+
Initial values of the loop's N state variables followed by M scan_inputs
+
+ +#### Outputs (1 - ∞) + +
+
final_state_and_scan_outputs (variadic, heterogeneous) : V
+
Final values of the loop's N state variables followed by K scan_outputs
+
+ +#### Type Constraints + +
+
I : tensor(int64)
+
Int64 tensor
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
+ +### **Sum-8** + + Element-wise sum of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 8 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for sum.
+
+ +#### Outputs + +
+
sum : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +## Version 9 of the default ONNX operator set +### **Acosh-9** + + Calculates the hyperbolic arccosine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arccosine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Asinh-9** + + Calculates the hyperbolic arcsine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arcsine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Atanh-9** + + Calculates the hyperbolic arctangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arctangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **BatchNormalization-9** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + there are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, mean, var, saved_mean, saved_var (training mode) + Output case #2: Y (test mode) + + For previous (depreciated) non-spatial cases, implementors are suggested + to flatten the input shape to (N x C*D1*D2 ..*Dn) before a BatchNormalization Op. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum).
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size, C is the number of channels. Statistics are computed for every channel of C over N and D1 to Dn dimensions. For image data, input dimensions become (N x C x H x W). The op also accepts single dimension input of size N in which case C is assumed to be 1
+
scale (differentiable) : T
+
Scale tensor of shape (C).
+
B (differentiable) : T
+
Bias tensor of shape (C).
+
mean (differentiable) : T
+
running (training) or estimated (testing) mean tensor of shape (C).
+
var (differentiable) : T
+
running (training) or estimated (testing) variance tensor of shape (C).
+
+ +#### Outputs (1 - 5) + +
+
Y (differentiable) : T
+
The output tensor of the same shape as X
+
mean (optional, non-differentiable) : T
+
The running mean after the BatchNormalization operator.
+
var (optional, non-differentiable) : T
+
The running variance after the BatchNormalization operator.
+
saved_mean (optional, non-differentiable) : T
+
Saved mean used during training to speed up gradient computation.
+
saved_var (optional, non-differentiable) : T
+
Saved variance used during training to speed up gradient computation.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Cast-9** + + The operator casts the elements of a given input tensor to a data type + specified by the 'to' argument and returns an output tensor of the same size in + the converted type. The 'to' argument must be one of the data types specified + in the 'DataType' enum field in the TensorProto message. + + Casting from string tensor in plain (e.g., "3.14" and "1000") and scientific numeric representations + (e.g., "1e-5" and "1E8") to float types is supported. For example, converting string "100.5" to an integer may + result 100. There are some string literals reserved for special floating-point values; + "+INF" (and "INF"), "-INF", and "NaN" are positive infinity, negative infinity, and not-a-number, respectively. + Any string which can exactly match "+INF" in a case-insensitive way would be mapped to positive infinite. Similarly, + this case-insensitive rule is applied to "INF" and "NaN". When casting from numeric tensors + to string tensors, plain floating-point representation (such as "314.15926") would be used. + Converting non-numerical-literal string such as "Hello World!" is an undefined behavior. Cases + of converting string representing floating-point arithmetic value, such as "2.718", to INT is an undefined behavior. + + Conversion from a numerical type to any numerical type is always allowed. + User must be aware of precision loss and value change caused by range difference between two types. + For example, a 64-bit float 3.1415926459 may be round to a 32-bit float 3.141592. Similarly, converting + an integer 36 to Boolean may produce 1 because we truncate bits which can't be stored in the targeted type. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
to : int (required)
+
The data type to which the elements of the input tensor are cast. Strictly must be one of the types from DataType enum in TensorProto
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to be cast.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor with the same shape as input with type specified by the 'to' argument
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string)
+
Constrain input types. Casting from complex is not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string)
+
Constrain output types. Casting to complex is not supported.
+
+ +### **Compress-9** + + Selects slices from an input tensor along a given axis where condition evaluates to True for each axis index. + In case axis is not provided, input is flattened before elements are selected. + Compress behaves like numpy.compress: https://docs.scipy.org/doc/numpy/reference/generated/numpy.compress.html + + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
(Optional) Axis along which to take slices. If not specified, input is flattened before elements being selected.
+
+ +#### Inputs + +
+
input : T
+
Tensor of rank r >= 1.
+
condition : T1
+
Rank 1 tensor of booleans to indicate which slices or data elements to be selected. Its length can be less than the input length alone the axis or the flattened input size if axis is not specified. In such cases data slices or elements exceeding the condition length are discarded.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank r if axis is specified. Otherwise output is a Tensor of rank 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(bool)
+
Constrain to boolean tensors.
+
+ +### **Constant-9** + + A constant tensor. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
value : tensor (required)
+
The value for the elements of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **ConstantOfShape-9** + + Generate a tensor with given value and shape. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
value : tensor
+
(Optional) The value of the output elements.Should be a one-element tensor. If not specified, it defaults to a tensor of value 0 and datatype float32
+
+ +#### Inputs + +
+
input : T1
+
1D tensor. The shape of the expected output tensor. If empty tensor is given, the output would be a scalar. All values must be >= 0.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of shape specified by 'input'.If attribute 'value' is specified, the value and datatype of the output tensor is taken from 'value'.If attribute 'value' is not specified, the value in the output defaults to 0, and the datatype defaults to float32.
+
+ +#### Type Constraints + +
+
T1 : tensor(int64)
+
Constrain input types.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types to be numerics.
+
+ +### **Cosh-9** + + Calculates the hyperbolic cosine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic cosine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Erf-9** + + Computes the error function of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The error function of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **EyeLike-9** + + Generate a 2D tensor (matrix) with ones on the diagonal and zeros everywhere else. Only 2D + tensors are supported, i.e. input T1 must be of rank 2. The shape of the output tensor is the + same as the input tensor. The data type can be specified by the 'dtype' argument. If + 'dtype' is not specified, then the type of input tensor is used. By default, the main diagonal + is populated with ones, but attribute 'k' can be used to populate upper or lower diagonals. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message and be valid as an output type. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor. If not specified,the data type of the input tensor T1 is used. If input tensor T1 is also notspecified, then type defaults to 'float'.
+
k : int (default is 0)
+
(Optional) Index of the diagonal to be populated with ones. Default is 0. If T2 is the output, this op sets T2[i, i+k] = 1. k = 0 populates the main diagonal, k > 0 populates an upper diagonal, and k < 0 populates a lower diagonal.
+
+ +#### Inputs + +
+
input : T1
+
2D input tensor to copy shape, and optionally, type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor, same shape as input tensor T1.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain input types. Strings and complex are not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types. Strings and complex are not supported.
+
+ +### **Flatten-9** + + Flattens the input tensor into a 2D matrix. If input tensor has shape + (d_0, d_1, ... d_n) then the output will have shape + (d_0 X d_1 ... d_(axis-1), d_axis X d_(axis+1) ... X dn). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Indicate up to which input dimensions (exclusive) should be flattened to the outer dimension of the output. The value for axis must be in the range [0, R], where R is the rank of the input tensor. When axis = 0, the shape of the output tensor is (1, (d_0 X d_1 ... d_n), where the shape of the input tensor is (d_0, d_1, ... d_n).
+
+ +#### Inputs + +
+
input : T
+
A tensor of rank >= axis.
+
+ +#### Outputs + +
+
output : T
+
A 2D tensor with the contents of the input tensor, with input dimensions up to axis flattened to the outer dimension of the output and remaining input dimensions flattened into the inner dimension of the output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output to all tensor types.
+
+ +### **Gemm-9** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + + A' = transpose(A) if transA else A + + B' = transpose(B) if transB else B + + Compute Y = alpha * A' * B' + beta * C, where input tensor A has shape (M, K) or (K, M), + input tensor B has shape (K, N) or (N, K), input tensor C is broadcastable to shape (M, N), + and output tensor Y has shape (M, N). A will be transposed before doing the + computation if attribute transA is non-zero, same for B and transB. + This operator supports **unidirectional broadcasting** (tensor C should be unidirectional broadcastable to tensor A * B); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C.
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs + +
+
A : T
+
Input tensor A. The shape of A should be (M, K) if transA is 0, or (K, M) if transA is non-zero.
+
B : T
+
Input tensor B. The shape of B should be (K, N) if transB is 0, or (N, K) if transB is non-zero.
+
C : T
+
Input tensor C. The shape of C should be unidirectional broadcastable to (M, N).
+
+ +#### Outputs + +
+
Y : T
+
Output tensor of shape (M, N).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ +### **Greater-9** + + Returns the tensor resulted from performing the `greater` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **IsNaN-9** + + Returns which elements of the input are NaN. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
X : T1
+
input
+
+ +#### Outputs + +
+
Y : T2
+
output
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(bool)
+
Constrain output types to boolean tensors.
+
+ +### **Less-9** + + Returns the tensor resulted from performing the `less` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **MatMul-9** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
N-dimensional matrix A
+
B : T
+
N-dimensional matrix B
+
+ +#### Outputs + +
+
Y : T
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ +### **MaxUnpool-9** + + MaxUnpool essentially computes the partial inverse of the MaxPool op. + The input information to this op is typically the the output information from a MaxPool op. The first + input tensor X is the tensor that needs to be unpooled, which is typically the pooled tensor (first output) + from MaxPool. The second input tensor, I, contains the indices to the (locally maximal) elements corrsponding + to the elements in the first input tensor X. Input tensor I is typically the second output of the MaxPool op. + The third (optional) input is a tensor that specifies the output size of the unpooling operation. + + MaxUnpool is intended to do 'partial' inverse of the MaxPool op. 'Partial' because all the non-maximal + values from the original input to MaxPool are set to zero in the output of the MaxUnpool op. Pooling + the result of an unpooling operation should give back the original input to the unpooling op. + + MaxUnpool can produce the same output size for several input sizes, which makes unpooling op ambiguous. + The third input argument, output_size, is meant to disambiguate the op and produce output tensor of + known/predictable size. + + In addition to the inputs, MaxUnpool takes three attributes, namely kernel_shape, strides, and pads, + which define the exact unpooling op. The attributes typically have the same values as the corrsponding + pooling op that the unpooling op is trying to invert. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X : T1
+
Input data tensor that has to be unpooled. This tensor is typically the first output of the MaxPool op.Dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non-image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
I : T2
+
Input data tensor containing the indices corresponding to elements in the first input tensor X.This tensor is typically the second output of the MaxPool op.Dimensions must be the same as input tensor X. The indices are linear, i.e. computed considering the tensor as flattened 1-D tensor, assuming row-major storage. Also, the linear indices should not consider padding. So the values in indices are in the range [0, N x C x D1 x ... x Dn).
+
output_shape (optional) : T2
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If 'output_shape' is specified, 'pads' values are ignored.
+
+ +#### Outputs + +
+
output : T1
+
Output data tensor that contains the result of the unpooling.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T2 : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **MeanVarianceNormalization-9** + + A MeanVarianceNormalization Function: Perform mean variance normalization + on the input tensor X using formula:
``` (X-EX)/sqrt(E(X-EX)^2) ``` + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints (default is ['0', '2', '3'])
+
A list of integers, along which to reduce. The default is to caculate along axes [0,2,3] for calculating mean and variance along each channel. Two variables with the same C-coordinate are associated with the same mean and variance.
+
+ +#### Inputs + +
+
X : T
+
Input tensor
+
+ +#### Outputs + +
+
Y : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **NonZero-9** + + Returns the indices of the elements that are non-zero + (in row-major order - by dimension). + NonZero behaves similar to numpy.nonzero: + https://docs.scipy.org/doc/numpy/reference/generated/numpy.nonzero.html + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
input
+
+ +#### Outputs + +
+
Y : tensor(int64)
+
output
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to all tensor types.
+
+ +### **OneHot-9** + + Produces a one-hot tensor based on inputs. + The locations represented by the index values in the 'indices' input tensor will have 'on_value' + and the other locations will have 'off_value' in the output tensor, where 'on_value' and 'off_value' + are specified as part of required input argument 'values', which is a two-element tensor of format + [off_value, on_value]. The rank of the output tensor will be one greater than the rank of the + input tensor. The additional dimension is for one-hot representation. The additional dimension will + be inserted at the position specified by 'axis'. If 'axis' is not specified then then additional + dimension will be inserted as the innermost dimension, i.e. axis=-1. The size of the additional + dimension is specified by required scalar input 'depth'. The type of the output tensor is the same + as the type of the 'values' input. Any entries in the 'indices' input tensor with values outside + the range [0, depth) will result in one-hot representation with all 'off_value' values in the + output tensor. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
(Optional) Axis along which one-hot representation in added. Default: axis=-1. axis=-1 means that the additional dimension will be inserted as the innermost/last dimension in the output tensor.
+
+ +#### Inputs + +
+
indices : T1
+
Input tensor containing indices. The values must be non-negative integers. Any entries in the 'indices' input tensor with values outside the range [0, depth) will result in one-hot representation with all 'off_value' values in the output tensor.In case 'indices' is of non-integer type, the values will be casted to int64 before use.
+
depth : T2
+
Scalar specifying the number of classes in one-hot tensor. This is also the size of the one-hot dimension (specified by 'axis' attribute) added on in the output tensor. The values in the 'indices' input tensor are expected to be in the range [0, depth). In case 'depth' is of non-integer type, it will be casted to int64 before use.
+
values : T3
+
Rank 1 tensor containing exactly two elements, in the format [off_value, on_value], where 'on_value' is the value used for filling locations specified in 'indices' input tensor, and 'off_value' is the value used for filling locations other than those specified in 'indices' input tensor.
+
+ +#### Outputs + +
+
output : T3
+
Tensor of rank one greater than input tensor 'indices', i.e. rank(output) = rank(indices) + 1. The data type for the elements of the output tensor is the same as the type of input 'values' is used.
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T2 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T3 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
+ +### **PRelu-9** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + This operator supports **unidirectional broadcasting** (tensor slope should be unidirectional broadcastable to input tensor X); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
slope (differentiable) : T
+
Slope tensor. The shape of slope can be smaller then first input X; if so, its shape must be unidirectional broadcastable to X
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor (same size as X)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ +### **Scan-9** + + Scan can be used to iterate over one or more scan_input tensors, + constructing zero or more scan_output tensors. It combines ideas from general recurrences, + functional programming constructs such as scan, fold, map, and zip, and is intended to enable + generalizations of RNN-like constructs for sequence-to-sequence processing. + Other tensors (referred to as state_variables here) can be used to carry a state + when iterating from one element to another (similar to hidden-state in RNNs, also referred + to as loop-carried dependences in the context of loops). + Many common usages involve a single scan_input tensor (where functionality + similar to scan, fold and map can be obtained). When more than one scan_input is used, + a behavior similar to zip is obtained. + + The attribute body must be a graph, specifying the computation to be performed in + every iteration. It takes as input the current values of the state_variables and + the current iterated element of the scan_inputs. It must return the (updated) values + of the state_variables and zero or more scan_output_element tensors. The values of the + scan_output_element tensors are concatenated over all the iterations to produce the + scan_output values of the scan construct (similar to the concatenated intermediate + hidden-state values of RNN-like constructs). All the output tensors (state_variables as + well as scan_output_element tensors) are required to have the same shape in each iteration + of the loop (a restriction imposed to enable efficient memory allocation). + + Note that the iterated element passed to the body subgraph does not have a sequence + axis. It will have a rank one less than the rank of the corresponding scan_input. + + The scan operation returns the final values of the state_variables as well as the + scan_outputs. + + The optional attribute scan_input_directions specifies the direction (forward or backward) + for each scan input. If this attribute is omitted, all sequences are scanned in the forward + direction. A bidirectional scan may be performed by specifying the same tensor input twice + in the scan_inputs, once with a forward direction, and once with a backward direction. + + The scan_output of the operation is produced by concatenating the scan_output_element + values produced by the body in each iteration. The optional attribute scan_output_directions + specifies the direction in which scan_output is constructed (by appending or prepending the + scan_output_element to scan_output in each iteration) for each scan_output. If this attribute + is omitted, the scan_output_element is appended to the scan_output in each iteration. + + The optional attribute scan_input_axes specifies the axis to be scanned for each scan_input. + If omitted, every scan_input will be scanned in axis 0. For example, if axis 0 is the + batch axis and axis 1 is the time axis (to be scanned), specify an axis value of 1. + Note that scanning a non-zero axis may be less efficient than scanning axis zero. + + The optional attribute scan_output_axes specifies the axis along which the scan_outputs + are accumulated for each scan_output. For example, if axis 1 is the time axis (to be + scanned) for both inputs and outputs, specify a scan_input axis and scan_output axis + value of 1. + + Note that because of the ONNX restriction that only the last parameter of an operator can + be variadic, the initial-states and scan-inputs are listed together as one input parameter. + Similarly, the final-states and scan-outputs are listed together as one output parameter. + The attribute num_scan_inputs indicates the number M of scan-inputs. + + The behavior of + + Scan < + num_scan_inputs = m, + body = loop-body, + scan_input_axes = [axis_1, ..., axis_m] + > (init_1, ..., init_n, scan_1, ..., scan_m) + + is equivalent to the following pseudo-code: + + // scan_i.shape[axis_i] denotes the (max) sequence-length of scan_i + // scan_i.shape[axis_i] is required to be equal to scan_j.shape[axis_j] for all i,j. + sequence_length = scan_1.shape[axis_1]; + + // initialize state-variables + st_1 = init_1; ... st_n = init_n; + // initialize scan-output variables: [] denotes an empty tensor + scan_out_1 = []; ...; scan_out_k = []; + // identify number of iterations: + + // execute loop + for (int t = 0; t < sequence_length; ++t) { + // generate the scan-input elements: the notation T[t] indicates the sub-tensor + // of rank one less than T obtained by indexing T at position t along axis k. + si_1 = scan_1[t]; + ... ; + si_m = scan_m[t]; + // execute loop-body + st_1, ..., st_n, so_1, ..., so_k = loop-body(st_1, ..., st_n, si_1, ..., si_m) + // accumulate the scan-output elements + scan_out_1 = Concat(scan_out_1, so_1); ... ; scan_out_k = Concat(scan_out_k, so_k); + } + + return st_1, ..., st_n, scan_out_1, ..., scan_out_k; + + *Sample usage: Encoding RNN using a Scan* + + The following example shows how a simple RNN over an input tensor %X, with weight tensor %Wi, + recurrence weight tensor %Ri, bias tensors %Wbi and %Rbi, and initial hidden-state %H_0 can + be encoded as a ScanLoop. Note that the loop-body is a nested graph, and it directly computes + %Wi, %Ri, %Wbi, and %Rbi (typically constants or initializers in the body graph). If these + values are computed in the outer graph, they need to be passed in as extra state_variables. + + graph rnn-encoding { + %H_0 = ... + %X = ... + %Y_h, %Y = Scan[body = , num_scan_inputs=1](%H_0, %X) + return %Y, %Y_h + } + + graph rnn-cell-1 ( + %H_tminus1[FLOAT, tensor] + %X_t[FLOAT, tensor] + ) { + %Wi = ... + %Ri = ... + %Wbi = ... + %Rbi = ... + %t1 = X_t * (Wi^T) + %t2 = H_tminus1*(Ri^T) + %t3 = Add(%t1, %t2) + %t4 = Add(%t3, %Wbi) + %t5 = Add(%t4, %Rbi) + %Ht = Tanh(%t5) + %Accumulate = Identity(%Ht) + return %Ht, %Accumulate + } + + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has N+M inputs: (loop state variables..., scan_input_elts...). It has N+K outputs: (loop state variables..., scan_output_elts...). Each scan_output is created by concatenating the value of the specified scan_output_elt value at the end of each iteration of the loop. It is an error if the dimensions of these values change across loop iterations.
+
num_scan_inputs : int (required)
+
An attribute specifying the number of scan_inputs M.
+
scan_input_axes : list of ints
+
An optional list of M flags. The i-th element of the list specifies the axis to be scanned (the sequence axis) for the i-th scan_input. If omitted, 0 will be used as the scan axis for every scan_input.
+
scan_input_directions : list of ints
+
An optional list of M flags. The i-th element of the list specifies the direction to be scanned for the i-th scan_input tensor: 0 indicates forward direction and 1 indicates reverse direction. If omitted, all scan_input tensors will be scanned in the forward direction.
+
scan_output_axes : list of ints
+
An optional list of K flags. The i-th element of the list specifies the axis for the i-th scan_output. The scan outputs are accumulated along the specified axis. If omitted, 0 will be used as the scan axis for every scan_output.
+
scan_output_directions : list of ints
+
An optional list of K flags, one for each scan_output. The i-th element of the list specifies whether the i-th scan_output should be constructed by appending or prepending a new value in each iteration: 0 indicates appending and 1 indicates prepending. If omitted, all scan_output tensors will be produced by appending a value in each iteration.
+
+ +#### Inputs (1 - ∞) + +
+
initial_state_and_scan_inputs (variadic, heterogeneous) : V
+
Initial values of the loop's N state variables followed by M scan_inputs
+
+ +#### Outputs (1 - ∞) + +
+
final_state_and_scan_outputs (variadic, heterogeneous) : V
+
Final values of the loop's N state variables followed by K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
+ +### **Scatter-9** + + Given `data`, `updates` and `indices` input tensors of rank r >= 1, write the values provided by `updates` + into the first input, `data`, along `axis` dimension of `data` (by default outer-most one as axis=0) at corresponding `indices`. + For each entry in `updates`, the target index in `data` is specified by corresponding entry in `indices` + for dimension = axis, and index in source for dimension != axis. For instance, in a 2-D tensor case, + data[indices[i][j]][j] = updates[i][j] if axis = 0, or data[i][indices[i][j]] = updates[i][j] if axis = 1, + where i and j are loop counters from 0 up to the respective size in `updates` - 1. + Example 1: + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + Example 2: + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to scatter on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1]
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : Tind
+
Tensor of int32/int64 indices, of r >= 1 (same rank as input).
+
updates : T
+
Tensor of rank r >=1 (same rank and shape as indices)
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank r >= 1 (same rank as input).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **Shrink-9** + + Shrink takes one input data (Tensor) and produces one Tensor output, + having same datatype and shape with input. It has two attributes, lambd and + bias. The formula of this operator is: If x < -lambd, y = x + bias; + If x > lambd, y = x - bias; Otherwise, y = 0. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
bias : float (default is 0.0)
+
The bias value added to output. Default is 0.
+
lambd : float (default is 0.5)
+
The lambd value for the Shrink formulation. Default is 0.5.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input data as Tensor.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
+ +### **Sign-9** + + Calculate the sign of the given input tensor element-wise. + If input > 0, output 1. if input < 0, output -1. if input == 0, output 0. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input : T
+
Input tensor
+
+ +#### Outputs + +
+
output : T
+
The sign of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Sinh-9** + + Calculates the hyperbolic sine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic sine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **TfIdfVectorizer-9** + + This transform extracts n-grams from the input sequence and save them as a vector. Input can + be either a 1-D or 2-D tensor. For 1-D input, output is the n-gram representation of that input. + For 2-D input, the output is also a 2-D tensor whose i-th row is the n-gram representation of the i-th input row. + More specifically, if input shape is [C], the corresponding output shape would be [max(ngram_indexes) + 1]. + If input shape is [N, C], this operator produces a [N, max(ngram_indexes) + 1]-tensor. + + In contrast to standard n-gram extraction, here, the indexes of extracting an n-gram from the original + sequence are not necessarily consecutive numbers. The discontinuity between indexes are controlled by the number of skips. + If the number of skips is 2, we should skip two tokens when scanning through the original sequence. + Let's consider an example. Assume that input sequence is [94, 17, 36, 12, 28] and the number of skips is 2. + The associated 2-grams are [94, 12] and [17, 28] respectively indexed by [0, 3] and [1, 4]. + If the number of skips becomes 0, the 2-grams generated are [94, 17], [17, 36], [36, 12], [12, 28] + indexed by [0, 1], [1, 2], [2, 3], [3, 4], respectively. + + The output vector (denoted by Y) stores the count of each n-gram; + Y[ngram_indexes[i]] indicates the times that the i-th n-gram is found. The attribute ngram_indexes is used to determine the mapping + between index i and the corresponding n-gram's output coordinate. If pool_int64s is [94, 17, 17, 36], ngram_indexes is [1, 0], + ngram_counts=[0, 0], then the Y[0] (first element in Y) and Y[1] (second element in Y) are the counts of [17, 36] and [94, 17], + respectively. An n-gram which cannot be found in pool_strings/pool_int64s should be ignored and has no effect on the output. + Note that we may consider all skips up to S when generating the n-grams. + + The examples used above are true if mode is "TF". If mode is "IDF", all the counts larger than 1 would be truncated to 1 and + the i-th element in weights would be used to scale (by multiplication) the count of the i-th n-gram in pool. If mode is "TFIDF", + this operator first computes the counts of all n-grams and then scale them by the associated values in the weights attribute. + + Only one of pool_strings and pool_int64s can be set. If pool_int64s is set, the input should be an integer tensor. + If pool_strings is set, the input must be a string tensor. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
max_gram_length : int (required)
+
Maximum n-gram length. If this value is 3, 3-grams will be used to generate the output.
+
max_skip_count : int (required)
+
Maximum number of items (integers/strings) to be skipped when constructing an n-gram from X. If max_skip_count=1, min_gram_length=2, max_gram_length=3, this operator may generate 2-grams with skip_count=0 and skip_count=1, and 3-grams with skip_count=0 and skip_count=1
+
min_gram_length : int (required)
+
Minimum n-gram length. If this value is 2 and max_gram_length is 3, output may contain counts of 2-grams and 3-grams.
+
mode : string (required)
+
The weighting criteria. It can be one of "TF" (term frequency), "IDF" (inverse document frequency), and "TFIDF" (the combination of TF and IDF)
+
ngram_counts : list of ints (required)
+
The starting indexes of 1-grams, 2-grams, and so on in pool. It is useful when determining the boundary between two consecutive collections of n-grams. For example, if ngram_counts is [0, 17, 36], the first index (zero-based) of 1-gram/2-gram/3-gram in pool are 0/17/36. This format is essentially identical to CSR (or CSC) sparse matrix format, and we choose to use this due to its popularity.
+
ngram_indexes : list of ints (required)
+
list of int64s (type: AttributeProto::INTS). This list is parallel to the specified 'pool_*' attribute. The i-th element in ngram_indexes indicate the coordinate of the i-th n-gram in the output tensor.
+
pool_int64s : list of ints
+
List of int64 n-grams learned from the training set. Either this or pool_strings attributes must be present but not both. It's an 1-D tensor starting with the collections of all 1-grams and ending with the collections of n-grams. The i-th element in pool stores the n-gram that should be mapped to coordinate ngram_indexes[i] in the output vector.
+
pool_strings : list of strings
+
List of strings n-grams learned from the training set. Either this or pool_int64s attributes must be present but not both. It's an 1-D tensor starting with the collections of all 1-grams and ending with the collections of n-grams. The i-th element in pool stores the n-gram that should be mapped to coordinate ngram_indexes[i] in the output vector.
+
weights : list of floats
+
list of floats. This attribute stores the weight of each n-gram in pool. The i-th element in weights is the weight of the i-th n-gram in pool. Its length equals to the size of ngram_indexes. By default, weights is an all-one tensor.This attribute is used when mode is "IDF" or "TFIDF" to scale the associated word counts.
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
Input for n-gram extraction
+
+ +#### Outputs + +
+
Y (non-differentiable) : T1
+
Ngram results
+
+ +#### Type Constraints + +
+
T : tensor(string), tensor(int32), tensor(int64)
+
Input is ether string UTF-8 or int32/int64
+
T1 : tensor(float)
+
1-D tensor of floats
+
+ +### **Upsample-9** + + Upsample the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * scale). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is nearest)
+
Two interpolation modes: nearest (default), and linear (including bilinear, trilinear, etc)
+
+ +#### Inputs + +
+
X : T
+
N-D tensor
+
scales : tensor(float)
+
The scale array along each dimension. It takes value greater than or equal to 1. The number of elements of 'scales' should be the same as the rank of input 'X'.
+
+ +#### Outputs + +
+
Y : T
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input 'X' and output 'Y' to all tensor types.
+
+ +### **Where-9** + + Return elements, either from X or Y, depending on condition. + Where behaves like + [numpy.where](https://docs.scipy.org/doc/numpy/reference/generated/numpy.where.html) + with three parameters. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
condition (non-differentiable) : B
+
When True (nonzero), yield X, otherwise yield Y
+
X (differentiable) : T
+
values selected at indices where condition is True
+
Y (differentiable) : T
+
values selected at indices where condition is False
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of shape equal to the broadcasted shape of condition, X, and Y.
+
+ +#### Type Constraints + +
+
B : tensor(bool)
+
Constrain to boolean tensors.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 10 of the default ONNX operator set +### **AveragePool-10** + + AveragePool consumes an input tensor X and applies average pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + average pooling consisting of computing the average on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is divided by the number of elements (exclude pad when attribute count_include_pad is zero). + + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
count_include_pad : int (default is 0)
+
Whether include pad pixels when calculating values for the edges. Default is 0, doesn't count include pad.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ConvInteger-10** + + The integer convolution operator consumes an input tensor, its zero-point, a filter, and its zero-point, + and computes the output. The production MUST never overflow. The accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into. default is 1.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input 'w'.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0.The value represent the number of pixels added to the beginning and end part of the corresponding axis.`pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number ofpixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaultsto 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each axis.
+
+ +#### Inputs (2 - 4) + +
+
x : T1
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
w : T2
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. X.shape[1] == (W.shape[1] * group) == C (assuming zero based indices for the shape array). Or in other words FILTER_IN_CHANNEL should be equal to DATA_CHANNEL.
+
x_zero_point (optional) : T1
+
Zero point tensor for input 'x'. It's optional and default value is 0. It's a scalar, which means a per-tensor/layer quantization.
+
w_zero_point (optional) : T2
+
Zero point tensor for input 'w'. It's optional and default value is 0. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M)
+
+ +#### Outputs + +
+
y : T3
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input x and its zero point data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input w and its zero point data type to 8-bit integer tensor.
+
T3 : tensor(int32)
+
Constrain output y data type to 32-bit integer tensor.
+
+ +### **DequantizeLinear-10** + + The linear dequantization operator. It consumes a quantized tensor, a scale, a zero point to compute the full precision tensor. + The dequantization formula is y = (x - x_zero_point) * x_scale. 'x_scale' and 'x_zero_point' are both scalars. + 'x_zero_point' and 'x' must have same type. 'x' and 'y' must have same shape. In the case of dequantizing int32, + there's no zero point (zero point is supposed to be 0). + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs (2 - 3) + +
+
x : T
+
N-D quantized input tensor to be de-quantized.
+
x_scale : tensor(float)
+
Scale for input 'x'. It's a scalar, which means a per-tensor/layer quantization.
+
x_zero_point (optional) : T
+
Zero point for input 'x'. It's a scalar, which means a per-tensor/layer quantization. It's optional. 0 is the default value when it's not specified.
+
+ +#### Outputs + +
+
y : tensor(float)
+
N-D full precision output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T : tensor(int8), tensor(uint8), tensor(int32)
+
Constrain 'x_zero_point' and 'x' to 8-bit/32-bit integer tensor.
+
+ +### **Dropout-10** + + Dropout takes one input floating tensor and produces two tensor outputs, + output (floating tensor) and mask (`Tensor`). Depending on whether it is + in test mode or not, the output Y will either be a random dropout, or a simple + copy of the input. Note that our implementation of Dropout does scaling in + the training phase, so during testing nothing needs to be done. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
ratio : float (default is 0.5)
+
The ratio of random dropout
+
+ +#### Inputs + +
+
data : T
+
The input data as Tensor.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
The output.
+
mask (optional) : T1
+
The output mask.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(bool)
+
Constrain output mask types to boolean tensors.
+
+ +### **IsInf-10** + + Map infinity to true and other values to false. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
detect_negative : int (default is 1)
+
(Optional) Whether map negative infinity to true. Default to 1 so that negative infinity induces true. Set this attribute to 0 if negative infinity should be mapped to false.
+
detect_positive : int (default is 1)
+
(Optional) Whether map positive infinity to true. Default to 1 so that positive infinity induces true. Set this attribute to 0 if positive infinity should be mapped to false.
+
+ +#### Inputs + +
+
X (non-differentiable) : T1
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : T2
+
output
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(bool)
+
Constrain output types to boolean tensors.
+
+ +### **MatMulInteger-10** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html. + The production MUST never overflow. The accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs (2 - 4) + +
+
A (non-differentiable) : T1
+
N-dimensional matrix A
+
B (non-differentiable) : T2
+
N-dimensional matrix B
+
a_zero_point (optional, non-differentiable) : T1
+
Zero point tensor for input 'A'. It's optional and default value is 0. It could be a scalar or N-D tensor. Scalar refers to per tensor quantization whereas N-D refers to per row quantization. If the input is 2D of shape [M, K] then zero point tensor may be an M element vector [zp_1, zp_2, ..., zp_M]. If the input is N-D tensor with shape [D1, D2, M, K] then zero point tensor may have shape [D1, D2, M, 1].
+
b_zero_point (optional, non-differentiable) : T2
+
Zero point tensor for input 'B'. It's optional and default value is 0. It could be a scalar or a N-D tensor, Scalar refers to per tensor quantization whereas N-D refers to per col quantization. If the input is 2D of shape [K, N] then zero point tensor may be an N element vector [zp_1, zp_2, ..., zp_N]. If the input is N-D tensor with shape [D1, D2, K, N] then zero point tensor may have shape [D1, D2, 1, N].
+
+ +#### Outputs + +
+
Y (non-differentiable) : T3
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input A data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input B data type to 8-bit integer tensor.
+
T3 : tensor(int32)
+
Constrain output Y data type as 32-bit integer tensor.
+
+ +### **MaxPool-10** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
dilations : list of ints
+
Dilation value along each spatial axis of filter.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
storage_order : int (default is 0)
+
The storage order of the tensor. 0 is row major, and 1 is column major.
+
strides : list of ints
+
Stride along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs (1 - 2) + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
Indices (optional) : I
+
Indices tensor from max pooling across the input tensor. The dimensions of indices are the same as output tensor. The values in indices of are the indices of the selected values during pooling. The indices are computed as flatten 1-D tensor, and the indices do not consider padding. So the values in indices are in [0, N x C x D1 x ... x Dn).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Mod-10** + + Performs element-wise binary modulus (with Numpy-style broadcasting support). + The sign of the remainder is the same as that of the Divisor. + + Mod operator can also behave like C fmod() or numpy.fmod. In this case, the sign of the remainder however, will be the same as the Dividend + (in contrast to integer mod). To force a behavior like numpy.fmod() an 'fmod' Attribute is provided. + This attribute is set to 0 by default causing the behavior to be like integer mod. + Setting this attribute to 1 causes the remainder to be calculated similar to that of numpy.fmod(). + + If the input type is floating point, then `fmod` attribute must be set to 1. + + In case of dividend being zero, the results will be platform dependent. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
fmod : int (default is 0)
+
Whether the operator should behave like fmod (default=0 meaning it will do integer mods); Set this to 1 to force fmod treatment
+
+ +#### Inputs + +
+
A : T
+
Dividend tensor
+
B : T
+
Divisor tensor
+
+ +#### Outputs + +
+
C : T
+
Remainder tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **NonMaxSuppression-10** + + Filter out boxes that have high intersection-over-union (IOU) overlap with previously selected boxes. + Bounding boxes with score less than score_threshold are removed. Bounding box format is indicated by attribute center_point_box. + Note that this algorithm is agnostic to where the origin is in the coordinate system and more generally is invariant to + orthogonal transformations and translations of the coordinate system; thus translating or reflections of the coordinate system + result in the same boxes being selected by the algorithm. + The selected_indices output is a set of integers indexing into the input collection of bounding boxes representing the selected boxes. + The bounding box coordinates corresponding to the selected indices can then be obtained using the Gather or GatherND operation. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
center_point_box : int (default is 0)
+
Integer indicate the format of the box data. The default is 0. 0 - the box data is supplied as [y1, x1, y2, x2] where (y1, x1) and (y2, x2) are the coordinates of any diagonal pair of box corners and the coordinates can be provided as normalized (i.e., lying in the interval [0, 1]) or absolute. Mostly used for TF models. 1 - the box data is supplied as [x_center, y_center, width, height]. Mostly used for Pytorch models.
+
+ +#### Inputs (2 - 5) + +
+
boxes : tensor(float)
+
An input tensor with shape [num_batches, spatial_dimension, 4]. The single box data format is indicated by center_point_box.
+
scores : tensor(float)
+
An input tensor with shape [num_batches, num_classes, spatial_dimension]
+
max_output_boxes_per_class (optional) : tensor(int64)
+
Integer representing the maximum number of boxes to be selected per batch per class. It is a scalar. Default to 0, which means no output.
+
iou_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding whether boxes overlap too much with respect to IOU. It is scalar. Value range [0, 1]. Default to 0.
+
score_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding when to remove boxes based on score. It is a scalar.
+
+ +#### Outputs + +
+
selected_indices : tensor(int64)
+
selected indices from the boxes tensor. [num_selected_indices, 3], the selected index format is [batch_index, class_index, box_index].
+
+ +#### Type Constraints + + +### **QLinearConv-10** + + The convolution operator consumes a quantized input tensor, its scale and zero point, + a quantized filter, its scale and zero point, and output's scale and zero point, + and computes the quantized output. Each scale and zero-point pair must have same shape. + It means they must be either scalars (per tensor) or 1-D tensors (per output channel). + Each input or output and its related zero point must have same type. + When bias is present it must be quantized using scale = input scale * weight scale and + zero point as 0. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into. default is 1.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input 'w'.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0.The value represent the number of pixels added to the beginning and end part of the corresponding axis.`pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number ofpixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaultsto 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (8 - 9) + +
+
x : T1
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
x_scale : tensor(float)
+
Scale tensor for input 'x'. It's a scalar, which means a per-tensor/layer quantization.
+
x_zero_point : T1
+
Zero point tensor for input 'x'. It's a scalar, which means a per-tensor/layer quantization.
+
w : T2
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. X.shape[1] == (W.shape[1] * group) == C (assuming zero based indices for the shape array). Or in other words FILTER_IN_CHANNEL should be equal to DATA_CHANNEL.
+
w_scale : tensor(float)
+
Scale tensor for input 'w'. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M).
+
w_zero_point : T2
+
Zero point tensor for input 'w'. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M).
+
y_scale : tensor(float)
+
Scale tensor for output 'y'. It's a scalar, which means a per-tensor/layer quantization.
+
y_zero_point : T3
+
Zero point tensor for output 'y'. It's a scalar, which means a per-tensor/layer quantization.
+
B (optional) : T4
+
Optional 1D bias to be added to the convolution, has size of M. Bias must be quantized using scale = x_scale * w_scale and zero_point = 0
+
+ +#### Outputs + +
+
y : T3
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain filter type to 8-bit integer tensor.
+
T3 : tensor(int8), tensor(uint8)
+
Constrain output type to 8-bit integer tensor.
+
T4 : tensor(int32)
+
Constrain bias type to 32-bit integer tensor.
+
+ +### **QLinearMatMul-10** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html. + It consumes two quantized input tensors, their scales and zero points, scale and zero point of output, + and computes the quantized output. The quantization formula is y = saturate((x / y_scale) + y_zero_point). + For (x / y_scale), it is rounding to nearest ties to even. Refer to https://en.wikipedia.org/wiki/Rounding for details. + Scale and zero point must have same shape. They must be either scalar (per tensor) or N-D tensor + (per row for 'a' and per column for 'b'). Scalar refers to per tensor quantization whereas N-D refers to per row + or per column quantization. If the input is 2D of shape [M, K] then zero point and scale tensor may be + an M element vector [v_1, v_2, ..., v_M] for per row quantization and K element vector of shape [v_1, v_2, ..., v_K] + for per column quantization. If the input is N-D tensor with shape [D1, D2, M, K] then zero point and scale tensor may + have shape [D1, D2, M, 1] for per row quantization and shape [D1, D2, 1, K] for per column quantization. + Production must never overflow, and accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs + +
+
a (non-differentiable) : T1
+
N-dimensional quantized matrix a
+
a_scale (non-differentiable) : tensor(float)
+
scale of quantized input a
+
a_zero_point (non-differentiable) : T1
+
zero point of quantized input a
+
b (non-differentiable) : T2
+
N-dimensional quantized matrix b
+
b_scale (non-differentiable) : tensor(float)
+
scale of quantized input b
+
b_zero_point (non-differentiable) : T2
+
zero point of quantized input b
+
y_scale (non-differentiable) : tensor(float)
+
scale of quantized output y
+
y_zero_point (non-differentiable) : T3
+
zero point of quantized output y
+
+ +#### Outputs + +
+
y (non-differentiable) : T3
+
Quantized matrix multiply results from a * b
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input a and its zero point data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input b and its zero point data type to 8-bit integer tensor.
+
T3 : tensor(int8), tensor(uint8)
+
Constrain output y and its zero point data type to 8-bit integer tensor.
+
+ +### **QuantizeLinear-10** + + The linear per-tensor/layer quantization operator. It consumes a high precision tensor, a scale, a zero point to compute the low precision / quantized tensor. + The quantization formula is y = saturate ((x / y_scale) + y_zero_point). For saturation, it saturates to [0, 255] if it's uint8, or [-128, 127] if it's int8. + For (x / y_scale), it's rounding to nearest ties to even. Refer to https://en.wikipedia.org/wiki/Rounding for details. 'y_zero_point' and 'y' must have same type. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs (2 - 3) + +
+
x : T1
+
N-D full precision Input tensor to be quantized.
+
y_scale : tensor(float)
+
Scale for doing quantization to get 'y'. It's a scalar, which means a per-tensor/layer quantization.
+
y_zero_point (optional) : T2
+
Zero point for doing quantization to get 'y'. It's a scalar, which means a per-tensor/layer quantization. Default value is uint8 typed 0 if it's not specified.
+
+ +#### Outputs + +
+
y : T2
+
N-D quantized output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(int32)
+
Constrain 'x' to float or int32 tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain 'y_zero_point' and 'y' to 8-bit integer tensor.
+
+ +### **Resize-10** + + Resize the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * scale). + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is nearest)
+
Two interpolation modes: nearest (default), and linear (including bilinear, trilinear, etc)
+
+ +#### Inputs + +
+
X : T
+
N-D tensor
+
scales : tensor(float)
+
The scale array along each dimension. It takes value greater than 0. If it's less than 1, it's sampling down, otherwise, it's upsampling. The number of elements of 'scales' should be the same as the rank of input 'X'.
+
+ +#### Outputs + +
+
Y : T
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input 'X' and output 'Y' to all tensor types.
+
+ +### **ReverseSequence-10** + + Reverse batch of sequences having different lengths specified by `sequence_lens`. + + For each slice i iterating on batch axis, the operator reverses the first sequence_lens[i] elements on time axis, + and copies elements whose index's beyond sequence_lens[i] to the output. So the output slice i contains reversed + sequences on the first sequence_lens[i] elements, then have original values copied for the other elements. + + Example 1: + input = [[0.0, 4.0, 8.0, 12.0], + [1.0, 5.0, 9.0, 13.0], + [2.0, 6.0, 10.0, 14.0], + [3.0, 7.0, 11.0, 15.0]] + sequence_lens = [4, 3, 2, 1] + time_axis = 0 + batch_axis = 1 + + output = [[3.0, 6.0, 9.0, 12.0], + [2.0, 5.0, 8.0, 13.0], + [1.0, 4.0, 10.0, 14.0], + [0.0, 7.0, 11.0, 15.0]] + + Example 2: + input = [[0.0, 1.0, 2.0, 3.0 ], + [4.0, 5.0, 6.0, 7.0 ], + [8.0, 9.0, 10.0, 11.0], + [12.0, 13.0, 14.0, 15.0]] + sequence_lens = [1, 2, 3, 4] + time_axis = 1 + batch_axis = 0 + + output = [[0.0, 1.0, 2.0, 3.0 ], + [5.0, 4.0, 6.0, 7.0 ], + [10.0, 9.0, 8.0, 11.0], + [15.0, 14.0, 13.0, 12.0]] + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
batch_axis : int (default is 1)
+
(Optional) Specify which axis is batch axis. Must be one of 1 (default), or 0.
+
time_axis : int (default is 0)
+
(Optional) Specify which axis is time axis. Must be one of 0 (default), or 1.
+
+ +#### Inputs + +
+
input : T
+
Tensor of rank r >= 2.
+
sequence_lens : tensor(int64)
+
Tensor specifying lengths of the sequences in a batch. It has shape `[batch_size]`.
+
+ +#### Outputs + +
+
Y : T
+
Tensor with same shape of input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
+ +### **RoiAlign-10** + + Region of Interest (RoI) align operation described in the + [Mask R-CNN paper](https://arxiv.org/abs/1703.06870). + RoiAlign consumes an input tensor X and region of interests (rois) + to apply pooling across each RoI; it produces a 4-D tensor of shape + (num_rois, C, output_height, output_width). + + RoiAlign is proposed to avoid the misalignment by removing + quantizations while converting from original image into feature + map and from feature map into RoI feature; in each ROI bin, + the value of the sampled locations are computed directly + through bilinear interpolation. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is avg)
+
The pooling method. Two modes are supported: 'avg' and 'max'. Default is 'avg'.
+
output_height : int (default is 1)
+
default 1; Pooled output Y's height.
+
output_width : int (default is 1)
+
default 1; Pooled output Y's width.
+
sampling_ratio : int (default is 0)
+
Number of sampling points in the interpolation grid used to compute the output value of each pooled output bin. If > 0, then exactly sampling_ratio x sampling_ratio grid points are used. If == 0, then an adaptive number of grid points are used (computed as ceil(roi_width / output_width), and likewise for height). Default is 0.
+
spatial_scale : float (default is 1.0)
+
Multiplicative spatial scale factor to translate ROI coordinates from their input spatial scale to the scale used when pooling, i.e., spatial scale of the input feature map X relative to the input image. E.g.; default is 1.0f.
+
+ +#### Inputs + +
+
X : T1
+
Input data tensor from the previous operator; 4-D feature map of shape (N, C, H, W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data.
+
rois : T1
+
RoIs (Regions of Interest) to pool over; rois is 2-D input of shape (num_rois, 4) given as [[x1, y1, x2, y2], ...]. The RoIs' coordinates are in the coordinate system of the input image. Each coordinate set has a 1:1 correspondence with the 'batch_indices' input.
+
batch_indices : T2
+
1-D tensor of shape (num_rois,) with each element denoting the index of the corresponding image in the batch.
+
+ +#### Outputs + +
+
Y : T1
+
RoI pooled output, 4-D tensor of shape (num_rois, C, output_height, output_width). The r-th batch element Y[r-1] is a pooled feature map corresponding to the r-th RoI X[r-1].
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain types to float tensors.
+
T2 : tensor(int64)
+
Constrain types to int tensors.
+
+ +### **Slice-10** + + Produces a slice of the input tensor along multiple axes. Similar to numpy: + https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html + Slices uses `starts`, `ends`, `axes` and `steps` inputs to specify the start and end + dimension and step for each axis in the list of axes, it uses this information to + slice the input `data` tensor. If a negative value is passed for any of the + start or end indices, it represent number of elements before the end of that + dimension. If the value passed to start or end is larger than the `n` (the + number of elements in this dimension), it represents `n`. For slicing to the + end of a dimension with unknown size, it is recommended to pass in `INT_MAX`. + If a negative value is passed for step, it represents slicing backward. + If `axes` are omitted, they are set to `[0, ..., ndim-1]`. + If `steps` are omitted, they are set to `[1, ..., 1]` of length `len(starts)` + Example 1: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + axes = [0, 1] + starts = [1, 0] + ends = [2, 3] + steps = [1, 2] + result = [ + [5, 7], + ] + Example 2: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + starts = [0, 1] + ends = [-1, 1000] + result = [ + [2, 3, 4], + ] + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs (3 - 5) + +
+
data : T
+
Tensor of data to extract slices from.
+
starts : Tind
+
1-D tensor of starting indices of corresponding axis in `axes`
+
ends : Tind
+
1-D tensor of ending indices (exclusive) of corresponding axis in `axes`
+
axes (optional) : Tind
+
1-D tensor of axes that `starts` and `ends` apply to.
+
steps (optional) : Tind
+
1-D tensor of slice step of corresponding axis in `axes`. Default to 1.
+
+ +#### Outputs + +
+
output : T
+
Sliced data tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **StringNormalizer-10** + + StringNormalization performs string operations for basic cleaning. + This operator has only one input (denoted by X) and only one output + (denoted by Y). This operator first examines the elements in the X, + and removes elements specified in "stopwords" attribute. + After removing stop words, the intermediate result can be further lowercased, + uppercased, or just returned depending the "case_change_action" attribute. + This operator only accepts [C]- and [1, C]-tensor. + If all elements in X are dropped, the output will be the empty value of string tensor with shape [1] + if input shape is [C] and shape [1, 1] if input shape is [1, C]. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
case_change_action : string (default is NONE)
+
string enum that cases output to be lowercased/uppercases/unchanged. Valid values are "LOWER", "UPPER", "NONE". Default is "NONE"
+
is_case_sensitive : int (default is 0)
+
Boolean. Whether the identification of stop words in X is case-sensitive. Default is false
+
locale : string
+
Environment dependent string that denotes the locale according to which output strings needs to be upper/lowercased.Default en_US or platform specific equivalent as decided by the implementation.
+
stopwords : list of strings
+
List of stop words. If not set, no word would be removed from X.
+
+ +#### Inputs + +
+
X : tensor(string)
+
UTF-8 strings to normalize
+
+ +#### Outputs + +
+
Y : tensor(string)
+
UTF-8 Normalized strings
+
+ +#### Type Constraints + + +### **ThresholdedRelu-10** + + ThresholdedRelu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = x for x > alpha, y = 0 otherwise, + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Threshold value
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **TopK-10** + + Retrieve the top-K elements along a specified axis. Given an input tensor of + shape [a_1, a_2, ..., a_n, r] and integer argument k, return two outputs: + -Value tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] + which contains the values of the top k elements along the specified axis + -Index tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] which + contains the indices of the top k elements (original indices from the input + tensor). + + Given two equivalent values, this operator uses the indices along the axis as + a tiebreaker. That is, the element with the lower index will appear first. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
Dimension on which to do the sort.
+
+ +#### Inputs + +
+
X : T
+
Tensor of shape [a_1, a_2, ..., a_n, r]
+
K : tensor(int64)
+
A 1-D tensor containing a single positive value corresponding to the number of top elements to retrieve
+
+ +#### Outputs + +
+
Values : T
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing top K values from the input tensor
+
Indices : I
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing the corresponding input tensor indices for the top K values.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Upsample-10** (deprecated) + + Upsample the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * scale). + +#### Version + +This version of the operator has been deprecated since version 10 of the default ONNX operator set. + +## Version 11 of the default ONNX operator set +### **ArgMax-11** + + Computes the indices of the max elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulting tensor has the reduced dimension pruned. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **ArgMin-11** + + Computes the indices of the min elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulting tensor has the reduced dimension pruned. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **AveragePool-11** + + AveragePool consumes an input tensor X and applies average pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + average pooling consisting of computing the average on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is divided by the number of elements (exclude pad when attribute count_include_pad is zero). + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
count_include_pad : int (default is 0)
+
Whether include pad pixels when calculating values for the edges. Default is 0, doesn't count include pad.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **BitShift-11** + + Bitwise shift operator performs element-wise operation. For each input element, if the + attribute "direction" is "RIGHT", this operator moves its binary representation toward + the right side so that the input value is effectively decreased. If the attribute "direction" + is "LEFT", bits of binary representation moves toward the left side, which results the + increase of its actual value. The input X is the tensor to be shifted and another input + Y specifies the amounts of shifting. For example, if "direction" is "Right", X is [1, 4], + and S is [1, 1], the corresponding output Z would be [0, 2]. If "direction" is "LEFT" with + X=[1, 2] and S=[1, 2], the corresponding output Y would be [2, 8]. + + Because this operator supports Numpy-style broadcasting, X's and Y's shapes are + not necessarily identical. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
direction : string (required)
+
Direction of moving bits. It can be either "RIGHT" (for right shift) or "LEFT" (for left shift).
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
First operand, input to be shifted.
+
Y (non-differentiable) : T
+
Second operand, amounts of shift.
+
+ +#### Outputs + +
+
Z (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64)
+
Constrain input and output types to integer tensors.
+
+ +### **Clip-11** + + Clip operator limits the given input within an interval. The interval is + specified by the inputs 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max(), respectively. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (1 - 3) + +
+
input : T
+
Input tensor whose elements to be clipped
+
min (optional) : T
+
Minimum value, under which element is replaced by min. It must be a scalar(tensor of empty shape).
+
max (optional) : T
+
Maximum value, above which element is replaced by max. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Compress-11** + + Selects slices from an input tensor along a given axis where condition evaluates to True for each axis index. + In case axis is not provided, input is flattened before elements are selected. + Compress behaves like numpy.compress: https://docs.scipy.org/doc/numpy/reference/generated/numpy.compress.html + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
(Optional) Axis along which to take slices. If not specified, input is flattened before elements being selected. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Tensor of rank r >= 1.
+
condition (non-differentiable) : T1
+
Rank 1 tensor of booleans to indicate which slices or data elements to be selected. Its length can be less than the input length along the axis or the flattened input size if axis is not specified. In such cases data slices or elements exceeding the condition length are discarded.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r if axis is specified. Otherwise output is a Tensor of rank 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(bool)
+
Constrain to boolean tensors.
+
+ +### **Concat-11** + + Concatenate a list of tensors into a single tensor. All input tensors must have the same shape, except for the dimension size of the axis to concatenate on. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on. A negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(inputs)..
+
+ +#### Inputs (1 - ∞) + +
+
inputs (variadic) : T
+
List of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ +### **ConcatFromSequence-11** + + Concatenate a sequence of tensors into a single tensor. + All input tensors must have the same shape, except for the dimension size of the axis to concatenate on. + By default 'new_axis' is 0, the behavior is similar to numpy.concatenate. + When 'new_axis' is 1, the behavior is similar to numpy.stack. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on. Accepted range in `[-r, r - 1]`, where `r` is the rank of input tensors. When `new_axis` is 1, accepted range is `[-r - 1, r]`.
+
new_axis : int (default is 0)
+
Insert and concatenate on a new axis or not, default 0 means do not insert new axis.
+
+ +#### Inputs + +
+
input_sequence : S
+
Sequence of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input types to any tensor type.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ +### **Constant-11** + + A constant tensor. Exactly one of the two attributes, either value or sparse_value, + must be specified. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
sparse_value : sparse_tensor
+
The value for the elements of the output tensor in sparse format.
+
value : tensor
+
The value for the elements of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Conv-11** + + The convolution operator consumes an input tensor and a filter, and + computes the output. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults is 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults is 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
W (differentiable) : T
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. Assuming zero based indices for the shape array, X.shape[1] == (W.shape[1] * group) == C and W.shape[0] mod G == 0. Or in other words FILTER_IN_CHANNEL multiplied by the number of groups should be equal to DATA_CHANNEL and the number of feature maps M should be a multiple of the number of groups G.
+
B (optional, differentiable) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ConvTranspose-11** + + The convolution transpose operator consumes an input tensor and a filter, + and computes the output. + + If the pads parameter is provided the shape of the output is calculated via the following equation: + + output_shape[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - pads[start_i] - pads[end_i] + + output_shape can also be explicitly specified in which case pads values are auto generated using these equations: + + total_padding[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - output_shape[i] + If (auto_pads == SAME_UPPER): pads[start_i] = total_padding[i]/2; pads[end_i] = total_padding[i] - (total_padding[i]/2) + Else: pads[start_i] = total_padding[i] - (total_padding[i]/2); pads[end_i] = (total_padding[i]/2). + + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = input_shape[i] * strides[i]` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
output_padding : list of ints
+
Additional elements added to the side with higher coordinate indices in the output. Each padding value in "output_padding" must be less than the corresponding stride/dilation dimension. By default, this attribute is a zero vector. Note that this attribute doesn't directly affect the computed output values. It only controls the selection of the computed values, so changing this attribute only adds or removes output elements. If "output_shape" is explicitly provided, "output_padding" does not contribute additional size to "output_shape" but participates in the computation of the needed padding amount. This is also called adjs or adjustment in some frameworks.
+
output_shape : list of ints
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If output_shape is specified pads values are ignored. See doc for details for equations to generate pads
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn)
+
W (differentiable) : T
+
The weight tensor that will be used in the convolutions; has size (C x M/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the weight shape will be (C x M/group x k1 x k2 x ... x kn), where (k1 x k2 x ... x kn) is the dimension of the kernel. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
B (optional, differentiable) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, pad lengths and group count. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **CumSum-11** + + Performs cumulative sum of the input elements along the given axis. + By default, it will do the sum inclusively meaning the first element is copied as is. + Through an `exclusive` attribute, this behavior can change to exclude the first element. + It can also perform summation in the opposite direction of the axis. For that, set `reverse` attribute to 1. + + Example: + ``` + input_x = [1, 2, 3] + axis=0 + output = [1, 3, 6] + exclusive=1 + output = [0, 1, 3] + exclusive=0 + reverse=1 + output = [6, 5, 3] + exclusive=1 + reverse=1 + output = [5, 3, 0] + ``` + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
exclusive : int (default is 0)
+
If set to 1 will return exclusive sum in which the top element is not included. In other terms, if set to 1, the j-th output element would be the sum of the first (j-1) elements. Otherwise, it would be the sum of the first j elements.
+
reverse : int (default is 0)
+
If set to 1 will perform the sums in reverse direction.
+
+ +#### Inputs + +
+
x (differentiable) : T
+
An input tensor that is to be processed.
+
axis (non-differentiable) : T2
+
A 0-D tensor. Must be in the range [-rank(x), rank(x)-1]. Negative value means counting dimensions from the back.
+
+ +#### Outputs + +
+
y (differentiable) : T
+
Output tensor of the same type as 'x' with cumulative sums of the x's elements
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float), tensor(double)
+
Input can be of any tensor type.
+
T2 : tensor(int32), tensor(int64)
+
axis tensor can be int32 or int64 only
+
+ +### **DepthToSpace-11** + + DepthToSpace rearranges (permutes) data from depth into blocks of spatial data. + This is the reverse transformation of SpaceToDepth. More specifically, this op outputs a copy of + the input tensor where values from the depth dimension are moved in spatial blocks to the height + and width dimensions. By default, `mode` = `DCR`. + In the DCR mode, elements along the depth dimension from the input tensor are rearranged in the + following order: depth, column, and then row. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, blocksize, blocksize, c // (blocksize**2), h, w]) + + tmp = np.transpose(tmp, [0, 3, 4, 1, 5, 2]) + + y = np.reshape(tmp, [b, c // (blocksize**2), h * blocksize, w * blocksize]) + + + In the CRD mode, elements along the depth dimension from the input tensor are rearranged in the + following order: column, row, and the depth. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, c // (blocksize ** 2), blocksize, blocksize, h, w]) + + tmp = np.transpose(tmp, [0, 1, 4, 2, 5, 3]) + + y = np.reshape(tmp, [b, c // (blocksize ** 2), h * blocksize, w * blocksize]) + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
mode : string (default is DCR)
+
DCR (default) for depth-column-row order re-arrangement. Use CRD for column-row-depth order.
+
+ +#### Inputs + +
+
input : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output : T
+
Output tensor of [N, C/(blocksize * blocksize), H * blocksize, W * blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Det-11** + + Det calculates determinant of a square matrix or batches of square matrices. + Det takes one input tensor of shape `[*, M, M]`, where `*` is zero or more batch dimensions, + and the inner-most 2 dimensions form square matrices. + The output is a tensor of shape `[*]`, containing the determinants of all input submatrices. + e.g., When the input is 2-D, the output is a scalar(shape is empty: `[]`). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to floating-point tensors.
+
+ +### **DynamicQuantizeLinear-11** + + A Function to fuse calculation for Scale, Zero Point and FP32->8Bit convertion of FP32 Input data. + Outputs Scale, ZeroPoint and Quantized Input for a given FP32 Input. + Scale is calculated as: + ``` + y_scale = (max(x) - min(x))/(qmax - qmin) + * where qmax and qmin are max and min values for quantization range .i.e [0, 255] in case of uint8 + * data range is adjusted to include 0. + ``` + Zero point is calculated as: + ``` + intermediate_zero_point = qmin - min(x)/y_scale + y_zero_point = cast(round(saturate(itermediate_zero_point))) + * where qmax and qmin are max and min values for quantization range .i.e [0, 255] in case of uint8 + * for saturation, it saturates to [0, 255] if it's uint8, or [-127, 127] if it's int8. Right now only uint8 is supported. + * rounding to nearest ties to even. + ``` + Data quantization formula is: + ``` + y = saturate (round (x / y_scale) + y_zero_point) + * for saturation, it saturates to [0, 255] if it's uint8, or [-127, 127] if it's int8. Right now only uint8 is supported. + * rounding to nearest ties to even. + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
x : T1
+
Input tensor
+
+ +#### Outputs + +
+
y : T2
+
Quantized output tensor
+
y_scale : tensor(float)
+
Output scale. It's a scalar, which means a per-tensor/layer quantization.
+
y_zero_point : T2
+
Output zero point. It's a scalar, which means a per-tensor/layer quantization.
+
+ +#### Type Constraints + +
+
T1 : tensor(float)
+
Constrain 'x' to float tensor.
+
T2 : tensor(uint8)
+
Constrain 'y_zero_point' and 'y' to 8-bit unsigned integer tensor.
+
+ +### **Equal-11** + + Returns the tensor resulted from performing the `equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
A : T
+
First input operand for the logical operator.
+
B : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Flatten-11** + + Flattens the input tensor into a 2D matrix. If input tensor has shape + (d_0, d_1, ... d_n) then the output will have shape + (d_0 X d_1 ... d_(axis-1), d_axis X d_(axis+1) ... X dn). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Indicate up to which input dimensions (exclusive) should be flattened to the outer dimension of the output. The value for axis must be in the range [-r, r], where r is the rank of the input tensor. Negative value means counting dimensions from the back. When axis = 0, the shape of the output tensor is (1, (d_0 X d_1 ... d_n), where the shape of the input tensor is (d_0, d_1, ... d_n).
+
+ +#### Inputs + +
+
input : T
+
A tensor of rank >= axis.
+
+ +#### Outputs + +
+
output : T
+
A 2D tensor with the contents of the input tensor, with input dimensions up to axis flattened to the outer dimension of the output and remaining input dimensions flattened into the inner dimension of the output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output to all tensor types.
+
+ +### **Gather-11** + + Given `data` tensor of rank r >= 1, and `indices` tensor of rank q, gather + entries of the axis dimension of `data` (by default outer-most one as axis=0) indexed by `indices`, and concatenates + them in an output tensor of rank q + (r - 1). + + axis = 0 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[i_{0}, ..., i_{q-1}, j_{0}, ..., j_{r-2}] = input[k , j_{0}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + indices = [ + [0, 1], + [1, 2], + ] + output = [ + [ + [1.0, 1.2], + [2.3, 3.4], + ], + [ + [2.3, 3.4], + [4.5, 5.7], + ], + ] + ``` + axis = 1 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[i_{0}, ..., i_{q-1}, j_{0}, ..., j_{r-2}] = input[j_{0}, k, j_{1}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2, 1.9], + [2.3, 3.4, 3.9], + [4.5, 5.7, 5.9], + ] + indices = [ + [0, 2], + ] + axis = 1, + output = [ + [ + [1.0, 1.9], + [2.3, 3.9], + [4.5, 5.9], + ], + ] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : Tind
+
Tensor of int32/int64 indices, of any rank q. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank q + (r - 1).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **GatherElements-11** + + GatherElements takes two inputs `data` and `indices` of the same rank r >= 1 + and an optional attribute `axis` that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). It is an indexing operation + that produces its output by indexing into the input data tensor at index + positions determined by elements of the `indices` tensor. + Its output shape is the same as the shape of `indices` and consists of one value + (gathered from the `data`) for each element in `indices`. + + For instance, in the 3-D case (r = 3), the output produced is determined + by the following equations: + ``` + out[i][j][k] = input[index[i][j][k]][j][k] if axis = 0, + out[i][j][k] = input[i][index[i][j][k]][k] if axis = 1, + out[i][j][k] = input[i][j][index[i][j][k]] if axis = 2, + ``` + + This operator is also the inverse of ScatterElements. It is similar to Torch's gather operation. + + Example 1: + ``` + data = [ + [1, 2], + [3, 4], + ] + indices = [ + [0, 0], + [1, 0], + ] + axis = 1 + output = [ + [ + [1, 1], + [4, 3], + ], + ] + ``` + Example 2: + ``` + data = [ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ] + indices = [ + [1, 2, 0], + [2, 0, 0], + ] + axis = 0 + output = [ + [ + [4, 8, 3], + [7, 2, 3], + ], + ] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : Tind
+
Tensor of int32/int64 indices, with the same rank r as the input. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output : T
+
Tensor of the same shape as indices.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **GatherND-11** + + Given `data` tensor of rank `r` >= 1, and `indices` tensor of rank `q` >= 1, this operator gathers + slices of `data` into an output tensor of rank `q + r - indices_shape[-1] - 1`. + + `indices` is an q-dimensional integer tensor, best thought of as a `(q-1)`-dimensional tensor of index-tuples into `data`, + where each element defines a slice of `data` + + Some salient points about the inputs' rank and shape: + + 1) r >= 1 and q >= 1 are to be honored. There is no dependency condition to be met between ranks `r` and `q` + + 2) The `indices_shape[-1]` should have a value between 1 (inclusive) and rank `r` (inclusive) + + 3) All values in `indices` are expected to be within bounds [-s, s-1] along axis of size `s` (i.e.) `-data_shape[i] <= indices[...,i] <= data_shape[i] - 1`. + It is an error if any of the index values are out of bounds. + + The output is computed as follows: + + The output tensor is obtained by mapping each index-tuple in the `indices` tensor to the corresponding slice of the input `data`. + + 1) If `indices_shape[-1] > r` => error condition + + 2) If `indices_shape[-1] == r`, since the rank of `indices` is `q`, `indices` can be thought of as a `(q-1)`-dimensional tensor + containing 1-D tensors of dimension `r`. Let us think of each such `r` ranked tensor as `indices_slice`. + Each *scalar value* corresponding to `data[indices_slice]` is filled into the corresponding location of the `(q-1)`-dimensional tensor + to form the `output` tensor (Example 1 below) + + 3) If `indices_shape[-1] < r`, since the rank of `indices` is `q`, `indices` can be thought of as a `(q-1)`-dimensional tensor + containing 1-D tensors of dimension `< r`. Let us think of each such tensors as `indices_slice`. + Each *tensor slice* corresponding to `data[indices_slice , :]` is filled into the corresponding location of the `(q-1)`-dimensional tensor + to form the `output` tensor (Examples 2, 3, and 4 below) + + This operator is the inverse of `ScatterND`. + + `Example 1` + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[0,0],[1,1]] # indices_shape = [2, 2] + + output = [0,3] # output_shape = [2] + + `Example 2` + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[0,1]] # output_shape = [2, 2] + + `Example 3` + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[0,1],[1,0]] # indices_shape = [2, 2] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + `Example 4` + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[[0,1]],[[1,0]]] # indices_shape = [2, 1, 2] + + output = [[[2,3]],[[4,5]]] # output_shape = [2, 1, 2] + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : tensor(int64)
+
Tensor of rank q >= 1. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **Gemm-11** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + + A' = transpose(A) if transA else A + + B' = transpose(B) if transB else B + + Compute Y = alpha * A' * B' + beta * C, where input tensor A has shape (M, K) or (K, M), + input tensor B has shape (K, N) or (N, K), input tensor C is broadcastable to shape (M, N), + and output tensor Y has shape (M, N). A will be transposed before doing the + computation if attribute transA is non-zero, same for B and transB. + This operator supports **unidirectional broadcasting** (tensor C should be unidirectional broadcastable to tensor A * B); for more details please check [the doc](Broadcasting.md). + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C.
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs (2 - 3) + +
+
A : T
+
Input tensor A. The shape of A should be (M, K) if transA is 0, or (K, M) if transA is non-zero.
+
B : T
+
Input tensor B. The shape of B should be (K, N) if transB is 0, or (N, K) if transB is non-zero.
+
C (optional) : T
+
Optional input tensor C. If not specified, the computation is done as if C is a scalar 0. The shape of C should be unidirectional broadcastable to (M, N).
+
+ +#### Outputs + +
+
Y : T
+
Output tensor of shape (M, N).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ +### **Hardmax-11** + + The operator computes the hardmax (1 for the first maximum value, and 0 for all others) values for each layer in the batch + of the given input. + + The input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. The output tensor has the same shape + and contains the hardmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **If-11** + + If conditional + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
else_branch : graph (required)
+
Graph to run if condition is false. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the then_branch.
+
then_branch : graph (required)
+
Graph to run if condition is true. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the else_branch.
+
+ +#### Inputs + +
+
cond : B
+
Condition for the if
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : V
+
Values that are live-out to the enclosing scope. The return values in the `then_branch` and `else_branch` must be of the same data type. The `then_branch` and `else_branch` may produce tensors with the same element type and different shapes. If corresponding outputs from the then-branch and the else-branch have static shapes S1 and S2, then the shape of the corresponding output variable of the if-node (if present) must be compatible with both S1 and S2 as it represents the union of both possible shapes.For example, if in a model file, the the first output of `then_branch` is typed float tensor with shape [2] and the first output of `else_branch` is another float tensor with shape [3], If's first output should have (a) no shape set, or (b) a shape of rank 1 with neither `dim_value` nor `dim_param` set, or (c) a shape of rank 1 with a unique `dim_param`. In contrast, the first output cannot have the shape [2] since [2] and [3] are not compatible.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
B : tensor(bool)
+
Only bool
+
+ +### **LogSoftmax-11** + + The operator computes the logsoftmax (log of softmax) values for each layer in the batch + of the given input. + + The input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. The output tensor has the same shape + and contains the logsoftmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Loop-11** + + Generic Looping construct. This loop has multiple termination conditions: + + 1) Trip count. Iteration count specified at runtime. Set by + specifying the input M. Optional. Set to empty string to omit. + Note that a static trip count (specified at graph construction time) can be + specified by passing in a constant node for input M. + 2) Loop termination condition. This is an input to the op that determines + whether to run the first iteration and also a loop-carried dependency for + the body graph. The body graph must yield a value for the condition variable, + whether this input is provided or not. + + This table summarizes the operating modes of this operator with equivalent + C-style code: + + Operator inputs defined as (max_trip_count, condition_var). + + input ("", ""): + for (int i=0; ; ++i) { + cond = ... // Note this value is ignored, but is required in the body + } + + input ("", cond) // Note this is analogous to a while loop + bool cond = ...; + for (int i=0; cond; ++i) { + cond = ...; + } + + input ("", 1) // Note this is analogous to a do-while loop + bool cond = true + for (int i=0; cond; ++i) { + cond = ...; + } + + input (trip_count, "") // Note this is analogous to a for loop + int trip_count = ... + for (int i=0; i < trip_count; ++i) { + cond = ...; // ignored + } + + input (trip_count, cond) + int trip_count = ...; + bool cond = ...; + for (int i=0; i < trip_count && cond; ++i) { + cond = ...; + } + + + *Sample usage - cond as well as trip count* + + graph predict-net { + %a = Constant[value = ]() + %b = Constant[value = ]() + %keepgoing = Constant[value = ]() + %max_trip_count = Constant[value = ]() + %keepgoing_out, %b_out, %user_defined_vals = Loop[body = ](%max_trip_count, %keepgoing, %b) + return + } + + graph body-net ( + %i[INT32, scalar] // iteration number + %keepgoing_in[BOOL, scalar] // incoming loop-termination-condition; not used + %b_in[INT32, scalar] // incoming value of loop-carried-dependency b + ) { + %my_local = Add(%a, %b_in) + %b_out = Sub(%a, %b_in) // outgoing value of loop-carried-dependency b + %keepgoing_out = Greater(%my_local, %b_out) // outgoing loop-termination-condition + %user_defined_val = Add(%b_in, %b_in) // scan-output value to be accumulated + return %keepgoing_out, %b_out, %user_defined_val + } + + *Sample equivalent C code* + + { + /* User-defined code (enclosing scope) */ + int a = 3, b = 6; + bool keepgoing = true; // Analogous to input cond + /* End user-defined code */ + + /* Implicitly-defined code */ + const int max_trip_count = 10; // Analogous to input M + int user_defined_vals[]; // Imagine this is resizable + /* End implicitly-defined code */ + /* initialize loop-carried variables and scan-output variables */ + bool keepgoing_out = keepgoing + int b_out = b + + for (int i=0; i < max_trip_count && keepgoing_out; ++i) { + /* Implicitly-defined code: bind actual parameter values + to formal parameter variables of loop-body */ + bool keepgoing_in = keepgoing_out; + bool b_in = b_out; + + /* User-defined code (loop body) */ + int my_local = a + b_in; // Reading value "a" from the enclosing scope is fine + b_out = a - b_in; + keepgoing_out = my_local > b_out; + user_defined_val = b_in + b_in; // b_in and b_out are different variables + /* End user-defined code */ + + /* Implicitly defined-code */ + user_defined_vals[i] = user_defined_val // accumulate scan-output values + } + // int t = my_local; // Can't do this. my_local is not accessible here. + + // The values below are bound to the output variables of the loop and therefore accessible + // b_out; user_defined_vals; keepgoing_out; + } + + There are several things of note in this code snippet: + + 1) Values from the enclosing scope (i.e. variable "a" here) are in scope and can + be referenced in the inputs of the loop. + 2) Any values computed in the loop body that needs to be used in a subsequent + iteration or after the loop are modelled using a pair of variables in the loop-body, + consisting of an input variable (eg., b_in) and an output variable (eg., b_out). + These are referred to as loop-carried dependences. The loop operation node + supplies the input value of the input variable for the first iteration, and + returns the output value of the output variable produced by the final + iteration. + 3) Scan_output variables are used to implicitly concatenate values computed across + all the iterations. In the above example, the value of user_defined_val computed + over all iterations are concatenated and returned as the value of user_defined_vals + after the loop. + 4) Values created in the body cannot be accessed in the enclosing scope, + except using the mechanism described above. + + Note that the semantics of this op support "diagonal" or "wavefront" execution. + (See Step 3 here for an example: + https://devblogs.nvidia.com/optimizing-recurrent-neural-networks-cudnn-5/). + Frontends should emit multi-layer RNNs as a series of While operators (with + time being the inner looping dimension), with each successive layer consuming + the scan_outputs from the previous layer, possibly going through several + point-wise operators (e.g. dropout, residual connections, linear layer). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has 2+N inputs: (iteration_num, condition, loop carried dependencies...). It has 1+N+K outputs: (condition, loop carried dependencies..., scan_outputs...). Each scan_output is created by concatenating the value of the specified output value at the end of each iteration of the loop. It is an error if the dimensions or data type of these scan_outputs change across loop iterations.
+
+ +#### Inputs (2 - ∞) + +
+
M (optional) : I
+
A maximum trip-count for the loop specified at runtime. Optional. Pass empty string to skip.
+
cond (optional) : B
+
A boolean termination condition. Optional. Pass empty string to skip.
+
v_initial (variadic, heterogeneous) : V
+
The initial values of any loop-carried dependencies (values that change across loop iterations)
+
+ +#### Outputs (1 - ∞) + +
+
v_final_and_scan_outputs (variadic, heterogeneous) : V
+
Final N loop carried dependency values then K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
I : tensor(int64)
+
tensor of int64, which should be a scalar.
+
B : tensor(bool)
+
tensor of bool, which should be a scalar.
+
+ +### **LpPool-11** + + LpPool consumes an input tensor X and applies Lp pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + Lp pooling consisting of computing the Lp norm on all values of a subset + of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
p : int (default is 2)
+
p value of the Lp norm used to pool over the input data.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from Lp pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **MaxPool-11** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that the output spatial size match the input.In case of odd number add the extra padding at the end for SAME_UPPER and at the beginning for SAME_LOWER. VALID mean no padding.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
dilations : list of ints
+
Dilation value along each spatial axis of filter. If not present, the dilation defaults to 1 along each spatial axis.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
storage_order : int (default is 0)
+
The storage order of the tensor. 0 is row major, and 1 is column major.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs (1 - 2) + +
+
Y : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
Indices (optional) : I
+
Indices tensor from max pooling across the input tensor. The dimensions of indices are the same as output tensor. The values in indices of are the indices of the selected values during pooling. The indices are computed as flatten 1-D tensor, and the indices do not consider padding. So the values in indices are in [0, N x C x D1 x ... x Dn).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **MaxUnpool-11** + + MaxUnpool essentially computes the partial inverse of the MaxPool op. + The input information to this op is typically the the output information from a MaxPool op. The first + input tensor X is the tensor that needs to be unpooled, which is typically the pooled tensor (first output) + from MaxPool. The second input tensor, I, contains the indices to the (locally maximal) elements corrsponding + to the elements in the first input tensor X. Input tensor I is typically the second output of the MaxPool op. + The third (optional) input is a tensor that specifies the output size of the unpooling operation. + + MaxUnpool is intended to do 'partial' inverse of the MaxPool op. 'Partial' because all the non-maximal + values from the original input to MaxPool are set to zero in the output of the MaxUnpool op. Pooling + the result of an unpooling operation should give back the original input to the unpooling op. + + MaxUnpool can produce the same output size for several input sizes, which makes unpooling op ambiguous. + The third input argument, output_size, is meant to disambiguate the op and produce output tensor of + known/predictable size. + + In addition to the inputs, MaxUnpool takes three attributes, namely kernel_shape, strides, and pads, + which define the exact unpooling op. The attributes typically have the same values as the corrsponding + pooling op that the unpooling op is trying to invert. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T1
+
Input data tensor that has to be unpooled. This tensor is typically the first output of the MaxPool op.Dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non-image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
I (non-differentiable) : T2
+
Input data tensor containing the indices corresponding to elements in the first input tensor X.This tensor is typically the second output of the MaxPool op.Dimensions must be the same as input tensor X. The indices are linear, i.e. computed considering the tensor as flattened 1-D tensor, assuming row-major storage. Also, the linear indices should not consider padding. So the values in indices are in the range [0, N x C x D1 x ... x Dn).
+
output_shape (optional, non-differentiable) : T2
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If 'output_shape' is specified, 'pads' values are ignored.
+
+ +#### Outputs + +
+
output (differentiable) : T1
+
Output data tensor that contains the result of the unpooling.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T2 : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **NonMaxSuppression-11** + + Filter out boxes that have high intersection-over-union (IOU) overlap with previously selected boxes. + Bounding boxes with score less than score_threshold are removed. Bounding box format is indicated by attribute center_point_box. + Note that this algorithm is agnostic to where the origin is in the coordinate system and more generally is invariant to + orthogonal transformations and translations of the coordinate system; thus translating or reflections of the coordinate system + result in the same boxes being selected by the algorithm. + The selected_indices output is a set of integers indexing into the input collection of bounding boxes representing the selected boxes. + The bounding box coordinates corresponding to the selected indices can then be obtained using the Gather or GatherND operation. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
center_point_box : int (default is 0)
+
Integer indicate the format of the box data. The default is 0. 0 - the box data is supplied as [y1, x1, y2, x2] where (y1, x1) and (y2, x2) are the coordinates of any diagonal pair of box corners and the coordinates can be provided as normalized (i.e., lying in the interval [0, 1]) or absolute. Mostly used for TF models. 1 - the box data is supplied as [x_center, y_center, width, height]. Mostly used for Pytorch models.
+
+ +#### Inputs (2 - 5) + +
+
boxes : tensor(float)
+
An input tensor with shape [num_batches, spatial_dimension, 4]. The single box data format is indicated by center_point_box.
+
scores : tensor(float)
+
An input tensor with shape [num_batches, num_classes, spatial_dimension]
+
max_output_boxes_per_class (optional) : tensor(int64)
+
Integer representing the maximum number of boxes to be selected per batch per class. It is a scalar. Default to 0, which means no output.
+
iou_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding whether boxes overlap too much with respect to IOU. It is scalar. Value range [0, 1]. Default to 0.
+
score_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding when to remove boxes based on score. It is a scalar.
+
+ +#### Outputs + +
+
selected_indices : tensor(int64)
+
selected indices from the boxes tensor. [num_selected_indices, 3], the selected index format is [batch_index, class_index, box_index].
+
+ +#### Type Constraints + + +### **OneHot-11** + + Produces a one-hot tensor based on inputs. + The locations represented by the index values in the 'indices' input tensor will have 'on_value' + and the other locations will have 'off_value' in the output tensor, where 'on_value' and 'off_value' + are specified as part of required input argument 'values', which is a two-element tensor of format + [off_value, on_value]. The rank of the output tensor will be one greater than the rank of the + input tensor. The additional dimension is for one-hot representation. The additional dimension will + be inserted at the position specified by 'axis'. If 'axis' is not specified then then additional + dimension will be inserted as the innermost dimension, i.e. axis=-1. The size of the additional + dimension is specified by required scalar input 'depth'. The type of the output tensor is the same + as the type of the 'values' input. Any entries in the 'indices' input tensor with values outside + the range [-depth, depth-1] will result in one-hot representation with all 'off_value' values in the + output tensor. + + when axis = 0: + output[input[i, j, k], i, j, k] = 1 for all i, j, k and 0 otherwise. + + when axis = -1: + output[i, j, k, input[i, j, k]] = 1 for all i, j, k and 0 otherwise. + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
(Optional) Axis along which one-hot representation in added. Default: axis=-1. axis=-1 means that the additional dimension will be inserted as the innermost/last dimension in the output tensor. Negative value means counting dimensions from the back. Accepted range is [-r-1, r] where r = rank(indices).
+
+ +#### Inputs + +
+
indices (non-differentiable) : T1
+
Input tensor containing indices. Any entries in the 'indices' input tensor with values outside the range [-depth, depth-1] will result in one-hot representation with all 'off_value' values in the output tensor.In case 'indices' is of non-integer type, the values will be casted to int64 before use.
+
depth (non-differentiable) : T2
+
Scalar specifying the number of classes in one-hot tensor. This is also the size of the one-hot dimension (specified by 'axis' attribute) added on in the output tensor. The values in the 'indices' input tensor are expected to be in the range [-depth, depth-1]. In case 'depth' is of non-integer type, it will be casted to int64 before use.
+
values (non-differentiable) : T3
+
Rank 1 tensor containing exactly two elements, in the format [off_value, on_value], where 'on_value' is the value used for filling locations specified in 'indices' input tensor, and 'off_value' is the value used for filling locations other than those specified in 'indices' input tensor.
+
+ +#### Outputs + +
+
output (non-differentiable) : T3
+
Tensor of rank one greater than input tensor 'indices', i.e. rank(output) = rank(indices) + 1. The data type for the elements of the output tensor is the same as the type of input 'values' is used.
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T2 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T3 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
+ +### **Pad-11** + + Given a tensor containing the data to be padded (`data`), a tensor containing the number of start and end pad values for axis (`pads`), (optionally) a `mode`, and (optionally) `constant_value`, + a padded tensor (`output`) is generated. + + The three supported `modes` are (similar to corresponding modes supported by `numpy.pad`): + + 1) `constant`(default) - pads with a given constant value as specified by `constant_value` (which defaults to 0) + + 2) `reflect` - pads with the reflection of the vector mirrored on the first and last values of the vector along each axis + + 3) `edge` - pads with the edge values of array + + + Example 1 (`constant` mode): + Insert 0 pads to the beginning of the second dimension. + + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'constant' + + constant_value = 0.0 + + output = + [ + [0.0, 0.0, 1.0, 1.2], + [0.0, 0.0, 2.3, 3.4], + [0.0, 0.0, 4.5, 5.7], + ] + + + Example 2 (`reflect` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'reflect' + + output = + [ + [1.0, 1.2, 1.0, 1.2], + [2.3, 3.4, 2.3, 3.4], + [4.5, 5.7, 4.5, 5.7], + ] + + + Example 3 (`edge` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'edge' + + output = + [ + [1.0, 1.0, 1.0, 1.2], + [2.3, 2.3, 2.3, 3.4], + [4.5, 4.5, 4.5, 5.7], + ] + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is constant)
+
Supported modes: `constant`(default), `reflect`, `edge`
+
+ +#### Inputs (2 - 3) + +
+
data : T
+
Input tensor.
+
pads : tensor(int64)
+
Tensor of integers indicating the number of padding elements to add or remove (if negative) at the beginning and end of each axis. For 2D input tensor, it is the number of pixels. `pads` should be a 1D tensor of shape [2 * input_rank]. `pads` format should be: [x1_begin, x2_begin,...,x1_end, x2_end,...], where xi_begin is the number of pad values added at the beginning of axis `i` and xi_end, the number of pad values added at the end of axis `i`.
+
constant_value (optional) : T
+
(Optional) A scalar value to be used if the mode chosen is `constant` (by default it is 0).
+
+ +#### Outputs + +
+
output : T
+
Tensor after padding.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output to only numeric types.
+
+ +### **Range-11** + + Generate a tensor containing a sequence of numbers that begin at `start` and extends by increments of `delta` + up to `limit` (exclusive). + + The number of elements in the output of range is computed as below- + + `number_of_elements = max( ceil( (limit - start) / delta ) , 0 )` + + The pseudocode determining the contents of the output is shown below- + + `for(int i=0; i +
start : T
+
Scalar. First entry for the range of output values.
+
limit : T
+
Scalar. Exclusive upper limit for the range of output values.
+
delta : T
+
Scalar. Value to step by.
+ + +#### Outputs + +
+
output : T
+
A 1-D tensor with same type as the inputs containing generated range of values.
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int16), tensor(int32), tensor(int64)
+
Constrain input types to common numeric type tensors.
+
+ +### **ReduceL1-11** + + Computes the L1 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceL2-11** + + Computes the L2 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSum-11** + + Computes the log sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSumExp-11** + + Computes the log sum exponent of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMax-11** + + Computes the max of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMean-11** + + Computes the mean of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMin-11** + + Computes the min of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceProd-11** + + Computes the product of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSum-11** + + Computes the sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSumSquare-11** + + Computes the sum square of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Resize-11** + + Resize the input tensor. In general, it calculates every value in the output tensor as a weighted average of neighborhood (a.k.a. sampling locations) in the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * (roi_end - roi_start) * scale) if input \"sizes\" is not specified. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
coordinate_transformation_mode : string (default is half_pixel)
+
+This attribute describes how to transform the coordinate in the resized tensor to the coordinate in the original tensor.
+ +The coordinate of each dimension is transformed individually. Let's describe a case using axis x as an example. +Denote x_resized as the coordinate of axis x in the resized tensor, x_original as the coordinate of axis x in the original tensor, length_original as the length of the original tensor in axis x, length_resized as the length of the resized tensor in axis x, roi_x = (start_x, end_x) of the axis x in input "roi", scale = length_resized / length_original,
+ +if coordinate_transformation_mode is "half_pixel",
+x_original = (x_resized + 0.5) / scale - 0.5,
+ +if coordinate_transformation_mode is "pytorch_half_pixel",
+x_original = length_resized > 1 ? (x_resized + 0.5) / scale - 0.5 : 0,
+ +if coordinate_transformation_mode is "align_corners",
+x_original = x_resized * (length_original - 1) / (length_resized - 1),
+ +if coordinate_transformation_mode is "asymmetric",
+x_original = x_resized / scale,
+ +if coordinate_transformation_mode is "tf_half_pixel_for_nn",
+x_original = (x_resized + 0.5) / scale,
+ +if coordinate_transformation_mode is "tf_crop_and_resize",
+x_original = length_resized > 1 ? start_x * (length_original - 1) + x_resized * (end_x - start_x) * (length_original - 1) / (length_resized - 1) : 0.5 * (start_x + end_x) * (length_original - 1).
+
cubic_coeff_a : float (default is -0.75)
+
The coefficient 'a' used in cubic interpolation. Two common choice are -0.5 (in some cases of TensorFlow) and -0.75 (in PyTorch). Check out Equation (4) in https://ieeexplore.ieee.org/document/1163711 for the details. This attribute is valid only if "mode" is "cubic".
+
exclude_outside : int (default is 0)
+
If set to 1, the weight of sampling locations outside the tensor will be set to 0 and the weight will be renormalized so that their sum is 1.0. The default value is 0.
+
extrapolation_value : float (default is 0.0)
+
When coordinate_transformation_mode is "tf_crop_and_resize" and x_original is outside the range [0, length_original - 1], this value is used as the corresponding output value. Default is 0.0f.
+
mode : string (default is nearest)
+
Three interpolation modes: nearest (default), linear and cubic. The "linear" mode includes linear interpolation for 1D tensor and N-linear interpolation for N-D tensor (for example, bilinear interpolation for 2D tensor). The "cubic" mode includes cubic interpolation for 1D tensor and N-cubic interpolation for N-D tensor (for example, bicubic interpolation for 2D tensor).
+
nearest_mode : string (default is round_prefer_floor)
+
Four modes: round_prefer_floor (default, as known as round half down), round_prefer_ceil (as known as round half up), floor, ceil. Only used by nearest interpolation. It indicates how to get "nearest" pixel in input tensor from x_original, so this attribute is valid only if "mode" is "nearest".
+
+ +#### Inputs (3 - 4) + +
+
X : T1
+
N-D tensor
+
roi : T2
+
1-D tensor given as [start1, ..., startN, end1, ..., endN], where N is the rank of X. The RoIs' coordinates are normalized in the coordinate system of the input image. It only takes effect when coordinate_transformation_mode is "tf_crop_and_resize"
+
scales : tensor(float)
+
The scale array along each dimension. It takes value greater than 0. If it's less than 1, it's sampling down, otherwise, it's upsampling. The number of elements of 'scales' should be the same as the rank of input 'X'. If 'size' is needed, the user must set 'scales' to an empty tensor.
+
sizes (optional) : tensor(int64)
+
The size of the output tensor. The number of elements of 'sizes' should be the same as the rank of input 'X'. May only be set if 'scales' is set to an empty tensor.
+
+ +#### Outputs + +
+
Y : T1
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input 'X' and output 'Y' to all tensor types.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain roi type to float or double.
+
+ +### **Round-11** + + Round takes one input Tensor and rounds the values, element-wise, meaning + it finds the nearest integer for each value. + In case of halfs, the rule is to round them to the nearest even integer. + The output tensor has the same shape and type as the input. + + Examples: + ``` + round([0.9]) = [1.0] + round([2.5]) = [2.0] + round([2.3]) = [2.0] + round([1.5]) = [2.0] + round([-4.5]) = [-4.0] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Scan-11** + + Scan can be used to iterate over one or more scan_input tensors, + constructing zero or more scan_output tensors. It combines ideas from general recurrences, + functional programming constructs such as scan, fold, map, and zip, and is intended to enable + generalizations of RNN-like constructs for sequence-to-sequence processing. + Other tensors (referred to as state_variables here) can be used to carry a state + when iterating from one element to another (similar to hidden-state in RNNs, also referred + to as loop-carried dependences in the context of loops). + Many common usages involve a single scan_input tensor (where functionality + similar to scan, fold and map can be obtained). When more than one scan_input is used, + a behavior similar to zip is obtained. + + The attribute body must be a graph, specifying the computation to be performed in + every iteration. It takes as input the current values of the state_variables and + the current iterated element of the scan_inputs. It must return the (updated) values + of the state_variables and zero or more scan_output_element tensors. The values of the + scan_output_element tensors are concatenated over all the iterations to produce the + scan_output values of the scan construct (similar to the concatenated intermediate + hidden-state values of RNN-like constructs). All the output tensors (state_variables as + well as scan_output_element tensors) are required to have the same shape in each iteration + of the loop (a restriction imposed to enable efficient memory allocation). + + Note that the iterated element passed to the body subgraph does not have a sequence + axis. It will have a rank one less than the rank of the corresponding scan_input. + + The scan operation returns the final values of the state_variables as well as the + scan_outputs. + + The optional attribute scan_input_directions specifies the direction (forward or backward) + for each scan input. If this attribute is omitted, all sequences are scanned in the forward + direction. A bidirectional scan may be performed by specifying the same tensor input twice + in the scan_inputs, once with a forward direction, and once with a backward direction. + + The scan_output of the operation is produced by concatenating the scan_output_element + values produced by the body in each iteration. The optional attribute scan_output_directions + specifies the direction in which scan_output is constructed (by appending or prepending the + scan_output_element to scan_output in each iteration) for each scan_output. If this attribute + is omitted, the scan_output_element is appended to the scan_output in each iteration. + + The optional attribute scan_input_axes specifies the axis to be scanned for each scan_input. + If omitted, every scan_input will be scanned in axis 0. For example, if axis 0 is the + batch axis and axis 1 is the time axis (to be scanned), specify an axis value of 1. + Note that scanning a non-zero axis may be less efficient than scanning axis zero. + + The optional attribute scan_output_axes specifies the axis along which the scan_outputs + are accumulated for each scan_output. For example, if axis 1 is the time axis (to be + scanned) for both inputs and outputs, specify a scan_input axis and scan_output axis + value of 1. + + Note that because of the ONNX restriction that only the last parameter of an operator can + be variadic, the initial-states and scan-inputs are listed together as one input parameter. + Similarly, the final-states and scan-outputs are listed together as one output parameter. + The attribute num_scan_inputs indicates the number M of scan-inputs. + + The behavior of + + Scan < + num_scan_inputs = m, + body = loop-body, + scan_input_axes = [axis_1, ..., axis_m] + > (init_1, ..., init_n, scan_1, ..., scan_m) + + is equivalent to the following pseudo-code: + + // scan_i.shape[axis_i] denotes the (max) sequence-length of scan_i + // scan_i.shape[axis_i] is required to be equal to scan_j.shape[axis_j] for all i,j. + sequence_length = scan_1.shape[axis_1]; + + // initialize state-variables + st_1 = init_1; ... st_n = init_n; + // initialize scan-output variables: [] denotes an empty tensor + scan_out_1 = []; ...; scan_out_k = []; + // identify number of iterations: + + // execute loop + for (int t = 0; t < sequence_length; ++t) { + // generate the scan-input elements: the notation T[t] indicates the sub-tensor + // of rank one less than T obtained by indexing T at position t along axis k. + si_1 = scan_1[t]; + ... ; + si_m = scan_m[t]; + // execute loop-body + st_1, ..., st_n, so_1, ..., so_k = loop-body(st_1, ..., st_n, si_1, ..., si_m) + // accumulate the scan-output elements + scan_out_1 = Concat(scan_out_1, so_1); ... ; scan_out_k = Concat(scan_out_k, so_k); + } + + return st_1, ..., st_n, scan_out_1, ..., scan_out_k; + + *Sample usage: Encoding RNN using a Scan* + + The following example shows how a simple RNN over an input tensor %X, with weight tensor %Wi, + recurrence weight tensor %Ri, bias tensors %Wbi and %Rbi, and initial hidden-state %H_0 can + be encoded as a ScanLoop. Note that the loop-body is a nested graph, and it directly computes + %Wi, %Ri, %Wbi, and %Rbi (typically constants or initializers in the body graph). If these + values are computed in the outer graph, they need to be passed in as extra state_variables. + + graph rnn-encoding { + %H_0 = ... + %X = ... + %Y_h, %Y = Scan[body = , num_scan_inputs=1](%H_0, %X) + return %Y, %Y_h + } + + graph rnn-cell-1 ( + %H_tminus1[FLOAT, tensor] + %X_t[FLOAT, tensor] + ) { + %Wi = ... + %Ri = ... + %Wbi = ... + %Rbi = ... + %t1 = X_t * (Wi^T) + %t2 = H_tminus1*(Ri^T) + %t3 = Add(%t1, %t2) + %t4 = Add(%t3, %Wbi) + %t5 = Add(%t4, %Rbi) + %Ht = Tanh(%t5) + %Accumulate = Identity(%Ht) + return %Ht, %Accumulate + } + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has N+M inputs: (loop state variables..., scan_input_elts...). It has N+K outputs: (loop state variables..., scan_output_elts...). Each scan_output is created by concatenating the value of the specified scan_output_elt value at the end of each iteration of the loop. It is an error if the dimensions of these values change across loop iterations.
+
num_scan_inputs : int (required)
+
An attribute specifying the number of scan_inputs M.
+
scan_input_axes : list of ints
+
An optional list of M flags. The i-th element of the list specifies the axis to be scanned (the sequence axis) for the i-th scan_input. If omitted, 0 will be used as the scan axis for every scan_input. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
scan_input_directions : list of ints
+
An optional list of M flags. The i-th element of the list specifies the direction to be scanned for the i-th scan_input tensor: 0 indicates forward direction and 1 indicates reverse direction. If omitted, all scan_input tensors will be scanned in the forward direction.
+
scan_output_axes : list of ints
+
An optional list of K flags. The i-th element of the list specifies the axis for the i-th scan_output. The scan outputs are accumulated along the specified axis. If omitted, 0 will be used as the scan axis for every scan_output. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1].
+
scan_output_directions : list of ints
+
An optional list of K flags, one for each scan_output. The i-th element of the list specifies whether the i-th scan_output should be constructed by appending or prepending a new value in each iteration: 0 indicates appending and 1 indicates prepending. If omitted, all scan_output tensors will be produced by appending a value in each iteration.
+
+ +#### Inputs (1 - ∞) + +
+
initial_state_and_scan_inputs (variadic, heterogeneous) : V
+
Initial values of the loop's N state variables followed by M scan_inputs
+
+ +#### Outputs (1 - ∞) + +
+
final_state_and_scan_outputs (variadic, heterogeneous) : V
+
Final values of the loop's N state variables followed by K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
+ +### **Scatter-11** (deprecated) + + This operator is deprecated. Please use ScatterElements, which provides the same functionality. + + Scatter takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + For instance, in a 2-D tensor case, the update corresponding to the [i][j] entry + is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been deprecated since version 11 of the default ONNX operator set. + +### **ScatterElements-11** + + ScatterElements takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + For instance, in a 2-D tensor case, the update corresponding to the [i][j] entry + is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to scatter on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : Tind
+
Tensor of int32/int64 indices, of r >= 1 (same rank as input). All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
updates : T
+
Tensor of rank r >=1 (same rank and shape as indices)
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank r >= 1 (same rank as input).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **ScatterND-11** + + ScatterND takes three inputs `data` tensor of rank r >= 1, `indices` tensor of rank q >= 1, + and `updates` tensor of rank q + r - indices.shape[-1] - 1. The output of the operation + is produced by creating a copy of the input `data`, and then updating its value to values + specified by `updates` at specific index positions specified by `indices`. Its output shape + is the same as the shape of `data`. Note that `indices` should not have duplicate entries. + That is, two or more `updates` for the same index-location is not supported. + + `indices` is an integer tensor. Let k denote indices.shape[-1], the last dimension in the shape of `indices`. + `indices` is treated as a (q-1)-dimensional tensor of k-tuples, where each k-tuple is a partial-index into `data`. + Hence, k can be a value at most the rank of `data`. When k equals rank(data), each update entry specifies an + update to a single element of the tensor. When k is less than rank(data) each update entry specifies an + update to a slice of the tensor. + + `updates` is treated as a (q-1)-dimensional tensor of replacement-slice-values. Thus, the + first (q-1) dimensions of updates.shape must match the first (q-1) dimensions of indices.shape. + The remaining dimensions of `updates` correspond to the dimensions of the + replacement-slice-values. Each replacement-slice-value is a (r-k) dimensional tensor, + corresponding to the trailing (r-k) dimensions of `data`. Thus, the shape of `updates` + must equal indices.shape[0:q-1] ++ data.shape[k:r-1], where ++ denotes the concatenation + of shapes. + + The `output` is calculated via the following equation: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] = updates[idx] + + The order of iteration in the above loop is not specified. + In particular, indices should not have duplicate entries: that is, if idx1 != idx2, then indices[idx1] != indices[idx2]. + This ensures that the output value does not depend on the iteration order. + + This operator is the inverse of GatherND. + + Example 1: + ``` + data = [1, 2, 3, 4, 5, 6, 7, 8] + indices = [[4], [3], [1], [7]] + updates = [9, 10, 11, 12] + output = [1, 11, 3, 10, 9, 6, 7, 12] + ``` + + Example 2: + ``` + data = [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + indices = [[0], [2]] + updates = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]] + output = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : tensor(int64)
+
Tensor of rank q >= 1.
+
updates : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank r >= 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **SequenceAt-11** + + Outputs a tensor copy from the tensor at 'position' in 'input_sequence'. + Accepted range for 'position' is in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
input_sequence : S
+
Input sequence.
+
position : I
+
Position of the tensor in the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
tensor : T
+
Output tensor at the specified position in the input sequence.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ +### **SequenceConstruct-11** + + Construct a tensor sequence containing 'inputs' tensors. + All tensors in 'inputs' must have the same data type. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
inputs (variadic) : T
+
Tensors.
+
+ +#### Outputs + +
+
output_sequence : S
+
Sequence enclosing the input tensors.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to any tensor type.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to any tensor type.
+
+ +### **SequenceEmpty-11** + + Construct an empty tensor sequence, with given data type. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type of the tensors in the output sequence. The default type is 'float'.
+
+ +#### Inputs + + +#### Outputs + +
+
output : S
+
Empty sequence.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to any tensor type.
+
+ +### **SequenceErase-11** + + Outputs a tensor sequence that removes the tensor at 'position' from 'input_sequence'. + Accepted range for 'position' is in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + 'position' is optional, by default it erases the last tensor from 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (1 - 2) + +
+
input_sequence : S
+
Input sequence.
+
position (optional) : I
+
Position of the tensor in the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output_sequence : S
+
Output sequence that has the tensor at the specified position removed.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ +### **SequenceInsert-11** + + Outputs a tensor sequence that inserts 'tensor' into 'input_sequence' at 'position'. + 'tensor' must have the same data type as 'input_sequence'. + Accepted range for 'position' is in `[-n, n]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + 'position' is optional, by default it inserts 'tensor' to the back of 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (2 - 3) + +
+
input_sequence : S
+
Input sequence.
+
tensor : T
+
Input tensor to be inserted into the input sequence.
+
position (optional) : I
+
Position in the sequence where the new tensor is inserted. It is optional and default is to insert to the back of the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output_sequence : S
+
Output sequence that contains the inserted tensor at given position.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ +### **SequenceLength-11** + + Produces a scalar(tensor of empty shape) containing the number of tensors in 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
input_sequence : S
+
Input sequence.
+
+ +#### Outputs + +
+
length : I
+
Length of input sequence. It must be a scalar(tensor of empty shape).
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int64)
+
Constrain output to integral tensor. It must be a scalar(tensor of empty shape).
+
+ +### **Slice-11** + + Produces a slice of the input tensor along multiple axes. Similar to numpy: + https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html + Slices uses `starts`, `ends`, `axes` and `steps` inputs to specify the start and end + dimension and step for each axis in the list of axes, it uses this information to + slice the input `data` tensor. If a negative value is passed for any of the + start or end indices, it represents number of elements before the end of that + dimension. If the value passed to start or end is larger than the `n` (the + number of elements in this dimension), it represents `n`. For slicing to the + end of a dimension with unknown size, it is recommended to pass in `INT_MAX` + when sclicing forward and 'INT_MIN' when slicing backward. + If a negative value is passed for step, it represents slicing backward. + However step value cannot be 0. + If `axes` are omitted, they are set to `[0, ..., ndim-1]`. + If `steps` are omitted, they are set to `[1, ..., 1]` of length `len(starts)` + Example 1: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + axes = [0, 1] + starts = [1, 0] + ends = [2, 3] + steps = [1, 2] + result = [ + [5, 7], + ] + Example 2: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + starts = [0, 1] + ends = [-1, 1000] + result = [ + [2, 3, 4], + ] + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (3 - 5) + +
+
data : T
+
Tensor of data to extract slices from.
+
starts : Tind
+
1-D tensor of starting indices of corresponding axis in `axes`
+
ends : Tind
+
1-D tensor of ending indices (exclusive) of corresponding axis in `axes`
+
axes (optional) : Tind
+
1-D tensor of axes that `starts` and `ends` apply to. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
steps (optional) : Tind
+
1-D tensor of slice step of corresponding axis in `axes`. Negative value means slicing backward. 'steps' cannot be 0. Defaults to 1.
+
+ +#### Outputs + +
+
output : T
+
Sliced data tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **Softmax-11** + + The operator computes the softmax (normalized exponential) values for each layer in the batch + of the given input. + + The input does not need to explicitly be a 2D vector; rather, it will be + coerced into one. For an arbitrary n-dimensional tensor + input \in [a_0, a_1, ..., a_{k-1}, a_k, ..., a_{n-1}] and k is + the axis provided, then input will be coerced into a 2-dimensional tensor with + dimensions [a_0 * ... * a_{k-1}, a_k * ... * a_{n-1}]. For the default + case where axis=1, this means the input tensor will be coerced into a 2D tensor + of dimensions [a_0, a_1 * ... * a_{n-1}], where a_0 is often the batch size. + In this situation, we must have a_0 = N and a_1 * ... * a_{n-1} = D. + Each of these dimensions must be matched correctly, or else the operator + will throw errors. The output tensor has the same shape + and contains the softmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Describes the axis of the inputs when coerced to 2D; defaults to one because the 0th axis most likely describes the batch_size. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs + +
+
input : T
+
The input tensor that's coerced into a 2D matrix of size (NxD) as described above.
+
+ +#### Outputs + +
+
output : T
+
The output values with the same shape as input tensor (the original size without coercion).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Split-11** + + Split a tensor into a list of tensors, along the specified + 'axis'. Lengths of the parts can be specified using argument 'split'. + Otherwise, the tensor is split to equal sized parts. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on. A negative value means counting dimensions from the back. Accepted range is [-rank, rank-1] where r = rank(input).
+
split : list of ints
+
length of each output. Values should be >= 0.
+
+ +#### Inputs + +
+
input : T
+
The tensor to split
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic) : T
+
One or more outputs forming list of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **SplitToSequence-11** + + Split a tensor into a sequence of tensors, along the specified + 'axis'. Lengths of the parts can be specified using argument 'split'. + 'split' must contain only positive numbers. + 'split' is either a scalar (tensor of empty shape), or a 1-D tensor. + If 'split' is a scalar, then 'input' will be split into equally sized chunks(if possible). + Last chunk will be smaller if the 'input' size along the given axis 'axis' is not divisible + by 'split'. + Otherwise, the tensor is split into 'size(split)' chunks, with lengths of the parts on 'axis' + specified in 'split'. In this scenario, the sum of entries in 'split' must be equal to the + dimension size of input tensor on 'axis'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on. A negative value means counting dimensions from the back. Accepted range is [-rank, rank-1].
+
keepdims : int (default is 1)
+
Keep the split dimension or not. Default 1, which means we keep split dimension. If input 'split' is specified, this attribute is ignored.
+
+ +#### Inputs (1 - 2) + +
+
input : T
+
The tensor to split
+
split (optional) : I
+
Length of each output. It can be either a scalar(tensor of empty shape), or a 1-D tensor. All values must be >= 0.
+
+ +#### Outputs + +
+
output_sequence : S
+
One or more outputs forming a sequence of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to all tensor types.
+
I : tensor(int32), tensor(int64)
+
Constrain split size to integral tensor.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to all tensor types.
+
+ +### **Squeeze-11** + + Remove single-dimensional entries from the shape of a tensor. + Takes a parameter `axes` with a list of axes to squeeze. + If `axes` is not provided, all the single dimensions will be removed from + the shape. If an axis is selected with shape entry not equal to one, an error is raised. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
List of integers indicating the dimensions to squeeze. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data : T
+
Tensors with at least max(dims) dimensions.
+
+ +#### Outputs + +
+
squeezed : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **TopK-11** + + Retrieve the top-K largest or smallest elements along a specified axis. Given an input tensor of + shape [a_1, a_2, ..., a_n, r] and integer argument k, return two outputs: + -Value tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] + which contains the values of the top k elements along the specified axis + -Index tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] which + contains the indices of the top k elements (original indices from the input + tensor). + + If "largest" is 1 (the default value) then the k largest elements are returned. + If "sorted" is 1 (the default value) then the resulting k elements will be sorted. + If "sorted" is 0, order of returned 'Values' and 'Indices' are undefined. + + Given two equivalent values, this operator uses the indices along the axis as + a tiebreaker. That is, the element with the lower index will appear first. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
Dimension on which to do the sort. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
largest : int (default is 1)
+
Whether to return the top-K largest or smallest elements.
+
sorted : int (default is 1)
+
Whether to return the elements in sorted order.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Tensor of shape [a_1, a_2, ..., a_n, r]
+
K (non-differentiable) : tensor(int64)
+
A 1-D tensor containing a single positive value corresponding to the number of top elements to retrieve
+
+ +#### Outputs + +
+
Values (differentiable) : T
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing top K values from the input tensor
+
Indices (non-differentiable) : I
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing the corresponding input tensor indices for the top K values.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to numeric tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Unique-11** + + Find the unique elements of a tensor. When an optional attribute 'axis' is provided, unique subtensors sliced along the 'axis' are returned. + Otherwise the input tensor is flattened and unique values of the flattened tensor are returned. + + This operator returns the unique values or sliced unique subtensors of the input tensor and three optional outputs. + The first output tensor 'Y' contains all unique values or subtensors of the input. + The second optional output tensor 'indices' contains indices of 'Y' elements' first occurance in 'X'.. + The third optional output tensor 'inverse_indices' contains, for elements of 'X', its corresponding indices in 'Y'. ". + The fourth optional output tensor 'counts' contains the count of each element of 'Y' in the input. + + Outputs are either sorted in ascending order or optionally in the order of the first occurrence of the values in the input. + + https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html + + Example 1: + input_X = [2, 1, 1, 3, 4, 3] + attribute_sorted = 0 + attribute_axis = None + output_Y = [2, 1, 3, 4] + output_indices = [0, 1, 3, 4] + output_inverse_indices = [0, 1, 1, 2, 3, 2] + output_counts = [1, 2, 2, 1] + + Example 2: + input_X = [[1, 3], [2, 3]] + attribute_sorted = 1 + attribute_axis = None + output_Y = [1, 2, 3] + output_indices = [0, 2, 1] + output_inverse_indices = [0, 2, 1, 2] + output_counts = [1, 1, 2] + + Example 3: + input_X = [[1, 0, 0], [1, 0, 0], [2, 3, 4]] + attribute_sorted = 1 + attribute_axis = 0 + output_Y = [[1, 0, 0], [2, 3, 4]] + output_indices = [0, 2] + output_inverse_indices = [0, 0, 1] + output_counts = [2, 1] + + Example 4: + input_x = [[[1., 1.], [0., 1.], [2., 1.], [0., 1.]], + [[1., 1.], [0., 1.], [2., 1.], [0., 1.]]] + attribute_sorted = 1 + attribute_axis = 1 + + intermediate data are presented below for better understanding: + + there are 4 subtensors sliced along axis 1 of input_x (shape = (2, 4, 2)): + A: [[1, 1], [1, 1]], + [[0, 1], [0, 1]], + [[2, 1], [2, 1]], + [[0, 1], [0, 1]]. + + there are 3 unique subtensors: + [[1, 1], [1, 1]], + [[0, 1], [0, 1]], + [[2, 1], [2, 1]]. + + sorted unique subtensors: + B: [[0, 1], [0, 1]], + [[1, 1], [1, 1]], + [[2, 1], [2, 1]]. + + output_Y is constructed from B: + [[[0. 1.], [1. 1.], [2. 1.]], + [[0. 1.], [1. 1.], [2. 1.]]] + + output_indices is to map from B to A: + [1, 0, 2] + + output_inverse_indices is to map from A to B: + [1, 0, 2, 0] + + output_counts = [2 1 1] + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
(Optional) The dimension to apply unique. If not specified, the unique elements of the flattened input are returned. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
sorted : int (default is 1)
+
(Optional) Whether to sort the unique elements in ascending order before returning as output. Must be one of 0, or 1 (default).
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
A N-D input tensor that is to be processed.
+
+ +#### Outputs (1 - 4) + +
+
Y (non-differentiable) : T
+
A tensor of the same type as 'X' containing all the unique values or subtensors sliced along a provided 'axis' in 'X', either sorted or maintained in the same order they occur in input 'X'
+
indices (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing indices of 'Y' elements' first occurance in 'X'. When 'axis' is provided, it contains indices to subtensors in input 'X' on the 'axis'. When 'axis' is not provided, it contains indices to values in the flattened input tensor.
+
inverse_indices (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing, for elements of 'X', its corresponding indices in 'Y'. When 'axis' is provided, it contains indices to subtensors in output 'Y' on the 'axis'. When 'axis' is not provided, it contains indices to values in output 'Y'.
+
counts (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing the count of each element of 'Y' in input 'X'
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input can be of any tensor type.
+
+ +### **Unsqueeze-11** + + Insert single-dimensional entries to the shape of an input tensor (`data`). + Takes one required argument `axes` - which contains a list of dimension indices and this operator will insert a dimension of value `1` into the corresponding index of the output tensor (`expanded`). + + For example: + Given an input tensor (`data`) of shape [3, 4, 5], then + Unsqueeze(data, axes=[0, 4]) outputs a tensor (`expanded`) containing same data as `data` but with shape [1, 3, 4, 5, 1]. + + The attribute `axes` should not contain any duplicate entries. It is an error if it contains duplicates. + The rank of the output tensor (`output_rank`) is the rank of the input tensor (`data`) plus the number of values in `axes`. + Each value in `axes` should be within the (inclusive) range [-output_rank , output_rank - 1]. + The order of values in `axes` does not matter and can come in any order. + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints (required)
+
List of integers indicating the dimensions to be inserted. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(expanded).
+
+ +#### Inputs + +
+
data : T
+
Original tensor
+
+ +#### Outputs + +
+
expanded : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 12 of the default ONNX operator set +### **ArgMax-12** + + Computes the indices of the max elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the max + is selected if the max appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **ArgMin-12** + + Computes the indices of the min elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equal 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the min + is selected if the min appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Celu-12** + + Continuously Differentiable Exponential Linear Units: + Perform the linear unit element-wise on the input tensor X + using formula: + + ``` + max(0,x) + min(0,alpha*(exp(x/alpha)-1)) + ``` + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
The Alpha value in Celu formula which control the shape of the unit. The default value is 1.0.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float)
+
Constrain input and output types to float32 tensors.
+
+ +### **Clip-12** + + Clip operator limits the given input within an interval. The interval is + specified by the inputs 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max(), respectively. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs (1 - 3) + +
+
input : T
+
Input tensor whose elements to be clipped
+
min (optional) : T
+
Minimum value, under which element is replaced by min. It must be a scalar(tensor of empty shape).
+
max (optional) : T
+
Maximum value, above which element is replaced by max. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Constant-12** + + This operator produces a constant tensor. Exactly one of the provided attributes, either value, sparse_value, + or value_* must be specified. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
sparse_value : sparse_tensor
+
The value for the elements of the output tensor in sparse format.
+
value : tensor
+
The value for the elements of the output tensor.
+
value_float : float
+
The value for the sole element for the scalar, float32, output tensor.
+
value_floats : list of floats
+
The values for the elements for the 1D, float32, output tensor.
+
value_int : int
+
The value for the sole element for the scalar, int64, output tensor.
+
value_ints : list of ints
+
The values for the elements for the 1D, int64, output tensor.
+
value_string : string
+
The value for the sole element for the scalar, UTF-8 string, output tensor.
+
value_strings : list of strings
+
The values for the elements for the 1D, UTF-8 string, output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Dropout-12** + + Dropout takes an input floating-point tensor, an optional input ratio (floating-point scalar) and an optional input training_mode (boolean scalar). It produces two tensor outputs, + output (floating-point tensor) and mask (optional `Tensor`). If `training_mode` is true then the output Y will be a random dropout; + Note that this Dropout scales the masked input data by the following equation, so to convert the trained model into inference mode, + the user can simply not pass `training_mode` input or set it to false. + ``` + output = scale * data * mask, + ``` + where + ``` + scale = 1. / (1. - ratio). + ``` + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
seed : int
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs (1 - 3) + +
+
data : T
+
The input data as Tensor.
+
ratio (optional) : T1
+
The ratio of random dropout, with value in [0, 1). If this input was not set, or if it was set to 0, the output would be a simple copy of the input. If it's non-zero, output will be a random dropout of the scaled input, which is typically the case during training. It is an optional value, if not specified it will default to 0.5.
+
training_mode (optional) : T2
+
If set to true then it indicates dropout is being used for training. It is an optional value hence unless specified explicitly, it is false. If it is false, ratio is ignored and the operation mimics inference mode where nothing will be dropped from the input data and if mask is requested as output it will contain all ones.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
The output.
+
mask (optional) : T2
+
The output mask.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input 'ratio' types to float tensors.
+
T2 : tensor(bool)
+
Constrain output 'mask' types to boolean tensors.
+
+ +### **Einsum-12** + + An einsum of the form ```term1, term2 -> output-term``` produces an output tensor using the following equation + + ```output[output-term] = reduce-sum( input1[term1] * input2[term] )``` + + where the reduce-sum performs a summation over all the indices occurring in the input terms (term1, term2) + that do not occur in the output-term. + + The Einsum operator evaluates algebraic tensor operations on a sequence of tensors, using the Einstein summation + convention. The equation string contains a comma-separated sequence of lower case letters. Each term corresponds to + an operand tensor, and the characters within the terms correspond to operands dimensions. + + This sequence may be followed by "->" to separate the left and right hand side of the equation. + If the equation contains "->" followed by the right-hand side, the explicit (not classical) form of the Einstein + summation is performed, and the right-hand side indices indicate output tensor dimensions. In other cases, + output indices are (implicitly) set to the alphabetically sorted sequence of indices appearing exactly once in the + equation. + + When a dimension character is repeated in the left-hand side, it represents summation along the dimension. + + The equation may contain ellipsis ("...") to enable broadcasting. Ellipsis must indicate a fixed number of dimensions. + Specifically, every occurrence of ellipsis in the equation must represent the same number of dimensions. + The right-hand side may contain exactly one ellipsis. In implicit mode, the ellipsis dimensions are set to the + beginning of the output. The equation string may contain space (U+0020) character. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
equation : string (required)
+
Einsum expression string.
+
+ +#### Inputs (1 - ∞) + +
+
Inputs (variadic, differentiable) : T
+
Operands
+
+ +#### Outputs + +
+
Output (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numerical tensor types.
+
+ +### **GatherND-12** + + Given `data` tensor of rank `r` >= 1, `indices` tensor of rank `q` >= 1, and `batch_dims` integer `b`, this operator gathers + slices of `data` into an output tensor of rank `q + r - indices_shape[-1] - 1 - b`. + + `indices` is an q-dimensional integer tensor, best thought of as a `(q-1)`-dimensional tensor of index-tuples into `data`, + where each element defines a slice of `data` + + `batch_dims` (denoted as `b`) is an integer indicating the number of batch dimensions, i.e the leading `b` number of dimensions of + `data` tensor and `indices` are representing the batches, and the gather starts from the `b+1` dimension. + + Some salient points about the inputs' rank and shape: + + 1) r >= 1 and q >= 1 are to be honored. There is no dependency condition to be met between ranks `r` and `q` + + 2) The first `b` dimensions of the shape of `indices` tensor and `data` tensor must be equal. + + 3) b < min(q, r) is to be honored. + + 4) The `indices_shape[-1]` should have a value between 1 (inclusive) and rank `r-b` (inclusive) + + 5) All values in `indices` are expected to be within bounds [-s, s-1] along axis of size `s` (i.e.) `-data_shape[i] <= indices[...,i] <= data_shape[i] - 1`. + It is an error if any of the index values are out of bounds. + + The output is computed as follows: + + The output tensor is obtained by mapping each index-tuple in the `indices` tensor to the corresponding slice of the input `data`. + + 1) If `indices_shape[-1] > r-b` => error condition + + 2) If `indices_shape[-1] == r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensors + containing 1-D tensors of dimension `r-b`, where `N` is an integer equals to the product of 1 and all the elements in the batch dimensions + of the indices_shape. Let us think of each such `r-b` ranked tensor as `indices_slice`. Each *scalar value* corresponding to `data[0:b-1,indices_slice]` + is filled into the corresponding location of the `(q-b-1)`-dimensional tensor to form the `output` tensor (Example 1 below) + + 3) If `indices_shape[-1] < r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensor + containing 1-D tensors of dimension `< r-b`. Let us think of each such tensors as `indices_slice`. Each *tensor slice* corresponding + to `data[0:b-1, indices_slice , :]` is filled into the corresponding location of the `(q-b-1)`-dimensional tensor + to form the `output` tensor (Examples 2, 3, 4 and 5 below) + + This operator is the inverse of `ScatterND`. + + `Example 1` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[0,0],[1,1]] # indices_shape = [2, 2] + + output = [0,3] # output_shape = [2] + + `Example 2` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[0,1]] # output_shape = [2, 2] + + `Example 3` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[0,1],[1,0]] # indices_shape = [2, 2] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + `Example 4` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[[0,1]],[[1,0]]] # indices_shape = [2, 1, 2] + + output = [[[2,3]],[[4,5]]] # output_shape = [2, 1, 2] + + `Example 5` + + batch_dims = 1 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
batch_dims : int (default is 0)
+
The number of batch dimensions. The gather of indexing starts from dimension of data[batch_dims:]
+
+ +#### Inputs + +
+
data : T
+
Tensor of rank r >= 1.
+
indices : tensor(int64)
+
Tensor of rank q >= 1. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **GreaterOrEqual-12** + + Returns the tensor resulted from performing the `greater_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **LessOrEqual-12** + + Returns the tensor resulted from performing the `less_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Max-12** + + Element-wise max of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for max.
+
+ +#### Outputs + +
+
max : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to numeric tensors.
+
+ +### **MaxPool-12** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
dilations : list of ints
+
Dilation value along each spatial axis of filter. If not present, the dilation defaults to 1 along each spatial axis.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
storage_order : int (default is 0)
+
The storage order of the tensor. 0 is row major, and 1 is column major.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs (1 - 2) + +
+
Y (differentiable) : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
Indices (optional, non-differentiable) : I
+
Indices tensor from max pooling across the input tensor. The dimensions of indices are the same as output tensor. The values in indices of are the indices of the selected values during pooling. The indices are computed as flatten 1-D tensor, and the indices do not consider padding. So the values in indices are in [0, N x C x D1 x ... x Dn).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(uint8)
+
Constrain input and output types to float and 8 bit tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ +### **Min-12** + + Element-wise min of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic) : T
+
List of tensors for min.
+
+ +#### Outputs + +
+
min : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to numeric tensors.
+
+ +### **NegativeLogLikelihoodLoss-12** + + A NegativeLogLikelihoodLoss operator computes (weighted) negative log likelihood loss. + Its "input" tensor has the shape of (N, C, d1, d2, ..., dk) where k >= 0. + The "input" tensor contains log-probabilities for input[n, :, d_1, d_2,..., d_k] being in a class of [0, C). + The operator's "target" input tensor has the shape of (N, d1, d2, ..., dk). It encodes class labels (one of C classes) + or it may contain a special value (indicated by an attribute ignore_index) for N x d1 x d2 x ... x dk samples. + The loss value for input[n, :, d_1, d_2,...d_k] being classified as class c = target[n][d_1][d_2]...[d_k] is computed as: + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k]. + When an optional "weight" is provided, the sample loss is calculated as: + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k] * weight[c]. + loss is zero for the case when target-value equals ignore_index. + + loss[n][d_1][d_2]...[d_k] = 0, when target[n][d_1][d_2]...[d_k] = ignore_index + If "reduction" attribute is set to "none", the operator's output will be the above loss with shape (N, d1, d2, ..., dk). + If "reduction" attribute is set to "mean" (the default attribute value), the output loss is (weight) averaged: + mean(loss), if "weight" is not provided, + or if weight is provided, + sum(loss) / sum(weight[target[n][d_1][d_2]...[d_k]]]), for all samples. + If "reduction" attribute is set to "sum", the output is a scalar: + sum(loss). + See also https://pytorch.org/docs/stable/nn.html#torch.nn.NLLLoss. + Example 1: + // negative log likelihood loss, "none" reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] + // print(loss) + // [[-3. -2.] + // [-0. -2.]] + Example 2: + // weighted negative log likelihood loss, sum reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + loss = np.sum(loss) + // print(loss) + // -1.1 + Example 3: + // weighted negative log likelihood loss, mean reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + weight_total = 0 + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + weight_total = weight_total + weight[c] + loss = np.sum(loss) / weight_total + // print(loss) + // -1.57 + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean (default). 'none': the output is the loss for each sample. 'sum': the output will be summed. 'mean': the sum of the output will be divided by the sum of applied weights.
+
+ +#### Inputs (2 - 3) + +
+
input : T
+
Input tensor of shape (N, C) or (N, C, d1, d2, ..., dk).
+
target : Tind
+
Target tensor of shape (N) or (N, d1, d2, ..., dk). Target element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the target values should either be in the range [0, C) or have the value ignore_index.
+
weight (optional) : T
+
Optional rescaling weight tensor. If given, it has to be a tensor of size C. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs + +
+
loss : T
+
The negative log likelihood loss
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input, weight, and output types to floating-point tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ +### **Pow-12** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Inputs + +
+
X : T
+
First operand, base of the exponent.
+
Y : T1
+
Second operand, power of the exponent.
+
+ +#### Outputs + +
+
Z : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input X and output types to float/int tensors.
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input Y types to float/int tensors.
+
+ +### **ReduceMax-12** + + Computes the max of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ +### **ReduceMin-12** + + Computes the min of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equal 0, then + the resulted tensor have the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ +### **SoftmaxCrossEntropyLoss-12** + + Loss function that measures the softmax cross entropy + between 'scores' and 'labels'. + This operator first computes a loss tensor whose shape is identical to the labels input. + If the input is 2-D with shape (N, C), the loss tensor may be a N-element vector L = (l_1, l_2, ..., l_N). + If the input is N-D tensor with shape (N, C, D1, D2, ..., Dk), + the loss tensor L may have (N, D1, D2, ..., Dk) as its shape and L[i,][j_1][j_2]...[j_k] denotes a scalar element in L. + After L is available, this operator can optionally do a reduction operator. + + shape(scores): (N, C) where C is the number of classes, or (N, C, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + shape(labels): (N) where each value is 0 <= labels[i] <= C-1, or (N, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + + The loss for one sample, l_i, can caculated as follows: + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk], where i is the index of classes. + or + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk] * weights[c], if 'weights' is provided. + + loss is zero for the case when label-value equals ignore_index. + l[i][d1][d2]...[dk] = 0, when labels[n][d1][d2]...[dk] = ignore_index + + where: + p = Softmax(scores) + y = Log(p) + c = labels[i][d1][d2]...[dk] + + Finally, L is optionally reduced: + If reduction = 'none', the output is L with shape (N, D1, D2, ..., Dk). + If reduction = 'sum', the output is scalar: Sum(L). + If reduction = 'mean', the output is scalar: ReduceMean(L), or if weight is provided: ReduceSum(L) / ReduceSum(W), + where tensor W is of shape (N, D1, D2, ..., Dk) and W[n][d1][d2]...[dk] = weights[labels[i][d1][d2]...[dk]]. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean(default). 'none': no reduction will be applied, 'sum': the output will be summed. 'mean': the sum of the output will be divided by the number of elements in the output.
+
+ +#### Inputs (2 - 3) + +
+
scores : T
+
The predicted outputs with shape [batch_size, class_size], or [batch_size, class_size, D1, D2 , ..., Dk], where K is the number of dimensions.
+
labels : Tind
+
The ground truth output tensor, with shape [batch_size], or [batch_size, D1, D2, ..., Dk], where K is the number of dimensions. Labels element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the label values should either be in the range [0, C) or have the value ignore_index.
+
weights (optional) : T
+
A manual rescaling weight given to each class. If given, it has to be a 1D Tensor assigning weight to each of the classes. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs (1 - 2) + +
+
output : T
+
Weighted loss float Tensor. If reduction is 'none', this has the shape of [batch_size], or [batch_size, D1, D2, ..., Dk] in case of K-dimensional loss. Otherwise, it is a scalar.
+
log_prob (optional) : T
+
Log probability tensor. If the output of softmax is prob, its value is log(prob).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ +## Version 13 of the default ONNX operator set +### **Abs-13** + + Absolute takes one input data (Tensor) and produces one output data + (Tensor) where the absolute is, y = abs(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Add-13** + + Performs element-wise binary addition (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ArgMax-13** + + Computes the indices of the max elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equals 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the max + is selected if the max appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (non-differentiable) : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **ArgMin-13** + + Computes the indices of the min elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equals 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the min + is selected if the min appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (non-differentiable) : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Cast-13** + + The operator casts the elements of a given input tensor to a data type + specified by the 'to' argument and returns an output tensor of the same size in + the converted type. The 'to' argument must be one of the data types specified + in the 'DataType' enum field in the TensorProto message. + + Casting from string tensor in plain (e.g., "3.14" and "1000") and scientific numeric representations + (e.g., "1e-5" and "1E8") to float types is supported. For example, converting string "100.5" to an integer may + result 100. There are some string literals reserved for special floating-point values; + "+INF" (and "INF"), "-INF", and "NaN" are positive infinity, negative infinity, and not-a-number, respectively. + Any string which can exactly match "+INF" in a case-insensitive way would be mapped to positive infinite. Similarly, + this case-insensitive rule is applied to "INF" and "NaN". When casting from numeric tensors + to string tensors, plain floating-point representation (such as "314.15926") would be used. + Converting non-numerical-literal string such as "Hello World!" is an undefined behavior. Cases + of converting string representing floating-point arithmetic value, such as "2.718", to INT is an undefined behavior. + + Conversion from a numerical type to any numerical type is always allowed. + User must be aware of precision loss and value change caused by range difference between two types. + For example, a 64-bit float 3.1415926459 may be round to a 32-bit float 3.141592. Similarly, converting + an integer 36 to Boolean may produce 1 because we truncate bits which can't be stored in the targeted type. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
to : int (required)
+
The data type to which the elements of the input tensor are cast. Strictly must be one of the types from DataType enum in TensorProto
+
+ +#### Inputs + +
+
input (differentiable) : T1
+
Input tensor to be cast.
+
+ +#### Outputs + +
+
output (differentiable) : T2
+
Output tensor with the same shape as input with type specified by the 'to' argument
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain input types. Casting from complex is not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain output types. Casting to complex is not supported.
+
+ +### **Ceil-13** + + Ceil takes one input data (Tensor) and produces one output data + (Tensor) where the ceil is, y = ceil(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Clip-13** + + Clip operator limits the given input within an interval. The interval is + specified by the inputs 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max(), respectively. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - 3) + +
+
input (differentiable) : T
+
Input tensor whose elements to be clipped
+
min (optional, non-differentiable) : T
+
Minimum value, under which element is replaced by min. It must be a scalar(tensor of empty shape).
+
max (optional, non-differentiable) : T
+
Maximum value, above which element is replaced by max. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Concat-13** + + Concatenate a list of tensors into a single tensor. All input tensors must have the same shape, except for the dimension size of the axis to concatenate on. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on. A negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(inputs)..
+
+ +#### Inputs (1 - ∞) + +
+
inputs (variadic, differentiable) : T
+
List of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result (differentiable) : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ +### **Constant-13** + + This operator produces a constant tensor. Exactly one of the provided attributes, either value, sparse_value, + or value_* must be specified. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
sparse_value : sparse_tensor
+
The value for the elements of the output tensor in sparse format.
+
value : tensor
+
The value for the elements of the output tensor.
+
value_float : float
+
The value for the sole element for the scalar, float32, output tensor.
+
value_floats : list of floats
+
The values for the elements for the 1D, float32, output tensor.
+
value_int : int
+
The value for the sole element for the scalar, int64, output tensor.
+
value_ints : list of ints
+
The values for the elements for the 1D, int64, output tensor.
+
value_string : string
+
The value for the sole element for the scalar, UTF-8 string, output tensor.
+
value_strings : list of strings
+
The values for the elements for the 1D, UTF-8 string, output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **DepthToSpace-13** + + DepthToSpace rearranges (permutes) data from depth into blocks of spatial data. + This is the reverse transformation of SpaceToDepth. More specifically, this op outputs a copy of + the input tensor where values from the depth dimension are moved in spatial blocks to the height + and width dimensions. By default, `mode` = `DCR`. + In the DCR mode, elements along the depth dimension from the input tensor are rearranged in the + following order: depth, column, and then row. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, blocksize, blocksize, c // (blocksize**2), h, w]) + + tmp = np.transpose(tmp, [0, 3, 4, 1, 5, 2]) + + y = np.reshape(tmp, [b, c // (blocksize**2), h * blocksize, w * blocksize]) + + + In the CRD mode, elements along the depth dimension from the input tensor are rearranged in the + following order: column, row, and the depth. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, c // (blocksize ** 2), blocksize, blocksize, h, w]) + + tmp = np.transpose(tmp, [0, 1, 4, 2, 5, 3]) + + y = np.reshape(tmp, [b, c // (blocksize ** 2), h * blocksize, w * blocksize]) + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
mode : string (default is DCR)
+
DCR (default) for depth-column-row order re-arrangement. Use CRD for column-row-depth order.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of [N, C/(blocksize * blocksize), H * blocksize, W * blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **DequantizeLinear-13** + + The linear dequantization operator. It consumes a quantized tensor, a scale, and a zero point to compute the full precision tensor. + The dequantization formula is y = (x - x_zero_point) * x_scale. 'x_scale' and 'x_zero_point' must have same shape, and can be either a scalar + for per-tensor / per layer quantization, or a 1-D tensor for per-axis quantization. + 'x_zero_point' and 'x' must have same type. 'x' and 'y' must have same shape. In the case of dequantizing int32, + there's no zero point (zero point is supposed to be 0). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
(Optional) The axis of the dequantizing dimension of the input tensor. Ignored for per-tensor quantization. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs (2 - 3) + +
+
x : T
+
N-D quantized input tensor to be de-quantized.
+
x_scale : tensor(float)
+
Scale for input 'x'. It can be a scalar, which means a per-tensor/layer dequantization, or a 1-D tensor for per-axis dequantization.
+
x_zero_point (optional) : T
+
Zero point for input 'x'. Shape must match x_scale. It's optional. Zero point is 0 when it's not specified.
+
+ +#### Outputs + +
+
y : tensor(float)
+
N-D full precision output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T : tensor(int8), tensor(uint8), tensor(int32)
+
Constrain 'x_zero_point' and 'x' to 8-bit/32-bit integer tensor.
+
+ +### **Div-13** + + Performs element-wise binary division (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Dropout-13** + + Dropout takes an input floating-point tensor, an optional input ratio (floating-point scalar) and an optional input training_mode (boolean scalar). It produces two tensor outputs, + output (floating-point tensor) and mask (optional `Tensor`). If `training_mode` is true then the output Y will be a random dropout; + Note that this Dropout scales the masked input data by the following equation, so to convert the trained model into inference mode, + the user can simply not pass `training_mode` input or set it to false. + ``` + output = scale * data * mask, + ``` + where + ``` + scale = 1. / (1. - ratio). + ``` + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
seed : int
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs (1 - 3) + +
+
data (differentiable) : T
+
The input data as Tensor.
+
ratio (optional, non-differentiable) : T1
+
The ratio of random dropout, with value in [0, 1). If this input was not set, or if it was set to 0, the output would be a simple copy of the input. If it's non-zero, output will be a random dropout of the scaled input, which is typically the case during training. It is an optional value, if not specified it will default to 0.5.
+
training_mode (optional, non-differentiable) : T2
+
If set to true then it indicates dropout is being used for training. It is an optional value hence unless specified explicitly, it is false. If it is false, ratio is ignored and the operation mimics inference mode where nothing will be dropped from the input data and if mask is requested as output it will contain all ones.
+
+ +#### Outputs (1 - 2) + +
+
output (differentiable) : T
+
The output.
+
mask (optional, non-differentiable) : T2
+
The output mask.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input 'ratio' types to float tensors.
+
T2 : tensor(bool)
+
Constrain output 'mask' types to boolean tensors.
+
+ +### **Equal-13** + + Returns the tensor resulted from performing the `equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Erf-13** + + Computes the error function of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The error function of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Exp-13** + + Calculates the exponential of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The exponential of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Expand-13** + + Broadcast the input tensor following the given shape and the broadcast rule. + The broadcast rule is similar to numpy.array(input) * numpy.ones(shape): + Dimensions are right alignment; + Two corresponding dimensions must have the same value, or one of them is equal to 1. + Also, this operator is similar to numpy.broadcast_to(input, shape), + but the major difference is numpy.broadcast_to() does not allow shape to be smaller than input.size(). + It is possible that the output.shape is not equal to shape, when some dimensions in shape is equal to 1, + or the shape.ndim < input.shape.ndim. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
shape (non-differentiable) : tensor(int64)
+
A 1-D tensor indicates the shape you want to expand to, following the broadcast rule
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensors.
+
+ +### **Flatten-13** + + Flattens the input tensor into a 2D matrix. If input tensor has shape + (d_0, d_1, ... d_n) then the output will have shape + (d_0 X d_1 ... d_(axis-1), d_axis X d_(axis+1) ... X dn). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
Indicate up to which input dimensions (exclusive) should be flattened to the outer dimension of the output. The value for axis must be in the range [-r, r], where r is the rank of the input tensor. Negative value means counting dimensions from the back. When axis = 0, the shape of the output tensor is (1, (d_0 X d_1 ... d_n), where the shape of the input tensor is (d_0, d_1, ... d_n).
+
+ +#### Inputs + +
+
input (differentiable) : T
+
A tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
A 2D tensor with the contents of the input tensor, with input dimensions up to axis flattened to the outer dimension of the output and remaining input dimensions flattened into the inner dimension of the output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output to all tensor types.
+
+ +### **Floor-13** + + Floor takes one input data (Tensor) and produces one output data + (Tensor) where the floor is, y = floor(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Gather-13** + + Given `data` tensor of rank r >= 1, and `indices` tensor of rank q, gather + entries of the axis dimension of `data` (by default outer-most one as axis=0) indexed by `indices`, and concatenates + them in an output tensor of rank q + (r - 1). + + axis = 0 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[i_{0}, ..., i_{q-1}, j_{0}, ..., j_{r-2}] = input[k , j_{0}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + indices = [ + [0, 1], + [1, 2], + ] + output = [ + [ + [1.0, 1.2], + [2.3, 3.4], + ], + [ + [2.3, 3.4], + [4.5, 5.7], + ], + ] + ``` + axis = 1 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[j_{0}, i_{0}, ..., i_{q-1}, j_{1}, ..., j_{r-2}] = input[j_{0}, k, j_{1}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2, 1.9], + [2.3, 3.4, 3.9], + [4.5, 5.7, 5.9], + ] + indices = [ + [0, 2], + ] + axis = 1, + output = [ + [[1.0, 1.9]], + [[2.3, 3.9]], + [[4.5, 5.9]], + ] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, of any rank q. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank q + (r - 1).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **GatherElements-13** + + GatherElements takes two inputs `data` and `indices` of the same rank r >= 1 + and an optional attribute `axis` that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). It is an indexing operation + that produces its output by indexing into the input data tensor at index + positions determined by elements of the `indices` tensor. + Its output shape is the same as the shape of `indices` and consists of one value + (gathered from the `data`) for each element in `indices`. + + For instance, in the 3-D case (r = 3), the output produced is determined + by the following equations: + ``` + out[i][j][k] = input[index[i][j][k]][j][k] if axis = 0, + out[i][j][k] = input[i][index[i][j][k]][k] if axis = 1, + out[i][j][k] = input[i][j][index[i][j][k]] if axis = 2, + ``` + + This operator is also the inverse of ScatterElements. It is similar to Torch's gather operation. + + Example 1: + ``` + data = [ + [1, 2], + [3, 4], + ] + indices = [ + [0, 0], + [1, 0], + ] + axis = 1 + output = [ + [1, 1], + [4, 3], + ] + ``` + Example 2: + ``` + data = [ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ] + indices = [ + [1, 2, 0], + [2, 0, 0], + ] + axis = 0 + output = [ + [4, 8, 3], + [7, 2, 3], + ] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, with the same rank r as the input. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of the same shape as indices.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **GatherND-13** + + Given `data` tensor of rank `r` >= 1, `indices` tensor of rank `q` >= 1, and `batch_dims` integer `b`, this operator gathers + slices of `data` into an output tensor of rank `q + r - indices_shape[-1] - 1 - b`. + + `indices` is an q-dimensional integer tensor, best thought of as a `(q-1)`-dimensional tensor of index-tuples into `data`, + where each element defines a slice of `data` + + `batch_dims` (denoted as `b`) is an integer indicating the number of batch dimensions, i.e the leading `b` number of dimensions of + `data` tensor and `indices` are representing the batches, and the gather starts from the `b+1` dimension. + + Some salient points about the inputs' rank and shape: + + 1) r >= 1 and q >= 1 are to be honored. There is no dependency condition to be met between ranks `r` and `q` + + 2) The first `b` dimensions of the shape of `indices` tensor and `data` tensor must be equal. + + 3) b < min(q, r) is to be honored. + + 4) The `indices_shape[-1]` should have a value between 1 (inclusive) and rank `r-b` (inclusive) + + 5) All values in `indices` are expected to be within bounds [-s, s-1] along axis of size `s` (i.e.) `-data_shape[i] <= indices[...,i] <= data_shape[i] - 1`. + It is an error if any of the index values are out of bounds. + + The output is computed as follows: + + The output tensor is obtained by mapping each index-tuple in the `indices` tensor to the corresponding slice of the input `data`. + + 1) If `indices_shape[-1] > r-b` => error condition + + 2) If `indices_shape[-1] == r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensors + containing 1-D tensors of dimension `r-b`, where `N` is an integer equals to the product of 1 and all the elements in the batch dimensions + of the indices_shape. Let us think of each such `r-b` ranked tensor as `indices_slice`. Each *scalar value* corresponding to `data[0:b-1,indices_slice]` + is filled into the corresponding location of the `(q-b-1)`-dimensional tensor to form the `output` tensor (Example 1 below) + + 3) If `indices_shape[-1] < r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensor + containing 1-D tensors of dimension `< r-b`. Let us think of each such tensors as `indices_slice`. Each *tensor slice* corresponding + to `data[0:b-1, indices_slice , :]` is filled into the corresponding location of the `(q-b-1)`-dimensional tensor + to form the `output` tensor (Examples 2, 3, 4 and 5 below) + + This operator is the inverse of `ScatterND`. + + `Example 1` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[0,0],[1,1]] # indices_shape = [2, 2] + + output = [0,3] # output_shape = [2] + + `Example 2` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[0,1]] # output_shape = [2, 2] + + `Example 3` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[0,1],[1,0]] # indices_shape = [2, 2] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + `Example 4` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[[0,1]],[[1,0]]] # indices_shape = [2, 1, 2] + + output = [[[2,3]],[[4,5]]] # output_shape = [2, 1, 2] + + `Example 5` + + batch_dims = 1 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
batch_dims : int (default is 0)
+
The number of batch dimensions. The gather of indexing starts from dimension of data[batch_dims:]
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : tensor(int64)
+
Tensor of rank q >= 1. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **Gemm-13** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + + A' = transpose(A) if transA else A + + B' = transpose(B) if transB else B + + Compute Y = alpha * A' * B' + beta * C, where input tensor A has shape (M, K) or (K, M), + input tensor B has shape (K, N) or (N, K), input tensor C is broadcastable to shape (M, N), + and output tensor Y has shape (M, N). A will be transposed before doing the + computation if attribute transA is non-zero, same for B and transB. + This operator supports **unidirectional broadcasting** (tensor C should be unidirectional broadcastable to tensor A * B); for more details please check [the doc](Broadcasting.md). + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C.
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs (2 - 3) + +
+
A (differentiable) : T
+
Input tensor A. The shape of A should be (M, K) if transA is 0, or (K, M) if transA is non-zero.
+
B (differentiable) : T
+
Input tensor B. The shape of B should be (K, N) if transB is 0, or (N, K) if transB is non-zero.
+
C (optional, differentiable) : T
+
Optional input tensor C. If not specified, the computation is done as if C is a scalar 0. The shape of C should be unidirectional broadcastable to (M, N).
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor of shape (M, N).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(bfloat16)
+
Constrain input and output types to float/int tensors.
+
+ +### **Greater-13** + + Returns the tensor resulted from performing the `greater` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Hardmax-13** + + The operator computes the hardmax values for the given input: + + Hardmax(element in input, axis) = 1 if the element is the first maximum value along the specified axis, 0 otherwise + + The "axis" attribute indicates the dimension along which Hardmax + will be performed. The output tensor has the same shape + and contains the Hardmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension Hardmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Identity-13** + + Identity operator + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor to copy input into.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **If-13** + + If conditional + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
else_branch : graph (required)
+
Graph to run if condition is false. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the then_branch.
+
then_branch : graph (required)
+
Graph to run if condition is true. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the else_branch.
+
+ +#### Inputs + +
+
cond : B
+
Condition for the if
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : V
+
Values that are live-out to the enclosing scope. The return values in the `then_branch` and `else_branch` must be of the same data type. The `then_branch` and `else_branch` may produce tensors with the same element type and different shapes. If corresponding outputs from the then-branch and the else-branch have static shapes S1 and S2, then the shape of the corresponding output variable of the if-node (if present) must be compatible with both S1 and S2 as it represents the union of both possible shapes.For example, if in a model file, the the first output of `then_branch` is typed float tensor with shape [2] and the first output of `else_branch` is another float tensor with shape [3], If's first output should have (a) no shape set, or (b) a shape of rank 1 with neither `dim_value` nor `dim_param` set, or (c) a shape of rank 1 with a unique `dim_param`. In contrast, the first output cannot have the shape [2] since [2] and [3] are not compatible.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
All Tensor and Sequence types
+
B : tensor(bool)
+
Only bool
+
+ +### **IsNaN-13** + + Returns which elements of the input are NaN. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T1
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : T2
+
output
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to float tensors.
+
T2 : tensor(bool)
+
Constrain output types to boolean tensors.
+
+ +### **LRN-13** + + Local Response Normalization proposed in the [AlexNet paper](https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf). + It normalizes over local input regions. + The local region is defined across the channels. For an element X[n, c, d1, ..., dk] in a tensor + of shape (N x C x D1 x D2, ..., Dk), its region is + {X[n, i, d1, ..., dk] | max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2))}. + + square_sum[n, c, d1, ..., dk] = sum(X[n, i, d1, ..., dk] ^ 2), + where max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2)). + + Y[n, c, d1, ..., dk] = X[n, c, d1, ..., dk] / (bias + alpha / size * square_sum[n, c, d1, ..., dk] ) ^ beta + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.0001)
+
Scaling parameter.
+
beta : float (default is 0.75)
+
The exponent.
+
bias : float (default is 1.0)
+
+
size : int (required)
+
The number of channels to sum over
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor, which has the shape and type as input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Less-13** + + Returns the tensor resulted from performing the `less` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Log-13** + + Calculates the natural log of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The natural log of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **LogSoftmax-13** + + The operator computes the log of softmax values for the given input: + + LogSoftmax(input, axis) = Log(Softmax(input, axis=axis)) + + The "axis" attribute indicates the dimension along which LogSoftmax + will be performed. The output tensor has the same shape + and contains the LogSoftmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension LogSoftmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Loop-13** + + Generic Looping construct. This loop has multiple termination conditions: + + 1) Trip count. Iteration count specified at runtime. Set by + specifying the input M. Optional. Set to empty string to omit. + Note that a static trip count (specified at graph construction time) can be + specified by passing in a constant node for input M. + 2) Loop termination condition. This is an input to the op that determines + whether to run the first iteration and also a loop-carried dependency for + the body graph. The body graph must yield a value for the condition variable, + whether this input is provided or not. + + This table summarizes the operating modes of this operator with equivalent + C-style code: + + Operator inputs defined as (max_trip_count, condition_var). + + input ("", ""): + for (int i=0; ; ++i) { + cond = ... // Note this value is ignored, but is required in the body + } + + input ("", cond) // Note this is analogous to a while loop + bool cond = ...; + for (int i=0; cond; ++i) { + cond = ...; + } + + input ("", 1) // Note this is analogous to a do-while loop + bool cond = true + for (int i=0; cond; ++i) { + cond = ...; + } + + input (trip_count, "") // Note this is analogous to a for loop + int trip_count = ... + for (int i=0; i < trip_count; ++i) { + cond = ...; // ignored + } + + input (trip_count, cond) + int trip_count = ...; + bool cond = ...; + for (int i=0; i < trip_count && cond; ++i) { + cond = ...; + } + + + *Sample usage - cond as well as trip count* + + graph predict-net { + %a = Constant[value = ]() + %b = Constant[value = ]() + %keepgoing = Constant[value = ]() + %max_trip_count = Constant[value = ]() + %keepgoing_out, %b_out, %user_defined_vals = Loop[body = ](%max_trip_count, %keepgoing, %b) + return + } + + graph body-net ( + %i[INT32, scalar] // iteration number + %keepgoing_in[BOOL, scalar] // incoming loop-termination-condition; not used + %b_in[INT32, scalar] // incoming value of loop-carried-dependency b + ) { + %my_local = Add(%a, %b_in) + %b_out = Sub(%a, %b_in) // outgoing value of loop-carried-dependency b + %keepgoing_out = Greater(%my_local, %b_out) // outgoing loop-termination-condition + %user_defined_val = Add(%b_in, %b_in) // scan-output value to be accumulated + return %keepgoing_out, %b_out, %user_defined_val + } + + *Sample equivalent C code* + + { + /* User-defined code (enclosing scope) */ + int a = 3, b = 6; + bool keepgoing = true; // Analogous to input cond + /* End user-defined code */ + + /* Implicitly-defined code */ + const int max_trip_count = 10; // Analogous to input M + int user_defined_vals[]; // Imagine this is resizable + /* End implicitly-defined code */ + /* initialize loop-carried variables and scan-output variables */ + bool keepgoing_out = keepgoing + int b_out = b + + for (int i=0; i < max_trip_count && keepgoing_out; ++i) { + /* Implicitly-defined code: bind actual parameter values + to formal parameter variables of loop-body */ + bool keepgoing_in = keepgoing_out; + bool b_in = b_out; + + /* User-defined code (loop body) */ + int my_local = a + b_in; // Reading value "a" from the enclosing scope is fine + b_out = a - b_in; + keepgoing_out = my_local > b_out; + user_defined_val = b_in + b_in; // b_in and b_out are different variables + /* End user-defined code */ + + /* Implicitly defined-code */ + user_defined_vals[i] = user_defined_val // accumulate scan-output values + } + // int t = my_local; // Can't do this. my_local is not accessible here. + + // The values below are bound to the output variables of the loop and therefore accessible + // b_out; user_defined_vals; keepgoing_out; + } + + There are several things of note in this code snippet: + + 1) Values from the enclosing scope (i.e. variable "a" here) are in scope and can + be referenced in the inputs of the loop. + 2) Any values computed in the loop body that needs to be used in a subsequent + iteration or after the loop are modelled using a pair of variables in the loop-body, + consisting of an input variable (eg., b_in) and an output variable (eg., b_out). + These are referred to as loop-carried dependences. The loop operation node + supplies the input value of the input variable for the first iteration, and + returns the output value of the output variable produced by the final + iteration. + 3) Scan_output variables are used to implicitly concatenate values computed across + all the iterations. In the above example, the value of user_defined_val computed + over all iterations are concatenated and returned as the value of user_defined_vals + after the loop. + 4) Values created in the body cannot be accessed in the enclosing scope, + except using the mechanism described above. + + Note that the semantics of this op support "diagonal" or "wavefront" execution. + (See Step 3 here for an example: + https://devblogs.nvidia.com/optimizing-recurrent-neural-networks-cudnn-5/). + Frontends should emit multi-layer RNNs as a series of While operators (with + time being the inner looping dimension), with each successive layer consuming + the scan_outputs from the previous layer, possibly going through several + point-wise operators (e.g. dropout, residual connections, linear layer). + + The input/output of subgraph (produced by loop node) matching is based on order instead of name. The implementation will figure out the names based on this order. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has 2+N inputs: (iteration_num, condition, loop carried dependencies...). It has 1+N+K outputs: (condition, loop carried dependencies..., scan_outputs...). Each scan_output is created by concatenating the value of the specified output value at the end of each iteration of the loop. It is an error if the dimensions or data type of these scan_outputs change across loop iterations.
+
+ +#### Inputs (2 - ∞) + +
+
M (optional) : I
+
A maximum trip-count for the loop specified at runtime. Optional. Pass empty string to skip.
+
cond (optional) : B
+
A boolean termination condition. Optional. Pass empty string to skip.
+
v_initial (variadic, heterogeneous) : V
+
The initial values of any loop-carried dependencies (values that change across loop iterations)
+
+ +#### Outputs (1 - ∞) + +
+
v_final_and_scan_outputs (variadic, heterogeneous) : V
+
Final N loop carried dependency values then K scan_outputs. Scan outputs must be Tensors.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
All Tensor and Sequence types
+
I : tensor(int64)
+
tensor of int64, which should be a scalar.
+
B : tensor(bool)
+
tensor of bool, which should be a scalar.
+
+ +### **MatMul-13** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
N-dimensional matrix A
+
B (differentiable) : T
+
N-dimensional matrix B
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(bfloat16)
+
Constrain input and output types to float/int tensors.
+
+ +### **Max-13** + + Element-wise max of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for max.
+
+ +#### Outputs + +
+
max (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to numeric tensors.
+
+ +### **Mean-13** + + Element-wise mean of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for mean.
+
+ +#### Outputs + +
+
mean (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **MeanVarianceNormalization-13** + + A MeanVarianceNormalization Function: Perform mean variance normalization + on the input tensor X using formula:
``` (X-EX)/sqrt(E(X-EX)^2) ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints (default is ['0', '2', '3'])
+
A list of integers, along which to reduce. The default is to caculate along axes [0,2,3] for calculating mean and variance along each channel. Two variables with the same C-coordinate are associated with the same mean and variance.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Min-13** + + Element-wise min of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for min.
+
+ +#### Outputs + +
+
min (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to numeric tensors.
+
+ +### **Mod-13** + + Performs element-wise binary modulus (with Numpy-style broadcasting support). + The sign of the remainder is the same as that of the Divisor. + + Mod operator can also behave like C fmod() or numpy.fmod. In this case, the sign of the remainder however, will be the same as the Dividend + (in contrast to integer mod). To force a behavior like numpy.fmod() an 'fmod' Attribute is provided. + This attribute is set to 0 by default causing the behavior to be like integer mod. + Setting this attribute to 1 causes the remainder to be calculated similar to that of numpy.fmod(). + + If the input type is floating point, then `fmod` attribute must be set to 1. + + In case of dividend being zero, the results will be platform dependent. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
fmod : int (default is 0)
+
Whether the operator should behave like fmod (default=0 meaning it will do integer mods); Set this to 1 to force fmod treatment
+
+ +#### Inputs + +
+
A (differentiable) : T
+
Dividend tensor
+
B (non-differentiable) : T
+
Divisor tensor
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Remainder tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Mul-13** + + Performs element-wise binary multiplication (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Neg-13** + + Neg takes one input data (Tensor) and produces one output data + (Tensor) where each element flipped sign, y = -x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(int32), tensor(int8), tensor(int16), tensor(int64), tensor(float16), tensor(double), tensor(bfloat16)
+
Constrain input and output types to signed numeric tensors.
+
+ +### **NegativeLogLikelihoodLoss-13** + + A NegativeLogLikelihoodLoss operator computes (weighted) negative log likelihood loss. + Its "input" tensor has the shape of (N, C, d1, d2, ..., dk) where k >= 0. + The "input" tensor contains log-probabilities for input[n, :, d_1, d_2,..., d_k] being in a class of [0, C). + The operator's "target" input tensor has the shape of (N, d1, d2, ..., dk). It encodes class labels (one of C classes) + or it may contain a special value (indicated by an attribute ignore_index) for N x d1 x d2 x ... x dk samples. + The loss value for input[n, :, d_1, d_2,...d_k] being classified as class c = target[n][d_1][d_2]...[d_k] is computed as: + + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k]. + + When an optional "weight" is provided, the sample loss is calculated as: + + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k] * weight[c]. + + loss is zero for the case when target-value equals ignore_index. + + loss[n][d_1][d_2]...[d_k] = 0, when target[n][d_1][d_2]...[d_k] = ignore_index + + If "reduction" attribute is set to "none", the operator's output will be the above loss with shape (N, d1, d2, ..., dk). + If "reduction" attribute is set to "mean" (the default attribute value), the output loss is (weight) averaged: + + mean(loss), if "weight" is not provided, + + or if weight is provided, + + sum(loss) / sum(weight[target[n][d_1][d_2]...[d_k]]]), for all samples. + + If "reduction" attribute is set to "sum", the output is a scalar: + sum(loss). + + See also https://pytorch.org/docs/stable/nn.html#torch.nn.NLLLoss. + + Example 1: + + // negative log likelihood loss, "none" reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] + + // print(loss) + // [[-3. -2.] + // [-0. -2.]] + + Example 2: + + // weighted negative log likelihood loss, sum reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + + loss = np.sum(loss) + // print(loss) + // -1.1 + + Example 3: + + // weighted negative log likelihood loss, mean reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + weight_total = 0 + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + weight_total = weight_total + weight[c] + + loss = np.sum(loss) / weight_total + // print(loss) + // -1.57 + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean (default). 'none': the output is the loss for each sample. 'sum': the output will be summed. 'mean': the sum of the output will be divided by the sum of applied weights.
+
+ +#### Inputs (2 - 3) + +
+
input (differentiable) : T
+
Input tensor of shape (N, C) or (N, C, d1, d2, ..., dk).
+
target (non-differentiable) : Tind
+
Target tensor of shape (N) or (N, d1, d2, ..., dk). Target element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the target values should either be in the range [0, C) or have the value ignore_index.
+
weight (optional, non-differentiable) : T
+
Optional rescaling weight tensor. If given, it has to be a tensor of size C. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs + +
+
loss (differentiable) : T
+
The negative log likelihood loss
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input, weight, and output types to floating-point tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ +### **NonZero-13** + + Returns the indices of the elements that are non-zero + (in row-major order - by dimension). + NonZero behaves similar to numpy.nonzero: + https://docs.scipy.org/doc/numpy/reference/generated/numpy.nonzero.html + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : tensor(int64)
+
output
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to all tensor types.
+
+ +### **Pad-13** + + Given a tensor containing the data to be padded (`data`), a tensor containing the number of start and end pad values for axis (`pads`), (optionally) a `mode`, and (optionally) `constant_value`, + a padded tensor (`output`) is generated. + + The three supported `modes` are (similar to corresponding modes supported by `numpy.pad`): + + 1) `constant`(default) - pads with a given constant value as specified by `constant_value` (which defaults to 0, empty string, or False) + + 2) `reflect` - pads with the reflection of the vector mirrored on the first and last values of the vector along each axis + + 3) `edge` - pads with the edge values of array + + + Example 1 (`constant` mode): + Insert 0 pads to the beginning of the second dimension. + + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'constant' + + constant_value = 0.0 + + output = + [ + [0.0, 0.0, 1.0, 1.2], + [0.0, 0.0, 2.3, 3.4], + [0.0, 0.0, 4.5, 5.7], + ] + + + Example 2 (`reflect` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'reflect' + + output = + [ + [1.0, 1.2, 1.0, 1.2], + [2.3, 3.4, 2.3, 3.4], + [4.5, 5.7, 4.5, 5.7], + ] + + + Example 3 (`edge` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'edge' + + output = + [ + [1.0, 1.0, 1.0, 1.2], + [2.3, 2.3, 2.3, 3.4], + [4.5, 4.5, 4.5, 5.7], + ] + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
mode : string (default is constant)
+
Supported modes: `constant`(default), `reflect`, `edge`
+
+ +#### Inputs (2 - 3) + +
+
data (differentiable) : T
+
Input tensor.
+
pads (non-differentiable) : tensor(int64)
+
Tensor of integers indicating the number of padding elements to add or remove (if negative) at the beginning and end of each axis. For 2D input tensor, it is the number of pixels. `pads` should be a 1D tensor of shape [2 * input_rank]. `pads` format should be: [x1_begin, x2_begin,...,x1_end, x2_end,...], where xi_begin is the number of pad values added at the beginning of axis `i` and xi_end, the number of pad values added at the end of axis `i`.
+
constant_value (optional, non-differentiable) : T
+
(Optional) A scalar value to be used if the mode chosen is `constant` (by default it is 0, empty string or False).
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor after padding.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Pow-13** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
First operand, base of the exponent.
+
Y (differentiable) : T1
+
Second operand, power of the exponent.
+
+ +#### Outputs + +
+
Z (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input X and output types to float/int tensors.
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input Y types to float/int tensors.
+
+ +### **QuantizeLinear-13** + + The linear quantization operator. It consumes a high precision tensor, a scale, and a zero point to compute the low precision / quantized tensor. + The scale factor and zero point must have same shape, and can be either a scalar for per-tensor / per layer quantization, or a 1-D tensor for per-axis quantization. + The quantization formula is y = saturate ((x / y_scale) + y_zero_point). + For saturation, it saturates to [0, 255] if it's uint8, or [-128, 127] if it's int8. + For (x / y_scale), it's rounding to nearest ties to even. Refer to https://en.wikipedia.org/wiki/Rounding for details. 'y_zero_point' and 'y' must have same type. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 1)
+
(Optional) The axis of the quantization dimension of the input tensor. Ignored for per-tensor quantization. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs (2 - 3) + +
+
x : T1
+
N-D full precision Input tensor to be quantized.
+
y_scale : tensor(float)
+
Scale for doing quantization to get 'y'. It can be a scalar, which means per-tensor/layer quantization, or a 1-D Tensor for per-axis quantization.
+
y_zero_point (optional) : T2
+
Zero point for doing quantization to get 'y'. Shape must match y_scale. Default is uint8 with zero point of 0 if it's not specified.
+
+ +#### Outputs + +
+
y : T2
+
N-D quantized output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(int32)
+
Constrain 'x' to float or int32 tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain 'y_zero_point' and 'y' to 8-bit integer tensor.
+
+ +### **Reciprocal-13** + + Reciprocal takes one input data (Tensor) and produces one output data + (Tensor) where the reciprocal is, y = 1/x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **ReduceL1-13** + + Computes the L1 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceL2-13** + + Computes the L2 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSum-13** + + Computes the log sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceLogSumExp-13** + + Computes the log sum exponent of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMax-13** + + Computes the max of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ +### **ReduceMean-13** + + Computes the mean of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceMin-13** + + Computes the min of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ +### **ReduceProd-13** + + Computes the product of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSum-13** + + Computes the sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
noop_with_empty_axes : int (default is 0)
+
Defines behaviour if 'axes' is empty. Default behaviour with 'false' is to reduce all axes. When axes is empty and this attribute is set to true, input tensor will not be reduced,and the output tensor would be equivalent to input tensor.
+
+ +#### Inputs (1 - 2) + +
+
data (differentiable) : T
+
An input tensor.
+
axes (optional, non-differentiable) : tensor(int64)
+
Optional input list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor if 'noop_with_empty_axes' is false, else act as an Identity op when 'noop_with_empty_axes' is true. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **ReduceSumSquare-13** + + Computes the sum square of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Relu-13** + + Relu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = max(0, x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Reshape-13** + + Reshape the input tensor similar to numpy.reshape. + First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor. + At most one dimension of the new shape can be -1. In this case, the value is + inferred from the size of the tensor and the remaining dimensions. A dimension + could also be 0, in which case the actual dimension value is unchanged (i.e. taken + from the input tensor). Shape (second input) could be an empty shape, which means converting to a scalar. + The input tensor's shape and the output tensor's shape are required to have the same number of elements. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
shape (non-differentiable) : tensor(int64)
+
Specified shape for output.
+
+ +#### Outputs + +
+
reshaped (differentiable) : T
+
Reshaped data.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Resize-13** + + Resize the input tensor. In general, it calculates every value in the output tensor as a weighted average of neighborhood (a.k.a. sampling locations) in the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * (roi_end - roi_start) * scale) if input \"sizes\" is not specified. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
coordinate_transformation_mode : string (default is half_pixel)
+
+This attribute describes how to transform the coordinate in the resized tensor to the coordinate in the original tensor.
+ +The coordinate of each dimension is transformed individually. Let's describe a case using axis x as an example. +Denote x_resized as the coordinate of axis x in the resized tensor, x_original as the coordinate of axis x in the original tensor, length_original as the length of the original tensor in axis x, length_resized as the length of the resized tensor in axis x, roi_x = (start_x, end_x) of the axis x in input "roi", scale = length_resized / length_original,
+ +if coordinate_transformation_mode is "half_pixel",
+x_original = (x_resized + 0.5) / scale - 0.5,
+ +if coordinate_transformation_mode is "pytorch_half_pixel",
+x_original = length_resized > 1 ? (x_resized + 0.5) / scale - 0.5 : 0,
+ +if coordinate_transformation_mode is "align_corners",
+x_original = x_resized * (length_original - 1) / (length_resized - 1),
+ +if coordinate_transformation_mode is "asymmetric",
+x_original = x_resized / scale,
+ +if coordinate_transformation_mode is "tf_crop_and_resize",
+x_original = length_resized > 1 ? start_x * (length_original - 1) + x_resized * (end_x - start_x) * (length_original - 1) / (length_resized - 1) : 0.5 * (start_x + end_x) * (length_original - 1).
+
cubic_coeff_a : float (default is -0.75)
+
The coefficient 'a' used in cubic interpolation. Two common choice are -0.5 (in some cases of TensorFlow) and -0.75 (in PyTorch). Check out Equation (4) in https://ieeexplore.ieee.org/document/1163711 for the details. This attribute is valid only if "mode" is "cubic".
+
exclude_outside : int (default is 0)
+
If set to 1, the weight of sampling locations outside the tensor will be set to 0 and the weight will be renormalized so that their sum is 1.0. The default value is 0.
+
extrapolation_value : float (default is 0.0)
+
When coordinate_transformation_mode is "tf_crop_and_resize" and x_original is outside the range [0, length_original - 1], this value is used as the corresponding output value. Default is 0.0f.
+
mode : string (default is nearest)
+
Three interpolation modes: nearest (default), linear and cubic. The "linear" mode includes linear interpolation for 1D tensor and N-linear interpolation for N-D tensor (for example, bilinear interpolation for 2D tensor). The "cubic" mode includes cubic interpolation for 1D tensor and N-cubic interpolation for N-D tensor (for example, bicubic interpolation for 2D tensor).
+
nearest_mode : string (default is round_prefer_floor)
+
Four modes: round_prefer_floor (default, as known as round half down), round_prefer_ceil (as known as round half up), floor, ceil. Only used by nearest interpolation. It indicates how to get "nearest" pixel in input tensor from x_original, so this attribute is valid only if "mode" is "nearest".
+
+ +#### Inputs (1 - 4) + +
+
X (differentiable) : T1
+
N-D tensor
+
roi (optional, non-differentiable) : T2
+
1-D tensor given as [start1, ..., startN, end1, ..., endN], where N is the rank of X. The RoIs' coordinates are normalized in the coordinate system of the input image. It only takes effect when coordinate_transformation_mode is "tf_crop_and_resize"
+
scales (optional, non-differentiable) : tensor(float)
+
The scale array along each dimension. It takes value greater than 0. If it's less than 1, it's sampling down, otherwise, it's upsampling. The number of elements of 'scales' should be the same as the rank of input 'X'. One of 'scales' and 'sizes' MUST be specified and it is an error if both are specified. If 'sizes' is needed, the user can use an empty string as the name of 'scales' in this operator's input list.
+
sizes (optional, non-differentiable) : tensor(int64)
+
The size of the output tensor. The number of elements of 'sizes' should be the same as the rank of input 'X'. Only one of 'scales' and 'sizes' can be specified.
+
+ +#### Outputs + +
+
Y (differentiable) : T1
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input 'X' and output 'Y' to all tensor types.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain roi type to float or double.
+
+ +### **ScatterElements-13** + + ScatterElements takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + For instance, in a 2-D tensor case, the update corresponding to the [i][j] entry + is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to scatter on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, of r >= 1 (same rank as input). All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
updates (differentiable) : T
+
Tensor of rank r >=1 (same rank and shape as indices)
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1 (same rank as input).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **ScatterND-13** + + ScatterND takes three inputs `data` tensor of rank r >= 1, `indices` tensor of rank q >= 1, + and `updates` tensor of rank q + r - indices.shape[-1] - 1. The output of the operation + is produced by creating a copy of the input `data`, and then updating its value to values + specified by `updates` at specific index positions specified by `indices`. Its output shape + is the same as the shape of `data`. Note that `indices` should not have duplicate entries. + That is, two or more `updates` for the same index-location is not supported. + + `indices` is an integer tensor. Let k denote indices.shape[-1], the last dimension in the shape of `indices`. + `indices` is treated as a (q-1)-dimensional tensor of k-tuples, where each k-tuple is a partial-index into `data`. + Hence, k can be a value at most the rank of `data`. When k equals rank(data), each update entry specifies an + update to a single element of the tensor. When k is less than rank(data) each update entry specifies an + update to a slice of the tensor. + + `updates` is treated as a (q-1)-dimensional tensor of replacement-slice-values. Thus, the + first (q-1) dimensions of updates.shape must match the first (q-1) dimensions of indices.shape. + The remaining dimensions of `updates` correspond to the dimensions of the + replacement-slice-values. Each replacement-slice-value is a (r-k) dimensional tensor, + corresponding to the trailing (r-k) dimensions of `data`. Thus, the shape of `updates` + must equal indices.shape[0:q-1] ++ data.shape[k:r-1], where ++ denotes the concatenation + of shapes. + + The `output` is calculated via the following equation: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] = updates[idx] + + The order of iteration in the above loop is not specified. + In particular, indices should not have duplicate entries: that is, if idx1 != idx2, then indices[idx1] != indices[idx2]. + This ensures that the output value does not depend on the iteration order. + + This operator is the inverse of GatherND. + + Example 1: + ``` + data = [1, 2, 3, 4, 5, 6, 7, 8] + indices = [[4], [3], [1], [7]] + updates = [9, 10, 11, 12] + output = [1, 11, 3, 10, 9, 6, 7, 12] + ``` + + Example 2: + ``` + data = [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + indices = [[0], [2]] + updates = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]] + output = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : tensor(int64)
+
Tensor of rank q >= 1.
+
updates (differentiable) : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **Shape-13** + + Takes a tensor as input and outputs an 1D int64 tensor containing the shape of the input tensor. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
shape (non-differentiable) : T1
+
Shape of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor.
+
+ +### **Sigmoid-13** + + Sigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the sigmoid function, y = 1 / (1 + exp(-x)), is applied to the + tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Sign-13** + + Calculate the sign of the given input tensor element-wise. + If input > 0, output 1. if input < 0, output -1. if input == 0, output 0. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (non-differentiable) : T
+
The sign of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Size-13** + + Takes a tensor as input and outputs a int64 scalar that equals to the total number of elements of the input tensor. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
size (non-differentiable) : T1
+
Total number of elements of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor, which should be a scalar though.
+
+ +### **Slice-13** + + Produces a slice of the input tensor along multiple axes. Similar to numpy: + https://numpy.org/doc/stable/user/basics.indexing.html?highlight=slice#slicing-and-striding + + Slice uses the `starts`, `ends`, `axes` and `steps` inputs to select a sub-tensor + of its input `data` tensor. + + An effective `start[i]`, `end[i]`, and `step[i]` must be computed for each `i` + in `[0, ... r-1]` where `r = rank(input)` as follows: + + If `axes` are omitted, they are set to `[0, ..., r-1]`. + If `steps` are omitted, they are set to `[1, ..., 1]` of length `len(starts)` + + The effective values are initialized as `start[i] = 0`, `end[i] = dims[i]` where + `dims` are the dimensions of `input` and `step[i] = `1. + + All negative elements of `axes` are made non-negatve by adding `r` to them, where + `r =rank(input)`. + + All negative values in `starts[i]` and `ends[i]` have `dims[axes[i]]` added to them, + where `dims` are the dimensions of `input`. Then `start[axes[i]]` is the adjusted + `starts[i]` is clamped into the range `[0, dims[axes[i]]]` for positive stepping + and `[0, dims[axes[i]]-1]` for negative stepping. + + The clamping for the adjusted `ends[i]` depends on the sign of `steps[i]` and must + accommodate copying 0 through `dims[axes[i]]` elements, so for positive stepping + `end[axes[i]]` is clamped to `[0, dims[axes[i]]]`, while for negative stepping it + is clamped to `[-1, dims[axes[i]]-1]`. + + Finally, `step[axes[i]] = steps[i]`. + + For slicing to the end of a dimension with unknown size, it is recommended to pass + in `INT_MAX` when slicing forward and 'INT_MIN' when slicing backward. + + Example 1: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + axes = [0, 1] + starts = [1, 0] + ends = [2, 3] + steps = [1, 2] + result = [ + [5, 7], + ] + Example 2: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + starts = [0, 1] + ends = [-1, 1000] + result = [ + [2, 3, 4], + ] + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (3 - 5) + +
+
data (differentiable) : T
+
Tensor of data to extract slices from.
+
starts (non-differentiable) : Tind
+
1-D tensor of starting indices of corresponding axis in `axes`
+
ends (non-differentiable) : Tind
+
1-D tensor of ending indices (exclusive) of corresponding axis in `axes`
+
axes (optional, non-differentiable) : Tind
+
1-D tensor of axes that `starts` and `ends` apply to. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data). Behavior is undefined if an axis is repeated.
+
steps (optional, non-differentiable) : Tind
+
1-D tensor of slice step of corresponding axis in `axes`. Negative value means slicing backward. 'steps' cannot be 0. Defaults to 1s.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Sliced data tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **Softmax-13** + + The operator computes the normalized exponential values for the given input: + + Softmax(input, axis) = Exp(input) / ReduceSum(Exp(input), axis=axis, keepdims=1) + + The "axis" attribute indicates the dimension along which Softmax + will be performed. The output tensor has the same shape + and contains the Softmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension Softmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **SoftmaxCrossEntropyLoss-13** + + Loss function that measures the softmax cross entropy + between 'scores' and 'labels'. + This operator first computes a loss tensor whose shape is identical to the labels input. + If the input is 2-D with shape (N, C), the loss tensor may be a N-element vector L = (l_1, l_2, ..., l_N). + If the input is N-D tensor with shape (N, C, D1, D2, ..., Dk), + the loss tensor L may have (N, D1, D2, ..., Dk) as its shape and L[i,][j_1][j_2]...[j_k] denotes a scalar element in L. + After L is available, this operator can optionally do a reduction operator. + + shape(scores): (N, C) where C is the number of classes, or (N, C, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + shape(labels): (N) where each value is 0 <= labels[i] <= C-1, or (N, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + + The loss for one sample, l_i, can caculated as follows: + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk], where i is the index of classes. + or + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk] * weights[c], if 'weights' is provided. + + loss is zero for the case when label-value equals ignore_index. + l[i][d1][d2]...[dk] = 0, when labels[n][d1][d2]...[dk] = ignore_index + + where: + p = Softmax(scores) + y = Log(p) + c = labels[i][d1][d2]...[dk] + + Finally, L is optionally reduced: + If reduction = 'none', the output is L with shape (N, D1, D2, ..., Dk). + If reduction = 'sum', the output is scalar: Sum(L). + If reduction = 'mean', the output is scalar: ReduceMean(L), or if weight is provided: ReduceSum(L) / ReduceSum(W), + where tensor W is of shape (N, D1, D2, ..., Dk) and W[n][d1][d2]...[dk] = weights[labels[i][d1][d2]...[dk]]. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean(default). 'none': no reduction will be applied, 'sum': the output will be summed. 'mean': the sum of the output will be divided by the number of elements in the output.
+
+ +#### Inputs (2 - 3) + +
+
scores (differentiable) : T
+
The predicted outputs with shape [batch_size, class_size], or [batch_size, class_size, D1, D2 , ..., Dk], where K is the number of dimensions.
+
labels (non-differentiable) : Tind
+
The ground truth output tensor, with shape [batch_size], or [batch_size, D1, D2, ..., Dk], where K is the number of dimensions. Labels element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the label values should either be in the range [0, C) or have the value ignore_index.
+
weights (optional, non-differentiable) : T
+
A manual rescaling weight given to each class. If given, it has to be a 1D Tensor assigning weight to each of the classes. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs (1 - 2) + +
+
output (differentiable) : T
+
Weighted loss float Tensor. If reduction is 'none', this has the shape of [batch_size], or [batch_size, D1, D2, ..., Dk] in case of K-dimensional loss. Otherwise, it is a scalar.
+
log_prob (optional, differentiable) : T
+
Log probability tensor. If the output of softmax is prob, its value is log(prob).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ +### **SpaceToDepth-13** + + SpaceToDepth rearranges blocks of spatial data into depth. More specifically, + this op outputs a copy of the input tensor where values from the height and width dimensions + are moved to the depth dimension. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of [N, C * blocksize * blocksize, H/blocksize, W/blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Split-13** + + Split a tensor into a list of tensors, along the specified + 'axis'. Lengths of the parts can be specified using input 'split'. + Otherwise, the tensor is split to equal sized parts. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on. A negative value means counting dimensions from the back. Accepted range is [-rank, rank-1] where r = rank(input).
+
+ +#### Inputs (1 - 2) + +
+
input (differentiable) : T
+
The tensor to split
+
split (optional, non-differentiable) : tensor(int64)
+
Optional length of each output. Values should be >= 0.Sum of the values must be equal to the dim value at 'axis' specified.
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, differentiable) : T
+
One or more outputs forming list of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Sqrt-13** + + Square root takes one input data (Tensor) and produces one output data + (Tensor) where the square root is, y = x^0.5, is applied to + the tensor elementwise. If x is negative, then it will return NaN. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Squeeze-13** + + Remove single-dimensional entries from the shape of a tensor. + Takes an input `axes` with a list of axes to squeeze. + If `axes` is not provided, all the single dimensions will be removed from + the shape. If an axis is selected with shape entry not equal to one, an error is raised. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - 2) + +
+
data (differentiable) : T
+
Tensors with at least max(dims) dimensions.
+
axes (optional, non-differentiable) : tensor(int64)
+
List of integers indicating the dimensions to squeeze. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Outputs + +
+
squeezed (differentiable) : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Sub-13** + + Performs element-wise binary subtraction (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ +### **Sum-13** + + Element-wise sum of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for sum.
+
+ +#### Outputs + +
+
sum (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Tanh-13** + + Calculates the hyperbolic tangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic tangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ +### **Tile-13** + + Constructs a tensor by tiling a given tensor. + This is the same as function `tile` in Numpy, but no broadcast. + For example A = [[1, 2], [3, 4]], B = [1, 2], tile(A, B) = [[1, 2, 1, 2], [3, 4, 3, 4]] + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of any shape.
+
repeats (non-differentiable) : T1
+
1D int64 tensor of the same length as input's dimension number, includes numbers of repeated copies along input's dimensions.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of the same dimensions and type as tensor input. output_dim[i] = input_dim[i] * repeats[i]
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(int64)
+
Constrain repeat's type to int64 tensors.
+
+ +### **Transpose-13** + + Transpose the input tensor similar to numpy.transpose. For example, when + perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape + will be (2, 1, 3). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Attributes + +
+
perm : list of ints
+
A list of integers. By default, reverse the dimensions, otherwise permute the axes according to the values given.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
transposed (differentiable) : T
+
Transposed output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Unsqueeze-13** + + Insert single-dimensional entries to the shape of an input tensor (`data`). + Takes one required input `axes` - which contains a list of dimension indices and this operator will insert a dimension of value `1` into the corresponding index of the output tensor (`expanded`). + + For example: + Given an input tensor (`data`) of shape [3, 4, 5], then + Unsqueeze(data, axes=[0, 4]) outputs a tensor (`expanded`) containing same data as `data` but with shape [1, 3, 4, 5, 1]. + + The input `axes` should not contain any duplicate entries. It is an error if it contains duplicates. + The rank of the output tensor (`output_rank`) is the rank of the input tensor (`data`) plus the number of values in `axes`. + Each value in `axes` should be within the (inclusive) range [-output_rank , output_rank - 1]. + The order of values in `axes` does not matter and can come in any order. + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +#### Inputs + +
+
data (differentiable) : T
+
Original tensor
+
axes (non-differentiable) : tensor(int64)
+
List of integers indicating the dimensions to be inserted. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(expanded).
+
+ +#### Outputs + +
+
expanded (differentiable) : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 14 of the default ONNX operator set +### **Add-14** + + Performs element-wise binary addition (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **BatchNormalization-14** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + There are five required inputs 'X', 'scale', 'B', 'input_mean' and + 'input_var'. + Note that 'input_mean' and 'input_var' are expected to be the estimated + statistics in inference mode (training_mode=False, default), + and the running statistics in training mode (training_mode=True). + There are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, running_mean, running_var (training_mode=True) + Output case #2: Y (training_mode=False) + + When training_mode=False, extra outputs are invalid. + The outputs are updated as follows when training_mode=True: + ``` + running_mean = input_mean * momentum + current_mean * (1 - momentum) + running_var = input_var * momentum + current_var * (1 - momentum) + + Y = (X - current_mean) / sqrt(current_var + epsilon) * scale + B + + where: + + current_mean = ReduceMean(X, axis=all_except_channel_index) + current_var = ReduceVar(X, axis=all_except_channel_index) + + Notice that ReduceVar refers to the population variance, and it equals to + sum(sqrd(x_i - x_avg)) / N + where N is the population size (this formula does not use sample size N - 1). + + ``` + + When training_mode=False: + ``` + Y = (X - input_mean) / sqrt(input_var + epsilon) * scale + B + ``` + + For previous (depreciated) non-spatial cases, implementors are suggested + to flatten the input shape to (N x C * D1 * D2 * ... * Dn) before a BatchNormalization Op. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum).
+
training_mode : int (default is 0)
+
If set to true, it indicates BatchNormalization is being used for training, and outputs 1, 2, 3, and 4 would be populated.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size, C is the number of channels. Statistics are computed for every channel of C over N and D1 to Dn dimensions. For image data, input dimensions become (N x C x H x W). The op also accepts single dimension input of size N in which case C is assumed to be 1
+
scale (differentiable) : T
+
Scale tensor of shape (C).
+
B (differentiable) : T
+
Bias tensor of shape (C).
+
input_mean (differentiable) : U
+
running (training) or estimated (testing) mean tensor of shape (C).
+
input_var (differentiable) : U
+
running (training) or estimated (testing) variance tensor of shape (C).
+
+ +#### Outputs (1 - 3) + +
+
Y (differentiable) : T
+
The output tensor of the same shape as X
+
running_mean (optional, non-differentiable) : U
+
The running mean after the BatchNormalization operator.
+
running_var (optional, non-differentiable) : U
+
The running variance after the BatchNormalization operator. This op uses the population size (N) for calculating variance, and not the sample size N-1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
U : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain mean and variance types to float tensors. It allows all float type for U.
+
+ +### **CumSum-14** + + Performs cumulative sum of the input elements along the given axis. + By default, it will do the sum inclusively meaning the first element is copied as is. + Through an `exclusive` attribute, this behavior can change to exclude the first element. + It can also perform summation in the opposite direction of the axis. For that, set `reverse` attribute to 1. + + Example: + ``` + input_x = [1, 2, 3] + axis=0 + output = [1, 3, 6] + exclusive=1 + output = [0, 1, 3] + exclusive=0 + reverse=1 + output = [6, 5, 3] + exclusive=1 + reverse=1 + output = [5, 3, 0] + ``` + + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
exclusive : int (default is 0)
+
If set to 1 will return exclusive sum in which the top element is not included. In other terms, if set to 1, the j-th output element would be the sum of the first (j-1) elements. Otherwise, it would be the sum of the first j elements.
+
reverse : int (default is 0)
+
If set to 1 will perform the sums in reverse direction.
+
+ +#### Inputs + +
+
x (differentiable) : T
+
An input tensor that is to be processed.
+
axis (non-differentiable) : T2
+
A 0-D tensor. Must be in the range [-rank(x), rank(x)-1]. Negative value means counting dimensions from the back.
+
+ +#### Outputs + +
+
y (differentiable) : T
+
Output tensor of the same type as 'x' with cumulative sums of the x's elements
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
T2 : tensor(int32), tensor(int64)
+
axis tensor can be int32 or int64 only
+
+ +### **Div-14** + + Performs element-wise binary division (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **GRU-14** + + Computes an one-layer GRU. This operator is usually supported via some custom + implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `z` - update gate + + `r` - reset gate + + `h` - hidden gate + + `t` - time step (t-1 means previous time step) + + `W[zrh]` - W parameter weight matrix for update, reset, and hidden gates + + `R[zrh]` - R recurrence weight matrix for update, reset, and hidden gates + + `Wb[zrh]` - W bias vectors for update, reset, and hidden gates + + `Rb[zrh]` - R bias vectors for update, reset, and hidden gates + + `WB[zrh]` - W parameter weight matrix for backward update, reset, and hidden gates + + `RB[zrh]` - R recurrence weight matrix for backward update, reset, and hidden gates + + `WBb[zrh]` - W bias vectors for backward update, reset, and hidden gates + + `RBb[zrh]` - R bias vectors for backward update, reset, and hidden gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh): + + - zt = f(Xt*(Wz^T) + Ht-1*(Rz^T) + Wbz + Rbz) + + - rt = f(Xt*(Wr^T) + Ht-1*(Rr^T) + Wbr + Rbr) + + - ht = g(Xt*(Wh^T) + (rt (.) Ht-1)*(Rh^T) + Rbh + Wbh) # default, when linear_before_reset = 0 + + - ht = g(Xt*(Wh^T) + (rt (.) (Ht-1*(Rh^T) + Rbh)) + Wbh) # when linear_before_reset != 0 + + - Ht = (1 - zt) (.) ht + zt (.) Ht-1 + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 2 (or 4 if bidirectional) activation functions for update, reset, and hidden gates. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h and outputs Y, Y_h. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = [batch_size, num_directions, hidden_size].
+
linear_before_reset : int (default is 0)
+
When computing the output of the hidden gate, apply the linear transformation before multiplying by the output of the reset gate.
+
+ +#### Inputs (3 - 6) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for the gates. Concatenation of `W[zrh]` and `WB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `R[zrh]` and `RB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for the gates. Concatenation of `[Wb[zrh], Rb[zrh]]` and `[WBb[zrh], RBb[zrh]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 6*hidden_size]`. Optional: If not specified - assumed to be 0
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **HardSwish-14** + + HardSwish takes one input data (Tensor) and produces one output data (Tensor) where + the HardSwish function, y = x * max(0, min(1, alpha * x + beta)) = x * HardSigmoid(x), + where alpha = 1/6 and beta = 0.5, is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **Identity-14** + + Identity operator + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : V
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : V
+
Tensor to copy input into.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input and output types to all tensor and sequence types.
+
+ +### **LSTM-14** + + Computes an one-layer LSTM. This operator is usually supported via some + custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `o` - output gate + + `f` - forget gate + + `c` - cell gate + + `t` - time step (t-1 means previous time step) + + `W[iofc]` - W parameter weight matrix for input, output, forget, and cell gates + + `R[iofc]` - R recurrence weight matrix for input, output, forget, and cell gates + + `Wb[iofc]` - W bias vectors for input, output, forget, and cell gates + + `Rb[iofc]` - R bias vectors for input, output, forget, and cell gates + + `P[iof]` - P peephole weight vector for input, output, and forget gates + + `WB[iofc]` - W parameter weight matrix for backward input, output, forget, and cell gates + + `RB[iofc]` - R recurrence weight matrix for backward input, output, forget, and cell gates + + `WBb[iofc]` - W bias vectors for backward input, output, forget, and cell gates + + `RBb[iofc]` - R bias vectors for backward input, output, forget, and cell gates + + `PB[iof]` - P peephole weight vector for backward input, output, and forget gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh, h=Tanh): + + - it = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Pi (.) Ct-1 + Wbi + Rbi) + + - ft = f(Xt*(Wf^T) + Ht-1*(Rf^T) + Pf (.) Ct-1 + Wbf + Rbf) + + - ct = g(Xt*(Wc^T) + Ht-1*(Rc^T) + Wbc + Rbc) + + - Ct = ft (.) Ct-1 + it (.) ct + + - ot = f(Xt*(Wo^T) + Ht-1*(Ro^T) + Po (.) Ct + Wbo + Rbo) + + - Ht = ot (.) h(Ct) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 3 (or 6 if bidirectional) activation functions for input, output, forget, cell, and hidden. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
input_forget : int (default is 0)
+
Couple the input and forget gates if 1.
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h, initial_c and outputs Y, Y_h, Y_c. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = initial_c.shape = Y_c.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = initial_c.shape = Y_c.shape = [batch_size, num_directions, hidden_size].
+
+ +#### Inputs (3 - 8) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for the gates. Concatenation of `W[iofc]` and `WB[iofc]` (if bidirectional) along dimension 0. The tensor has shape `[num_directions, 4*hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `R[iofc]` and `RB[iofc]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 4*hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for input gate. Concatenation of `[Wb[iofc], Rb[iofc]]`, and `[WBb[iofc], RBb[iofc]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 8*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
initial_c (optional, non-differentiable) : T
+
Optional initial value of the cell. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
P (optional, differentiable) : T
+
The weight tensor for peepholes. Concatenation of `P[iof]` and `PB[iof]` (if bidirectional) along dimension 0. It has shape `[num_directions, 3*hidde_size]`. Optional: If not specified - assumed to be 0.
+
+ +#### Outputs (0 - 3) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
Y_c (optional, differentiable) : T
+
The last output value of the cell. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Mul-14** + + Performs element-wise binary multiplication (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **RNN-14** + + Computes an one-layer simple RNN. This operator is usually supported + via some custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `t` - time step (t-1 means previous time step) + + `Wi` - W parameter weight matrix for input gate + + `Ri` - R recurrence weight matrix for input gate + + `Wbi` - W parameter bias vector for input gate + + `Rbi` - R parameter bias vector for input gate + + `WBi` - W parameter weight matrix for backward input gate + + `RBi` - R recurrence weight matrix for backward input gate + + `WBbi` - WR bias vectors for backward input gate + + `RBbi` - RR bias vectors for backward input gate + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Tanh): + + - Ht = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Wbi + Rbi) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings (default is ['Tanh', 'Tanh'])
+
One (or two if bidirectional) activation function for input gate. The activation function must be one of the activation functions specified above. Optional: Default `Tanh` if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h and outputs Y, Y_h. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = [batch_size, num_directions, hidden_size].
+
+ +#### Inputs (3 - 6) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for input gate. Concatenation of `Wi` and `WBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `Ri` and `RBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for input gate. Concatenation of `[Wbi, Rbi]` and `[WBbi, RBbi]` (if bidirectional). The tensor has shape `[num_directions, 2*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ +### **Relu-14** + + Relu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = max(0, x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(int32), tensor(int8), tensor(int16), tensor(int64), tensor(float16), tensor(double), tensor(bfloat16)
+
Constrain input and output types to signed numeric tensors.
+
+ +### **Reshape-14** + + Reshape the input tensor similar to numpy.reshape. + First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor. + At most one dimension of the new shape can be -1. In this case, the value is + inferred from the size of the tensor and the remaining dimensions. A dimension + could also be 0, in which case the actual dimension value is unchanged (i.e. taken + from the input tensor). If 'allowzero' is set, and the new shape includes 0, the + dimension will be set explicitly to zero (i.e. not taken from input tensor). + Shape (second input) could be an empty shape, which means converting to a scalar. + The input tensor's shape and the output tensor's shape are required to have the same number of elements. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
allowzero : int (default is 0)
+
(Optional) By default, when any value in the 'shape' input is equal to zero the corresponding dimension value is copied from the input tensor dynamically. allowzero=1 indicates that if any value in the 'shape' input is set to zero, the zero value is honored, similar to NumPy.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
shape (non-differentiable) : tensor(int64)
+
Specified shape for output.
+
+ +#### Outputs + +
+
reshaped (differentiable) : T
+
Reshaped data.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +### **Sub-14** + + Performs element-wise binary subtraction (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ +### **Trilu-14** + + Given a 2-D matrix or batches of 2-D matrices, returns the upper or lower triangular part of the tensor(s). + The attribute "upper" determines whether the upper or lower part is retained. If set to true, + the upper triangular matrix is retained. Lower triangular matrix is retained otherwise. + Default value for the "upper" attribute is true. + Trilu takes one input tensor of shape [*, N, M], where * is zero or more batch dimensions. The upper triangular part consists + of the elements on and above the given diagonal (k). The lower triangular part consists of elements on and below the diagonal. + All other elements in the matrix are set to zero. + If k = 0, the triangular part on and above/below the main diagonal is retained. + If upper is set to true, a positive k retains the upper triangular matrix excluding the main diagonal and (k-1) diagonals above it. + A negative k value retains the main diagonal and |k| diagonals below it. + If upper is set to false, a positive k retains the lower triangular matrix including the main diagonal and k diagonals above it. + A negative k value excludes the main diagonal and (|k|-1) diagonals below it. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
upper : int (default is 1)
+
Boolean. Indicates whether upper or lower part of matrix is retained. Default is true.
+
+ +#### Inputs (1 - 2) + +
+
input (differentiable) : T
+
Input tensor of rank 2 or higher.
+
k (optional, non-differentiable) : tensor(int64)
+
A 0-D tensor containing a single value corresponding to the number diagonals above or below the main diagonal to exclude or include. Default value is 0 if it's not specified.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of the same type and shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ +## Version 15 of the default ONNX operator set +### **BatchNormalization-15** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + There are five required inputs 'X', 'scale', 'B', 'input_mean' and + 'input_var'. + Note that 'input_mean' and 'input_var' are expected to be the estimated + statistics in inference mode (training_mode=False, default), + and the running statistics in training mode (training_mode=True). + There are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, running_mean, running_var (training_mode=True) + Output case #2: Y (training_mode=False) + + When training_mode=False, extra outputs are invalid. + The outputs are updated as follows when training_mode=True: + ``` + running_mean = input_mean * momentum + current_mean * (1 - momentum) + running_var = input_var * momentum + current_var * (1 - momentum) + + Y = (X - current_mean) / sqrt(current_var + epsilon) * scale + B + + where: + + current_mean = ReduceMean(X, axis=all_except_channel_index) + current_var = ReduceVar(X, axis=all_except_channel_index) + + Notice that ReduceVar refers to the population variance, and it equals to + sum(sqrd(x_i - x_avg)) / N + where N is the population size (this formula does not use sample size N - 1). + + ``` + + The computation of ReduceMean and ReduceVar uses float to avoid overflow for float16 inputs. + + When training_mode=False: + ``` + Y = (X - input_mean) / sqrt(input_var + epsilon) * scale + B + ``` + + For previous (depreciated) non-spatial cases, implementors are suggested + to flatten the input shape to (N x C * D1 * D2 * ... * Dn) before a BatchNormalization Op. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum).
+
training_mode : int (default is 0)
+
If set to true, it indicates BatchNormalization is being used for training, and outputs 1, 2, 3, and 4 would be populated.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size, C is the number of channels. Statistics are computed for every channel of C over N and D1 to Dn dimensions. For image data, input dimensions become (N x C x H x W). The op also accepts single dimension input of size N in which case C is assumed to be 1
+
scale (differentiable) : T1
+
Scale tensor of shape (C).
+
B (differentiable) : T1
+
Bias tensor of shape (C).
+
input_mean (differentiable) : T2
+
running (training) or estimated (testing) mean tensor of shape (C).
+
input_var (differentiable) : T2
+
running (training) or estimated (testing) variance tensor of shape (C).
+
+ +#### Outputs (1 - 3) + +
+
Y (differentiable) : T
+
The output tensor of the same shape as X
+
running_mean (optional, non-differentiable) : T2
+
The running mean after the BatchNormalization operator.
+
running_var (optional, non-differentiable) : T2
+
The running variance after the BatchNormalization operator. This op uses the population size (N) for calculating variance, and not the sample size N-1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain scale and bias types to float tensors.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain mean and variance types to float tensors.
+
+ +### **Bernoulli-15** + + Draws binary random numbers (0 or 1) from a Bernoulli distribution. The input tensor should be a tensor + containing probabilities p (a value in the range [0,1]) to be used for drawing the binary random number, + where an output of 1 is produced with probability p and an output of 0 is produced with probability (1-p). + + This operator is non-deterministic and may not produce the same values in different + implementations (even if a seed is specified). + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
The data type for the elements of the output tensor. if not specified, we will use the data type of the input tensor.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
All values in input have to be in the range:[0, 1].
+
+ +#### Outputs + +
+
output : T2
+
The returned output tensor only has values 0 or 1, same shape as input tensor.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bool)
+
Constrain output types to all numeric tensors and bool tensors.
+
+ +### **CastLike-15** + + The operator casts the elements of a given input tensor (the first input) to + the same data type as the elements of the second input tensor. + See documentation of the Cast operator for further details. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T1
+
Input tensor to be cast.
+
target_type (non-differentiable) : T2
+
The (first) input tensor will be cast to produce a tensor of the same type as this (second input) tensor.
+
+ +#### Outputs + +
+
output (differentiable) : T2
+
Output tensor produced by casting the first input tensor to have the same type as the second input tensor.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain input types. Casting from complex is not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain output types. Casting to complex is not supported.
+
+ +### **Optional-15** + + Constructs an optional-type value containing either an empty optional of a certain type specified by the attribute, + or a non-empty value containing the input element. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
type : type_proto
+
Type of the element in the optional output
+
+ +#### Inputs (0 - 1) + +
+
input (optional) : V
+
The input element.
+
+ +#### Outputs + +
+
output : O
+
The optional output enclosing the input element.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input type to all tensor and sequence types.
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain output type to all optional tensor or optional sequence types.
+
+ +### **OptionalGetElement-15** + + Outputs the element in the optional-type input. It is an error if the input value does not have an element + and the behavior is undefined in this case. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input : O
+
The optional input.
+
+ +#### Outputs + +
+
output : V
+
Output element in the optional input.
+
+ +#### Type Constraints + +
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input type to optional tensor and optional sequence types.
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output type to all tensor or sequence types.
+
+ +### **OptionalHasElement-15** + + Returns true if the optional-type input contains an element. If it is an empty optional-type, this op returns false. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input : O
+
The optional input.
+
+ +#### Outputs + +
+
output : B
+
A scalar boolean tensor. If true, it indicates that optional-type input contains an element. Otherwise, it is empty.
+
+ +#### Type Constraints + +
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input type to optional tensor and optional sequence types.
+
B : tensor(bool)
+
Constrain output to a boolean tensor.
+
+ +### **Pow-15** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
First operand, base of the exponent.
+
Y (differentiable) : T1
+
Second operand, power of the exponent.
+
+ +#### Outputs + +
+
Z (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input X and output types to float/int tensors.
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input Y types to float/int tensors.
+
+ +### **Shape-15** + + Takes a tensor as input and outputs an 1D int64 tensor containing the shape of the input tensor. + Optional attributes start and end can be used to compute a slice of the input tensor's shape. + If start axis is omitted, the slice starts from axis 0. + The end axis, if specified, is exclusive (and the returned value will not include the size of that axis). + If the end axis is omitted, the axes upto the last one will be included. + Negative axes indicate counting back from the last axis. + Note that axes will be clamped to the range [0, r-1], where r is the + rank of the input tensor if they are out-of-range (after adding r in the case of + negative axis). Thus, specifying any end value > r is equivalent to specifying an end + value of r, and specifying any start value < -r is equivalent to specifying a start + value of 0. + + For example: + Input tensor with shape: [2, 3, 4] + No attributes specified. + Output: [2, 3, 4] + + Input tensor with shape: [2, 3, 4] + start: -1 + Output: [4] + + Input tensor with shape: [2, 3, 4] + end: -1 + Output: [2, 3] + + Input tensor with shape: [2, 3, 4] + start: 1 + end: 2 + Output: [3] + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
end : int
+
(Optional) Ending axis for slicing the shape. Negative value means counting dimensions from the back. If omitted, sizes of all axes upto (including) the last one will be included.
+
start : int (default is 0)
+
(Optional) Starting axis for slicing the shape. Default value is 0.Negative value means counting dimensions from the back.
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
shape (non-differentiable) : T1
+
Shape of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor.
+
+ +## Version 16 of the default ONNX operator set +### **GreaterOrEqual-16** + + Returns the tensor resulted from performing the `greater_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **GridSample-16** + + Given an `input` and a flow-field `grid`, computes the `output` using `input` values and pixel locations from `grid`. + Currently, only spatial (4-D) inputs are supported. For `input` with shape (N, C, H, W) and `grid` with shape (N, H_out, W_out, 2), + the `output` will have shape (N, C, H_out, W_out). + For each output location `output[N, C, H_out, W_out]`, the size-2 vector `grid[N, H_out, W_out]` specifies `input` pixel locations `x` and `y`, + which are used to interpolate the output value `output[N, C, H_out, W_out]`. + + The GridSample operator is often used in doing grid generator and sampler in the [Spatial Transformer Networks](https://arxiv.org/abs/1506.02025). + See also in [torch.nn.functional.grid_sample](https://pytorch.org/docs/master/generated/torch.nn.functional.grid_sample.html#torch-nn-functional-grid-sample). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
align_corners : int (default is 0)
+
If align_corners=1, the extrema (-1 and 1) are considered as referring to the center points of the input's corner pixels. If align_corners=0, they are instead considered as referring to the corner points of the input's corner pixels, making the sampling more resolution agnostic.
+
mode : string (default is bilinear)
+
Three interpolation modes: bilinear (default), nearest and bicubic.
+
padding_mode : string (default is zeros)
+
Support padding modes for outside grid values: `zeros`(default), `border`, `reflection`. zeros: use 0 for out-of-bound grid locations, border: use border values for out-of-bound grid locations, reflection: use values at locations reflected by the border for out-of-bound grid locations. If index 0 represents the margin pixel, the reflected value at index -1 will be the same as the value at index 1. For location far away from the border, it will keep being reflected until becoming in bound. If pixel location x = -3.5 reflects by border -1 and becomes x' = 1.5, then reflects by border 1 and becomes x'' = 0.5.
+
+ +#### Inputs + +
+
X (differentiable) : T1
+
4-D tensor of shape (N, C, H, W), where N is the batch size, C is the numbers of channels, H and W are the height and width of the input data.
+
grid (non-differentiable) : T1
+
Input offset, 4-D tensor of shape (N, H_out, W_out, 2), where H_out and W_out are the height and width of grid and output, Grid specifies the sampling pixel locations normalized by the input spatial dimensions. Therefore, it should have most values in the range of [-1, 1]. If grid has values outside the range of [-1, 1], the corresponding outputs will be handled as defined by padding_mode.
+
+ +#### Outputs + +
+
Y (differentiable) : T2
+
4-D tensor of shape (N, C, H_out, W_out).
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to all tensor types.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ +### **Identity-16** + + Identity operator + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : V
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : V
+
Tensor to copy input into.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input and output types to all tensor, sequence, and optional types.
+
+ +### **If-16** + + If conditional + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
else_branch : graph (required)
+
Graph to run if condition is false. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the then_branch.
+
then_branch : graph (required)
+
Graph to run if condition is true. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the else_branch.
+
+ +#### Inputs + +
+
cond : B
+
Condition for the if
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : V
+
Values that are live-out to the enclosing scope. The return values in the `then_branch` and `else_branch` must be of the same data type. The `then_branch` and `else_branch` may produce tensors with the same element type and different shapes. If corresponding outputs from the then-branch and the else-branch have static shapes S1 and S2, then the shape of the corresponding output variable of the if-node (if present) must be compatible with both S1 and S2 as it represents the union of both possible shapes.For example, if in a model file, the the first output of `then_branch` is typed float tensor with shape [2] and the first output of `else_branch` is another float tensor with shape [3], If's first output should have (a) no shape set, or (b) a shape of rank 1 with neither `dim_value` nor `dim_param` set, or (c) a shape of rank 1 with a unique `dim_param`. In contrast, the first output cannot have the shape [2] since [2] and [3] are not compatible.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(bfloat16)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(bfloat16))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(bfloat16)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
All Tensor, Sequence(Tensor), Optional(Tensor), and Optional(Sequence(Tensor)) types
+
B : tensor(bool)
+
Only bool
+
+ +### **LeakyRelu-16** + + LeakyRelu takes input data (Tensor) and an argument alpha, and produces one + output data (Tensor) where the function `f(x) = alpha * x for x < 0`, + `f(x) = x for x >= 0`, is applied to the data tensor elementwise. + + **History** + - Version 16 adds bfloat16 to the types allowed. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 0.01)
+
Coefficient of leakage.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(bfloat16), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **LessOrEqual-16** + + Returns the tensor resulted from performing the `less_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ +### **Loop-16** + + Generic Looping construct. This loop has multiple termination conditions: + + 1) Trip count. Iteration count specified at runtime. Set by + specifying the input M. Optional. Set to empty string to omit. + Note that a static trip count (specified at graph construction time) can be + specified by passing in a constant node for input M. + 2) Loop termination condition. This is an input to the op that determines + whether to run the first iteration and also a loop-carried dependency for + the body graph. The body graph must yield a value for the condition variable, + whether this input is provided or not. + + This table summarizes the operating modes of this operator with equivalent + C-style code: + + Operator inputs defined as (max_trip_count, condition_var). + + input ("", ""): + for (int i=0; ; ++i) { + cond = ... // Note this value is ignored, but is required in the body + } + + input ("", cond) // Note this is analogous to a while loop + bool cond = ...; + for (int i=0; cond; ++i) { + cond = ...; + } + + input ("", 1) // Note this is analogous to a do-while loop + bool cond = true + for (int i=0; cond; ++i) { + cond = ...; + } + + input (trip_count, "") // Note this is analogous to a for loop + int trip_count = ... + for (int i=0; i < trip_count; ++i) { + cond = ...; // ignored + } + + input (trip_count, cond) + int trip_count = ...; + bool cond = ...; + for (int i=0; i < trip_count && cond; ++i) { + cond = ...; + } + + + *Sample usage - cond as well as trip count* + + graph predict-net { + %a = Constant[value = ]() + %b = Constant[value = ]() + %keepgoing = Constant[value = ]() + %max_trip_count = Constant[value = ]() + %keepgoing_out, %b_out, %user_defined_vals = Loop[body = ](%max_trip_count, %keepgoing, %b) + return + } + + graph body-net ( + %i[INT32, scalar] // iteration number + %keepgoing_in[BOOL, scalar] // incoming loop-termination-condition; not used + %b_in[INT32, scalar] // incoming value of loop-carried-dependency b + ) { + %my_local = Add(%a, %b_in) + %b_out = Sub(%a, %b_in) // outgoing value of loop-carried-dependency b + %keepgoing_out = Greater(%my_local, %b_out) // outgoing loop-termination-condition + %user_defined_val = Add(%b_in, %b_in) // scan-output value to be accumulated + return %keepgoing_out, %b_out, %user_defined_val + } + + *Sample equivalent C code* + + { + /* User-defined code (enclosing scope) */ + int a = 3, b = 6; + bool keepgoing = true; // Analogous to input cond + /* End user-defined code */ + + /* Implicitly-defined code */ + const int max_trip_count = 10; // Analogous to input M + int user_defined_vals[]; // Imagine this is resizable + /* End implicitly-defined code */ + /* initialize loop-carried variables and scan-output variables */ + bool keepgoing_out = keepgoing + int b_out = b + + for (int i=0; i < max_trip_count && keepgoing_out; ++i) { + /* Implicitly-defined code: bind actual parameter values + to formal parameter variables of loop-body */ + bool keepgoing_in = keepgoing_out; + bool b_in = b_out; + + /* User-defined code (loop body) */ + int my_local = a + b_in; // Reading value "a" from the enclosing scope is fine + b_out = a - b_in; + keepgoing_out = my_local > b_out; + user_defined_val = b_in + b_in; // b_in and b_out are different variables + /* End user-defined code */ + + /* Implicitly defined-code */ + user_defined_vals[i] = user_defined_val // accumulate scan-output values + } + // int t = my_local; // Can't do this. my_local is not accessible here. + + // The values below are bound to the output variables of the loop and therefore accessible + // b_out; user_defined_vals; keepgoing_out; + } + + There are several things of note in this code snippet: + + 1) Values from the enclosing scope (i.e. variable "a" here) are in scope and can + be referenced in the inputs of the loop. + 2) Any values computed in the loop body that needs to be used in a subsequent + iteration or after the loop are modelled using a pair of variables in the loop-body, + consisting of an input variable (eg., b_in) and an output variable (eg., b_out). + These are referred to as loop-carried dependences. The loop operation node + supplies the input value of the input variable for the first iteration, and + returns the output value of the output variable produced by the final + iteration. + 3) Scan_output variables are used to implicitly concatenate values computed across + all the iterations. In the above example, the value of user_defined_val computed + over all iterations are concatenated and returned as the value of user_defined_vals + after the loop. + 4) Values created in the body cannot be accessed in the enclosing scope, + except using the mechanism described above. + + Note that the semantics of this op support "diagonal" or "wavefront" execution. + (See Step 3 here for an example: + https://devblogs.nvidia.com/optimizing-recurrent-neural-networks-cudnn-5/). + Frontends should emit multi-layer RNNs as a series of While operators (with + time being the inner looping dimension), with each successive layer consuming + the scan_outputs from the previous layer, possibly going through several + point-wise operators (e.g. dropout, residual connections, linear layer). + + The input/output of subgraph (produced by loop node) matching is based on order instead of name. The implementation will figure out the names based on this order. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has 2+N inputs: (iteration_num, condition, loop carried dependencies...). It has 1+N+K outputs: (condition, loop carried dependencies..., scan_outputs...). Each scan_output is created by concatenating the value of the specified output value at the end of each iteration of the loop. It is an error if the dimensions or data type of these scan_outputs change across loop iterations.
+
+ +#### Inputs (2 - ∞) + +
+
M (optional) : I
+
A maximum trip-count for the loop specified at runtime. Optional. Pass empty string to skip.
+
cond (optional) : B
+
A boolean termination condition. Optional. Pass empty string to skip.
+
v_initial (variadic, heterogeneous) : V
+
The initial values of any loop-carried dependencies (values that change across loop iterations)
+
+ +#### Outputs (1 - ∞) + +
+
v_final_and_scan_outputs (variadic, heterogeneous) : V
+
Final N loop carried dependency values then K scan_outputs. Scan outputs must be Tensors.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(bfloat16)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(bfloat16))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(bfloat16)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
All Tensor, Sequence(Tensor), Optional(Tensor), and Optional(Sequence(Tensor)) types
+
I : tensor(int64)
+
tensor of int64, which should be a scalar.
+
B : tensor(bool)
+
tensor of bool, which should be a scalar.
+
+ +### **PRelu-16** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + + **History** + - Version 16 adds bfloat16 to the types allowed. + This operator supports **unidirectional broadcasting** (tensor slope should be unidirectional broadcastable to input tensor X); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
slope (differentiable) : T
+
Slope tensor. The shape of slope can be smaller then first input X; if so, its shape must be unidirectional broadcastable to X
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor (same size as X)
+
+ +#### Type Constraints + +
+
T : tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ +### **RoiAlign-16** + + Region of Interest (RoI) align operation described in the + [Mask R-CNN paper](https://arxiv.org/abs/1703.06870). + RoiAlign consumes an input tensor X and region of interests (rois) + to apply pooling across each RoI; it produces a 4-D tensor of shape + (num_rois, C, output_height, output_width). + + RoiAlign is proposed to avoid the misalignment by removing + quantizations while converting from original image into feature + map and from feature map into RoI feature; in each ROI bin, + the value of the sampled locations are computed directly + through bilinear interpolation. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
coordinate_transformation_mode : string (default is half_pixel)
+
Allowed values are 'half_pixel' and 'output_half_pixel'. Use the value 'half_pixel' to pixel shift the input coordinates by -0.5 (the recommended behavior). Use the value 'output_half_pixel' to omit the pixel shift for the input (use this for a backward-compatible behavior).
+
mode : string (default is avg)
+
The pooling method. Two modes are supported: 'avg' and 'max'. Default is 'avg'.
+
output_height : int (default is 1)
+
default 1; Pooled output Y's height.
+
output_width : int (default is 1)
+
default 1; Pooled output Y's width.
+
sampling_ratio : int (default is 0)
+
Number of sampling points in the interpolation grid used to compute the output value of each pooled output bin. If > 0, then exactly sampling_ratio x sampling_ratio grid points are used. If == 0, then an adaptive number of grid points are used (computed as ceil(roi_width / output_width), and likewise for height). Default is 0.
+
spatial_scale : float (default is 1.0)
+
Multiplicative spatial scale factor to translate ROI coordinates from their input spatial scale to the scale used when pooling, i.e., spatial scale of the input feature map X relative to the input image. E.g.; default is 1.0f.
+
+ +#### Inputs + +
+
X : T1
+
Input data tensor from the previous operator; 4-D feature map of shape (N, C, H, W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data.
+
rois : T1
+
RoIs (Regions of Interest) to pool over; rois is 2-D input of shape (num_rois, 4) given as [[x1, y1, x2, y2], ...]. The RoIs' coordinates are in the coordinate system of the input image. Each coordinate set has a 1:1 correspondence with the 'batch_indices' input.
+
batch_indices : T2
+
1-D tensor of shape (num_rois,) with each element denoting the index of the corresponding image in the batch.
+
+ +#### Outputs + +
+
Y : T1
+
RoI pooled output, 4-D tensor of shape (num_rois, C, output_height, output_width). The r-th batch element Y[r-1] is a pooled feature map corresponding to the r-th RoI X[r-1].
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain types to float tensors.
+
T2 : tensor(int64)
+
Constrain types to int tensors.
+
+ +### **Scan-16** + + Scan can be used to iterate over one or more scan_input tensors, + constructing zero or more scan_output tensors. It combines ideas from general recurrences, + functional programming constructs such as scan, fold, map, and zip, and is intended to enable + generalizations of RNN-like constructs for sequence-to-sequence processing. + Other tensors (referred to as state_variables here) can be used to carry a state + when iterating from one element to another (similar to hidden-state in RNNs, also referred + to as loop-carried dependences in the context of loops). + Many common usages involve a single scan_input tensor (where functionality + similar to scan, fold and map can be obtained). When more than one scan_input is used, + a behavior similar to zip is obtained. + + The attribute body must be a graph, specifying the computation to be performed in + every iteration. It takes as input the current values of the state_variables and + the current iterated element of the scan_inputs. It must return the (updated) values + of the state_variables and zero or more scan_output_element tensors. The values of the + scan_output_element tensors are concatenated over all the iterations to produce the + scan_output values of the scan construct (similar to the concatenated intermediate + hidden-state values of RNN-like constructs). All the output tensors (state_variables as + well as scan_output_element tensors) are required to have the same shape in each iteration + of the loop (a restriction imposed to enable efficient memory allocation). + + Note that the iterated element passed to the body subgraph does not have a sequence + axis. It will have a rank one less than the rank of the corresponding scan_input. + + The scan operation returns the final values of the state_variables as well as the + scan_outputs. + + The optional attribute scan_input_directions specifies the direction (forward or backward) + for each scan input. If this attribute is omitted, all sequences are scanned in the forward + direction. A bidirectional scan may be performed by specifying the same tensor input twice + in the scan_inputs, once with a forward direction, and once with a backward direction. + + The scan_output of the operation is produced by concatenating the scan_output_element + values produced by the body in each iteration. The optional attribute scan_output_directions + specifies the direction in which scan_output is constructed (by appending or prepending the + scan_output_element to scan_output in each iteration) for each scan_output. If this attribute + is omitted, the scan_output_element is appended to the scan_output in each iteration. + + The optional attribute scan_input_axes specifies the axis to be scanned for each scan_input. + If omitted, every scan_input will be scanned in axis 0. For example, if axis 0 is the + batch axis and axis 1 is the time axis (to be scanned), specify an axis value of 1. + Note that scanning a non-zero axis may be less efficient than scanning axis zero. + + The optional attribute scan_output_axes specifies the axis along which the scan_outputs + are accumulated for each scan_output. For example, if axis 1 is the time axis (to be + scanned) for both inputs and outputs, specify a scan_input axis and scan_output axis + value of 1. + + Note that because of the ONNX restriction that only the last parameter of an operator can + be variadic, the initial-states and scan-inputs are listed together as one input parameter. + Similarly, the final-states and scan-outputs are listed together as one output parameter. + The attribute num_scan_inputs indicates the number M of scan-inputs. + + The behavior of + + Scan < + num_scan_inputs = m, + body = loop-body, + scan_input_axes = [axis_1, ..., axis_m] + > (init_1, ..., init_n, scan_1, ..., scan_m) + + is equivalent to the following pseudo-code: + + // scan_i.shape[axis_i] denotes the (max) sequence-length of scan_i + // scan_i.shape[axis_i] is required to be equal to scan_j.shape[axis_j] for all i,j. + sequence_length = scan_1.shape[axis_1]; + + // initialize state-variables + st_1 = init_1; ... st_n = init_n; + // initialize scan-output variables: [] denotes an empty tensor + scan_out_1 = []; ...; scan_out_k = []; + // identify number of iterations: + + // execute loop + for (int t = 0; t < sequence_length; ++t) { + // generate the scan-input elements: the notation T[t] indicates the sub-tensor + // of rank one less than T obtained by indexing T at position t along axis k. + si_1 = scan_1[t]; + ... ; + si_m = scan_m[t]; + // execute loop-body + st_1, ..., st_n, so_1, ..., so_k = loop-body(st_1, ..., st_n, si_1, ..., si_m) + // accumulate the scan-output elements + scan_out_1 = Concat(scan_out_1, so_1); ... ; scan_out_k = Concat(scan_out_k, so_k); + } + + return st_1, ..., st_n, scan_out_1, ..., scan_out_k; + + *Sample usage: Encoding RNN using a Scan* + + The following example shows how a simple RNN over an input tensor %X, with weight tensor %Wi, + recurrence weight tensor %Ri, bias tensors %Wbi and %Rbi, and initial hidden-state %H_0 can + be encoded as a ScanLoop. Note that the loop-body is a nested graph, and it directly computes + %Wi, %Ri, %Wbi, and %Rbi (typically constants or initializers in the body graph). If these + values are computed in the outer graph, they need to be passed in as extra state_variables. + + graph rnn-encoding { + %H_0 = ... + %X = ... + %Y_h, %Y = Scan[body = , num_scan_inputs=1](%H_0, %X) + return %Y, %Y_h + } + + graph rnn-cell-1 ( + %H_tminus1[FLOAT, tensor] + %X_t[FLOAT, tensor] + ) { + %Wi = ... + %Ri = ... + %Wbi = ... + %Rbi = ... + %t1 = X_t * (Wi^T) + %t2 = H_tminus1*(Ri^T) + %t3 = Add(%t1, %t2) + %t4 = Add(%t3, %Wbi) + %t5 = Add(%t4, %Rbi) + %Ht = Tanh(%t5) + %Accumulate = Identity(%Ht) + return %Ht, %Accumulate + } + + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has N+M inputs: (loop state variables..., scan_input_elts...). It has N+K outputs: (loop state variables..., scan_output_elts...). Each scan_output is created by concatenating the value of the specified scan_output_elt value at the end of each iteration of the loop. It is an error if the dimensions of these values change across loop iterations.
+
num_scan_inputs : int (required)
+
An attribute specifying the number of scan_inputs M.
+
scan_input_axes : list of ints
+
An optional list of M flags. The i-th element of the list specifies the axis to be scanned (the sequence axis) for the i-th scan_input. If omitted, 0 will be used as the scan axis for every scan_input. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
scan_input_directions : list of ints
+
An optional list of M flags. The i-th element of the list specifies the direction to be scanned for the i-th scan_input tensor: 0 indicates forward direction and 1 indicates reverse direction. If omitted, all scan_input tensors will be scanned in the forward direction.
+
scan_output_axes : list of ints
+
An optional list of K flags. The i-th element of the list specifies the axis for the i-th scan_output. The scan outputs are accumulated along the specified axis. If omitted, 0 will be used as the scan axis for every scan_output. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1].
+
scan_output_directions : list of ints
+
An optional list of K flags, one for each scan_output. The i-th element of the list specifies whether the i-th scan_output should be constructed by appending or prepending a new value in each iteration: 0 indicates appending and 1 indicates prepending. If omitted, all scan_output tensors will be produced by appending a value in each iteration.
+
+ +#### Inputs (1 - ∞) + +
+
initial_state_and_scan_inputs (variadic, heterogeneous) : V
+
Initial values of the loop's N state variables followed by M scan_inputs
+
+ +#### Outputs (1 - ∞) + +
+
final_state_and_scan_outputs (variadic, heterogeneous) : V
+
Final values of the loop's N state variables followed by K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
+ +### **ScatterElements-16** + + ScatterElements takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + `reduction` allows specification of an optional reduction operation, which is applied to all values in `updates` + tensor into `output` at the specified `indices`. + In cases where `reduction` is set to "none", indices should not have duplicate entries: that is, if idx1 != idx2, + then indices[idx1] != indices[idx2]. For instance, in a 2-D tensor case, the update + corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + When `reduction` is set to "add", the update corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] += updates[i][j] if axis = 0, + output[i][indices[i][j]] += updates[i][j] if axis = 1, + ``` + When `reduction` is set to "mul", the update corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] *= updates[i][j] if axis = 0, + output[i][indices[i][j]] *= updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to scatter on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
reduction : string (default is none)
+
Type of reduction to apply: none (default), add, mul. 'none': no reduction applied. 'add': reduction using the addition operation. 'mul': reduction using the multiplication operation.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, of r >= 1 (same rank as input). All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
updates (differentiable) : T
+
Tensor of rank r >=1 (same rank and shape as indices)
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1 (same rank as input).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ +### **ScatterND-16** + + ScatterND takes three inputs `data` tensor of rank r >= 1, `indices` tensor of rank q >= 1, + and `updates` tensor of rank q + r - indices.shape[-1] - 1. The output of the operation + is produced by creating a copy of the input `data`, and then updating its value to values + specified by `updates` at specific index positions specified by `indices`. Its output shape + is the same as the shape of `data`. Note that `indices` should not have duplicate entries. + That is, two or more `updates` for the same index-location is not supported. + + `indices` is an integer tensor. Let k denote indices.shape[-1], the last dimension in the shape of `indices`. + `indices` is treated as a (q-1)-dimensional tensor of k-tuples, where each k-tuple is a partial-index into `data`. + Hence, k can be a value at most the rank of `data`. When k equals rank(data), each update entry specifies an + update to a single element of the tensor. When k is less than rank(data) each update entry specifies an + update to a slice of the tensor. + + `updates` is treated as a (q-1)-dimensional tensor of replacement-slice-values. Thus, the + first (q-1) dimensions of updates.shape must match the first (q-1) dimensions of indices.shape. + The remaining dimensions of `updates` correspond to the dimensions of the + replacement-slice-values. Each replacement-slice-value is a (r-k) dimensional tensor, + corresponding to the trailing (r-k) dimensions of `data`. Thus, the shape of `updates` + must equal indices.shape[0:q-1] ++ data.shape[k:r-1], where ++ denotes the concatenation + of shapes. + + The `output` is calculated via the following equation: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] = updates[idx] + + The order of iteration in the above loop is not specified. + In particular, indices should not have duplicate entries: that is, if idx1 != idx2, then indices[idx1] != indices[idx2]. + This ensures that the output value does not depend on the iteration order. + + `reduction` allows specification of an optional reduction operation, which is applied to all values in `updates` + tensor into `output` at the specified `indices`. + In cases where `reduction` is set to "none", indices should not have duplicate entries: that is, if idx1 != idx2, + then indices[idx1] != indices[idx2]. This ensures that the output value does not depend on the iteration order. + When `reduction` is set to "add", `output` is calculated as follows: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] += updates[idx] + + When `reduction` is set to "mul", `output` is calculated as follows: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] *= updates[idx] + + This operator is the inverse of GatherND. + + Example 1: + ``` + data = [1, 2, 3, 4, 5, 6, 7, 8] + indices = [[4], [3], [1], [7]] + updates = [9, 10, 11, 12] + output = [1, 11, 3, 10, 9, 6, 7, 12] + ``` + + Example 2: + ``` + data = [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + indices = [[0], [2]] + updates = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]] + output = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + ``` + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
reduction : string (default is none)
+
Type of reduction to apply: none (default), add, mul. 'none': no reduction applied. 'add': reduction using the addition operation. 'mul': reduction using the multiplication operation.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : tensor(int64)
+
Tensor of rank q >= 1.
+
updates (differentiable) : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ +### **Where-16** + + Return elements, either from X or Y, depending on condition. + Where behaves like + [numpy.where](https://docs.scipy.org/doc/numpy/reference/generated/numpy.where.html) + with three parameters. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + **History** + - Version 16 adds bfloat16 to the types allowed (for the second and third parameter). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Inputs + +
+
condition (non-differentiable) : B
+
When True (nonzero), yield X, otherwise yield Y
+
X (differentiable) : T
+
values selected at indices where condition is True
+
Y (differentiable) : T
+
values selected at indices where condition is False
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of shape equal to the broadcasted shape of condition, X, and Y.
+
+ +#### Type Constraints + +
+
B : tensor(bool)
+
Constrain to boolean tensors.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types (including bfloat).
+
+ +## Version 17 of the default ONNX operator set +### **LayerNormalization-17** + + This is layer normalization defined in ONNX as function. + The overall computation can be split into two stages. + The first stage is standardization, which makes the + normalized elements have zero mean and unit variances. + The computation required by standardization can be + described by the following equations. + ``` + Mean = ReduceMean(X) + D = Sub(X, Mean) + DD = Mul(Diff, Diff) + Var = ReduceMean(DD) + VarEps = Add(Var, epsilon) + StdDev = Sqrt(VarEps) + InvStdDev = Reciprocal(StdDev) + Normalized = Mul(D, InvStdDev) + ``` + where `normalized_axes` is `[axis, ..., rank of X - 1]`. + The variables `Var` and `StdDev` stand for variance and + standard deviation, respectively. The second output is + `Mean` and the last one is `InvStdDev`. + Depending on `stash_type` attribute, the actual computation + must happen in different floating-point precision. + For example, if `stash_type` is 1, this operator casts + all input variables to 32-bit float, perform the computation, and + finally cast `Normalized` back to the original type of `X`. + The second stage then scales and shifts the outcome of the + first stage using + ``` + NormalizedScaled = Mul(Normalized, Scale) + Y = Add(NormalizedScaled, B) + ``` + The second stage doesn't depends on `stash_type`. + All equations are in [this syntax](https://github.com/onnx/onnx/blob/main/docs/Syntax.md). + The same variable (i.e., input, output, and attribute) uses + the same name in the equations above and this operator's definition. + Let `d[i]` indicate the i-th dimension of `X`. + If `X`'s shape is `[d[0], ..., d[axis-1], d[axis], ..., d[rank-1]]`, + the shape of `Mean` and `InvStdDev` is `[d[0], ..., d[axis-1], 1, ..., 1]`. + `Y` and `X` have the same shape. + +#### Version + +This version of the operator has been available since version 17 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
The first normalization dimension. If rank(X) is r, axis' allowed range is [-r, r]. Negative value means counting dimensions from the back.
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
stash_type : int (default is 1)
+
Type of Mean and InvStdDev. This also specifies stage one's computation precision.
+
+ +#### Inputs (2 - 3) + +
+
X : T
+
Tensor to be normalized.
+
Scale : T
+
Scale tensor.
+
B (optional) : T
+
Bias tensor.
+
+ +#### Outputs (1 - 3) + +
+
Y : T
+
Normalized tensor.
+
Mean (optional) : U
+
Saved mean used during training to speed up gradient computation
+
InvStdDev (optional) : U
+
Saved inverse standard deviation used during training to speed up gradient computation.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types and output Y type to float tensors.
+
U : tensor(float), tensor(bfloat16)
+
Type of Mean and InvStdDev tensors.
+
+ +### **SequenceMap-17** + + Applies a sub-graph to each sample in the input sequence(s). + + Inputs can be either tensors or sequences, with the exception of the first input which must + be a sequence. The length of the first input sequence will determine the number of samples in the + outputs. Any other sequence inputs should have the same number of samples. The number of inputs + and outputs, should match the one of the subgraph. + + For each i-th element in the output, a sample will be extracted from the input sequence(s) at + the i-th position and the sub-graph will be applied to it. + The outputs will contain the outputs of the sub-graph for each sample, in the same order as in + the input. + + This operator assumes that processing each sample is independent and could executed in parallel + or in any order. Users cannot expect any specific ordering in which each subgraph is computed. + +#### Version + +This version of the operator has been available since version 17 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph to be run for each sample in the sequence(s). It should have as many inputs and outputs as inputs and outputs to the SequenceMap function.
+
+ +#### Inputs (1 - ∞) + +
+
input_sequence : S
+
Input sequence.
+
additional_inputs (variadic, heterogeneous) : V
+
Additional inputs to the graph
+
+ +#### Outputs (1 - ∞) + +
+
out_sequence (variadic, heterogeneous) : S
+
Output sequence(s)
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input types to any sequence type.
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor or sequence type.
+
+ +# ai.onnx.preview.training +## Version 1 of the 'ai.onnx.preview.training' operator set +### **ai.onnx.preview.training.Adagrad-1** + + Compute one iteration of ADAGRAD, a stochastic gradient based optimization + algorithm. This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. As you can imagine, ADAGRAD requires + some parameters: + + - The initial learning-rate "R". + - The update count "T". That is, the number of training iterations conducted. + - A L2-norm regularization coefficient "norm_coefficient". + - A learning-rate decay factor "decay_factor". + - A small constant "epsilon" to avoid dividing-by-zero. + + At each ADAGRAD iteration, the optimized tensors are moved along a direction + computed based on their estimated gradient and accumulated squared gradient. Assume + that only a single tensor "X" is updated by this operator. We need the value of "X", + its gradient "G", and its accumulated squared gradient "H". Therefore, variables in + this operator's input list are sequentially "R", "T", "X", "G", and "H". Other + parameters are given as attributes because they are usually constants. Also, the + corresponding output tensors are the new value of "X" (called "X_new"), and then + the new accumulated squared gradient (called "H_new"). Those outputs are computed + from the given inputs following the pseudo code below. + + Let "+", "-", "*", and "/" are all element-wise arithmetic operations with + numpy-style broadcasting support. The pseudo code to compute those outputs is: + + // Compute a scalar learning-rate factor. At the first update of X, T is generally + // 0 (0-based update index) or 1 (1-based update index). + r = R / (1 + T * decay_factor); + + // Add gradient of 0.5 * norm_coefficient * ||X||_2^2, where ||X||_2 is the 2-norm. + G_regularized = norm_coefficient * X + G; + + // Compute new accumulated squared gradient. + H_new = H + G_regularized * G_regularized; + + // Compute the adaptive part of per-coordinate learning rate. Note that Sqrt(...) + // computes element-wise square-root. + H_adaptive = Sqrt(H_new) + epsilon + + // Compute the new value of "X". + X_new = X - r * G_regularized / H_adaptive; + + If one assign this operators to optimize multiple inputs, for example, "X_1" and "X_2", the same + pseudo code may be extended to handle all tensors jointly. More specifically, we can view "X" as a + concatenation of "X_1" and "X_2" (of course, their gradient and accumulate gradient should + be concatenated too) and then just reuse the entire pseudo code. + + Note that ADAGRAD was first proposed in http://jmlr.org/papers/volume12/duchi11a/duchi11a.pdf. + In that reference paper, this operator is a special case of the Figure 1's composite mirror + descent update. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
decay_factor : float (default is 0.0)
+
The decay factor of learning rate after one update.The effective learning rate is computed by r = R / (1 + T * decay_factor). Default to 0 so that increasing update counts doesn't reduce the learning rate.
+
epsilon : float (default is 0.0)
+
Small scalar to avoid dividing by zero.
+
norm_coefficient : float (default is 0.0)
+
Regularization coefficient in 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The initial learning rate.
+
T : T2
+
The update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
The current values of optimized tensors, followed by their respective gradients, followed by their respective accumulated squared gradients.For example, if two tensor "X_1" and "X_2" are optimized, The input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", accumulated squared gradient of "X_1", accumulated squared gradient of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
Updated values of optimized tensors, followed by their updated values of accumulated squared gradients. For example, if two tensor "X_1" and "X_2" are optimized, the output list would be [new value of "X_1," new value of "X_2" new accumulated squared gradient of "X_1", new accumulated squared gradient of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ai.onnx.preview.training.Adam-1** + + Compute one iteration of Adam, a stochastic gradient based optimization + algorithm. This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. First of all, Adam requires + some parameters: + + - The learning-rate "R". + - The update count "T". That is, the number of training iterations conducted. + - A L2-norm regularization coefficient "norm_coefficient". + - A small constant "epsilon" to avoid dividing-by-zero. + - Two coefficients, "alpha" and "beta". + + At each Adam iteration, the optimized tensors are moved along a direction + computed based on their exponentially-averaged historical gradient and + exponentially-averaged historical squared gradient. Assume that only a tensor + "X" is being optimized. The rest of required information is + + - the value of "X", + - "X"'s gradient (denoted by "G"), + - "X"'s exponentially-averaged historical gradient (denoted by "V"), and + - "X"'s exponentially-averaged historical squared gradient (denoted by "H"). + + Some of those parameters are passed into this operator as input tensors and others + are stored as this operator's attributes. Specifically, this operator's input tensor + list is ["R", "T", "X", "G", "V", "H"]. That is, "R" is the first input, "T" is + the second input, and so on. Other parameters are given as attributes because they + are constants. Moreover, the corresponding output tensors are + + - the new value of "X" (called "X_new"), + - the new exponentially-averaged historical gradient (denoted by "V_new"), and + - the new exponentially-averaged historical squared gradient (denoted by "H_new"). + + Those outputs are computed following the pseudo code below. + + Let "+", "-", "*", and "/" are all element-wise arithmetic operations with + numpy-style broadcasting support. The pseudo code to compute those outputs is: + + // Add gradient of 0.5 * norm_coefficient * ||X||_2^2, where ||X||_2 is the 2-norm. + G_regularized = norm_coefficient * X + G + + // Update exponentially-averaged historical gradient. + V_new = alpha * V + (1 - alpha) * G_regularized + + // Update exponentially-averaged historical squared gradient. + H_new = beta * H + (1 - beta) * G_regularized * G_regularized + + // Compute the element-wise square-root of H_new. V_new will be element-wisely + // divided by H_sqrt for a better update direction. + H_sqrt = Sqrt(H_new) + epsilon + + // Compute learning-rate. Note that "alpha**T"/"beta**T" is alpha's/beta's T-th power. + R_adjusted = T > 0 ? R * Sqrt(1 - beta**T) / (1 - alpha**T) : R + + // Compute new value of "X". + X_new = X - R_adjusted * V_new / H_sqrt + + // Post-update regularization. + X_final = (1 - norm_coefficient_post) * X_new + + If there are multiple inputs to be optimized, the pseudo code will be applied + independently to each of them. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
alpha : float (default is 0.9)
+
Coefficient of previously accumulated gradient in running average. Default to 0.9.
+
beta : float (default is 0.999)
+
Coefficient of previously accumulated squared-gradient in running average. Default to 0.999.
+
epsilon : float (default is 0.0)
+
Small scalar to avoid dividing by zero.
+
norm_coefficient : float (default is 0.0)
+
Regularization coefficient of 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
norm_coefficient_post : float (default is 0.0)
+
Regularization coefficient of 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The initial learning rate.
+
T : T2
+
The update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
The tensors to be optimized, followed by their respective gradients, followed by their respective accumulated gradients (aka momentum), followed by their respective accumulated squared gradients. For example, to optimize tensors "X_1" and "X_2,", the input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", accumulated gradient of "X_1", accumulated gradient of "X_2", accumulated squared gradient of "X_1", accumulated squared gradient of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
New values of optimized tensors, followed by their respective new accumulated gradients, followed by their respective new accumulated squared gradients. For example, if two tensors "X_1" and "X_2" are optimized, the outputs list would be [new value of "X_1", new value of "X_2", new accumulated gradient of "X_1", new accumulated gradient of "X_2", new accumulated squared gradient of "X_1", new accumulated squared gradient of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ +### **ai.onnx.preview.training.Gradient-1** + + Gradient operator computes the partial derivatives of a specific tensor w.r.t. + some other tensors. This operator is widely used in gradient-based training + algorithms. To illustrate its use, let's consider a computation graph, + + ``` + X -----. + | + v + W --> Conv --> H --> Gemm --> Y + ^ + | + Z + ``` + + , where W and Z are trainable tensors. Note that operators' attributes are + omitted for the sake of simplicity. Let dY/dW (dY/dZ) be the gradient of + Y with respect to W (Z). The user can compute gradient by inserting Gradient + operator to form another graph shown below. + + ``` + W --> Conv --> H --> Gemm --> Y + | ^ ^ + | | | + | X Z + | | | + | | .----------' + | | | (W/Z/X is the 1st/2nd/3rd input of Gradient as shown in + | | | "xs" followed by "zs") + | v v + '---> Gradient(xs=["W", "Z"], zs=["X"], y="Y") + | | + | '-----------------------------------> dY/dW (1st output of Gradient) + | + '---------------------------------------> dY/dZ (2nd output of Gradient) + ``` + + By definition, the tensor "y" is a function of independent variables in "xs" + and "zs". Since we only compute the gradient of "y" w.r.t. the differentiable + variables in "xs", this Gradient only outputs dY/dW and dY/dZ. Note that "H" + cannot appear in "xs" and "zs". The reason is that "H" can be determined by + tensors "W" and "X" and therefore "H" is not an independent variable. + + All outputs are optional. If needed, for example, user can assign an empty + string to the 1st output name of that Gradient to skip the generation of dY/dW. + Note that the concept of optional outputs can also be found in ONNX's RNN, GRU, + and LSTM. + + Gradient operator can compute derivative against intermediate tensors. For + example, the gradient of Y with respect to H can be done via + + ``` + W --> Conv --> H --> Gemm --> Y + ^ | ^ + | | | + X | Z + .-------' | + | .----------' + | | (H/Z is the 1st/2nd input of Gradient as shown in "xs") + v v + Gradient(xs=["H", "Z"], y="Y") + | | + | '-----------------------------------> dY/dH (1st output of Gradient) + | + '---------------------------------------> dY/dZ (2nd output of Gradient) + ``` + + It is possible to represent high-order differentiation using Gradient operators. + For example, given the following linear model: + + ``` + W --> Gemm --> Y --> Loss --> O + ^ ^ + | | + X L + ``` + + To compute the 2nd order derivative of O with respect to W (denoted by + d^2O/dW^2), one can do + + ``` + W --> Gemm --> Y --> Loss --> O + | ^ ^ + | | | + | X .------------L + | | | | + | | | v + +------+-+> Gradient(xs=["X", "W"], zs=["L"], y="O") ---> dO/dX (1st output of Gradient) + | | | | + | | | '---> dO/dW (2nd output of Gradient) + | v v + '---> Gradient(xs=["X", "W"], zs=["L"], y="dO/dW") ---> d(dO/dW)dX (1st output of + | Gradient) + | + | + '---> d^2O/dW^2 (2nd output of Gradient) + ``` + + The tensors named in attributes "xs", "zs", and "y" define the differentiated + computation graph, and the inputs to Gradient node define the values at + which the gradient is computed. We can feed different tensors to the identified + graph. For example, one can compute the gradient of Y with respect to H at + a specific value of H, H_1, by providing that value as an input to the Gradient + node. + + ``` + W --> Conv --> H --> Gemm --> Y + ^ ^ + | | + X Z + + Z_1 (2nd input of Gradient) + | + v + H_1 --> Gradient(xs=["H", "Z"], y="Y") ---> dY/dH when H = H_1 and Y = Y_1. + | + '------------------------------> dY/dZ (2nd output of Gradient) + ``` + + When the inputs of Gradient are the tensors named in "xs" and "zs", the + computation can be optimized. More specifically, intermediate variables in + forward pass can be reused if the gradient is computed via reverse-mode + auto-differentiation. + + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
xs : list of strings (required)
+
Input tensor names of the differentiated sub-graph. It contains only the necessary differentiated inputs of a (sub-)graph. Variables (usually called intermediate variables) that can be generated from inputs cannot be included in this attribute.
+
y : string (required)
+
The targeted tensor. It can be viewed as the output of the differentiated function. The attribute "xs" and attribute "zs" are the minimal independent variable set that determines the value of "y".
+
zs : list of strings
+
Input tensor names of the differentiated sub-graph. It contains only the necessary non-differentiated inputs of a (sub-)graph. Variables (usually called intermediate variables) that can be generated from inputs cannot be included in this attribute.
+
+ +#### Inputs (1 - ∞) + +
+
Inputs (variadic, heterogeneous) : T1
+
The values fed into graph identified by the attributes. The i-th input is the value of the i-th tensor specified in the concatenated list of the attribute "xs" and the attribute "zs". For example, if xs=["A", "B"] and zs=["C"], the first input is used as the value of symbol "A" and the 3rd input is substituted for all the occurrences of "C".
+
+ +#### Outputs (1 - ∞) + +
+
Outputs (variadic, heterogeneous) : T2
+
The gradient of the tensor specified by the attribute "y" with respect to each of tensors specified in the attribute "xs". The i-th output is the gradient of "y" with respect to the i-th tensor specified in the attribute "xs".
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Allow outputs to be any kind of tensor.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Allow inputs to be any kind of floating-point tensor.
+
+ +### **ai.onnx.preview.training.Momentum-1** + + Compute one iteration of stochastic gradient update with momentum. + This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. As you can imagine, SG with momentum requires + several parameters: + + - The learning-rate "R". + - The update count "T". That is, the number of conducted training iterations. It should + be zero in the first training iteration. + - A L2-norm regularization coefficient "norm_coefficient". + - A decay coefficient of previous accumulated gradient (i.e., momentum) "alpha". + - The scaling coefficient of current gradient "beta". + - An attribute to choose either standard momentum or Nesterov's momentum "mode" should + be used. + + For the sake of simplicity, assume that there is only one tensor (called "X") to be optimized. + Other necessary inputs are "X"'s gradient (called "G") and "X"'s momentum (called "V"). This + Momentum operator maps all these inputs to the new value of "X" (called "X_new") and its new + momentum (called "V_new"). + + This operator supports two different momentum algorithms. Set the attribute "mode" to + "nesterov" if Nesterov's momentum is desired. Otherwise, set the attribute "model" to + "standard" to use standard momentum. Computation details are described subsequently. + + Let "+", "-", "*", and "/" are all element-wise operations with numpy-style broadcasting. + + Pseudo code for SG with standard momentum: + + // Add gradient of 0.5 * norm_coefficient * ||X||^2, where ||X|| is the sum of squared + // values of all elements in X. + G_regularized = norm_coefficient * X + G + + // In the first training iteration, beta should always be 1. + beta_adjusted = T > 0 ? beta : 1 + + // Compute the current momentum based on previous momentum and the current gradient. + V_new = alpha * V + beta_adjusted * G_regularized + + // Update X. + X_new = X - R * V_new + + Pseudo code for SG with Nesterov's momentum: + + // Add gradient of 0.5 * norm_coefficient * ||X||^2, where ||X|| is the sum of squared + // values of all elements in X. + G_regularized = norm_coefficient * X + G; + + // In the first training iteration, beta should always be 1. + beta_adjusted = T > 0 ? beta : 1 + + // Compute the current momentum based on previous momentum and the current gradient. + V_new = alpha * V + beta_adjusted * G_regularized; + + // Compute final update direction and then update X. + X_new = X - R * (G_regularized + alpha * V_new) + + If one assign this operators to optimize multiple inputs, for example, "X_1" and "X_2". The same + pseudo code would be extended to handle all tensors jointly. More specifically, we can view "X" as a + concatenation of "X_1" and "X_2" (of course, their gradient and accumulate gradient should + be concatenated too) and then our pseudo code becomes applicable. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
alpha : float (required)
+
The decay factor of momentum. It should be a scalar.
+
beta : float (required)
+
The coefficient of gradient in computing new momentum. It should be a scalar.
+
mode : string (required)
+
Its value should be either "nesterov" or "standard". The value "nesterov" leads to the use of Nesterov's momentum while "standard" invokes stochastic gradient method using standard momentum
+
norm_coefficient : float (required)
+
Coefficient of 0.5 * norm_coefficient * ||X||^2.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The learning rate.
+
T : T2
+
Update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
It sequentially contains the current values of optimized tensors, then their gradient tensors, and finally their momentum tensors. For example, if two tensors "X_1" and "X_2" are optimized, The expected input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", momentum of "X_1", momentum of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
It sequentially contains the new values of optimized tensors and then the new values of their momentum tensors. For example, if two tensors "X_1" and "X_2" are optimized, the output list would be [new value of "X_1," new value of "X_2" new momentum of "X_1", new momentum of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
+ diff --git a/third_party/onnx/docs/DefineDifferentiability.md b/third_party/onnx/docs/DefineDifferentiability.md new file mode 100644 index 0000000000..783ebd3b5a --- /dev/null +++ b/third_party/onnx/docs/DefineDifferentiability.md @@ -0,0 +1,108 @@ + + +# A Short Guide on the Differentiability Tag for ONNX Operators + +## Differentiability Tag +The ONNX operator schema for each operator includes a differentiability tag for each input and output. +In this document, we explain the meaning of this tag and how to ensure the correctness of the tags. +Briefly, the tag identifies the set of differentiable inputs and differentiable outputs of an operator. +The meaning of the tag is that the partial derivative of each differentiable output is defined with respect to each differentiable output. + +## Ways to Define Differentiability Tag +The differentiability definition of an operator consists of several aspects. + +- Differentiable inputs, which can be referenced in Gradient's `xs` attribute. +- Differentiable outputs, which can be referenced in Gradient's `y` attribute. +- The math equation to compute the Jacobian matrix (or tensor). If a variable (input or output) is differentiable or not is judged by math. If the Jacobian matrix (or tensor) exists, then the considered operator has some differentiable inputs and outputs. + +There are several strategies to implement auto-differentiation such as forward accumulation, backward accumulation, and dual variable. +Because most deep learning frameworks are backward-based, the reviewers should ensure the PR authors of tags provide enough details on that. +We present a couple of methods below to verify the differentiability for ONNX operator. + +### Method 1: Reuse Existing Deep Learning Frameworks +The first way is to show that the considered operator's backward operation exists in an existing framework such as Pytorch or Tensorflow. In this case, the author should provide a runnable python script which computes the backward pass of the considered operator. The author should also point out how to map the Pytorch or Tensor code to ONNX format (for example, the author can call `torch.onnx.export` to save an ONNX model). The following script shows the differentiability of ONNX Reshape using Pytorch. + +```python +import torch +import torch.nn as nn + +# A single-operator model. It's literally a Pytorch Reshape. +# Note that Pytorch Reshape can be directly mapped to ONNX Reshape. +class MyModel(nn.Module): + def __init__(self): + super(MyModel, self).__init__() + + def forward(self, x): + y = torch.reshape(x, (x.numel(),)) + y.retain_grad() + return y + +model = MyModel() + +x = torch.tensor([[1., -1.], [1., 1.]], requires_grad=True) +y = model(x) +dy = torch.tensor([1., 2., 3., 4.]) + +torch.autograd.backward([y], + grad_tensors=[dy], + retain_graph=True, + create_graph=True, + grad_variables=None) + +# This example shows the input and the output in Pytorch are differentiable. +# From the exported ONNX model below, we also see that "x" is the first input +# of ONNX Reshape and "y" the output of ONNX Reshape. Therefore, we can say +# the first input and the output of ONNX Reshape are differentiable. +print(x.grad) +print(y.grad) + +with open('model.onnx', 'wb') as f: + torch.onnx.export(model, x, f) +``` + +### Method 2: Manually Do the Math +The second way is formally proving the existence of the Jacobian matrix (or tensor) from outputs to inputs with at least two numerical examples. In this case, the reviewer should go through the math and confirm if the numerical result is correct. The author should add enough details so that any STEM graduated student can easily review it. + +For example, to show the differentiability of Add, the author may first write down its equation: +``` +C = A + B +``` +For the sake of simplicity, assume `A` and `B` are same-shape vector. +``` +A = [a1, a2]^T +B = [b1, b2]^T +C = [c1, c2]^T +``` +Here we use the symbol `^T` to denote transpose of the attached matrix or vector. +Let `X = [a1, a2, b1, b2]^T` and `Y = [c1, c2]^T` and consider Add as a function which maps `X` to `Y`. +Then, this function's Jacobian matrix is a 4-by-2 matrix, +``` +J = [[dc1/da1, dc2/da1], + [dc1/da2, dc2/da2], + [dc1/db1, dc2/db1], + [dc1/db2, dc2/db2]] + = [[1, 0], + [0, 1], + [1, 0], + [0, 1]] +``` +If +``` +dL/dC = [dL/dc1, dL/dc2]^T, +``` +then `dL/dA = [dL/da1, dL/da2]^T` and `dL/dB = [dL/db1, dL/db2]^T` can be computed from elements in +``` + [[dL/da1], [dL/da2], [dL/db1], [dL/db2]] += J * dL/dC += [[dL/dc1], [dL/dc2], [dL/dc1], [dL/dc2]] +``` +where `*` is standard matrix multiplication. +If `dL/dC = [0.2, 0.8]^T`, then `dL/dA = [0.2, 0.8]^T` and `dL/dB = [0.2, 0.8]^T`. +Notice that the procedure to compute `dL/dA` and `dL/dB` from `dL/dC` is usually called backward of an operator. +We can see backward operator of Add takes `dL/dC` as an input and produces two outputs `dL/dA` and `dL/dB`. +Consequently, all of `A`, `B`, and `C` are differentiable. +By flattening tensor into 1-D vector, this example can be extended to cover all tensors when shape broadcasting is not needed. +If broadcasting happens, the broadcasted element's gradient is the sum of all associated elements' gradient in its **non-broadcasting** case. +Let's consider the above example again. +If `B = [b]^T` becomes an 1-element vector, `B` may be broadcasted to `[b1, b2]^T` and `dL/dB = [dL/ db]^T = [dL/db1 + dL/db2]^T`. +For high-dimensional tensors, this is in fact a ReduceSum operation along all expanded axes. diff --git a/third_party/onnx/docs/DimensionDenotation.md b/third_party/onnx/docs/DimensionDenotation.md new file mode 100644 index 0000000000..2c59b653f4 --- /dev/null +++ b/third_party/onnx/docs/DimensionDenotation.md @@ -0,0 +1,51 @@ + + +# Dimension Denotation + +Dimension Denotation is an experimental attempt to give tensor axis semantic descriptions and thus types and perform verification steps based on them subsequently. + +## Motivation + +The motivation of such a mechanism can be illustrated via a simple example. In the linear neural network specification below, we assume a NCHW model input: + +``` +input_in_NCHW -> Transpose(input, perm=[0, 2, 1, 3]) -> AveragePool(input, ...) +``` + +In this neural network, a user mistakenly constructed a neural network that transposes an NCHW input to a weird NHCW format and pass through spatial pooling that assumes a NCHW input format. As clearly a mistake as it is, no existing infrastructure will report an error to the user. This is should be deeply unnerving to programmers who rely heavily on type checking as an integral part of program correctness guarantee. This proposal seeks to resolve this vacuum of proper type-checking inherent in the current paradigm of neural network specification. + +This proposal consists of three key components: Denotation Definition, Denotation Propagation and Denotation Verification, each of which will be discussed in detail. + +## Denotation Definition + +To begin with, we define a set of types for tensor types. Such types are defined based on the following principles: +1. Be fine grain enough to eliminate potential pitfalls. For instance, the above example illustrated in the motivation section mandates that we distinguish between a channel dimension and a spatial feature dimension to ensure the correctness of execution of the AveragePool op. +2. Be coarse grain enough to alleviate the mental burden of users. For instance, in the above example, there is significantly less need to distinguish between a width dimension and a height dimension because operations like pooling and convolution often do not draw a distinction between various spatial dimensions. Thus, we summarize all the spatial dimensions as feature dimensions. +3. As an important corollary of 2, be model agnostic. For instance, the semantics of feature dimensions in recurrent neural networks (RNN) and the semantics of spatial dimensions in convolutional neural network (CNN) are almost indistinguishable and therefore we permit users and developers to describe either as a feature dimension. + +Specifically, in our first proposal, we define the following set of standard denotations: + +1. `DATA_BATCH` describes a batch dimension of the training data. This corresponds to the `N` dimension in the more commonly used tensor format notation `NCHW`. +2. `DATA_CHANNEL` describes a channel dimension of the training data. This corresponds to the `C` dimension. +3. `DATA_TIME` describes a time dimension. +4. `DATA_FEATURE` describes a feature dimension. This corresponds to the `H`, `W` dimension or the feature dimension in RNN. +5. `FILTER_IN_CHANNEL` describes a filter in-channel dimension. This is the dimension that is identical (in size) to the channel dimension of the input image feature maps. +6. `FILTER_OUT_CHANNEL` describes a filter out-channel dimension. This is the dimension that is identical (in size) to the channel dimension of the output image feature maps. +7. `FILTER_SPATIAL` describes a filter spatial dimension. + +## Denotation Propagation + +Denotation Propagation happens when an operation permutes, destroys or creates dimensions with respect to its input tensor. In such scenarios, we will implement customized, operation-specific functions to infer the output tensor dimension denotation based on the input tensor dimension denotation. An example operation where denotation propagation happens is Transpose operation where the pseudocode for output dimension denotation inference can be formulated as a function of the input dimension denotation: + +``` +for i, j in enumerate(perm): + out_dim_denotaion[i] = in_dim_denotation[j] +``` + +## Denotation Verification + +Denotation Verification happens when an operation expects its input to arrive in a particular format. An example operation where denotation verification happens is AveragePool operation where the input, if annotated with dimension denotation, in the 2D case should have the denotation [`DATA_BATCH`, `DATA_CHANNEL`, `DATA_FEATURE`, `DATA_FEATURE`]. If there is a mismatch between the expected dimension denotation and the actual dimension denotation, an error should be reported. + +## Type Denotation + +See the [type denotation documentation](TypeDenotation.md) for more details on how to describe images and other types. diff --git a/third_party/onnx/docs/ExternalData.md b/third_party/onnx/docs/ExternalData.md new file mode 100644 index 0000000000..c1e53d7bef --- /dev/null +++ b/third_party/onnx/docs/ExternalData.md @@ -0,0 +1,89 @@ + + +# External Data + +## Loading an ONNX Model with External Data + +* [Default] If the external data is under the same directory of the model, simply use `onnx.load()` +```python +import onnx + +onnx_model = onnx.load('path/to/the/model.onnx') +``` + +* If the external data is under another directory, use `load_external_data_for_model()` to specify the directory path and load after using `onnx.load()` + +```python +import onnx +from onnx.external_data_helper import load_external_data_for_model + +onnx_model = onnx.load('path/to/the/model.onnx', load_external_data=False) +load_external_data_for_model(onnx_model, 'data/directory/path/') +# Then the onnx_model has loaded the external data from the specific directory +``` + +## Converting an ONNX Model to External Data +```python +import onnx +from onnx.external_data_helper import convert_model_to_external_data + +onnx_model = ... # Your model in memory as ModelProto +convert_model_to_external_data(onnx_model, all_tensors_to_one_file=True, location='filename', size_threshold=1024, convert_attribute=False) +# Must be followed by save_model to save the converted model to a specific path +onnx.save_model(onnx_model, 'path/to/save/the/model.onnx') +# Then the onnx_model has converted raw data as external data and saved to specific directory +``` + +## Converting and Saving an ONNX Model to External Data +```python +import onnx + +onnx_model = ... # Your model in memory as ModelProto +onnx.save_model(onnx_model, 'path/to/save/the/model.onnx', save_as_external_data=True, all_tensors_to_one_file=True, location='filename', size_threshold=1024, convert_attribute=False) +# Then the onnx_model has converted raw data as external data and saved to specific directory +``` + +## onnx.checker for Models with External Data + +### Models with External Data (<2GB) + +Current checker supports checking models with external data. Specify either loaded onnx model or model path to the checker. + +### Large models >2GB +However, for those models larger than 2GB, please use the model path for onnx.checker and the external data needs to be under the same directory. + +```python +import onnx + +onnx.checker.check_model('path/to/the/model.onnx') +# onnx.checker.check_model(loaded_onnx_model) will fail if given >2GB model +``` + +## TensorProto: data_location and external_data fields + +There are two fields related to the external data in TensorProto message type. + +### data_location field +`data_location` field stores the location of data for this tensor. Value MUST be one of: +* `MESSAGE` - data stored in type-specific fields inside the protobuf message. +* `RAW` - data stored in raw_data field. +* `EXTERNAL` - data stored in an external location as described by external_data field. +* `value` not set - legacy value. Assume data is stored in raw_data (if set) otherwise in message. + +### external_data field +`external_data` field stores key-value pairs of strings describing data location + +Recognized keys are: + +* `"location"` (required) - file path relative to the filesystem directory where the ONNX protobuf model was stored. Up-directory path components such as .. are disallowed and should be stripped when parsing. +* `"offset"` (optional) - position of byte at which stored data begins. Integer stored as string. Offset values SHOULD be multiples 4096 (page size) to enable mmap support. +* `"length"` (optional) - number of bytes containing data. Integer stored as string. +* `"checksum"` (optional) - SHA1 digest of file specified in under 'location' key. + +After an ONNX file is loaded, all `external_data` fields may be updated with an additional key `("basepath")`, which stores the path to the directory from which he ONNX model file was loaded. + +### External data files +Data stored in external data files will be in the same binary bytes string format as is used by the `raw_data` field in current ONNX implementations. + +Reference +https://github.com/onnx/onnx/pull/678 diff --git a/third_party/onnx/docs/Hub.md b/third_party/onnx/docs/Hub.md new file mode 100644 index 0000000000..9bd9c40e49 --- /dev/null +++ b/third_party/onnx/docs/Hub.md @@ -0,0 +1,235 @@ + + +# ONNX Model Hub + +The ONNX Model Hub is a simple and fast way to get started with state of the art pre-trained +ONNX models from the [ONNX Model Zoo](https://github.com/onnx/models). Furthermore, this allows researchers and model +developers the opportunity to share their pre-trained models with the broader community. + +## Install + The ONNX Model hub will be included in the `onnx` package from version 1.11 onwards. + To use the hub before the 1.11 release please install from the weekly build: + +```shell script +pip install -i https://test.pypi.org/simple/ onnx-weekly +``` + +## Basic usage +The ONNX Model Hub is capable of downloading, listing, and querying trained models from any git repository, + and defaults to the official [ONNX Model Zoo](https://github.com/onnx/models). In this section we demonstrate some of the basic functionality. + +First please import the hub using: +```python +from onnx import hub +``` + +#### Downloading a model by name: + +The `load` function will default to searching the model zoo for the latest model with a matching name, + download this model to a local cache, and load the model into a `ModelProto` + object for use with the ONNX runtime. + +```python +model = hub.load("resnet50") +``` + + +#### Downloading from custom repositories: + +Any repository with the proper structure can be a ONNX model hub. To download from other hubs, + or to specify a particular branch or commit on the main model hub one can provide the `repo` parameter: + +```python +model = hub.load("resnet50", repo='onnx/models:771185265efbdc049fb223bd68ab1aeb1aecde76') +``` + +#### Listing and inspecting Models: + +The model hub provides APIs for querying the model zoo to learn more about available models. + This does not download the models, but rather just returns information about models matching the given arguments + + ```python +# List all models in the onnx/models:master repo +all_models = hub.list_models() + +# List all versions/opsets of a specific model +mnist_models = hub.list_models(model="mnist") + +# List all models matching a given "tag" +vision_models = hub.list_models(tags=["vision"]) +``` + +One can also inspect the metadata of a model prior to download with the `get_model_info` function: + +```python +print(hub.get_model_info(model="mnist", opset=8)) +``` +This will print something like: +``` +ModelInfo( + model=MNIST, + opset=8, + path=vision/classification/mnist/model/mnist-8.onnx, + metadata={ + 'model_sha': '2f06e72de813a8635c9bc0397ac447a601bdbfa7df4bebc278723b958831c9bf', + 'model_bytes': 26454, + 'tags': ['vision', 'classification', 'mnist'], + 'io_ports': { + 'inputs': [{'name': 'Input3', 'shape': [1, 1, 28, 28], 'type': 'tensor(float)'}], + 'outputs': [{'name': 'Plus214_Output_0', 'shape': [1, 10], 'type': 'tensor(float)'}]}, + 'model_with_data_path': 'vision/classification/mnist/model/mnist-8.tar.gz', + 'model_with_data_sha': '1dd098b0fe8bc750585eefc02013c37be1a1cae2bdba0191ccdb8e8518b3a882', + 'model_with_data_bytes': 25962} +) +``` + + +## Local Caching + +The ONNX Model hub locally caches downloaded models in a configurable location +so that subsequent calls to `hub.load` do not require network connection. + +#### Default cache location +The hub client looks for the following default cache locations in this order: + +1) `$ONNX_HOME/hub` if the `ONNX_HOME` environment variable is defined +2) `$XDG_CACHE_HOME/hub` if the `XDG_CACHE_HOME` environment variable is defined +3) `~/.cache/onnx/hub` where `~` is the user home directory + +#### Setting the cache location +To manually set the cache location use: + +```python +hub.set_dir("my/cache/directory") +``` + +Additionally one can inspect the cache location with: + +```python +print(hub.get_dir()) +``` + +#### Additional cache details + +To clear the model cache one can simply delete the cache directory using a python utility like `shutil` or `os`. +Furthermore one can choose to override the cached model using the `force_reload` option: + +```python +model = hub.load("resnet50", force_reload=True) +``` + +We include this flag for completeness but note that models in the cache are disambiguated with sha256 hashes so + the force_reload flag is not necessary for normal use. +Finally we note that the model cache directory structure will mirror the directory structure +specified by the `model_path` field of the manifest, but with file names disambiguated with model SHA256 Hashes. + +This way, the model cache is human readable, can disambiguate between multiple versions of models, + and can re-use cached models across different hubs if they have the same name and hash. + +## Architecture + +![ONNX Hub Architecture](images/onnx_hub_arch.svg) + +The ONNX Hub consists of two main components, the client and the server. + The client code currently is included in the `onnx` package and can be pointed at a + server in the form of a hosted `ONNX_HUB_MANIFEST.json` within a github repository + such as [the one in the ONNX Model Zoo](https://github.com/onnx/models/blob/master/ONNX_HUB_MANIFEST.json). + This manifest file is a JSON document which lists all models and their metadata + and is designed to be programming language agnostic. An example of a well formed model manifest entry is as follows: + + ```json +{ + "model": "BERT-Squad", + "model_path": "text/machine_comprehension/bert-squad/model/bertsquad-8.onnx", + "onnx_version": "1.3", + "opset_version": 8, + "metadata": { + "model_sha": "cad65b9807a5e0393e4f84331f9a0c5c844d9cc736e39781a80f9c48ca39447c", + "model_bytes": 435882893, + "tags": ["text", "machine comprehension", "bert-squad"], + "io_ports": { + "inputs": [ + { + "name": "unique_ids_raw_output___9:0", + "shape": ["unk__475"], + "type": "tensor(int64)" + }, + { + "name": "segment_ids:0", + "shape": ["unk__476", 256], + "type": "tensor(int64)" + }, + { + "name": "input_mask:0", + "shape": ["unk__477", 256], + "type": "tensor(int64)" + }, + { + "name": "input_ids:0", + "shape": ["unk__478", 256], + "type": "tensor(int64)" + } + ], + "outputs": [ + { + "name": "unstack:1", + "shape": ["unk__479", 256], + "type": "tensor(float)" + }, + { + "name": "unstack:0", + "shape": ["unk__480", 256], + "type": "tensor(float)" + }, + { + "name": "unique_ids:0", + "shape": ["unk__481"], + "type": "tensor(int64)" + } + ] + }, + "model_with_data_path": "text/machine_comprehension/bert-squad/model/bertsquad-8.tar.gz", + "model_with_data_sha": "c8c6c7e0ab9e1333b86e8415a9d990b2570f9374f80be1c1cb72f182d266f666", + "model_with_data_bytes": 403400046 + } +} +``` +These important fields are: + +- `model`: The name of the model used for querying +- `model_path`: The relative path of the model stored in Git LFS. +- `onnx_version`: The ONNX version of the model +- `opset_version`: The version of the opset. The client downloads the latest opset if left unspecified. +- `metadata/model_sha`: Optional model sha specification for increased download security +- `metadata/tags`: Optional high level tags to help users find models by a given type + +All other fields in the `metadata` field are optional for the client but provide important details for users. + +## Adding to the ONNX Model Hub + + +#### Contributing an official model + +The simplest way to add a model to the official `onnx/models` version model hub is to follow +[these guidelines](https://github.com/onnx/models/blob/master/contribute.md) to contribute your model. Once contributed, +ensure that your model has a markdown table in its `README.md` +([Example](https://github.com/onnx/models/tree/master/vision/classification/mobilenet)). The model hub + manifest generator will pull information from these markdown tables. To run the generator: + + ```shell script +git clone https://github.com/onnx/models.git +git lfs pull --include="*" --exclude="" +cd models/workflow_scripts +python generate_onnx_hub_manifest.py +``` + +Once a new manifest is generated add, submit it in a pull request to ``onnx/models`` + +#### Hosting your own ONNX Model Hub + +To host your own model hub, add an `ONNX_HUB_MANIFEST.json` to the top level of your github repository + ([Example](https://github.com/onnx/models/blob/master/ONNX_HUB_MANIFEST.json)). At a minimum your + manifest entries should include the fields mentioned in + the [Architecture Section](Hub.md#Architecture) of this document. + Once committed, check that you can download models + using the "Downloading from custom repositories" section of this doc. \ No newline at end of file diff --git a/third_party/onnx/docs/IR.md b/third_party/onnx/docs/IR.md new file mode 100644 index 0000000000..3729b3bb88 --- /dev/null +++ b/third_party/onnx/docs/IR.md @@ -0,0 +1,474 @@ + + +Open Neural Network Exchange Intermediate Representation (ONNX IR) Specification +========= + +__Purpose__ + +This document contains the normative specification of the semantics of ONNX. + +The `.proto` and `.proto3` files found under the [onnx folder](/onnx/) form the normative specification of its syntax authored in the [Protocol Buffers](https://developers.google.com/protocol-buffers) definition language. Commentary found in the `.proto` and `.proto3` files are intended to improve readability of those files, but are not normative if they conflict with this document. Such conflicts should be reported as documentation bugs. + +__Notes on model validation__ + +A [tool](../onnx/checker.py) is available to perform general validation of models against this specification. It is implemented in C++ with a Python command-line wrapper. + +__Notes on language in this and all related documents__: + +1. The use of SHOULD, MUST, MAY and so on in this document is consistent with [RFC 2119](https://www.ietf.org/rfc/rfc2119.txt). + +2. The use of 'list' shall denote an ordered collection of items, 'set' shall denote an unordered collection of unique elements, and 'bag' an unordered collection of possibly non-unique elements. + +## Components + +ONNX is an open specification that consists of the following components: + +1) A definition of an extensible computation graph model. + +2) Definitions of standard data types. + +3) Definitions of built-in operators. + +#1 and #2 together make up the ONNX Intermediate Representation, or 'IR', specification which is covered herein; the built-in operators are covered in documents listed at the end. Specifically, built-in operators are divided into a set of primitive operators and functions. A function is an operator whose semantics is formally expressed via expansion into a sub-graph (called the function body) using other operators (and functions). Functionality-wise, an ONNX compatible framework or runtime may inline a function body to execute it if it does not have corresponding implementation of the function. + +There are two official ONNX variants; the main distinction between the two is found in the default operator sets. __ONNX-ML__ extends the __ONNX__ operator set with ML algorithms that are not based on neural networks. + +Up to IR version 6, the ONNX specification and model format addressed only inference (also known as scoring). Starting from IR version 7, the ONNX specification and model format also support training. An ONNX training model is an extension of the inference-model. An inference-only runtime can consume a training model ignoring the training-related extensions. However, an inference-only model may enable a representation that is more optimal for inference purposes than a training model. + +## Runtime Agnostic + +ONNX does not pre-suppose or imply any particular method of runtime implementation. + +For example, an implementation may consist of a rich runtime which interprets the model; it may be a code generator that translates the model in its entirety to executable code for some target programming language; it may be a hardware implementation; it may be a combination of two or three of those. + +Nothing in this specification should be construed as advocating one implementation approach over any other; any comments on the inner workings of concrete implementations are to be interpreted as examples. + +## ONNX Versioning + +The IR specification, individual models, and operator sets are all versioned. Furthermore, each individual operator indicates which version of its containing operator set it was introduced or stabilized in. + +Version numbers can be used as a simple number, or used to encode [semantic versions](https://semver.org/)(AKA SemVer). If using semantic versions, the convention is to use the two most significant bytes for the major number, the next two bytes for the minor number, and the least significant four bytes for the patch/build/bugfix number. When using semantic versioning, at least one of the major/minor numbers MUST be non-zero. + +The IR specification uses simple monotonically increasing numbers for its versions. The valid IR versions are defined by the `onnx.Version` enumeration in [onnx.proto](/onnx/onnx.proto). + +Operator sets use a simple version number. Each operator set version represents a snapshot of the set of operators, and their semantics at a particular point in time. + +This specification does not provide guidance on what versioning scheme model producers should be using. + +More details on conventions and best practices for versioning of IR, operator sets, and models can be found in [Versioning](Versioning.md). + +## Extensible computation graph model + +ONNX specifies the portable, serialized format of a computation graph. It does not have to be the form a framework chooses to use internally. For example, an implementation may represent the model differently in memory if it is more efficient to manipulate during optimization passes. + +An implementation MAY extend ONNX by adding operators expressing semantics beyond the standard set of operators that all implementations MUST support. The mechanism for this is adding operator sets to the `opset_import` property in a model that depends on the extension operators. + +### Models + +The top-level ONNX construct is a ‘Model.’, and is represented in protocol buffers as the type `onnx.ModelProto` + +The main purpose of the model structure is to associate metadata with a graph which contains all the executable elements. The metadata is used when first reading the model file, giving an implementation the information it needs in order to determine whether it will be able to execute the model, generate logging messages, error reports, etc. Further, the metadata is useful to tools, such as IDEs and model galleries, which need it for informing humans about a given model’s purpose and characteristics. + +Each model has the following components: + +|Name|Type|Description| +|---|---|---| +|ir_version|int64|The ONNX version assumed by the model.| +|opset_import|OperatorSetId|A collection of operator set identifiers made available to the model. An implementation must support all operators in the set or reject the model.| +|producer_name|string|The name of the tool used to generate the model.| +|producer_version|string|The version of the generating tool.| +|domain|string|A reverse-DNS name to indicate the model namespace or domain, for example, 'org.onnx'| +|model_version|int64|The version of the model itself, encoded in an integer.| +|doc_string|string|Human-readable documentation for this model. Markdown is allowed.| +|graph|Graph|The parameterized graph that is evaluated to execute the model.| +|metadata_props|map|Named metadata values; keys should be distinct.| +|training_info|TrainingInfoProto[]|An optional extension that contains information for training.| +|functions|FunctionProto[]|An optional list of functions local to the model.| + + Models MUST specify a domain and use reverse domain names based on the responsible organization's identity, the same convention that is used for [naming Java packages](https://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html). + +__Note: Exploring an ONNX file__ + +You can use the `protoc` tool that is part of the Protocol Buffers distribution to examine the contents of an ONNX file, you do so like this: + +``` +$ protoc --decode=onnx.ModelProto onnx.proto < yourfile.onnx +``` + +Where [onnx.proto](/onnx/onnx.proto) is the file that is part of this repository. + +Alternatively, you can use a tool like [Netron](https://github.com/lutzroeder/netron) to explore the ONNX file. + +### Model Semantics + +The semantics of an inference-model is a _stateless function_ (except possibly for the state used for random-number generation). Thus, whenever an inference-model (without random-generator operations) is used to perform inference on the same input, it is expected to produce the same output. + +The semantics of a training model is that of a _stateful object_, with the state consisting of the current values of trained-weights (and any other auxiliary state required, such as momentum, for example, used by the learning algorithm). Specifically, its semantics is captured via three methods: an initialization method (which is used to initialize or reset the values of state variables), a training step method (to train using a batch of input-output pairs), and an inference method to perform inference using the current values of the learned weights. The first two methods update the state of the object, while the third method is side-effect-free. + +### Optional Metadata + +The 'metadata_props' field in the model is available for any kind of optional metadata that a tool or model developer chooses to place there. The following are the defined “standard†optional metadata properties of a model. + +Name|Type|Format|Description +|---|---|---|---| +model_author|string|A comma-separated list of names.|The personal name of the author(s) of the model, and/or their organizations. +model_license|string|Name or URL.|The well-known name or URL of the license under which the model is made available. + +### Operator Set Identifiers + +Each operator set is uniquely identified by a (domain, version) pair. + +Name|Type|Description +|---|---|---| +domain|string|The domain of the operator set being identified. +version|int64|The version of the operator set being identified. Same as 'opset_version' in the operator set. + +The operator set version is a simple integer value that is monotonically increased as new versions of the operator set are published. + +Operator sets other than the default operator set MUST specify a domain and SHOULD use reverse domain names based on the responsible organization's identity, the same convention that is used for [naming Java packages](https://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html). + +### Operator Sets + +Each model MUST explicitly name the operator sets that it relies on for its functionality. Operator sets define the available operators and their version. Each model defines the imported operator sets by their domains. All models implicitly import the default ONNX operator set. + +Each operator set SHALL be defined in a separate document, also using protobuf as the serialization format. How operator set documents are found at runtime is implementation-dependent. + +__Note: As of the publication of this document, no ONNX implementation is known to process operator set documents.__ + +The properties of an operator set are: + +Name|Type|Description +|---|---|---| +magic|string|The value ‘ONNXOPSET’ +ir_version|int32|The ONNX version corresponding to the operators. +ir_version_prerelease|string|The prerelease component of the SemVer of the IR. +ir_build_metadata|string|The build metadata of this version of the operator set. +domain|string|The domain of the operator set. Must be unique among all sets. +opset_version|int64|The version of the operator set. +doc_string|string|Human-readable documentation for this operator set. Markdown is allowed. +operator|Operator[]|The operators contained in this operator set. + +The operator set version is a simple integer value that is monotonically increased as new versions of the operator set are published. + +Operator sets other than the default operator set MUST specify a domain and SHOULD use reverse domain names based on the responsible organization's identity, the same convention that is used for [naming Java packages](https://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html). + +### Operators + +Each operator used within a graph MUST be explicitly declared by one of the operator sets imported by the model. + +The properties of an operator definition are: + +Name|Type|Description +|---|---|---| +op_type|string|The name of the operator (case sensitive), as used in graph nodes. MUST be unique within the operator set’s domain. +since_version|int64|The version of the operator set when this operator was introduced. +status|OperatorStatus|One of ‘EXPERIMENTAL’ or ‘STABLE.’ +doc_string|string|A human-readable documentation string for this operator. Markdown is allowed. + +The version value MUST be the same value as the operator set version when the operator was first published. Subsequent versions of the operator set MUST NOT alter the signature or semantics of the operator once published as STABLE. + +The ‘status’ property indicates whether the syntax, semantics, or presence of the operator is in an experimental or stable stage. Once an operator is published as STABLE, it’s syntax and semantics MUST NOT change in subsequent versions of the operator set. + +There are two distinct ways to pass information to operators – inputs and attributes. Inputs represent graph inputs or values computed elsewhere in the graph, while attributes are used for values that are constants in the graph. This distinction may be highly relevant to achieving good performance for some implementations, while completely irrelevant to others. + +### Graphs + +A graph is used to describe a side-effect-free computation (function). +A serialized graph is comprised of a set of metadata fields, a list of model parameters, and a list of computation nodes. + +Each computation dataflow graph is structured as a topologically sorted list of nodes that form a graph, which MUST be free of cycles. Each node represents a call to an operator or a model local function. Each node has zero or more inputs and one or more outputs. + +Graphs have the following properties: + +|Name|Type|Description| +|---|---|---| +name|string|The name of the model graph. +node|Node[]|A list of nodes, forming a partially ordered computation graph based on input/output data dependencies. It is in topological order. +initializer|Tensor[]|A list of named tensor values. When an initializer has the same name as a graph input, it specifies a default value for that input. When an initializer has a name different from all graph inputs, it specifies a constant value. The order of the list is unspecified. +doc_string|string|Human-readable documentation for this model. Markdown is allowed. +input|ValueInfo[]|The input parameters of the graph, possibly initialized by a default value found in ‘initializer.’ +output|ValueInfo[]|The output parameters of the graph. Once all output parameters have been written to by a graph execution, the execution is complete. +value_info|ValueInfo[]|Used to store the type and shape information of values that are not inputs or outputs. + +ValueInfo has the following properties: + +Name|Type|Description +|---|---|---| +name|string|The name of the value/parameter. +type|Type|The type of the value **including shape information**. +doc_string|string|Human-readable documentation for this value. Markdown is allowed. + +Each main (top-level) graph MUST define the names, types and shapes of its inputs and outputs, which are specified as ‘value info’ structures. The main graph inputs and outputs are required to have a shape, indicating the rank, even though the exact dimensions need not be specified. + +Nested subgraphs (specified as attribute values) MUST define the names of its inputs and outputs +and MAY define the types of its inputs and outputs. + +Each graph MUST specify a name. + +The graph MUST adhere to single static assignment (SSA) for all node outputs; this means that all node output names MUST be unique within a graph. + +Graphs SHOULD be populated with documentation strings, which MAY be interpreted using GitHub-style markdown syntax. HTML and other text-markup languages MAY NOT be used in documentation strings. + +### Names Within a Graph + +All names MUST adhere to [C90 identifier syntax rules](https://en.cppreference.com/w/c/language/identifier). + +Names of nodes, inputs, outputs, initializers, and attributes are organized into several namespaces. Within a namespace, each name MUST be unique for each given graph. Please see below for further clarification in the case where a graph contains nested subgraphs (as attribute values). + +The namespaces are: + +Namespace|Description +|---|---| +Attribute|The names of attributes of an operator. Unique for each operator. +Value|The names of values – node inputs & outputs, tensor values (if named), graph inputs, outputs. +Node|The names of graph nodes. +Graph|The names of graphs within a domain, unique within the model domain. +Operator|The names of operators within a domain. +Shape|The names of tensor shape variables – scoped to the value information records of a graph, which is where shape variables occur. + + +### Nodes + +Computation nodes are comprised of a name, the name of an operator that it invokes, a list of named inputs, a list of named outputs, and a list of attributes. + +Input and outputs are positionally associated with operator inputs and outputs. Attributes are associated with operator attributes by name. + +They have the following properties: + +Name|Type|Description +|---|---|---| +name|string|An optional name of the node, used for diagnostic purposes only. +input|string[]|Names of the values used by the node to propagate input values to the node operator. It must refer to either a graph input, a graph initializer or a node output. +output|string[]|Names of the outputs used by the node to capture data from the operator invoked by the node. It either introduces a value in the graph or refers to a graph output. +op_type|string|The symbolic identifier of the operator to invoke. +domain|string|The domain of the operator set that contains the operator named by the op_type. +attribute|Attribute[]|Named attributes, another form of operator parameterization, used for constant values rather than propagated values. +doc_string|string|Human-readable documentation for this value. Markdown is allowed. + +A name belonging to the Value namespace may appear in multiple places, namely as a graph input, a graph initializer, a graph output, a node input, or a node output. The occurrence of a name as a graph input, a graph initializer, or as a node output is said to be a definition and the occurrence of a name as a node input or as a graph output is said to be a use. + +A value name used in a graph must have a unique definition, with the exception that the same name MAY appear in both the graph input list and graph initializer list. (Further exceptions apply in the presence of nested subgraphs, as described later.) + +When a name appears in both the initializer list and the graph input list, a runtime MAY allow a caller to specify a value for this (input) name overriding the value specified in the initializer and a runtime MAY allow users to omit specifying a value for this (input) name, choosing the value specified in the initializer. Names of constants that are not meant to be overridden by the caller should appear only in the initializer list and not in the graph input list. In models with IR version >= 4, in nested subgraphs used as attribute values, users MUST NOT use the same name as both a subgraph initializer and subgraph input unless the corresponding op's specification explicitly allows it. In models with IR version <= 3, users MAY use the same name as both a subgraph initializer and subgraph input, but this is restricted to support constants via initializers that are not intended to correspond to any actual inputs passed from the node into the subgraph. In particular, the control-flow operator semantics determines the set of inputs supplied to the execution of the subgraph, and these input names MUST NOT appear as subgraph initializers. Subgraph initializer names must appear in the graph input list _after_ the actual inputs. This allows the actual inputs and formal inputs to be matched positionally. + +Edges in the computation graph are established by outputs of one node being referenced by name in the inputs of a subsequent node. + +The outputs of a given node introduce new names into the graph. The values of node outputs are computed by the node's operator. Node inputs MAY refer to node outputs, graph inputs, and graph initializers. When the name of a node output coincides with the name of a graph output, the graph output's value is the corresponding output value computed by that node. A node input in a nested subgraph MAY refer to names introduced in outer graphs (as node outputs, graph inputs, or graph initializers). + +The graph MUST use single static assignment for all node outputs, which means that all node output names MUST be unique within a graph. In the case of a nested subgraph, a node output name MUST be distinct from the names from the outer scopes that are visible in the nested subgraph. + +Node dependencies MUST NOT create cycles in the computation graph. + +The number of inputs and outputs in a node, their types, the set of attributes specified in a node and their types MUST satisfy the constraints imposed by the signature of the node’s operator. + +The list of nodes defining the top-level computation graph MUST be ordered topologically; that is, if node K follows node N in the graph, none of the data inputs of N may refer to outputs of K. + +Node attributes are used to pass literal (static) values to operators. + +#### Input and Output Values + +The representation distinguishes between two kinds of values: attribute values, which are statically known, and input/output values. The types of values permitted in the two cases are different. + +Input and output values are found as graph inputs, outputs, and initializers, and as node inputs and outputs. Their values are determined at runtime, either by the code that initiates model execution, or by operators computing output values. + +#### Attributes + +Attribute values are only found in nodes, passed to operators by name association. Attribute values are runtime constants, in that their values are determined when a model graph is constructed and therefore not computed at runtime. A common use for attributes is to represent coefficients established during model training. + +Attributes have the following properties: + +Name|Type|Description +|---|---|---| +name|string|The name of the attribute. Must be unique among attributes, inputs, and outputs for any given operator and node. +doc_string|string|Human-readable documentation for this value. Markdown is allowed. +type|AttributeType|The type of the attribute, determining which of the remaining fields is used to hold the value of the attribute. +f|float|A 32-bit floating-point value. +i|int64|A 64-bit integer value. +s|byte[]|UTF-8 string. +t|Tensor|A tensor value. +g|Graph|A graph. +floats|float[]|A list of 32-bit floating-point values. +ints|int64[]|A list of 64-bit integer values. +strings|byte[][]|A list of UTF-8 strings. +tensors|Tensor[]|A list of tensor values. +graphs|Graph[]|A list of graphs. + +The properties ‘name’ and ‘type’ are required on all attributes, and ‘doc_string’ SHOULD be used on all attributes. An attribute MUST have only one of the value-carrying properties. + + +#### Variadic Inputs and Outputs + +The last input or output of an operator MAY be marked as variadic. For example, the operator 'Max()' can be used to compute the maximum of a varying number of input values. A variadic operator has a minimum arity, which specifies the minimum number of operands that must be specified. + +For each variadic operator input, N or more node inputs must be specified where N is the minimum arity of the operator. For each variadic operator output, N or more node outputs must be specified where N is the minimum arity of the operator. + +#### Optional Inputs and Outputs + +Some operators have inputs that are marked as optional, which means that a referring node MAY forgo providing values for such inputs. + +Some operators have outputs that are optional. When an actual output parameter of an operator is not specified, the operator implementation MAY forgo computing values for such outputs. + +There are two ways to leave an optional input or output unspecified: the first, available only for trailing inputs and outputs, is to simply not provide that input; the second method is to use an empty string in place of an input or output name. + +Each node referring to an operator with optional outputs MUST provide a name for each output that is computed and MUST NOT provide names for outputs that are not computed. + +#### External Tensor Data + +The raw data for large constant tensors, such as initializers, MAY be serialised in a separate file. In such a case, the tensor MUST provide the filename relative to the model file and MUST NOT use the value fields. It MAY provide a byte offset and length within that file. It MAY also specify a SHA1 digest of the file. One file MAY contain the data for multiple tensors. + +More details can be found in [External Data](ExternalData.md). + +## Standard data types + +There are two official ONNX variants; the main distinction between the two is found in the supported types and the supported operators. + +With respect to supported types, both __ONNX__ and __ONNX-ML__ definition recognize tensors, sparse tensors, sequences, maps, and optionals as input and output types. Sequences and maps were supported from the IR version 6 (ONNX 1.6.0 release). Optional type was supported from IR vesion 8 (ONNX 1.10.0 release). + +The following data types are supported by ONNX for inputs and outputs of graphs and nodes as well as the initializers of a graph. + +Primitive numeric, string, and Boolean types MUST be used as elements of tensors. + +### Tensor Definition + +Tensors are a generalization of vectors and matrices; whereas vectors have one dimension, and matrices two, tensors can have any number of dimensions, including zero. A zero-dimensional tensor is logically equivalent to a scalar value. + +Mathematically, a tensor can be defined as a pair of sequences/lists (V, S) where S is the shape of the tensor (a list of non-negative integers) and V is a list of values with length equal to the product of the dimensions in S. Two tensors (V, S) and (V', S') are equal if and only if V = V' and S = S'. The length of S is referred to as the rank. + + - If S has length 0, V must have length 1, since the empty product is defined to be 1. In this case, the tensor represents a scalar. + - S can contain dimensions of value 0. If any dimensions are 0, V must have length 0. + - If S has length 1, V has length equal to the single dimension in S. In this case, the tensor represents a vector. + - A tensor representing a vector of length 1 has shape [1], while a tensor representing a scalar has shape []. They both have a single element, but scalars are _not_ vectors of length 1. + +A tensor's shape S is a list but can be represented as a tensor with values S and shape [R] where R is the rank of the tensor. + + - For a tensor (V, S), the tensor representing its shape is (S, [R]). + - The shape of a scalar is []. Represented as a tensor, [] has shape [0]. + +#### Representation + +It is common to represent a tensor as a nested list. This generally works fine, but is problematic when zero dimensions are involved. A tensor of shape (5, 0) can be represented as [[], [], [], [], []], but (0, 5) is represented as [] which loses the information that the second dimension is 5. + + - A nested list is not a complete representation of a tensor with dimensions of value zero. + +### Tensor Element Types + +|Group|Types|Description| +|---|---|---| +Floating Point Types|float16, float32, float64|Values adhering to the IEEE 754-2008 standard representation of floating-point data. +Signed Integer Types|int8, int16, int32, int64|Signed integers are supported for 8-64 bit widths. +Unsigned Integer Types|uint8, uint16|Unsigned integers of 8 or 16 bits are supported. +Complex Types|complex64, complex128|A complex number with either 32- or 64-bit real and imaginary parts. +Other|string|Strings represent textual data. All strings are encoded using UTF-8. +Other|bool|Boolean values represent data with only two values, typically true and false. + +### Input / Output Data Types + +The following types are used to define the types of graph and node inputs and outputs. + +|Variant | Type | Description | +|---|---|---| +ONNX|dense tensors|Represents a Tensor. See definition above. +ONNX|sequence|Sequences are dense, ordered, collections of elements that are of homogeneous types. +ONNX|map|Maps are associative tables, defined by a key type and a value type. +ONNX|optional|Optionals are wrappers that may contain an element of tensor, sequence, or map type, or may be empty (containing none). [Details](ONNXTypes.md) + +#### Static tensor shapes + +In addition to element type, tensor types have a **static** shape. The static shape of a tensor variable is related to, but different from, the runtime (dynamic) shape of a tensor value. A static tensor shape is a list of records that indicates whether the tensor is a vector, a matrix, or a higher-dimensional value. For example, a 100x100 matrix has the shape [100,100]. + +The static shape is defined by 'TensorShapeProto': + +``` +message TensorShapeProto { + message Dimension { + oneof value { + int64 dim_value = 1; + string dim_param = 2; + }; + }; + repeated Dimension dim = 1; +} +``` +Which is referenced by the Tensor type message: + +``` + message Tensor { + optional TensorProto.DataType elem_type = 1; + optional TensorShapeProto shape = 2; + } +``` + +The empty list of dimension sizes, [], is a valid tensor shape, denoting a zero-dimension (scalar) value. A zero-dimension tensor is distinct from a tensor of unknown dimensionality, which is indicated by an absent 'shape' property in the Tensor message. When the shape property is absent in the type of a value (including node input), +it indicates that the corresponding runtime value may have any shape. This sub-section describes how to interpret a missing-shape or a shape with missing dimensions etc. However, specific usage contexts may impose further constraints on a type and shape. +For example, the inputs and outputs of a model (top-level graph) are required to *have* a shape, indicating the rank of inputs and outputs, +even though the exact dimensions need not be specified. + +Each size in the list MAY be expressed as an integral value or as a "dimension variable," a string denoting that the actual size of the dimension is not statically constrained to a particular number. This is useful for declaring interfaces that care about the number of dimensions, but not the exact size of each dimension. A dimension MAY have neither dim_value nor dim_param set. Such a dimension represents an unknown dimension unrelated to other unknown dimensions. + +For example, a NxM matrix would have the shape list [N,M]. + +The name of each dimension variable MUST adhere to [C90 identifier syntax rules](https://en.cppreference.com/w/c/language/identifier). + +Currently, dimension variables are not scoped. A dimension variable "N" represents the same value across the entire graph in a model. For example, if the graph has two inputs X and Y each with shape ["N"], then at runtime the values passed in for X and Y MUST be tensors of rank 1 with the same dimension. Nested sub-graphs currently share the same scope for dimension variables as the main-graph. This allows a model to relate the dimensions of tensors inside the subgraph to the dimensions of tensors in the outer graph. + +ONNX supports types such as Sequences of Tensors. The global scoping of dimension variables means that a variable with type "Sequence" represents a sequence of tensors that *all have the same shape*. The dimension variables M or N must be omitted from the above type if that dimension does not have a fixed size across all tensors in the sequence. The entire shape must be omitted from the type if different tensors in the sequence may have different ranks. + +For example, a graph that performs matrix cross-product may be defined as taking two inputs of shape [K,M] and [M,N], and producing an output of shape [K,N]. + +Shapes MAY be defined using a combination of integers and variables. + +_Historical Notes_: The following extensions were considered early on, but were never implemented or supported. +* The use of an empty string (as a dimension variable) to denote an unknown dimension not related to any other dimension. This was discarded in favor of using a Dimension with neither dim_value nor dim_param set. +* The use of the string "\*" (as a dimension variable) to denote a sequence of zero or more dimensions of unknown cardinality. This is not supported. In the current implementation, the number of dimensions in a shape MUST represent the rank of the tensor. A tensor of unknown rank is represented using a TypeProto::Tensor object with no shape, which is legal. +* A scoping mechanism to allow dimension variables that are local to a sub-graph (such as the body of a loop) may be useful, but is not currently supported. +* ONNX supports types such as Sequences of Tensors. A scoping mechanism for the dimension variables local to a type may be useful to distinguish between the following two types: a sequence of square matrices (of differing sizes) vs a sequence of square matrices (all of same size). This is not currently supported. + +### Attribute Types + +The type system used for attributes is related to but slightly different from that used for of inputs and outputs. Attribute values may be a dense tensor, sparse tensor, a scalar numerical value, a string, a graph, or repeated values of one of the above mentioned types. + +## Training Related Information + +Training related information is described by one or more instances of _TrainingInfoProto_ contained in a model. Each TrainingInfoProto contains information describing both an initialization step and a training step. + +The initialization step is described using a Graph (TrainingInfoProto.initialization) and an initialization-binding map (TrainingInfoProto.initialization_binding). The initialization step is performed by evaluating the Graph, and assigning the outputs produced by the Graph to the _state variables_ of the training model as specified in the initialization-binding. The initialization-binding is conceptually a map, specified as a list of key-value pairs, where each key is the name of a state variable, and the value is the name of an output of the (initialization) Graph. Each name specified as a key in the binding MUST be the name of an initializer that appears in the main inference graph (i.e., in ModelProto.graph.initializer) or the name of an initializer that appears in TrainingInfoProto.algorithm.initializer. Each name specified as a value in the binding MUST be the name of an output of the TrainingInfoProto.initialization graph. Key values specified in the repeated initialization_binding field MUST be unique. + +The training step is similarly described using a Graph (TrainingInfoProto.algorithm) and an update-binding map (TrainingInfoProto.update_binding). The training step is performed by evaluating the Graph and assigning the outputs produced by the Graph to the state variables as specified in the update-binding. The constraints and description presented above for the initialization apply to the training step as well. + +Thus, the state variables of the training model consist of a subset of the initializers of the main inference graph (i.e., ModelProto.graph.initializer) and the training-algorithm graph (TrainingInfoProto.algorithm.initializer) as identified by the keys of the bindings (in TrainingInfoProto.initialization_binding and TrainingInfoProto.update_binding). Note that the state variables are not constant values in the context of training. They represent mutable variables shared by multiple graphs (implicitly declared in the top-level training model scope). This implicit declaration of shared mutable variables is used instead of an explicit declaration for purposes of backward compatibility with the inference graph representation. + +All state variables are pre-initialized to the value specified in the corresponding initializer. A subsequent call to perform the initialization step (using the appropriate API exposed by a runtime) updates the values of the state variables as described above. If the training model has more than one instance of TrainingInfoProto, the initialization step corresponding to each is performed in order. A TrainingInfoProto.initialization MAY be omitted (only if there are no initialization_bindings). For the training step, a runtime MAY allow users to invoke any one of the TrainingInfoProto.algorithm, allowing the training process to interleave the different algorithms as desired. The order in which the different TrainingProto.algorithms are called affects the training result, and it is the callers responsibility to call them in the correct order. + +## Other Specification Documents + +The ONNX specification is comprised of this document, which defines the semantics of the IR and the standard data types, and the following documents defining standard operator semantics and the IR syntax. The latter is specified as Protobuf v2 and v3 schema files. + +See the [metadata category documentation](MetadataProps.md) for more details. + +### Operators + +[Neural Network Operators](Operators.md) + +[Classical Machine Learning operators](Operators-ml.md) + +### Syntax + +[ONNX Models and Graphs - protobuf v2](../onnx/onnx.proto) + +[ONNX Models and Graphs - protobuf v3](../onnx/onnx.proto3) + +[ONNX-ML Models and Graphs - protobuf v2](../onnx/onnx-ml.proto) + +[ONNX-ML Models and Graphs - protobuf v3](../onnx/onnx-ml.proto3) + +[ONNX Operator Sets - protobuf v2](../onnx/onnx-operators.proto) + +[ONNX Operator Sets - protobuf v3](../onnx/onnx-operators.proto3) + +[ONNX-ML Operator Sets - protobuf v2](../onnx/onnx-operators-ml.proto) + +[ONNX-ML Operator Sets - protobuf v3](../onnx/onnx-operators-ml.proto3) + +### Versioning Conventions and Best Practices + +[Versioning](Versioning.md) diff --git a/third_party/onnx/docs/ImplementingAnOnnxBackend.md b/third_party/onnx/docs/ImplementingAnOnnxBackend.md new file mode 100644 index 0000000000..eb9e4ea6f6 --- /dev/null +++ b/third_party/onnx/docs/ImplementingAnOnnxBackend.md @@ -0,0 +1,123 @@ + + +### Implementing an ONNX backend + +#### What is an ONNX backend + +An ONNX backend is a library that can run ONNX models. Since many deep learning frameworks already exist, you likely won't need to create everything from scratch. Rather, you'll likely create a converter that converts ONNX models to the corresponding framework specific representation and then delegate the execution to the framework. For example, [onnx-caffe2 (as part of caffe2)](https://github.com/caffe2/caffe2/tree/master/caffe2/python/onnx) , [onnx-coreml](https://github.com/onnx/onnx-coreml), and [onnx-tensorflow](https://github.com/onnx/onnx-tensorflow) are all implemented as converters. + +#### Unified backend interface + +ONNX has defined a unified (Python) backend interface at [onnx/backend/base.py](/onnx/backend/base.py). + +There are three core concepts in this interface: `Device`, `Backend` and `BackendRep`. + +- `Device` is a lightweight abstraction over various hardware, e.g., CPU, GPU, etc. + +- `Backend` is the entity that will take an ONNX model with inputs, perform a computation, and then return the output. + + For one-off execution, users can use `run_node` and `run_model` to obtain results quickly. + + For repeated execution, users should use `prepare`, in which the `Backend` does all of the preparation work for executing the model repeatedly (e.g., loading initializers), and returns a `BackendRep` handle. + +- `BackendRep` is the handle that a `Backend` returns after preparing to execute a model repeatedly. Users will then pass inputs to the `run` function of `BackendRep` to retrieve the corresponding results. + +Note that even though the ONNX unified backend interface is defined in Python, your backend does not need to be implemented in Python. For example, yours can be created in C++, and tools such as [pybind11](https://github.com/pybind/pybind11) or [cython](http://cython.org/) can be used to fulfill the interface. + +#### ONNX backend test + +ONNX provides a standard backend test suite to assist backend implementation verification. It's strongly encouraged that each ONNX backend runs this test. + +Integrating the ONNX Backend Test suite into your CI is simple. The following are some examples demonstrating how a backend performs the integration: + +- [onnx-caffe2 onnx backend test](https://github.com/caffe2/caffe2/blob/master/caffe2/python/onnx/tests/onnx_backend_test.py) + +- [onnx-tensorflow onnx backend test](https://github.com/onnx/onnx-tensorflow/blob/master/test/backend/test_onnx_backend.py) + +- [onnx-coreml onnx backend test](https://github.com/onnx/onnx-coreml/blob/master/tests/onnx_backend_test.py) + +If you have [pytest](https://docs.pytest.org/en/latest/) installed, you can get a coverage report after running the ONNX backend test to see how well your backend is doing: + +``` +---------- onnx coverage: ---------- +Operators (passed/loaded/total): 21/21/70 +------------------------------------ +â•’â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•╤â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•• +│ Operator │ Attributes │ +│ │ (name: #values) │ +╞â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•╪â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•¡ +│ Slice │ axes: 2 │ +│ │ ends: 3 │ +│ │ starts: 3 │ +├────────────────────┼────────────────────┤ +│ Constant │ value: 1 │ +├────────────────────┼────────────────────┤ +│ Concat │ axis: 0 │ +├────────────────────┼────────────────────┤ +│ Conv │ group: 6 │ +│ │ kernel_shape: 5 │ +│ │ pads: 4 │ +│ │ strides: 3 │ +│ │ auto_pad: 0 │ +│ │ dilations: 0 │ +├────────────────────┼────────────────────┤ +│ Reshape │ shape: 9 │ +├────────────────────┼────────────────────┤ +│ BatchNormalization │ consumed_inputs: 1 │ +│ │ epsilon: 2 │ +│ │ is_test: 1 │ +│ │ momentum: 0 │ +│ │ spatial: 0 │ +├────────────────────┼────────────────────┤ +│ Dropout │ is_test: 1 │ +│ │ ratio: 2 │ +├────────────────────┼────────────────────┤ +│ MaxPool │ kernel_shape: 2 │ +│ │ pads: 3 │ +│ │ strides: 2 │ +│ │ auto_pad: 0 │ +│ │ dilations: 0 │ +├────────────────────┼────────────────────┤ +│ Transpose │ perm: 1 │ +├────────────────────┼────────────────────┤ +│ MatMul │ No attributes │ +├────────────────────┼────────────────────┤ +│ Relu │ No attributes │ +├────────────────────┼────────────────────┤ +│ LRN │ alpha: 2 │ +│ │ beta: 1 │ +│ │ bias: 2 │ +│ │ size: 1 │ +├────────────────────┼────────────────────┤ +│ Add │ axis: 1 │ +│ │ broadcast: 1 │ +├────────────────────┼────────────────────┤ +│ Abs │ No attributes │ +├────────────────────┼────────────────────┤ +│ Pad │ mode: 3 │ +│ │ paddings: 2 │ +│ │ value: 1 │ +├────────────────────┼────────────────────┤ +│ Softmax │ axis: 0 │ +├────────────────────┼────────────────────┤ +│ GlobalAveragePool │ No attributes │ +├────────────────────┼────────────────────┤ +│ Mul │ axis: 1 │ +│ │ broadcast: 1 │ +├────────────────────┼────────────────────┤ +│ Sum │ No attributes │ +├────────────────────┼────────────────────┤ +│ Gemm │ broadcast: 1 │ +│ │ transB: 1 │ +│ │ alpha: 0 │ +│ │ beta: 0 │ +│ │ transA: 0 │ +├────────────────────┼────────────────────┤ +│ AveragePool │ kernel_shape: 3 │ +│ │ pads: 3 │ +│ │ strides: 2 │ +│ │ auto_pad: 0 │ +╘â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•§â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•› +``` + +The numbers in the line `Operators (passed/loaded/total): 21/21/70` indicate 21 operators covered in all test cases of your backend have passed, 21 operators were covered in all test cases of the ONNX backend test, and ONNX has a total of 70 operators. diff --git a/third_party/onnx/docs/ManagingExperimentalOps.md b/third_party/onnx/docs/ManagingExperimentalOps.md new file mode 100644 index 0000000000..56e522f219 --- /dev/null +++ b/third_party/onnx/docs/ManagingExperimentalOps.md @@ -0,0 +1,34 @@ + + +## Deprecated Experimental Operators + +The following experimental operators were deprecated and removed from ONNX. They should be removed from models, either substituted with newer superseding operators or decomposed into functionally equivalent operators: + +Old operator |New Operator +--------------------|-------------------------- +`ATen` |NA +`Affine` |`Add(Mul(X, alpha), beta)` +`ConstantFill` |`ConstantOfShape` +`Crop` |`Slice-1` +`DynamicSlice` |`Slice-10` +`GRUUnit` |NA +`GivenTensorFill` |`Const` or `ConstantOfShape` +`ImageScaler` |`Add(Mul(X, scale), Unsqueeze(bias, axes=[0, 2, 3]))` +`ParametricSoftplus`|`Mul(alpha, Softplus(Mul(beta, X)))` +`Scale` |`Mul(X, scale)` +`ScaledTanh` |`Mul(Tanh(Mul(X, beta)), alpha)` + +## Adding Experimental Operators [Deprecated - as of v1.5 experimental ops are no longer supported] + +The experimental flag in ONNX operator definitions indicates that a customer of ONNX may not be able to take a long term dependency on that op. Ops in the ONNX namespace (ai.onnx) in the _main_ branch, whether experimental or not, go through the regular review process. + +Experimental ops that are being worked on that do not have consensus yet can be managed in one of 2 ways: +1. Use a fork or branch – what you do in the fork or branch is entirely up to you. When you are ready, you can submit a PR using the normal process. This is the recommended way. +2. If a fork/branch is not workable (for example due to complexity of mapping different branches between multiple repos), put the experimental ops in a custom namespace in the main branch. +The specific process for this is: + * Submit an Issue with a proposal explaining the motivation and plan. It does not need to include detailed technical design. Issues will be tagged as "experimental op". + * Reviewers will generally approve by default unless the proposal directly conflicts with existing ops or somehow goes against general ONNX strategy. Approval is indicated by adding the "experiment approved" tag. + * The approval is good for 3 months, but can be renewed if needed. + * Experimental ops should be submitted in a PR in a custom namespace that is the name of the proposal, i.e. “proposal.controlflowâ€. The name should be descriptive rather than a company or entity name. These PRs will be approved by default as long as the parent proposal is approved and active. + * Once experimentation is done, the ops can be submitted for addition to the ONNX namespace via the regular process. The owner can also choose to end the experiment without promoting the ops. + * Either way, the custom namespace is deleted once experimentation is complete or when the approval expires. diff --git a/third_party/onnx/docs/MetadataProps.md b/third_party/onnx/docs/MetadataProps.md new file mode 100644 index 0000000000..21a7c4dfd3 --- /dev/null +++ b/third_party/onnx/docs/MetadataProps.md @@ -0,0 +1,35 @@ + + +# Metadata +# Metadata + +In addition to the core metadata recommendations listed in the [extensibility documentation](IR.md#optional-metadata) there is additional experimental metadata to help provide information for model inputs and outputs. + +This metadata applies to all input and output tensors of a given category. The first such category we define is: `Image`. + +## Motivation + +The motivation of such a mechanism is to allow model authors to convey to model consumers enough information for them to consume the model. + +In the case of images there are many option for providing valid image data. However a model which consumes images was trained with a particular set of these options which must +be used during inferencing. + +The goal is this proposal is to provide enough metadata that the model consumer can perform their own featurization prior to running the model and provide a compatible input or retrive an output and know what its format is. + +## Image Category Definition + +For every tensor in this model that uses [Type Denotation](TypeDenotation.md) to declare itself an `IMAGE`, you SHOULD provide metadata to assist the model consumer. Note that any metadata provided using this mechanism is global to ALL types +with the accompanying denotation. + +Keys and values are case insenstive. + +Specifically, we define here the following set image metadata: + +|Key|Value|Description| +|-----|----|-----------| +|`Image.BitmapPixelFormat`|__string__|Specifies the format of pixel data. Each enumeration value defines a channel ordering and bit depth. Possible values:
  • `Gray8`: 1 channel image, the pixel data is 8 bpp grayscale.
  • `Rgb8`: 3 channel image, channel order is RGB, pixel data is 8bpp (No alpha)
  • `Bgr8`: 3 channel image, channel order is BGR, pixel data is 8bpp (No alpha)
  • `Rgba8`: 4 channel image, channel order is RGBA, pixel data is 8bpp (Straight alpha)
  • `Bgra8`: 4 channel image, channel order is BGRA, pixel data is 8bpp (Straight alpha)
| +|`Image.ColorSpaceGamma`|__string__|Specifies the gamma color space used. Possible values:
  • `Linear`: Linear color space, gamma == 1.0
  • `SRGB`: sRGB color space, gamma == 2.2
| +|`Image.NominalPixelRange`|__string__|Specifies the range that pixel values are stored. Possible values:
  • `NominalRange_0_255`: [0...255] for 8bpp samples
  • `Normalized_0_1`: [0...1] pixel data is stored normalized
  • `Normalized_1_1`: [-1...1] pixel data is stored normalized
  • `NominalRange_16_235`: [16...235] for 8bpp samples
| + + + diff --git a/third_party/onnx/docs/ONNXIFI.md b/third_party/onnx/docs/ONNXIFI.md new file mode 100644 index 0000000000..011ac45ec7 --- /dev/null +++ b/third_party/onnx/docs/ONNXIFI.md @@ -0,0 +1,66 @@ + + +# ONNX Interface for Framework Integration (ONNXIFI) + +ONNXIFI is a cross-platform API for loading and executing ONNX graphs on optimized backends. High-level frameworks and applications can use this API to execute neural network and machine learning models. Hardware vendors can implement this API to expose specialized hardware accelerators and highly optimized software infrastructure to the users. + +## Core Features + +- Standardized interface for neural network inference on special-purpose accelerators (NPUs), CPUs, GPUs, DSPs, and FPGAs +- Based on widely supported technologies + - C API for function calls + - ONNX format for passing model graphs + - NCHW tensor layout for passing inputs and outputs +- Dynamic discovery of available backends for model execution + - Multiple backends from different vendors can co-exist on the same system +- Dynamic discovery of supported ONNX Operators on each backend + +### Optional Features: + +- Graphs with variable-shape inputs and/or outputs +- Graphs with data-dependendent output shapes + +## How to Use ONNX Interface for Framework Integration + +0. (Optional) Use `onnxifi_load` to dynamically load the ONNX Interface for Framework Integration library. +1. Call `onnxGetBackendIDs` to get stable identifiers of available backends. Note: it is possible there are no backends installed in the system. +2. Call `onnxGetBackendInfo` to check additional information about any available backend. +3. Call `onnxGetBackendCompatibility` to check which operations within your model can run on the backend. +4. Call `onnxInitBackend` to initialize a backend, then call `onnxInitGraph` to offload one or more model graphs to the backend. +5. Call `onnxSetGraphIO` to set locations and shapes for inputs and outputs of a graph. +6. Initialize an `inputFence` structure of type `onnxMemoryFenceV1`: set `tag` to `ONNXIFI_TAG_MEMORY_FENCE_V1`, `type` to `ONNXIFI_SYNCHRONIZATION_EVENT`, and call `onnxInitEvent` to initiaze the `event` member. +7. Initialize an `outputFence` structure of type `onnxMemoryFenceV1`: set `tag` to `ONNXIFI_TAG_MEMORY_FENCE_V1`, `type` to `ONNXIFI_SYNCHRONIZATION_EVENT`, and `event` to null. +8. Call `onnxRunGraph` with the initialized `inputFence` and `outputFence` structures to enable execution of the graph. The call to `onnxRunGraph` will populate `event` member of the `outputFence` with a newly created event object, asynchronously execute the graph once `inputFence`'s `event` is signalled, and then signal the `outputFence`'s `event`. +9. Call `onnxSignalEvent` with `event` member of `inputFence` to signal to the backend that the inputs are ready to be consumed. +10. Call `onnxWaitEvent` (alternatively, repeatedly call `onnxGetEventState` in a loop until the event state is `ONNXIFI_EVENT_STATE_SIGNALLED`) with `event` member of `outputFence` to wait until graph outputs are ready to be consumed. Release events for inputs and outputs using `onnxReleaseEvent`. +11. If your model works with fixed-size inputs and outputs, and shape and location of inputs and outputs does not change, one call to `onnxSetGraphIO` is sufficient for multiple `onnxRunGraph` calls. The previous call to `onnxRunGraph`, however, must have finished before a user calls `onnxRunGraph` again, because concurrent execution with the same input and output locations is not allowed. For models with variable-size inputs or outputs, you'd need to call `onnxSetGraphIO` before each `onnxRunGraph` call. +12. When done using the model, release the model graph(s) with `onnxReleaseGraph`, then release the backend with `onnxReleaseBackend` and backend ID with `onnxReleaseBackendID`. + +## How to Implement ONNX Interface for Framework Integration + +The minimum functionality an ONNXIFI implementation must provide is the following: + +- Support ONNX 1.0 model format. + - There is no minimum list of Operators a backend has to support. +- Support graph inputs / outputs in CPU memory. +- Support graph inputs / outputs with fixed shape, specified in GraphProto message. + +### Discovery + +Vendor-provided libraries should adhere to some rules to ensure discovery by ONNX-supported frameworks and applications: + +1. The libraries must be installed in the following directories: + - GNU/Linux: user-installed system library directory (typically /usr/lib) + - macOS: /opt/onnx/lib + - Windows: system directory (typically C:\Windows\System32) + +2. Filenames of vendor-specific libraries must follow the rule below: + - On Windows, library filename must match wildcard `onnxifi-*.dll` + - On macOS, library filename must match wildcard `libonnxifi-*.dylib` + - On Linux and other OSes, library filename must match wildcard `libonnxifi-*.so` + +### Extensions + +Hardware vendors are welcome to add their own extensions to ONNX backend interface. The backend interface offers several extension mechanisms: +- Experimental, exotic, or vendor-specific operators can be supported in a private domain using NodeProto.domain attribute. +- Vendor-provided ONNXIFI implementation can expose additional functions. diff --git a/third_party/onnx/docs/ONNXTypes.md b/third_party/onnx/docs/ONNXTypes.md new file mode 100644 index 0000000000..2edea6e424 --- /dev/null +++ b/third_party/onnx/docs/ONNXTypes.md @@ -0,0 +1,96 @@ +## Optional Type + +An optional type represents a reference to either an element (could be Tensor, Sequence, Map, or Sparse Tensor) or a null value. The optional type appears in model inputs, outputs, as well as intermediate values. + +### Use-cases + +Optional type enables users to represent more dynamic typing senarios in ONNX. Similar to Optional[X] type hint in Python typing which is equivalent to Union[None, X], Optional types in ONNX may reference a single element, or null. + +### Examples in PyTorch +Optional type only appears in TorchScript graphs generated by jit script compiler. Scripting a model captures dynamic types where an optional value can be assigned either None or a value. + +- Example 1 + + class Model(torch.nn.Module): + def forward(self, x, y:Optional[Tensor]=None): + if y is not None: + return x + y + return x + + Corresponding TorchScript graph: + + Graph( + %self : __torch__.Model, + %x.1 : Tensor, + %y.1 : Tensor? + ): + %11 : int = prim::Constant[value=1]() + %4 : None = prim::Constant() + %5 : bool = aten::__isnot__(%y.1, %4) + %6 : Tensor = prim::If(%5) + block0(): + %y.4 : Tensor = prim::unchecked_cast(%y.1) + %12 : Tensor = aten::add(%x.1, %y.4, %11) + -> (%12) + block1(): + -> (%x.1) + return (%6) + + ONNX graph: + + Graph( + %x.1 : Float(2, 3), + %y.1 : Float(2, 3) + ): + %2 : Bool(1) = onnx::OptionalHasElement(%y.1) + %5 : Float(2, 3) = onnx::If(%2) + block0(): + %3 : Float(2, 3) = onnx::OptionalGetElement(%y.1) + %4 : Float(2, 3) = onnx::Add(%x.1, %3) + -> (%4) + block1(): + %x.2 : Float(2, 3) = onnx::Identity(%x.1) + -> (%x.2) + return (%5) + +- Example 2 + + class Model(torch.nn.Module): + def forward( + self, + src_tokens, + return_all_hiddens=torch.tensor([False]), + ): + encoder_states: Optional[Tensor] = None + if return_all_hiddens: + encoder_states = src_tokens + + return src_tokens, encoder_states + + Corresponding TorchScript graph: + + Graph( + %src_tokens.1 : Float(3, 2, 4,), + %return_all_hiddens.1 : Bool(1) + ): + %3 : None = prim::Constant() + %encoder_states : Tensor? = prim::If(%return_all_hiddens.1) + block0(): + -> (%src_tokens.1) + block1(): + -> (%3) + return (%src_tokens.1, %encoder_states) + + ONNX graph: + + Graph( + %src_tokens.1 : Float(3, 2, 4), + %return_all_hiddens.1 : Bool(1) + ): + %2 : Float(3, 2, 4) = onnx::Optional[type=tensor(float)]() + %3 : Float(3, 2, 4) = onnx::If(%return_all_hiddens.1) + block0(): + -> (%src_tokens.1) + block1(): + -> (%2) + return (%3) \ No newline at end of file diff --git a/third_party/onnx/docs/ONNX_logo_main.png b/third_party/onnx/docs/ONNX_logo_main.png new file mode 100644 index 0000000000..24ed87b3b9 Binary files /dev/null and b/third_party/onnx/docs/ONNX_logo_main.png differ diff --git a/third_party/onnx/docs/OnnxBackendTest.md b/third_party/onnx/docs/OnnxBackendTest.md new file mode 100644 index 0000000000..b0787bec46 --- /dev/null +++ b/third_party/onnx/docs/OnnxBackendTest.md @@ -0,0 +1,20 @@ + + +### ONNX Backend Test + +#### What is ONNX Backend Test + +ONNX Backend Test is a test suite that each ONNX backend should run to verify whether it fulfills ONNX's standard. It serves both as a verification tool for backend implementations and one of the two ways to define each operator's expected behavior (the other way is to add it to the documentation). + +There are two types of tests in this suite – Node Tests and Model Tests: + +- **Node Tests** verify whether a backend is performing the correct computation, having the expected behavior of handling various attributes for each individual operator. In each test case, the backend will be given a node with some input, and the returned output will be compared with an expected output. +- **Model Tests** verify the backend at the model level. The test cases are similar to those of Node Tests', but instead of a node, the backend will be given an ONNX model. + +#### Contributing + +As ONNX aims to become the spec of deep learning models format, it's important to ensure that there is no ambiguity in each ONNX operator's definition; adding more test cases is the only way to enforce this. + +Node Tests are created as Python/Numpy code in [onnx/backend/test/case/node](/onnx/backend/test/case/node), and then exported to protobuf files to [onnx/backend/test/data/node](/onnx/backend/test/data/node) as the source of truth by invoking the shell command `backend-test-tools generate-data`. Test cases of each operator lives in one standalone file, e.g. for the operator [Add](/docs/Operators.md#Add), its test cases are in [add.py](/onnx/backend/test/case/node/add.py), and each `expect(...)` statement in the code corresponds to one test case. The source code of all `export.*` functions will be also embedded as example code snippets in the [Operators documentation page](/docs/Operators.md). You are contributing to both the test and the documentation! + +For Model Tests, since each model protobuf file can be large in size, we don't place the file directly in the repo. Rather, we upload them to the cloud, and download them on demand when running the tests. Each test case consists of one model definition protobuf file, and several pairs of input and output files. Adding a new test case involves some manual work from admins (like uploading the files to the cloud), so if you have an ONNX model that you would like to contribute, please contact us. diff --git a/third_party/onnx/docs/OnnxReleases.md b/third_party/onnx/docs/OnnxReleases.md new file mode 100644 index 0000000000..828948b3b8 --- /dev/null +++ b/third_party/onnx/docs/OnnxReleases.md @@ -0,0 +1,123 @@ + + +The ONNX project, going forward, will plan to release roughly on a four month cadence. We follow the [Semver](https://semver.org/) versioning approach and will make decisions as a community on a release by release basis on whether to do a major or minor release. + +## Preparation + +* Install Twine, a utility tool to interact with PyPI. Do - ``pip install twine`` +* Get hold of the username and password for the ‘onnx’ PyPI account. Release manager should get onnx pypi account credentials from steering committee or from previous release manager. +* Pick a release tag (v.1.X.X) for the new release through mutual consent – Slack channel for Releases (https://lfaifoundation.slack.com/archives/C018VGGJUGK) +* Prepare a change log for the release – + * ``git log --pretty=format:"%h - %s" ...`` + * And draft a new release statement - https://github.com/onnx/onnx/releases listing out the new features and bug fixes, and potential changes being introduced in the release. +* Before creating the release branch, increase `VERSION_NUMBER` in the main branch. The following files will be updated: [VERSION_NUMBER file](/VERSION_NUMBER) and +[version.h](/onnx/common/version.h) + +* Please use a VERSION_NUMBER smaller than the target (release VERSION_NUMBER) and larger than the previous one to test TestPyPI before using the target VERSION_NUMBER. + +* Make sure that the IR version number and opset version numbers are up-to-date in +[ONNX proto files](/onnx/onnx.in.proto), +[Versioning.md](Versioning.md), +[schema.h](/onnx/defs/schema.h), +[helper.py](/onnx/helper.py) and [helper_test.py](/onnx/test/helper_test.py). Please note that this also needs to be happened in the main branch before creating the release branch. + +* Create a release branch (please use rel-* as the branch name) from main. Checkout the release tag in a clean branch on your local repo. Make sure all tests pass on that branch. +* Create an issue in onnxruntime repo. See [a sample issue](https://github.com/microsoft/onnxruntime/issues/11108) for details. The issue is to request onnxruntime to update with the onnx release branch and to run all CI and packaging pipelines ([How_To_Update_ONNX_Dev_Notes](https://github.com/microsoft/onnxruntime/blob/master/docs/How_To_Update_ONNX_Dev_Notes.md)). It is possible that onnx bugs are detected with onnxruntime pipeline runs. In such case the bugs shall be fixed in the onnx main branch and cherry-picked into the release branch. Follow up with onnxruntime to ensure the issue is resolved in time before onnx release. + +## Upload to TestPyPI +**Wheels** +* In release branch update the version number in file [VERSION_NUMBER] to something like `1.x.0rc1` as release candidate for verification before finally using the targeted version number for this release. +* Windows + * Use GitHub Action (`.github/workflows/release_win.yml`) under onnx repo to produce wheels for Windows. + +* Linux + * Use GitHub Action (`.github/workflows/release_linux_x86_64.yml`) and (`.github/workflows/release_linux_aarch64.yml`) under onnx repo to produce x64/aarch64 wheels for Linux. + +* Mac + * Use GitHub Action (`.github/workflows/release_mac.yml`) under onnx repo to produce wheels for Mac. + +* After success, upload the produced wheels manually to TestPyPI: `twine upload --verbose *.whl --repository-url https://test.pypi.org/legacy/ -u PYPI_USERNAME -p PYPI_PASSWORD`. + + +**Source Distribution** +* Make sure all the git submodules are updated + * ``git submodule update --init`` +* Make sure the git checkout is clean – + * Do ``git clean -nxd`` and make sure that none of the auto-generated header files *like* the following are not present. + * onnx/onnx-operators.pb.cc + * onnx/onnx-operator.pb.h + * onnx/onnx.pb.cc + * onnx/onnx.pb.h + * If they are present run ``git clean -ixd`` and remove those files from your local branch +* Do ``python setup.py sdist`` to generate the source distribution. +* Do ``twine upload dist/* --repository-url https://test.pypi.org/legacy/ -u PYPI_USERNAME -p PYPI_PASSWORD`` to upload it to the test instance of PyPI. + +## TestPyPI package verification +**Test ONNX itself** +* Test the PyPI package installation with different combinations of various Python versions, Protobuf versions and platforms. + * Python versions : Applicable python versions for the release. + * Protobuf versions : Latest protobuf version at the time of the release + protobuf version used for previous release + * Utilize the following matrix to check: + + |   | 3.7 | 3.8 | 3.9 | 3.10 | + -- | -- | -- | -- | -- | + Linux |   |   |   |   | + Windows |   |   |   |   | + Mac |   |   |   |   | + + +* After installing the PyPI package, run `pytest` in the release branch. + +**Partner Validation** + + * Test with onnxruntime package: To test the interaction with onnxruntime, use ONNX functions like `load`, `checker.check_model`, `shape_inference.infer_shapes`, `save` with onnxruntime functions like `InferenceSession` and `InferenceSession.run` on certain example ONNX model. For example, run the test script from [test_with_ort.py](/onnx/test/test_with_ort.py) with installed onnxruntime package. + + * Test with ONNX converters: Create GitHub issues in converters repos to provide them the package links and have them test the TestPyPI packages. + * https://github.com/pytorch/pytorch + * https://github.com/onnx/onnx-tensorflow + * https://github.com/onnx/tensorflow-onnx + * https://github.com/onnx/sklearn-onnx + * https://github.com/onnx/onnxmltools + * https://github.com/onnx/keras-onnx + * https://github.com/onnx/onnx-tensorrt + * https://github.com/onnx/onnx-coreml + + +**Source distribution verification** +* Test the source distribution by doing ``pip install --index-url https://test.pypi.org/simple --no-binary onnx onnx`` in a new environment. + +## Upload to official PyPI +**NOTE: Once the packages are uploaded to PyPI, you cannot overwrite it on the same PyPI instance. Please make sure everything is good on TestPyPI before uploading to PyPI** + +**Wheels** +* Windows/Linux/Mac + * Same as TestPyPI, use `twine upload --verbose *.whl --repository-url https://upload.pypi.org/legacy/ -u PYPI_USERNAME -p PYPI_PASSWORD` instead. + +**Source Distribution** +* Follow the same process in TestPyPI to produce the source distribution. +* Use ``twine upload --verbose dist/* --repository-url https://upload.pypi.org/legacy/`` instead to upload to the official PyPI. +* Test with ``pip install --no-binary onnx onnx`` + +## After PyPI Release + +**Release summary** +* Upload the source distribution, `.tar.gz` and `.zip`, in the release summary. +* Create release in github with the right tag and upload the release summary along with .tar.gz and .zip + +**Announce** +* Announce in slack, for instance, `onnx-general` channel. +* Notify ONNX partners like converter team and runtime team. +* Create a news by updating `js/news.json` to announce ONNX release under [onnx/onnx.github.io](https://github.com/onnx/onnx.github.io) repo. For instance: https://github.com/onnx/onnx.github.io/pull/83. + +**Update conda-forge package with the new ONNX version** +* Conda builds of ONNX are done via conda-forge, which runs infrastructure for building packages and uploading them to conda-forge. If it does not happen automatically, you need to submit a PR to https://github.com/conda-forge/onnx-feedstock (see https://github.com/conda-forge/onnx-feedstock/pull/1/files or https://github.com/conda-forge/onnx-feedstock/pull/50/files for example PRs) You will need to have uploaded to PyPI already, and update the version number and tarball hash of the PyPI uploaded tarball. + +**Merge into main branch** +* After everything above is done, merge the release branch into the main branch to make it consistent. + +**Remove old onnx-weekly packages on TestPyPI** +* Once ONNX has been released on PyPI, remove all previous versions of [onnx-weekly package](https://test.pypi.org/project/onnx-weekly/#history) on TestPyPI to save space. +* Steps: Login and go [here](https://test.pypi.org/manage/project/onnx-weekly/releases/) -> Choose target package -> Options -> Delete. + +**Bump opset version for ai.onnx** +* Bump opset version for ai.onnx domain in `onnx/defs/operator_sets.h` and `onnx/defs/schema.h` for use by future operator additions and changes. For example, this [demo PR](https://github.com/onnx/onnx/pull/4134/files). \ No newline at end of file diff --git a/third_party/onnx/docs/OpConventions.md b/third_party/onnx/docs/OpConventions.md new file mode 100644 index 0000000000..ac4e531611 --- /dev/null +++ b/third_party/onnx/docs/OpConventions.md @@ -0,0 +1,12 @@ + + +# Operator Conventions + +To maintain consistency in operator signatures, we use the following principles: +- All attribute names should be lower case and use underscores when it helps with readability +- Any input/output represented by a single letter is capitalized (i.e. X) +- Any input/output represented by a full word or multiple words is all lower case and uses underscores when it helps with readability +- Any input/output representing a bias tensor will utilize the name "B" +- Any input/output representing a weight tensor will utilize the name “W†+- “axes†is used when an input, output or attribute is representing multiple axes +- “axis†is used when an input, output or attribute is representing a single axis diff --git a/third_party/onnx/docs/Operators-ml.md b/third_party/onnx/docs/Operators-ml.md new file mode 100644 index 0000000000..9c3f413965 --- /dev/null +++ b/third_party/onnx/docs/Operators-ml.md @@ -0,0 +1,985 @@ + +## Operator Schemas +*This file is automatically generated from the + [def files](/onnx/defs) via [this script](/onnx/defs/gen_doc.py). + Do not modify directly and instead edit operator definitions.* + +For an operator input/output's differentiability, it can be differentiable, + non-differentiable, or undefined. If a variable's differentiability + is not specified, that variable has undefined differentiability. + +### ai.onnx.ml +|**Operator**|**Since version**| +|-|-| +|ai.onnx.ml.ArrayFeatureExtractor|1| +|ai.onnx.ml.Binarizer|1| +|ai.onnx.ml.CastMap|1| +|ai.onnx.ml.CategoryMapper|1| +|ai.onnx.ml.DictVectorizer|1| +|ai.onnx.ml.FeatureVectorizer|1| +|ai.onnx.ml.Imputer|1| +|ai.onnx.ml.LabelEncoder|2, 1| +|ai.onnx.ml.LinearClassifier|1| +|ai.onnx.ml.LinearRegressor|1| +|ai.onnx.ml.Normalizer|1| +|ai.onnx.ml.OneHotEncoder|1| +|ai.onnx.ml.SVMClassifier|1| +|ai.onnx.ml.SVMRegressor|1| +|ai.onnx.ml.Scaler|1| +|ai.onnx.ml.TreeEnsembleClassifier|3, 1| +|ai.onnx.ml.TreeEnsembleRegressor|3, 1| +|ai.onnx.ml.ZipMap|1| + + +## ai.onnx.ml +### **ai.onnx.ml.ArrayFeatureExtractor** + + Select elements of the input tensor based on the indices passed.
+ The indices are applied to the last axes of the tensor. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Inputs + +
+
X : T
+
Data to be selected
+
Y : tensor(int64)
+
The indices, based on 0 as the first index of any dimension.
+
+ +#### Outputs + +
+
Z : T
+
Selected output data as an array
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32), tensor(string)
+
The input must be a tensor of a numeric type or string. The output will be of the same tensor type.
+
+ + +### **ai.onnx.ml.Binarizer** + + Maps the values of the input tensor to either 0 or 1, element-wise, based on the outcome of a comparison against a threshold value. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
threshold : float (default is 0.0)
+
Values greater than this are mapped to 1, others to 0.
+
+ +#### Inputs + +
+
X : T
+
Data to be binarized
+
+ +#### Outputs + +
+
Y : T
+
Binarized output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type. The output will be of the same tensor type.
+
+ + +### **ai.onnx.ml.CastMap** + + Converts a map to a tensor.
The map key must be an int64 and the values will be ordered + in ascending order based on this key.
The operator supports dense packing or sparse packing. + If using sparse packing, the key cannot exceed the max_map-1 value. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cast_to : string (default is TO_FLOAT)
+
A string indicating the desired element type of the output tensor, one of 'TO_FLOAT', 'TO_STRING', 'TO_INT64'.
+
map_form : string (default is DENSE)
+
Indicates whether to only output as many values as are in the input (dense), or position the input based on using the key of the map as the index of the output (sparse).
One of 'DENSE', 'SPARSE'.
+
max_map : int (default is 1)
+
If the value of map_form is 'SPARSE,' this attribute indicates the total length of the output tensor.
+
+ +#### Inputs + +
+
X : T1
+
The input map that is to be cast to a tensor
+
+ +#### Outputs + +
+
Y : T2
+
A tensor representing the same data as the input map, ordered by their keys
+
+ +#### Type Constraints + +
+
T1 : map(int64, string), map(int64, float)
+
The input must be an integer map to either string or float.
+
T2 : tensor(string), tensor(float), tensor(int64)
+
The output is a 1-D tensor of string, float, or integer.
+
+ + +### **ai.onnx.ml.CategoryMapper** + + Converts strings to integers and vice versa.
+ Two sequences of equal length are used to map between integers and strings, + with strings and integers at the same index detailing the mapping.
+ Each operator converts either integers to strings or strings to integers, depending + on which default value attribute is provided. Only one default value attribute + should be defined.
+ If the string default value is set, it will convert integers to strings. + If the int default value is set, it will convert strings to integers. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cats_int64s : list of ints
+
The integers of the map. This sequence must be the same length as the 'cats_strings' sequence.
+
cats_strings : list of strings
+
The strings of the map. This sequence must be the same length as the 'cats_int64s' sequence
+
default_int64 : int (default is -1)
+
An integer to use when an input string value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
default_string : string (default is _Unused)
+
A string to use when an input integer value is not found in the map.
One and only one of the 'default_*' attributes must be defined.
+
+ +#### Inputs + +
+
X : T1
+
Input data
+
+ +#### Outputs + +
+
Y : T2
+
Output data. If strings are input, the output values are integers, and vice versa.
+
+ +#### Type Constraints + +
+
T1 : tensor(string), tensor(int64)
+
The input must be a tensor of strings or integers, either [N,C] or [C].
+
T2 : tensor(string), tensor(int64)
+
The output is a tensor of strings or integers. Its shape will be the same as the input shape.
+
+ + +### **ai.onnx.ml.DictVectorizer** + + Uses an index mapping to convert a dictionary to an array.
+ Given a dictionary, each key is looked up in the vocabulary attribute corresponding to + the key type. The index into the vocabulary array at which the key is found is then + used to index the output 1-D tensor 'Y' and insert into it the value found in the dictionary 'X'.
+ The key type of the input map must correspond to the element type of the defined vocabulary attribute. + Therefore, the output array will be equal in length to the index mapping vector parameter. + All keys in the input dictionary must be present in the index mapping vector. + For each item in the input dictionary, insert its value in the output array. + Any keys not present in the input dictionary, will be zero in the output array.
+ For example: if the ``string_vocabulary`` parameter is set to ``["a", "c", "b", "z"]``, + then an input of ``{"a": 4, "c": 8}`` will produce an output of ``[4, 8, 0, 0]``. + + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
int64_vocabulary : list of ints
+
An integer vocabulary array.
One and only one of the vocabularies must be defined.
+
string_vocabulary : list of strings
+
A string vocabulary array.
One and only one of the vocabularies must be defined.
+
+ +#### Inputs + +
+
X : T1
+
A dictionary.
+
+ +#### Outputs + +
+
Y : T2
+
A 1-D tensor holding values from the input dictionary.
+
+ +#### Type Constraints + +
+
T1 : map(string, int64), map(int64, string), map(int64, float), map(int64, double), map(string, float), map(string, double)
+
The input must be a map from strings or integers to either strings or a numeric type. The key and value types cannot be the same.
+
T2 : tensor(int64), tensor(float), tensor(double), tensor(string)
+
The output will be a tensor of the value type of the input map. It's shape will be [1,C], where C is the length of the input dictionary.
+
+ + +### **ai.onnx.ml.FeatureVectorizer** + + Concatenates input tensors into one continuous output.
+ All input shapes are 2-D and are concatenated along the second dimention. 1-D tensors are treated as [1,C]. + Inputs are copied to the output maintaining the order of the input arguments.
+ All inputs must be integers or floats, while the output will be all floating point values. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
inputdimensions : list of ints
+
The size of each input in the input list
+
+ +#### Inputs (1 - ∞) + +
+
X (variadic) : T1
+
An ordered collection of tensors, all with the same element type.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
The output array, elements ordered as the inputs.
+
+ +#### Type Constraints + +
+
T1 : tensor(int32), tensor(int64), tensor(float), tensor(double)
+
The input type must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.Imputer** + + Replaces inputs that equal one value with another, leaving all other elements alone.
+ This operator is typically used to replace missing values in situations where they have a canonical + representation, such as -1, 0, NaN, or some extreme value.
+ One and only one of imputed_value_floats or imputed_value_int64s should be defined -- floats if the input tensor + holds floats, integers if the input tensor holds integers. The imputed values must all fit within the + width of the tensor element type. One and only one of the replaced_value_float or replaced_value_int64 should be defined, + which one depends on whether floats or integers are being processed.
+ The imputed_value attribute length can be 1 element, or it can have one element per input feature.
In other words, if the input tensor has the shape [*,F], then the length of the attribute array may be 1 or F. If it is 1, then it is broadcast along the last dimension and applied to each feature. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
imputed_value_floats : list of floats
+
Value(s) to change to
+
imputed_value_int64s : list of ints
+
Value(s) to change to.
+
replaced_value_float : float (default is 0.0)
+
A value that needs replacing.
+
replaced_value_int64 : int (default is 0)
+
A value that needs replacing.
+
+ +#### Inputs + +
+
X : T
+
Data to be processed.
+
+ +#### Outputs + +
+
Y : T
+
Imputed output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type, either [N,C] or [C]. The output type will be of the same tensor type and shape.
+
+ + +### **ai.onnx.ml.LabelEncoder** + + Maps each element in the input tensor to another value.
+ The mapping is determined by the two parallel attributes, 'keys_*' and + 'values_*' attribute. The i-th value in the specified 'keys_*' attribute + would be mapped to the i-th value in the specified 'values_*' attribute. It + implies that input's element type and the element type of the specified + 'keys_*' should be identical while the output type is identical to the + specified 'values_*' attribute. If an input element can not be found in the + specified 'keys_*' attribute, the 'default_*' that matches the specified + 'values_*' attribute may be used as its output value.
+ Let's consider an example which maps a string tensor to an integer tensor. + Assume and 'keys_strings' is ["Amy", "Sally"], 'values_int64s' is [5, 6], + and 'default_int64' is '-1'. The input ["Dori", "Amy", "Amy", "Sally", + "Sally"] would be mapped to [-1, 5, 5, 6, 6].
+ Since this operator is an one-to-one mapping, its input and output shapes + are the same. Notice that only one of 'keys_*'/'values_*' can be set.
+ For key look-up, bit-wise comparison is used so even a float NaN can be + mapped to a value in 'values_*' attribute.
+ +#### Version + +This version of the operator has been available since version 2 of the 'ai.onnx.ml' operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
default_float : float (default is -0.0)
+
A float.
+
default_int64 : int (default is -1)
+
An integer.
+
default_string : string (default is _Unused)
+
A string.
+
keys_floats : list of floats
+
A list of floats.
+
keys_int64s : list of ints
+
A list of ints.
+
keys_strings : list of strings
+
A list of strings. One and only one of 'keys_*'s should be set.
+
values_floats : list of floats
+
A list of floats.
+
values_int64s : list of ints
+
A list of ints.
+
values_strings : list of strings
+
A list of strings. One and only one of 'value_*'s should be set.
+
+ +#### Inputs + +
+
X : T1
+
Input data. It can be either tensor or scalar.
+
+ +#### Outputs + +
+
Y : T2
+
Output data.
+
+ +#### Type Constraints + +
+
T1 : tensor(string), tensor(int64), tensor(float)
+
The input type is a tensor of any shape.
+
T2 : tensor(string), tensor(int64), tensor(float)
+
Output type is determined by the specified 'values_*' attribute.
+
+ + +### **ai.onnx.ml.LinearClassifier** + + Linear classifier + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_ints : list of ints
+
Class labels when using integer labels. One and only one 'classlabels' attribute must be defined.
+
classlabels_strings : list of strings
+
Class labels when using string labels. One and only one 'classlabels' attribute must be defined.
+
coefficients : list of floats (required)
+
A collection of weights of the model(s).
+
intercepts : list of floats
+
A collection of intercepts.
+
multi_class : int (default is 0)
+
Indicates whether to do OvR or multinomial (0=OvR is the default).
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the scores vector.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
+ +#### Inputs + +
+
X : T1
+
Data to be classified.
+
+ +#### Outputs + +
+
Y : T2
+
Classification outputs (one class per example).
+
Z : tensor(float)
+
Classification scores ([N,E] - one score for each class and example
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type, and of of shape [N,C] or [C]. In the latter case, it will be treated as [1,C]
+
T2 : tensor(string), tensor(int64)
+
The output will be a tensor of strings or integers.
+
+ + +### **ai.onnx.ml.LinearRegressor** + + Generalized linear regression evaluation.
+ If targets is set to 1 (default) then univariate regression is performed.
+ If targets is set to M then M sets of coefficients must be passed in as a sequence + and M results will be output for each input n in N.
+ The coefficients array is of length n, and the coefficients for each target are contiguous. + Intercepts are optional but if provided must match the number of targets. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
coefficients : list of floats
+
Weights of the model(s).
+
intercepts : list of floats
+
Weights of the intercepts, if used.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the regression output vector.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
targets : int (default is 1)
+
The total number of regression targets, 1 if not defined.
+
+ +#### Inputs + +
+
X : T
+
Data to be regressed.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Regression outputs (one per target, per example).
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.Normalizer** + + Normalize the input. There are three normalization modes, which have the corresponding formulas, + defined using element-wise infix operators '/' and '^' and tensor-wide functions 'max' and 'sum':
+
+ Max: Y = X / max(X)
+ L1: Y = X / sum(X)
+ L2: Y = sqrt(X^2 / sum(X^2)}
+ In all modes, if the divisor is zero, Y == X. +
+ For batches, that is, [N,C] tensors, normalization is done along the C axis. In other words, each row + of the batch is normalized independently. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
norm : string (default is MAX)
+
One of 'MAX,' 'L1,' 'L2'
+
+ +#### Inputs + +
+
X : T
+
Data to be encoded, a tensor of shape [N,C] or [C]
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Encoded output data
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.OneHotEncoder** + + Replace each input element with an array of ones and zeros, where a single + one is placed at the index of the category that was passed in. The total category count + will determine the size of the extra dimension of the output array Y.
+ For example, if we pass a tensor with a single value of 4, and a category count of 8, + the output will be a tensor with ``[0,0,0,0,1,0,0,0]``.
+ This operator assumes every input feature is from the same set of categories.
+ If the input is a tensor of float, int32, or double, the data will be cast + to integers and the cats_int64s category list will be used for the lookups. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
cats_int64s : list of ints
+
List of categories, ints.
One and only one of the 'cats_*' attributes must be defined.
+
cats_strings : list of strings
+
List of categories, strings.
One and only one of the 'cats_*' attributes must be defined.
+
zeros : int (default is 1)
+
If true and category is not present, will return all zeros; if false and a category if not found, the operator will fail.
+
+ +#### Inputs + +
+
X : T
+
Data to be encoded.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Encoded output data, having one more dimension than X.
+
+ +#### Type Constraints + +
+
T : tensor(string), tensor(int64), tensor(int32), tensor(float), tensor(double)
+
The input must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.SVMClassifier** + + Support Vector Machine classifier + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_ints : list of ints
+
Class labels if using integer labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
Class labels if using string labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
coefficients : list of floats
+
+
kernel_params : list of floats
+
List of 3 elements containing gamma, coef0, and degree, in that order. Zero if unused for the kernel.
+
kernel_type : string (default is LINEAR)
+
The kernel type, one of 'LINEAR,' 'POLY,' 'RBF,' 'SIGMOID'.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
prob_a : list of floats
+
First set of probability coefficients.
+
prob_b : list of floats
+
Second set of probability coefficients. This array must be same size as prob_a.
If these are provided then output Z are probability estimates, otherwise they are raw scores.
+
rho : list of floats
+
+
support_vectors : list of floats
+
+
vectors_per_class : list of ints
+
+
+ +#### Inputs + +
+
X : T1
+
Data to be classified.
+
+ +#### Outputs + +
+
Y : T2
+
Classification outputs (one class per example).
+
Z : tensor(float)
+
Class scores (one per class per example), if prob_a and prob_b are provided they are probabilities for each class, otherwise they are raw scores.
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type, either [C] or [N,C].
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, depending on which of the the classlabels_* attributes is used. Its size will match the bactch size of the input.
+
+ + +### **ai.onnx.ml.SVMRegressor** + + Support Vector Machine regression prediction and one-class SVM anomaly detection. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
coefficients : list of floats
+
Support vector coefficients.
+
kernel_params : list of floats
+
List of 3 elements containing gamma, coef0, and degree, in that order. Zero if unused for the kernel.
+
kernel_type : string (default is LINEAR)
+
The kernel type, one of 'LINEAR,' 'POLY,' 'RBF,' 'SIGMOID'.
+
n_supports : int (default is 0)
+
The number of support vectors.
+
one_class : int (default is 0)
+
Flag indicating whether the regression is a one-class SVM or not.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT.'
+
rho : list of floats
+
+
support_vectors : list of floats
+
Chosen support vectors
+
+ +#### Inputs + +
+
X : T
+
Data to be regressed.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Regression outputs (one score per target per example).
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type, either [C] or [N,C].
+
+ + +### **ai.onnx.ml.Scaler** + + Rescale input data, for example to standardize features by removing the mean and scaling to unit variance. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
offset : list of floats
+
First, offset by this.
Can be length of features in an [N,F] tensor or length 1, in which case it applies to all features, regardless of dimension count.
+
scale : list of floats
+
Second, multiply by this.
Can be length of features in an [N,F] tensor or length 1, in which case it applies to all features, regardless of dimension count.
Must be same length as 'offset'
+
+ +#### Inputs + +
+
X : T
+
Data to be scaled.
+
+ +#### Outputs + +
+
Y : tensor(float)
+
Scaled output data.
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.TreeEnsembleClassifier** + + Tree Ensemble classifier. Returns the top class for each of N inputs.
+ The attributes named 'nodes_X' form a sequence of tuples, associated by + index into the sequences, which must all be of equal length. These tuples + define the nodes.
+ Similarly, all fields prefixed with 'class_' are tuples of votes at the leaves. + A leaf may have multiple votes, where each vote is weighted by + the associated class_weights index.
+ One and only one of classlabels_strings or classlabels_int64s + will be defined. The class_ids are indices into this list. + All fields ending with _as_tensor can be used instead of the + same parameter without the suffix if the element type is double and not float. + +#### Version + +This version of the operator has been available since version 3 of the 'ai.onnx.ml' operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
base_values_as_tensor : tensor
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
class_ids : list of ints
+
The index of the class list that each weight is for.
+
class_nodeids : list of ints
+
node id that this weight is for.
+
class_treeids : list of ints
+
The id of the tree that this node is in.
+
class_weights : list of floats
+
The weight for the class in class_id.
+
class_weights_as_tensor : tensor
+
The weight for the class in class_id.
+
classlabels_int64s : list of ints
+
Class labels if using integer labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
Class labels if using string labels.
One and only one of the 'classlabels_*' attributes must be defined.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false.
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_hitrates_as_tensor : tensor
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a missing value: if a value is missing (NaN), use the 'true' or 'false' branch based on the value in this array.
This attribute may be left undefined, and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Ids may restart at zero for each tree, but it not required to.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true.
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
nodes_values_as_tensor : tensor
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT.'
+
+ +#### Inputs + +
+
X : T1
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : T2
+
N, Top class for each point
+
Z : tensor(float)
+
The class score for each class, for each point, a tensor of shape [N,E].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
T2 : tensor(string), tensor(int64)
+
The output type will be a tensor of strings or integers, depending on which of the the classlabels_* attributes is used.
+
+ + +### **ai.onnx.ml.TreeEnsembleRegressor** + + Tree Ensemble regressor. Returns the regressed values for each input in N.
+ All args with nodes_ are fields of a tuple of tree nodes, and + it is assumed they are the same length, and an index i will decode the + tuple across these inputs. Each node id can appear only once + for each tree id.
+ All fields prefixed with target_ are tuples of votes at the leaves.
+ A leaf may have multiple votes, where each vote is weighted by + the associated target_weights index.
+ All fields ending with _as_tensor can be used instead of the + same parameter without the suffix if the element type is double and not float. + All trees must have their node ids start at 0 and increment by 1.
+ Mode enum is BRANCH_LEQ, BRANCH_LT, BRANCH_GTE, BRANCH_GT, BRANCH_EQ, BRANCH_NEQ, LEAF + +#### Version + +This version of the operator has been available since version 3 of the 'ai.onnx.ml' operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
aggregate_function : string (default is SUM)
+
Defines how to aggregate leaf values within a target.
One of 'AVERAGE,' 'SUM,' 'MIN,' 'MAX.'
+
base_values : list of floats
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
base_values_as_tensor : tensor
+
Base values for classification, added to final class score; the size must be the same as the classes or can be left unassigned (assumed 0)
+
n_targets : int
+
The total number of targets.
+
nodes_falsenodeids : list of ints
+
Child node if expression is false
+
nodes_featureids : list of ints
+
Feature id for each node.
+
nodes_hitrates : list of floats
+
Popularity of each node, used for performance and may be omitted.
+
nodes_hitrates_as_tensor : tensor
+
Popularity of each node, used for performance and may be omitted.
+
nodes_missing_value_tracks_true : list of ints
+
For each node, define what to do in the presence of a NaN: use the 'true' (if the attribute value is 1) or 'false' (if the attribute value is 0) branch based on the value in this array.
This attribute may be left undefined and the defalt value is false (0) for all nodes.
+
nodes_modes : list of strings
+
The node kind, that is, the comparison to make at the node. There is no comparison to make at a leaf node.
One of 'BRANCH_LEQ', 'BRANCH_LT', 'BRANCH_GTE', 'BRANCH_GT', 'BRANCH_EQ', 'BRANCH_NEQ', 'LEAF'
+
nodes_nodeids : list of ints
+
Node id for each node. Node ids must restart at zero for each tree and increase sequentially.
+
nodes_treeids : list of ints
+
Tree id for each node.
+
nodes_truenodeids : list of ints
+
Child node if expression is true
+
nodes_values : list of floats
+
Thresholds to do the splitting on for each node.
+
nodes_values_as_tensor : tensor
+
Thresholds to do the splitting on for each node.
+
post_transform : string (default is NONE)
+
Indicates the transform to apply to the score.
One of 'NONE,' 'SOFTMAX,' 'LOGISTIC,' 'SOFTMAX_ZERO,' or 'PROBIT'
+
target_ids : list of ints
+
The index of the target that each weight is for
+
target_nodeids : list of ints
+
The node id of each weight
+
target_treeids : list of ints
+
The id of the tree that each node is in.
+
target_weights : list of floats
+
The weight for each target
+
target_weights_as_tensor : tensor
+
The weight for each target
+
+ +#### Inputs + +
+
X : T
+
Input of shape [N,F]
+
+ +#### Outputs + +
+
Y : tensor(float)
+
N classes
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int64), tensor(int32)
+
The input type must be a tensor of a numeric type.
+
+ + +### **ai.onnx.ml.ZipMap** + + Creates a map from the input and the attributes.
+ The values are provided by the input tensor, while the keys are specified by the attributes. + Must provide keys in either classlabels_strings or classlabels_int64s (but not both).
+ The columns of the tensor correspond one-by-one to the keys specified by the attributes. There must be as many columns as keys.
+ +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.ml' operator set. + +#### Attributes + +
+
classlabels_int64s : list of ints
+
The keys when using int keys.
One and only one of the 'classlabels_*' attributes must be defined.
+
classlabels_strings : list of strings
+
The keys when using string keys.
One and only one of the 'classlabels_*' attributes must be defined.
+
+ +#### Inputs + +
+
X : tensor(float)
+
The input values
+
+ +#### Outputs + +
+
Z : T
+
The output map
+
+ +#### Type Constraints + +
+
T : seq(map(string, float)), seq(map(int64, float))
+
The output will be a sequence of string or integer maps to float.
+
+ + diff --git a/third_party/onnx/docs/Operators.md b/third_party/onnx/docs/Operators.md new file mode 100644 index 0000000000..36590c595c --- /dev/null +++ b/third_party/onnx/docs/Operators.md @@ -0,0 +1,26199 @@ + +## Operator Schemas +*This file is automatically generated from the + [def files](/onnx/defs) via [this script](/onnx/defs/gen_doc.py). + Do not modify directly and instead edit operator definitions.* + +For an operator input/output's differentiability, it can be differentiable, + non-differentiable, or undefined. If a variable's differentiability + is not specified, that variable has undefined differentiability. + +### ai.onnx (default) +|**Operator**|**Since version**| +|-|-| +|Abs|13, 6, 1| +|Acos|7| +|Acosh|9| +|Add|14, 13, 7, 6, 1| +|And|7, 1| +|ArgMax|13, 12, 11, 1| +|ArgMin|13, 12, 11, 1| +|Asin|7| +|Asinh|9| +|Atan|7| +|Atanh|9| +|AveragePool|11, 10, 7, 1| +|BatchNormalization|15, 14, 9, 7, 6, 1| +|BitShift|11| +|Cast|13, 9, 6, 1| +|Ceil|13, 6, 1| +|Clip|13, 12, 11, 6, 1| +|Compress|11, 9| +|Concat|13, 11, 4, 1| +|ConcatFromSequence|11| +|Constant|13, 12, 11, 9, 1| +|ConstantOfShape|9| +|Conv|11, 1| +|ConvInteger|10| +|ConvTranspose|11, 1| +|Cos|7| +|Cosh|9| +|CumSum|14, 11| +|DepthToSpace|13, 11, 1| +|DequantizeLinear|13, 10| +|Det|11| +|Div|14, 13, 7, 6, 1| +|Dropout|13, 12, 10, 7, 6, 1| +|Einsum|12| +|Elu|6, 1| +|Equal|13, 11, 7, 1| +|Erf|13, 9| +|Exp|13, 6, 1| +|Expand|13, 8| +|EyeLike|9| +|Flatten|13, 11, 9, 1| +|Floor|13, 6, 1| +|GRU|14, 7, 3, 1| +|Gather|13, 11, 1| +|GatherElements|13, 11| +|GatherND|13, 12, 11| +|Gemm|13, 11, 9, 7, 6, 1| +|GlobalAveragePool|1| +|GlobalLpPool|2, 1| +|GlobalMaxPool|1| +|Greater|13, 9, 7, 1| +|GridSample|16| +|HardSigmoid|6, 1| +|Hardmax|13, 11, 1| +|Identity|16, 14, 13, 1| +|If|16, 13, 11, 1| +|InstanceNormalization|6, 1| +|IsInf|10| +|IsNaN|13, 9| +|LRN|13, 1| +|LSTM|14, 7, 1| +|LeakyRelu|16, 6, 1| +|Less|13, 9, 7, 1| +|Log|13, 6, 1| +|Loop|16, 13, 11, 1| +|LpNormalization|1| +|LpPool|11, 2, 1| +|MatMul|13, 9, 1| +|MatMulInteger|10| +|Max|13, 12, 8, 6, 1| +|MaxPool|12, 11, 10, 8, 1| +|MaxRoiPool|1| +|MaxUnpool|11, 9| +|Mean|13, 8, 6, 1| +|Min|13, 12, 8, 6, 1| +|Mod|13, 10| +|Mul|14, 13, 7, 6, 1| +|Multinomial|7| +|Neg|13, 6, 1| +|NonMaxSuppression|11, 10| +|NonZero|13, 9| +|Not|1| +|OneHot|11, 9| +|Optional|15| +|OptionalGetElement|15| +|OptionalHasElement|15| +|Or|7, 1| +|PRelu|16, 9, 7, 6, 1| +|Pad|13, 11, 2, 1| +|Pow|15, 13, 12, 7, 1| +|QLinearConv|10| +|QLinearMatMul|10| +|QuantizeLinear|13, 10| +|RNN|14, 7, 1| +|RandomNormal|1| +|RandomNormalLike|1| +|RandomUniform|1| +|RandomUniformLike|1| +|Reciprocal|13, 6, 1| +|ReduceL1|13, 11, 1| +|ReduceL2|13, 11, 1| +|ReduceLogSum|13, 11, 1| +|ReduceLogSumExp|13, 11, 1| +|ReduceMax|13, 12, 11, 1| +|ReduceMean|13, 11, 1| +|ReduceMin|13, 12, 11, 1| +|ReduceProd|13, 11, 1| +|ReduceSum|13, 11, 1| +|ReduceSumSquare|13, 11, 1| +|Relu|14, 13, 6, 1| +|Reshape|14, 13, 5, 1| +|Resize|13, 11, 10| +|ReverseSequence|10| +|RoiAlign|16, 10| +|Round|11| +|Scan|16, 11, 9, 8| +|Scatter (deprecated)|11, 9| +|ScatterElements|16, 13, 11| +|ScatterND|16, 13, 11| +|Selu|6, 1| +|SequenceAt|11| +|SequenceConstruct|11| +|SequenceEmpty|11| +|SequenceErase|11| +|SequenceInsert|11| +|SequenceLength|11| +|Shape|15, 13, 1| +|Shrink|9| +|Sigmoid|13, 6, 1| +|Sign|13, 9| +|Sin|7| +|Sinh|9| +|Size|13, 1| +|Slice|13, 11, 10, 1| +|Softplus|1| +|Softsign|1| +|SpaceToDepth|13, 1| +|Split|13, 11, 2, 1| +|SplitToSequence|11| +|Sqrt|13, 6, 1| +|Squeeze|13, 11, 1| +|StringNormalizer|10| +|Sub|14, 13, 7, 6, 1| +|Sum|13, 8, 6, 1| +|Tan|7| +|Tanh|13, 6, 1| +|TfIdfVectorizer|9| +|ThresholdedRelu|10| +|Tile|13, 6, 1| +|TopK|11, 10, 1| +|Transpose|13, 1| +|Trilu|14| +|Unique|11| +|Unsqueeze|13, 11, 1| +|Upsample (deprecated)|10, 9, 7| +|Where|16, 9| +|Xor|7, 1| +|**Function**|**Since version**| +|Bernoulli|15| +|CastLike|15| +|Celu|12| +|DynamicQuantizeLinear|11| +|GreaterOrEqual|16, 12| +|HardSwish|14| +|LayerNormalization|17| +|LessOrEqual|16, 12| +|LogSoftmax|13, 11, 1| +|MeanVarianceNormalization|13, 9| +|NegativeLogLikelihoodLoss|13, 12| +|Range|11| +|SequenceMap|17| +|Softmax|13, 11, 1| +|SoftmaxCrossEntropyLoss|13, 12| + +### ai.onnx.preview.training +|**Operator**|**Since version**| +|-|-| +|ai.onnx.preview.training.Adagrad|1| +|ai.onnx.preview.training.Adam|1| +|ai.onnx.preview.training.Gradient|1| +|ai.onnx.preview.training.Momentum|1| + + +## ai.onnx (default) +### **Abs** + + Absolute takes one input data (Tensor) and produces one output data + (Tensor) where the absolute is, y = abs(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+abs + +```python +node = onnx.helper.make_node( + 'Abs', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = abs(x) + +expect(node, inputs=[x], outputs=[y], + name='test_abs') +``` + +
+ + +#### Sample Implementation + +
+Abs + +```python +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + + +def abs(input: np.ndarray) -> np.ndarray: + return np.abs(input) + +``` + +
+ + +### **Acos** + + Calculates the arccosine (inverse of cosine) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arccosine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+acos + +```python +node = onnx.helper.make_node( + 'Acos', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arccos(x) +expect(node, inputs=[x], outputs=[y], + name='test_acos_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) +y = np.arccos(x) +expect(node, inputs=[x], outputs=[y], + name='test_acos') +``` + +
+ + +### **Acosh** + + Calculates the hyperbolic arccosine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arccosine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+acosh + +```python +node = onnx.helper.make_node( + 'Acosh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([10, np.e, 1]).astype(np.float32) +y = np.arccosh(x) # expected output [2.99322295, 1.65745449, 0.] +expect(node, inputs=[x], outputs=[y], + name='test_acosh_example') + +x = np.random.uniform(1.0, 10.0, (3, 4, 5)).astype(np.float32) +y = np.arccosh(x) +expect(node, inputs=[x], outputs=[y], + name='test_acosh') +``` + +
+ + +### **Add** + + Performs element-wise binary addition (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 13 + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+add + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add') +``` + +
+ + +
+add_broadcast + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_bcast') +``` + +
+ + +
+add_uint8 + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_uint8') +``` + +
+ + +### **And** + + Returns the tensor resulted from performing the `and` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+and + +```python +node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and4d') +``` + +
+ + +
+and_broadcast + +```python +node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v4d') +``` + +
+ + +### **ArgMax** + + Computes the indices of the max elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equals 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the max + is selected if the max appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 12 + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (non-differentiable) : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + +# result: [[1, 1]] +result = argmax_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmax_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random') +``` + +
+ + +
+default_axes_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + +# result: [[1, 1]] +result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random_select_last_index') +``` + +
+ + +
+keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [[0], [1]] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random') +``` + +
+ + +
+keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [1]] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random_select_last_index') +``` + +
+ + +
+negative_axis_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [[0], [1]] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random') +``` + +
+ + +
+negative_axis_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [1]] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random_select_last_index') +``` + +
+ + +
+no_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [0, 1] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random') +``` + +
+ + +
+no_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [1, 1] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random_select_last_index') +``` + +
+ + +### **ArgMin** + + Computes the indices of the min elements of the input tensor's element along the + provided axis. The resulting tensor has the same rank as the input if keepdims equals 1. + If keepdims equals 0, then the resulting tensor has the reduced dimension pruned. + If select_last_index is True (default False), the index of the last occurrence of the min + is selected if the min appears more than once in the input. Otherwise the index of the + first occurrence is selected. + The type of the output tensor is integer. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 12 + +#### Attributes + +
+
axis : int (default is 0)
+
The axis in which to compute the arg indices. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
select_last_index : int (default is 0)
+
Whether to select the last index or the first index if the {name} appears in multiple indices, default is False (first index).
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (non-differentiable) : tensor(int64)
+
Reduced output tensor with integer data type.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + +# The content of result is : [[0], [0]] +result = argmin_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmin_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random') +``` + +
+ + +
+default_axes_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + +# result: [[0, 0]] +result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random_select_last_index') +``` + +
+ + +
+keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1], [0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random') +``` + +
+ + +
+keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random_select_last_index') +``` + +
+ + +
+negative_axis_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1], [0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random') +``` + +
+ + +
+negative_axis_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random_select_last_index') +``` + +
+ + +
+no_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1, 0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random') +``` + +
+ + +
+no_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1, 0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random_select_last_index') +``` + +
+ + +### **Asin** + + Calculates the arcsine (inverse of sine) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arcsine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+asin + +```python +node = onnx.helper.make_node( + 'Asin', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arcsin(x) +expect(node, inputs=[x], outputs=[y], + name='test_asin_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) +y = np.arcsin(x) +expect(node, inputs=[x], outputs=[y], + name='test_asin') +``` + +
+ + +### **Asinh** + + Calculates the hyperbolic arcsine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arcsine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+asinh + +```python +node = onnx.helper.make_node( + 'Asinh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.arcsinh(x) # expected output [-0.88137358, 0., 0.88137358] +expect(node, inputs=[x], outputs=[y], + name='test_asinh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.arcsinh(x) +expect(node, inputs=[x], outputs=[y], + name='test_asinh') +``` + +
+ + +### **Atan** + + Calculates the arctangent (inverse of tangent) of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The arctangent of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+atan + +```python +node = onnx.helper.make_node( + 'Atan', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.arctan(x) +expect(node, inputs=[x], outputs=[y], + name='test_atan_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.arctan(x) +expect(node, inputs=[x], outputs=[y], + name='test_atan') +``` + +
+ + +### **Atanh** + + Calculates the hyperbolic arctangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic arctangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+atanh + +```python +node = onnx.helper.make_node( + 'Atanh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arctanh(x) # expected output [-0.54930615, 0., 0.54930615] +expect(node, inputs=[x], outputs=[y], + name='test_atanh_example') + +x = np.random.uniform(0.0, 1.0, (3, 4, 5)).astype(np.float32) +y = np.arctanh(x) +expect(node, inputs=[x], outputs=[y], + name='test_atanh') +``` + +
+ + +### **AveragePool** + + AveragePool consumes an input tensor X and applies average pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + average pooling consisting of computing the average on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i] + ``` + The output of each pooling window is divided by the number of elements (exclude pad when attribute count_include_pad is zero). + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 1, 7, 10 + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
count_include_pad : int (default is 0)
+
Whether include pad pixels when calculating values for the edges. Default is 0, doesn't count include pad.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+averagepool_1d_default + +```python +""" +input_shape: [1, 3, 32] +output_shape: [1, 3, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], +) +x = np.random.randn(1, 3, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2] +strides = [1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_1d_default') +``` + +
+ + +
+averagepool_2d_ceil + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [6, 7.5], + [12, 13.5]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_ceil') +``` + +
+ + +
+averagepool_2d_default + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 31, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_default') +``` + +
+ + +
+averagepool_2d_pads + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = 2 +pad_top = 2 +pad_right = 2 +pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads') +``` + +
+ + +
+averagepool_2d_pads_count_include_pad + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2], + count_include_pad=1, +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = 2 +pad_top = 2 +pad_right = 2 +pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=0) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG', count_include_pad=1) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads_count_include_pad') +``` + +
+ + +
+averagepool_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 7.5, 8, 8.5, 9], + [9.5, 10, 10.5, 11, 11.5], + [12, 12.5, 13, 13.5, 14], + [14.5, 15, 15.5, 16, 16.5], + [17, 17.5, 18, 18.5, 19]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads') +``` + +
+ + +
+averagepool_2d_precomputed_pads_count_include_pad + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2], + count_include_pad=1 +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[2.5200, 3.6000, 4.8000, 4.0800, 3.2400], + [4.5600, 6.4000, 8.4000, 7.0400, 5.5200], + [7.2000, 10.0000, 13.0000, 10.8000, 8.4000], + [6.9600, 9.6000, 12.4000, 10.2400, 7.9200], + [6.1200, 8.4000, 10.8000, 8.8800, 6.8400]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads_count_include_pad') +``` + +
+ + +
+averagepool_2d_precomputed_same_upper + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 3, 3] +pad_shape: [2, 2] -> [1, 1, 1, 1] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[4, 5.5, 7], + [11.5, 13, 14.5], + [19, 20.5, 22]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_same_upper') +``` + +
+ + +
+averagepool_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[4, 6], + [14, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_strides') +``` + +
+ + +
+averagepool_2d_same_lower + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [1, 0, 1, 0] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) +pad_bottom = pad_shape[0] // 2 +pad_top = pad_shape[0] - pad_bottom +pad_right = pad_shape[1] // 2 +pad_left = pad_shape[1] - pad_right +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_lower') +``` + +
+ + +
+averagepool_2d_same_upper + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [0, 1, 0, 1] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) +pad_top = pad_shape[0] // 2 +pad_bottom = pad_shape[0] - pad_top +pad_left = pad_shape[1] // 2 +pad_right = pad_shape[1] - pad_left +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_upper') +``` + +
+ + +
+averagepool_2d_strides + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 10, 10] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (5, 5) +strides = (3, 3) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_strides') +``` + +
+ + +
+averagepool_3d_default + +```python +""" +input_shape: [1, 3, 32, 32, 32] +output_shape: [1, 3, 31, 31, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], +) +x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2, 2, 2] +strides = [1, 1, 1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_3d_default') +``` + +
+ + +### **BatchNormalization** + + Carries out batch normalization as described in the paper + https://arxiv.org/abs/1502.03167. Depending on the mode it is being run, + There are five required inputs 'X', 'scale', 'B', 'input_mean' and + 'input_var'. + Note that 'input_mean' and 'input_var' are expected to be the estimated + statistics in inference mode (training_mode=False, default), + and the running statistics in training mode (training_mode=True). + There are multiple cases for the number of outputs, which we list below: + + Output case #1: Y, running_mean, running_var (training_mode=True) + Output case #2: Y (training_mode=False) + + When training_mode=False, extra outputs are invalid. + The outputs are updated as follows when training_mode=True: + ``` + running_mean = input_mean * momentum + current_mean * (1 - momentum) + running_var = input_var * momentum + current_var * (1 - momentum) + + Y = (X - current_mean) / sqrt(current_var + epsilon) * scale + B + + where: + + current_mean = ReduceMean(X, axis=all_except_channel_index) + current_var = ReduceVar(X, axis=all_except_channel_index) + + Notice that ReduceVar refers to the population variance, and it equals to + sum(sqrd(x_i - x_avg)) / N + where N is the population size (this formula does not use sample size N - 1). + + ``` + + The computation of ReduceMean and ReduceVar uses float to avoid overflow for float16 inputs. + + When training_mode=False: + ``` + Y = (X - input_mean) / sqrt(input_var + epsilon) * scale + B + ``` + + For previous (depreciated) non-spatial cases, implementors are suggested + to flatten the input shape to (N x C * D1 * D2 * ... * Dn) before a BatchNormalization Op. + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 9, 14 + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
momentum : float (default is 0.9)
+
Factor used in computing the running mean and variance.e.g., running_mean = running_mean * momentum + mean * (1 - momentum).
+
training_mode : int (default is 0)
+
If set to true, it indicates BatchNormalization is being used for training, and outputs 1, 2, 3, and 4 would be populated.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size, C is the number of channels. Statistics are computed for every channel of C over N and D1 to Dn dimensions. For image data, input dimensions become (N x C x H x W). The op also accepts single dimension input of size N in which case C is assumed to be 1
+
scale (differentiable) : T1
+
Scale tensor of shape (C).
+
B (differentiable) : T1
+
Bias tensor of shape (C).
+
input_mean (differentiable) : T2
+
running (training) or estimated (testing) mean tensor of shape (C).
+
input_var (differentiable) : T2
+
running (training) or estimated (testing) variance tensor of shape (C).
+
+ +#### Outputs (1 - 3) + +
+
Y (differentiable) : T
+
The output tensor of the same shape as X
+
running_mean (optional, non-differentiable) : T2
+
The running mean after the BatchNormalization operator.
+
running_var (optional, non-differentiable) : T2
+
The running variance after the BatchNormalization operator. This op uses the population size (N) for calculating variance, and not the sample size N-1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain scale and bias types to float tensors.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain mean and variance types to float tensors.
+
+ + +#### Examples + +
+batchnormalization + +```python +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +y = _batchnorm_test_mode(x, s, bias, mean, var).astype(np.float32) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_example') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +epsilon = 1e-2 +y = _batchnorm_test_mode(x, s, bias, mean, var, epsilon).astype(np.float32) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], + epsilon=epsilon, +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_epsilon') +``` + +
+ + +
+train + +```python +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +# using np.bool(1) while generating test data with "'bool' object has no attribute 'dtype'" +# working around by using np.byte(1).astype(bool) +training_mode = 1 +y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + training_mode=training_mode +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_example_training_mode') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +training_mode = 1 +momentum = 0.9 +epsilon = 1e-2 +y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var, momentum, + epsilon) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + epsilon=epsilon, + training_mode=training_mode +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_epsilon_training_mode') +``` + +
+ + +### **Bernoulli** + + Draws binary random numbers (0 or 1) from a Bernoulli distribution. The input tensor should be a tensor + containing probabilities p (a value in the range [0,1]) to be used for drawing the binary random number, + where an output of 1 is produced with probability p and an output of 0 is produced with probability (1-p). + + This operator is non-deterministic and may not produce the same values in different + implementations (even if a seed is specified). + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
The data type for the elements of the output tensor. if not specified, we will use the data type of the input tensor.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
All values in input have to be in the range:[0, 1].
+
+ +#### Outputs + +
+
output : T2
+
The returned output tensor only has values 0 or 1, same shape as input tensor.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bool)
+
Constrain output types to all numeric tensors and bool tensors.
+
+ + +#### Examples + +
+bernoulli_with_dtype + +```python +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y = bernoulli_reference_implementation(x, np.float64) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli_double') +``` + +
+ + +
+bernoulli_with_seed + +```python +seed = np.float(0) +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + seed=seed, +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y = bernoulli_reference_implementation(x, np.float32) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli_seed') +``` + +
+ + +
+bernoulli_without_dtype + +```python +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float) +y = bernoulli_reference_implementation(x, np.float) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli') +``` + +
+ + +### **BitShift** + + Bitwise shift operator performs element-wise operation. For each input element, if the + attribute "direction" is "RIGHT", this operator moves its binary representation toward + the right side so that the input value is effectively decreased. If the attribute "direction" + is "LEFT", bits of binary representation moves toward the left side, which results the + increase of its actual value. The input X is the tensor to be shifted and another input + Y specifies the amounts of shifting. For example, if "direction" is "Right", X is [1, 4], + and S is [1, 1], the corresponding output Z would be [0, 2]. If "direction" is "LEFT" with + X=[1, 2] and S=[1, 2], the corresponding output Y would be [2, 8]. + + Because this operator supports Numpy-style broadcasting, X's and Y's shapes are + not necessarily identical. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
direction : string (required)
+
Direction of moving bits. It can be either "RIGHT" (for right shift) or "LEFT" (for left shift).
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
First operand, input to be shifted.
+
Y (non-differentiable) : T
+
Second operand, amounts of shift.
+
+ +#### Outputs + +
+
Z (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64)
+
Constrain input and output types to integer tensors.
+
+ + +#### Examples + +
+left_unit16 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint16) +y = np.array([1, 2, 3]).astype(np.uint16) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint16') +``` + +
+ + +
+left_unit32 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint32) +y = np.array([1, 2, 3]).astype(np.uint32) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint32') +``` + +
+ + +
+left_unit64 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint64) +y = np.array([1, 2, 3]).astype(np.uint64) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint64') +``` + +
+ + +
+left_unit8 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint8) +y = np.array([1, 2, 3]).astype(np.uint8) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint8') +``` + +
+ + +
+right_unit16 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint16) +y = np.array([1, 2, 3]).astype(np.uint16) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint16') +``` + +
+ + +
+right_unit32 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint32) +y = np.array([1, 2, 3]).astype(np.uint32) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint32') +``` + +
+ + +
+right_unit64 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint64) +y = np.array([1, 2, 3]).astype(np.uint64) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint64') +``` + +
+ + +
+right_unit8 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint8) +y = np.array([1, 2, 3]).astype(np.uint8) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint8') +``` + +
+ + +### **Cast** + + The operator casts the elements of a given input tensor to a data type + specified by the 'to' argument and returns an output tensor of the same size in + the converted type. The 'to' argument must be one of the data types specified + in the 'DataType' enum field in the TensorProto message. + + Casting from string tensor in plain (e.g., "3.14" and "1000") and scientific numeric representations + (e.g., "1e-5" and "1E8") to float types is supported. For example, converting string "100.5" to an integer may + result 100. There are some string literals reserved for special floating-point values; + "+INF" (and "INF"), "-INF", and "NaN" are positive infinity, negative infinity, and not-a-number, respectively. + Any string which can exactly match "+INF" in a case-insensitive way would be mapped to positive infinite. Similarly, + this case-insensitive rule is applied to "INF" and "NaN". When casting from numeric tensors + to string tensors, plain floating-point representation (such as "314.15926") would be used. + Converting non-numerical-literal string such as "Hello World!" is an undefined behavior. Cases + of converting string representing floating-point arithmetic value, such as "2.718", to INT is an undefined behavior. + + Conversion from a numerical type to any numerical type is always allowed. + User must be aware of precision loss and value change caused by range difference between two types. + For example, a 64-bit float 3.1415926459 may be round to a 32-bit float 3.141592. Similarly, converting + an integer 36 to Boolean may produce 1 because we truncate bits which can't be stored in the targeted type. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 9 + +#### Attributes + +
+
to : int (required)
+
The data type to which the elements of the input tensor are cast. Strictly must be one of the types from DataType enum in TensorProto
+
+ +#### Inputs + +
+
input (differentiable) : T1
+
Input tensor to be cast.
+
+ +#### Outputs + +
+
output (differentiable) : T2
+
Output tensor with the same shape as input with type specified by the 'to' argument
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain input types. Casting from complex is not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain output types. Casting to complex is not supported.
+
+ + +#### Examples + +
+cast + +```python +shape = (3, 4) +test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), +] + +for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + node = onnx.helper.make_node( + 'Cast', + inputs=['input'], + outputs=['output'], + to=getattr(TensorProto, to_type), + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type) +``` + +
+ + +### **CastLike** + + The operator casts the elements of a given input tensor (the first input) to + the same data type as the elements of the second input tensor. + See documentation of the Cast operator for further details. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T1
+
Input tensor to be cast.
+
target_type (non-differentiable) : T2
+
The (first) input tensor will be cast to produce a tensor of the same type as this (second input) tensor.
+
+ +#### Outputs + +
+
output (differentiable) : T2
+
Output tensor produced by casting the first input tensor to have the same type as the second input tensor.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain input types. Casting from complex is not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool), tensor(string), tensor(bfloat16)
+
Constrain output types. Casting to complex is not supported.
+
+ + +#### Examples + +
+castlike + +```python +shape = (3, 4) +test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), +] + +for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it np.object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(np.object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(np.object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + like = output.flatten()[0:1] + node = onnx.helper.make_node( + 'CastLike', + inputs=['input', 'like'], + outputs=['output'], + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto, output_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type) +``` + +
+ + +### **Ceil** + + Ceil takes one input data (Tensor) and produces one output data + (Tensor) where the ceil is, y = ceil(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+ceil + +```python +node = onnx.helper.make_node( + 'Ceil', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1.5, 1.2]).astype(np.float32) +y = np.ceil(x) # expected output [-1., 2.] +expect(node, inputs=[x], outputs=[y], + name='test_ceil_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.ceil(x) +expect(node, inputs=[x], outputs=[y], + name='test_ceil') +``` + +
+ + +### **Celu** + + Continuously Differentiable Exponential Linear Units: + Perform the linear unit element-wise on the input tensor X + using formula: + + ``` + max(0,x) + min(0,alpha*(exp(x/alpha)-1)) + ``` + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
The Alpha value in Celu formula which control the shape of the unit. The default value is 1.0.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float)
+
Constrain input and output types to float32 tensors.
+
+ + +#### Examples + +
+celu + +```python +alpha = 2.0 +node = onnx.helper.make_node( + 'Celu', + inputs=['X'], + outputs=['Y'], + alpha=alpha, +) + +input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + +# Calculate expected output data +positive_input = np.maximum(0, input_data) +negative_input = np.minimum(0, alpha * (np.exp(input_data / alpha) - 1)) +expected_output = positive_input + negative_input + +expect(node, inputs=[input_data], outputs=[expected_output], + name='test_celu') +``` + +
+ + +### **Clip** + + Clip operator limits the given input within an interval. The interval is + specified by the inputs 'min' and 'max'. They default to + numeric_limits::lowest() and numeric_limits::max(), respectively. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 11, 12 + +#### Inputs (1 - 3) + +
+
input (differentiable) : T
+
Input tensor whose elements to be clipped
+
min (optional, non-differentiable) : T
+
Minimum value, under which element is replaced by min. It must be a scalar(tensor of empty shape).
+
max (optional, non-differentiable) : T
+
Maximum value, above which element is replaced by max. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor with clipped input elements
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+clip + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], +) + +x = np.array([-2, 0, 2]).astype(np.float32) +min_val = np.float32(-1) +max_val = np.float32(1) +y = np.clip(x, min_val, max_val) # expected output [-1., 0., 1.] +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, min_val, max_val) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip') +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], +) + +min_val = np.float32(-5) +max_val = np.float32(5) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-1, 0, 1]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_inbounds') + +x = np.array([-6, 0, 6]).astype(np.float32) +y = np.array([-5, 0, 5]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_outbounds') + +x = np.array([-1, 0, 6]).astype(np.float32) +y = np.array([-1, 0, 5]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_splitbounds') +``` + +
+ + +
+clip_default + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], +) +min_val = np.float32(0) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, min_val, np.inf) +expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_min') + +no_min = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], +) +max_val = np.float32(0) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, -np.inf, max_val) +expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_max') + +no_max = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-1, 0, 1]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_clip_default_inbounds') +``` + +
+ + +
+clip_default_int8 + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], +) +min_val = np.int8(0) +x = np.random.randn(3, 4, 5).astype(np.int8) +y = np.clip(x, min_val, np.iinfo(np.int8).max) +expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_int8_min') + +no_min = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], +) +max_val = np.int8(0) +x = np.random.randn(3, 4, 5).astype(np.int8) +y = np.clip(x, np.iinfo(np.int8).min, max_val) +expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_int8_max') + +no_max = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.int8) +y = np.array([-1, 0, 1]).astype(np.int8) +expect(node, inputs=[x], outputs=[y], + name='test_clip_default_int8_inbounds') +``` + +
+ + +### **Compress** + + Selects slices from an input tensor along a given axis where condition evaluates to True for each axis index. + In case axis is not provided, input is flattened before elements are selected. + Compress behaves like numpy.compress: https://docs.scipy.org/doc/numpy/reference/generated/numpy.compress.html + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Attributes + +
+
axis : int
+
(Optional) Axis along which to take slices. If not specified, input is flattened before elements being selected. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Tensor of rank r >= 1.
+
condition (non-differentiable) : T1
+
Rank 1 tensor of booleans to indicate which slices or data elements to be selected. Its length can be less than the input length along the axis or the flattened input size if axis is not specified. In such cases data slices or elements exceeding the condition length are discarded.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r if axis is specified. Otherwise output is a Tensor of rank 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(bool)
+
Constrain to boolean tensors.
+
+ + +#### Examples + +
+compress_0 + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=0, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1, 1]) +output = np.compress(condition, input, axis=0) +#print(output) +#[[ 3. 4.] +# [ 5. 6.]] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_0') +``` + +
+ + +
+compress_1 + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=1, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1]) +output = np.compress(condition, input, axis=1) +#print(output) +#[[ 2.] +# [ 4.] +# [ 6.]] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_1') +``` + +
+ + +
+compress_default_axis + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1, 0, 0, 1]) +output = np.compress(condition, input) +#print(output) +#[ 2., 5.] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_default_axis') +``` + +
+ + +
+compress_negative_axis + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=-1, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1]) +output = np.compress(condition, input, axis=-1) +# print(output) +#[[ 2.] +# [ 4.] +# [ 6.]] +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_negative_axis') +``` + +
+ + +### **Concat** + + Concatenate a list of tensors into a single tensor. All input tensors must have the same shape, except for the dimension size of the axis to concatenate on. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 4, 11 + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on. A negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(inputs)..
+
+ +#### Inputs (1 - ∞) + +
+
inputs (variadic, differentiable) : T
+
List of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result (differentiable) : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ + +#### Examples + +
+concat + +```python +test_cases: Dict[Text, Sequence[Any]] = { + '1d': ([1, 2], + [3, 4]), + '2d': ([[1, 2], [3, 4]], + [[5, 6], [7, 8]]), + '3d': ([[[1, 2], [3, 4]], [[5, 6], [7, 8]]], + [[[9, 10], [11, 12]], [[13, 14], [15, 16]]]) +} + +for test_case, values_ in test_cases.items(): + values = [np.asarray(v, dtype=np.float32) for v in values_] + for i in range(len(values[0].shape)): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_' + str(i)) + + for i in range(-len(values[0].shape), 0): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_negative_' + str(abs(i))) +``` + +
+ + +### **ConcatFromSequence** + + Concatenate a sequence of tensors into a single tensor. + All input tensors must have the same shape, except for the dimension size of the axis to concatenate on. + By default 'new_axis' is 0, the behavior is similar to numpy.concatenate. + When 'new_axis' is 1, the behavior is similar to numpy.stack. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (required)
+
Which axis to concat on. Accepted range in `[-r, r - 1]`, where `r` is the rank of input tensors. When `new_axis` is 1, accepted range is `[-r - 1, r]`.
+
new_axis : int (default is 0)
+
Insert and concatenate on a new axis or not, default 0 means do not insert new axis.
+
+ +#### Inputs + +
+
input_sequence : S
+
Sequence of tensors for concatenation
+
+ +#### Outputs + +
+
concat_result : T
+
Concatenated tensor
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input types to any tensor type.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain output types to any tensor type.
+
+ + +### **Constant** + + This operator produces a constant tensor. Exactly one of the provided attributes, either value, sparse_value, + or value_* must be specified. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 9, 11, 12 + +#### Attributes + +
+
sparse_value : sparse_tensor
+
The value for the elements of the output tensor in sparse format.
+
value : tensor
+
The value for the elements of the output tensor.
+
value_float : float
+
The value for the sole element for the scalar, float32, output tensor.
+
value_floats : list of floats
+
The values for the elements for the 1D, float32, output tensor.
+
value_int : int
+
The value for the sole element for the scalar, int64, output tensor.
+
value_ints : list of ints
+
The values for the elements for the 1D, int64, output tensor.
+
value_string : string
+
The value for the sole element for the scalar, UTF-8 string, output tensor.
+
value_strings : list of strings
+
The values for the elements for the 1D, UTF-8 string, output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor containing the same value of the provided tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+constant + +```python +values = np.random.randn(5, 5).astype(np.float32) +node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['values'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=values.shape, + vals=values.flatten().astype(float), + ), +) + +expect(node, inputs=[], outputs=[values], + name='test_constant') +``` + +
+ + +### **ConstantOfShape** + + Generate a tensor with given value and shape. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
value : tensor
+
(Optional) The value of the output elements.Should be a one-element tensor. If not specified, it defaults to a tensor of value 0 and datatype float32
+
+ +#### Inputs + +
+
input : T1
+
1D tensor. The shape of the expected output tensor. If empty tensor is given, the output would be a scalar. All values must be >= 0.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of shape specified by 'input'.If attribute 'value' is specified, the value and datatype of the output tensor is taken from 'value'.If attribute 'value' is not specified, the value in the output defaults to 0, and the datatype defaults to float32.
+
+ +#### Type Constraints + +
+
T1 : tensor(int64)
+
Constrain input types.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types to be numerics.
+
+ + +#### Examples + +
+float_ones + +```python +x = np.array([4, 3, 2]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.FLOAT, + [1], [1]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) + +y = np.ones(x, dtype=np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_float_ones') +``` + +
+ + +
+int32_shape_zero + +```python +x = np.array([0, ]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) +y = np.zeros(x, dtype=np.int32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_shape_zero') +``` + +
+ + +
+int32_zeros + +```python +x = np.array([10, 6]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) +y = np.zeros(x, dtype=np.int32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_zeros') +``` + +
+ + +### **Conv** + + The convolution operator consumes an input tensor and a filter, and + computes the output. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults is 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults is 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
W (differentiable) : T
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. Assuming zero based indices for the shape array, X.shape[1] == (W.shape[1] * group) == C and W.shape[0] mod G == 0. Or in other words FILTER_IN_CHANNEL multiplied by the number of groups should be equal to DATA_CHANNEL and the number of feature maps M should be a multiple of the number of groups G.
+
B (optional, differentiable) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+conv + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with padding +node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[1, 1, 1, 1], +) +y_with_padding = np.array([[[[12., 21., 27., 33., 24.], # (1, 1, 5, 5) output tensor + [33., 54., 63., 72., 51.], + [63., 99., 108., 117., 81.], + [93., 144., 153., 162., 111.], + [72., 111., 117., 123., 84.]]]]).astype(np.float32) +expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_basic_conv_with_padding') + +# Convolution without padding +node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[0, 0, 0, 0], +) +y_without_padding = np.array([[[[54., 63., 72.], # (1, 1, 3, 3) output tensor + [99., 108., 117.], + [144., 153., 162.]]]]).astype(np.float32) +expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_basic_conv_without_padding') +``` + +
+ + +
+conv_with_autopad_same + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with auto_pad='SAME_LOWER' and strides=2 +node = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + auto_pad='SAME_LOWER', + kernel_shape=[3, 3], + strides=[2, 2], +) +y = np.array([[[[12., 27., 24.], + [63., 108., 81.], + [72., 117., 84.]]]]).astype(np.float32) +expect(node, inputs=[x, W], outputs=[y], + name='test_conv_with_autopad_same') +``` + +
+ + +
+conv_with_strides + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 7, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with strides=2 and padding +node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 1, 1, 1], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_with_padding = np.array([[[[12., 27., 24.], # (1, 1, 4, 3) output tensor + [63., 108., 81.], + [123., 198., 141.], + [112., 177., 124.]]]]).astype(np.float32) +expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_conv_with_strides_padding') + +# Convolution with strides=2 and no padding +node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[0, 0, 0, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_without_padding = np.array([[[[54., 72.], # (1, 1, 3, 2) output tensor + [144., 162.], + [234., 252.]]]]).astype(np.float32) +expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_conv_with_strides_no_padding') + +# Convolution with strides=2 and padding only along one dimension (the H dimension in NxCxHxW tensor) +node_with_asymmetric_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 0, 1, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_with_asymmetric_padding = np.array([[[[21., 33.], # (1, 1, 4, 2) output tensor + [99., 117.], + [189., 207.], + [171., 183.]]]]).astype(np.float32) +expect(node_with_asymmetric_padding, inputs=[x, W], outputs=[y_with_asymmetric_padding], + name='test_conv_with_strides_and_asymmetric_padding') +``` + +
+ + +### **ConvInteger** + + The integer convolution operator consumes an input tensor, its zero-point, a filter, and its zero-point, + and computes the output. The production MUST never overflow. The accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into. default is 1.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input 'w'.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0.The value represent the number of pixels added to the beginning and end part of the corresponding axis.`pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number ofpixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaultsto 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each axis.
+
+ +#### Inputs (2 - 4) + +
+
x : T1
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
w : T2
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. X.shape[1] == (W.shape[1] * group) == C (assuming zero based indices for the shape array). Or in other words FILTER_IN_CHANNEL should be equal to DATA_CHANNEL.
+
x_zero_point (optional) : T1
+
Zero point tensor for input 'x'. It's optional and default value is 0. It's a scalar, which means a per-tensor/layer quantization.
+
w_zero_point (optional) : T2
+
Zero point tensor for input 'w'. It's optional and default value is 0. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M)
+
+ +#### Outputs + +
+
y : T3
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input x and its zero point data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input w and its zero point data type to 8-bit integer tensor.
+
T3 : tensor(int32)
+
Constrain output y data type to 32-bit integer tensor.
+
+ + +#### Examples + +
+with_padding + +```python + +x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) +x_zero_point = np.uint8(1) +w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + +y = np.array([1, 3, 5, 3, 5, 12, 16, 9, 11, 24, 28, 15, 7, 15, 17, 9]).astype(np.int32).reshape((1, 1, 4, 4)) + +# ConvInteger with padding +convinteger_node_with_padding = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y'], + pads=[1, 1, 1, 1],) + +expect(convinteger_node_with_padding, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_with_padding') +``` + +
+ + +
+without_padding + +```python + +x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) +x_zero_point = np.uint8(1) +w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + +y = np.array([12, 16, 24, 28]).astype(np.int32).reshape(1, 1, 2, 2) + +# ConvInteger without padding +convinteger_node = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y']) + +expect(convinteger_node, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_without_padding') +``` + +
+ + +### **ConvTranspose** + + The convolution transpose operator consumes an input tensor and a filter, + and computes the output. + + If the pads parameter is provided the shape of the output is calculated via the following equation: + + output_shape[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - pads[start_i] - pads[end_i] + + output_shape can also be explicitly specified in which case pads values are auto generated using these equations: + + total_padding[i] = stride[i] * (input_size[i] - 1) + output_padding[i] + ((kernel_shape[i] - 1) * dilations[i] + 1) - output_shape[i] + If (auto_pads == SAME_UPPER): pads[start_i] = total_padding[i]/2; pads[end_i] = total_padding[i] - (total_padding[i]/2) + Else: pads[start_i] = total_padding[i] - (total_padding[i]/2); pads[end_i] = (total_padding[i]/2). + + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = input_shape[i] * strides[i]` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input W.
+
output_padding : list of ints
+
Additional elements added to the side with higher coordinate indices in the output. Each padding value in "output_padding" must be less than the corresponding stride/dilation dimension. By default, this attribute is a zero vector. Note that this attribute doesn't directly affect the computed output values. It only controls the selection of the computed values, so changing this attribute only adds or removes output elements. If "output_shape" is explicitly provided, "output_padding" does not contribute additional size to "output_shape" but participates in the computation of the needed padding amount. This is also called adjs or adjustment in some frameworks.
+
output_shape : list of ints
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If output_shape is specified pads values are ignored. See doc for details for equations to generate pads
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn)
+
W (differentiable) : T
+
The weight tensor that will be used in the convolutions; has size (C x M/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the weight shape will be (C x M/group x k1 x k2 x ... x kn), where (k1 x k2 x ... x kn) is the dimension of the kernel. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
B (optional, differentiable) : T
+
Optional 1D bias to be added to the convolution, has size of M.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, pad lengths and group count. The number of channels in the output should be equal to W.shape[1] * group (assuming zero based indices of the shape array)
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+convtranspose + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[[0., 1., 3., 3., 2.], # (1, 2, 5, 5) + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]], + + [[0., 1., 3., 3., 2.], + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose') +``` + +
+ + +
+convtranspose_1d + +```python +x = np.array([[[0., 1., 2.]]]).astype(np.float32) # (1, 1, 3) + +W = np.array([[[1., 1., 1.], # (1, 2, 3) + [1., 1., 1.]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[0., 1., 3., 3., 2.], # (1, 2, 5) + [0., 1., 3., 3., 2.]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_1d') +``` + +
+ + +
+convtranspose_3d + +```python +x = np.array([[[[[0., 1., 2., 3., 4.], # (1, 1, 3, 4, 5) + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.]], + [[20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.], + [35., 36., 37., 38., 39.]], + [[40., 41., 42., 43., 44.], + [45., 46., 47., 48., 49.], + [50., 51., 52., 53., 54.], + [55., 56., 57., 58., 59.]]]]]).astype(np.float32) + +W = np.array([[[[[1., 1., 1.], # (1, 2, 3, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]], + [[[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[[[0., 1., 3., 6., 9., 7., 4.], # (1, 2, 5, 6, 7) + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]], + + [[[0., 1., 3., 6., 9., 7., 4.], + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_3d') +``` + +
+ + +
+convtranspose_attributes + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +y = np.array([[[[0., 0., 1., 1., 3., 2., 2., 0.], # (1, 2, 10, 8) + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]], + + [[0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_shape=[10, 8]) +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_output_shape') + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_padding=[1, 1]) +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pad') + +node = onnx.helper.make_node( + 'ConvTranspose', ['X', 'W'], ['Y'], + name='test', + strides=[3, 2], + output_shape=[10, 8], + kernel_shape=[3, 3], + output_padding=[1, 1] +) +expect(node, inputs=[x, W], outputs=[y], + name='test_convtranspose_kernel_shape') +``` + +
+ + +
+convtranspose_autopad_same + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], auto_pad="SAME_UPPER", strides=[2, 2]) + +y = np.array([[[[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]], + + [[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_autopad_same') +``` + +
+ + +
+convtranspose_dilations + +```python +x = np.array([[[[3., 8., 1.], # (1, 1, 3, 3) + [9., 5., 7.], + [3., 2., 6.]]]]).astype(np.float32) +W = np.array([[[[7., 2.], # (1, 1, 2, 2) + [1., 9.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], dilations=[2, 2]) + +y = np.array([[[[21., 56., 13., 16., 2.], # [1, 1, 5, 5] + [63., 35., 67., 10., 14.], + [24., 22., 76., 76., 21.], + [9., 5., 88., 45., 63.], + [3., 2., 33., 18., 54.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_dilations') +``` + +
+ + +
+convtranspose_pads + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + pads=[1, 2, 1, 2]) + +y = np.array([[[[1., 1., 3.], # (1, 2, 7, 3) + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]], + + [[1., 1., 3.], + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pads') +``` + +
+ + +### **Cos** + + Calculates the cosine of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The cosine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+cos + +```python +node = onnx.helper.make_node( + 'Cos', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.cos(x) +expect(node, inputs=[x], outputs=[y], + name='test_cos_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.cos(x) +expect(node, inputs=[x], outputs=[y], + name='test_cos') +``` + +
+ + +### **Cosh** + + Calculates the hyperbolic cosine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic cosine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+cosh + +```python +node = onnx.helper.make_node( + 'Cosh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.cosh(x) # expected output [1.54308069, 1., 1.54308069] +expect(node, inputs=[x], outputs=[y], + name='test_cosh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.cosh(x) +expect(node, inputs=[x], outputs=[y], + name='test_cosh') +``` + +
+ + +### **CumSum** + + Performs cumulative sum of the input elements along the given axis. + By default, it will do the sum inclusively meaning the first element is copied as is. + Through an `exclusive` attribute, this behavior can change to exclude the first element. + It can also perform summation in the opposite direction of the axis. For that, set `reverse` attribute to 1. + + Example: + ``` + input_x = [1, 2, 3] + axis=0 + output = [1, 3, 6] + exclusive=1 + output = [0, 1, 3] + exclusive=0 + reverse=1 + output = [6, 5, 3] + exclusive=1 + reverse=1 + output = [5, 3, 0] + ``` + + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 11 + +#### Attributes + +
+
exclusive : int (default is 0)
+
If set to 1 will return exclusive sum in which the top element is not included. In other terms, if set to 1, the j-th output element would be the sum of the first (j-1) elements. Otherwise, it would be the sum of the first j elements.
+
reverse : int (default is 0)
+
If set to 1 will perform the sums in reverse direction.
+
+ +#### Inputs + +
+
x (differentiable) : T
+
An input tensor that is to be processed.
+
axis (non-differentiable) : T2
+
A 0-D tensor. Must be in the range [-rank(x), rank(x)-1]. Negative value means counting dimensions from the back.
+
+ +#### Outputs + +
+
y (differentiable) : T
+
Output tensor of the same type as 'x' with cumulative sums of the x's elements
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
T2 : tensor(int32), tensor(int64)
+
axis tensor can be int32 or int64 only
+
+ + +#### Examples + +
+cumsum_1d + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'] +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([1., 3., 6., 10., 15.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d') +``` + +
+ + +
+cumsum_1d_exclusive + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + exclusive=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([0., 1., 3., 6., 10.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_exclusive') +``` + +
+ + +
+cumsum_1d_reverse + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([15., 14., 12., 9., 5.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse') +``` + +
+ + +
+cumsum_1d_reverse_exclusive + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1, + exclusive=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([14., 12., 9., 5., 0.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse_exclusive') +``` + +
+ + +
+cumsum_2d_axis_0 + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(0) +y = np.array([1., 2., 3., 5., 7., 9.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_0') +``` + +
+ + +
+cumsum_2d_axis_1 + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(1) +y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_1') +``` + +
+ + +
+cumsum_2d_negative_axis + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(-1) +y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_negative_axis') +``` + +
+ + +### **DepthToSpace** + + DepthToSpace rearranges (permutes) data from depth into blocks of spatial data. + This is the reverse transformation of SpaceToDepth. More specifically, this op outputs a copy of + the input tensor where values from the depth dimension are moved in spatial blocks to the height + and width dimensions. By default, `mode` = `DCR`. + In the DCR mode, elements along the depth dimension from the input tensor are rearranged in the + following order: depth, column, and then row. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, blocksize, blocksize, c // (blocksize**2), h, w]) + + tmp = np.transpose(tmp, [0, 3, 4, 1, 5, 2]) + + y = np.reshape(tmp, [b, c // (blocksize**2), h * blocksize, w * blocksize]) + + + In the CRD mode, elements along the depth dimension from the input tensor are rearranged in the + following order: column, row, and the depth. The output y is computed from the input x as below: + + b, c, h, w = x.shape + + tmp = np.reshape(x, [b, c // (blocksize ** 2), blocksize, blocksize, h, w]) + + tmp = np.transpose(tmp, [0, 1, 4, 2, 5, 3]) + + y = np.reshape(tmp, [b, c // (blocksize ** 2), h * blocksize, w * blocksize]) + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
mode : string (default is DCR)
+
DCR (default) for depth-column-row order re-arrangement. Use CRD for column-row-depth order.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of [N, C/(blocksize * blocksize), H * blocksize, W * blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+crd_mode_example + +```python +node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='CRD' +) + +# (1, 8, 2, 3) input tensor +x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + +# (1, 2, 4, 6) output tensor +y = np.array([[[[0., 9., 1., 10., 2., 11.], + [18., 27., 19., 28., 20., 29.], + [3., 12., 4., 13., 5., 14.], + [21., 30., 22., 31., 23., 32.]], + [[36., 45., 37., 46., 38., 47.], + [54., 63., 55., 64., 56., 65.], + [39., 48., 40., 49., 41., 50.], + [57., 66., 58., 67., 59., 68.]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_crd_mode_example') +``` + +
+ + +
+default_mode_example + +```python +node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='DCR' +) + +# (1, 8, 2, 3) input tensor +x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + +# (1, 2, 4, 6) output tensor +y = np.array([[[[0., 18., 1., 19., 2., 20.], + [36., 54., 37., 55., 38., 56.], + [3., 21., 4., 22., 5., 23.], + [39., 57., 40., 58., 41., 59.]], + [[9., 27., 10., 28., 11., 29.], + [45., 63., 46., 64., 47., 65.], + [12., 30., 13., 31., 14., 32.], + [48., 66., 49., 67., 50., 68.]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_example') +``` + +
+ + +### **DequantizeLinear** + + The linear dequantization operator. It consumes a quantized tensor, a scale, and a zero point to compute the full precision tensor. + The dequantization formula is y = (x - x_zero_point) * x_scale. 'x_scale' and 'x_zero_point' must have same shape, and can be either a scalar + for per-tensor / per layer quantization, or a 1-D tensor for per-axis quantization. + 'x_zero_point' and 'x' must have same type. 'x' and 'y' must have same shape. In the case of dequantizing int32, + there's no zero point (zero point is supposed to be 0). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 10 + +#### Attributes + +
+
axis : int (default is 1)
+
(Optional) The axis of the dequantizing dimension of the input tensor. Ignored for per-tensor quantization. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs (2 - 3) + +
+
x : T
+
N-D quantized input tensor to be de-quantized.
+
x_scale : tensor(float)
+
Scale for input 'x'. It can be a scalar, which means a per-tensor/layer dequantization, or a 1-D tensor for per-axis dequantization.
+
x_zero_point (optional) : T
+
Zero point for input 'x'. Shape must match x_scale. It's optional. Zero point is 0 when it's not specified.
+
+ +#### Outputs + +
+
y : tensor(float)
+
N-D full precision output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T : tensor(int8), tensor(uint8), tensor(int32)
+
Constrain 'x_zero_point' and 'x' to 8-bit/32-bit integer tensor.
+
+ + +#### Examples + +
+axis + +```python +node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + +# 1-D tensor zero point and scale of size equal to axis 1 of the input tensor +x = np.array([[[[3, 89], + [34, 200], + [74, 59]], + + [[5, 24], + [24, 87], + [32, 13]], + + [[245, 99], + [4, 142], + [121, 102]], ], ], dtype=np.uint8) +x_scale = np.array([2, 4, 5], dtype=np.float32) +x_zero_point = np.array([84, 24, 196], dtype=np.uint8) +y = (x.astype(np.float32) - x_zero_point.reshape(1, 3, 1, 1).astype(np.float32)) * x_scale.reshape(1, 3, 1, 1) + +expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear_axis') +``` + +
+ + +
+dequantizelinear + +```python +node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + +# scalar zero point and scale +x = np.array([0, 3, 128, 255]).astype(np.uint8) +x_scale = np.float32(2) +x_zero_point = np.uint8(128) +y = np.array([-256, -250, 0, 254], dtype=np.float32) + +expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear') +``` + +
+ + +### **Det** + + Det calculates determinant of a square matrix or batches of square matrices. + Det takes one input tensor of shape `[*, M, M]`, where `*` is zero or more batch dimensions, + and the inner-most 2 dimensions form square matrices. + The output is a tensor of shape `[*]`, containing the determinants of all input submatrices. + e.g., When the input is 2-D, the output is a scalar(shape is empty: `[]`). + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to floating-point tensors.
+
+ + +#### Examples + +
+2d + +```python +node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], +) + +x = np.arange(4).reshape(2, 2).astype(np.float32) +y = np.linalg.det(x) # expect -2 +expect(node, inputs=[x], outputs=[y], + name='test_det_2d') +``` + +
+ + +
+nd + +```python +node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], +) + +x = np.array([[[1, 2], [3, 4]], [[1, 2], [2, 1]], [[1, 3], [3, 1]]]).astype(np.float32) +y = np.linalg.det(x) # expect array([-2., -3., -8.]) +expect(node, inputs=[x], outputs=[y], + name='test_det_nd') +``` + +
+ + +### **Div** + + Performs element-wise binary division (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 13 + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+div + +```python +node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([3, 4]).astype(np.float32) +y = np.array([1, 2]).astype(np.float32) +z = x / y # expected output [3., 2.] +expect(node, inputs=[x, y], outputs=[z], + name='test_div_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.rand(3, 4, 5).astype(np.float32) + 1.0 +z = x / y +expect(node, inputs=[x, y], outputs=[z], + name='test_div') + +x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + 1 +z = x // y +expect(node, inputs=[x, y], outputs=[z], + name='test_div_uint8') +``` + +
+ + +
+div_broadcast + +```python +node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.rand(5).astype(np.float32) + 1.0 +z = x / y +expect(node, inputs=[x, y], outputs=[z], + name='test_div_bcast') +``` + +
+ + +### **Dropout** + + Dropout takes an input floating-point tensor, an optional input ratio (floating-point scalar) and an optional input training_mode (boolean scalar). It produces two tensor outputs, + output (floating-point tensor) and mask (optional `Tensor`). If `training_mode` is true then the output Y will be a random dropout; + Note that this Dropout scales the masked input data by the following equation, so to convert the trained model into inference mode, + the user can simply not pass `training_mode` input or set it to false. + ``` + output = scale * data * mask, + ``` + where + ``` + scale = 1. / (1. - ratio). + ``` + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 10, 12 + +#### Attributes + +
+
seed : int
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs (1 - 3) + +
+
data (differentiable) : T
+
The input data as Tensor.
+
ratio (optional, non-differentiable) : T1
+
The ratio of random dropout, with value in [0, 1). If this input was not set, or if it was set to 0, the output would be a simple copy of the input. If it's non-zero, output will be a random dropout of the scaled input, which is typically the case during training. It is an optional value, if not specified it will default to 0.5.
+
training_mode (optional, non-differentiable) : T2
+
If set to true then it indicates dropout is being used for training. It is an optional value hence unless specified explicitly, it is false. If it is false, ratio is ignored and the operation mimics inference mode where nothing will be dropped from the input data and if mask is requested as output it will contain all ones.
+
+ +#### Outputs (1 - 2) + +
+
output (differentiable) : T
+
The output.
+
mask (optional, non-differentiable) : T2
+
The output mask.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input 'ratio' types to float tensors.
+
T2 : tensor(bool)
+
Constrain output 'mask' types to boolean tensors.
+
+ + +#### Examples + +
+default + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = dropout(x) +expect(node, inputs=[x], outputs=[y], name='test_dropout_default') +``` + +
+ + +
+default_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y, z = dropout(x, return_mask=True) +expect(node, inputs=[x], outputs=[y, z], name='test_dropout_default_mask') +``` + +
+ + +
+default_mask_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y', 'z'], + seed=seed +) + +r = np.float32(0.1) +x = np.random.randn(3, 4, 5).astype(np.float32) +y, z = dropout(x, r, return_mask=True) +expect(node, inputs=[x, r], outputs=[y, z], name='test_dropout_default_mask_ratio') +``` + +
+ + +
+default_old + +```python +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = x +expect(node, inputs=[x], outputs=[y], + name='test_dropout_default_old', opset_imports=[helper.make_opsetid("", 11)]) +``` + +
+ + +
+default_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y'], + seed=seed +) + +r = np.float32(0.1) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = dropout(x, r) +expect(node, inputs=[x, r], outputs=[y], name='test_dropout_default_ratio') +``` + +
+ + +
+random_old + +```python +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + ratio=.2, +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = x +expect(node, inputs=[x], outputs=[y], + name='test_dropout_random_old', opset_imports=[helper.make_opsetid("", 11)]) +``` + +
+ + +
+training + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.75) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout') +``` + +
+ + +
+training_default + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.5) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_default') +``` + +
+ + +
+training_default_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.5) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_default_mask') +``` + +
+ + +
+training_default_zero_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.0) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_zero_ratio') +``` + +
+ + +
+training_default_zero_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.0) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_zero_ratio_mask') +``` + +
+ + +
+training_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.75) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_mask') +``` + +
+ + +### **DynamicQuantizeLinear** + + A Function to fuse calculation for Scale, Zero Point and FP32->8Bit convertion of FP32 Input data. + Outputs Scale, ZeroPoint and Quantized Input for a given FP32 Input. + Scale is calculated as: + ``` + y_scale = (max(x) - min(x))/(qmax - qmin) + * where qmax and qmin are max and min values for quantization range .i.e [0, 255] in case of uint8 + * data range is adjusted to include 0. + ``` + Zero point is calculated as: + ``` + intermediate_zero_point = qmin - min(x)/y_scale + y_zero_point = cast(round(saturate(itermediate_zero_point))) + * where qmax and qmin are max and min values for quantization range .i.e [0, 255] in case of uint8 + * for saturation, it saturates to [0, 255] if it's uint8, or [-127, 127] if it's int8. Right now only uint8 is supported. + * rounding to nearest ties to even. + ``` + Data quantization formula is: + ``` + y = saturate (round (x / y_scale) + y_zero_point) + * for saturation, it saturates to [0, 255] if it's uint8, or [-127, 127] if it's int8. Right now only uint8 is supported. + * rounding to nearest ties to even. + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
x : T1
+
Input tensor
+
+ +#### Outputs + +
+
y : T2
+
Quantized output tensor
+
y_scale : tensor(float)
+
Output scale. It's a scalar, which means a per-tensor/layer quantization.
+
y_zero_point : T2
+
Output zero point. It's a scalar, which means a per-tensor/layer quantization.
+
+ +#### Type Constraints + +
+
T1 : tensor(float)
+
Constrain 'x' to float tensor.
+
T2 : tensor(uint8)
+
Constrain 'y_zero_point' and 'y' to 8-bit unsigned integer tensor.
+
+ + +#### Examples + +
+dynamicquantizelinear + +```python +node = onnx.helper.make_node('DynamicQuantizeLinear', + inputs=['x'], + outputs=['y', 'y_scale', 'y_zero_point'], +) + +# expected scale 0.0196078438 and zero point 153 +X = np.array([0, 2, -3, -2.5, 1.34, 0.5]).astype(np.float32) +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear') + +# expected scale 0.0156862754 and zero point 255 +X = np.array([-1.0, -2.1, -1.3, -2.5, -3.34, -4.0]).astype(np.float32) +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_max_adjusted') + +X = np.array([1, 2.1, 1.3, 2.5, + 3.34, 4.0, 1.5, 2.6, + 3.9, 4.0, 3.0, 2.345]).astype(np.float32).reshape((3, 4)) + +# expected scale 0.0156862754 and zero point 0 +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_min_adjusted') +``` + +
+ + +### **Einsum** + + An einsum of the form ```term1, term2 -> output-term``` produces an output tensor using the following equation + + ```output[output-term] = reduce-sum( input1[term1] * input2[term] )``` + + where the reduce-sum performs a summation over all the indices occurring in the input terms (term1, term2) + that do not occur in the output-term. + + The Einsum operator evaluates algebraic tensor operations on a sequence of tensors, using the Einstein summation + convention. The equation string contains a comma-separated sequence of lower case letters. Each term corresponds to + an operand tensor, and the characters within the terms correspond to operands dimensions. + + This sequence may be followed by "->" to separate the left and right hand side of the equation. + If the equation contains "->" followed by the right-hand side, the explicit (not classical) form of the Einstein + summation is performed, and the right-hand side indices indicate output tensor dimensions. In other cases, + output indices are (implicitly) set to the alphabetically sorted sequence of indices appearing exactly once in the + equation. + + When a dimension character is repeated in the left-hand side, it represents summation along the dimension. + + The equation may contain ellipsis ("...") to enable broadcasting. Ellipsis must indicate a fixed number of dimensions. + Specifically, every occurrence of ellipsis in the equation must represent the same number of dimensions. + The right-hand side may contain exactly one ellipsis. In implicit mode, the ellipsis dimensions are set to the + beginning of the output. The equation string may contain space (U+0020) character. + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +#### Attributes + +
+
equation : string (required)
+
Einsum expression string.
+
+ +#### Inputs (1 - ∞) + +
+
Inputs (variadic, differentiable) : T
+
Operands
+
+ +#### Outputs + +
+
Output (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to all numerical tensor types.
+
+ + +#### Examples + +
+einsum_batch_diagonal + +```python +Eqn = '...ii ->...i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 5, 5) +Z = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Z], name='test_einsum_batch_diagonal') +``` + +
+ + +
+einsum_batch_matmul + +```python +Eqn = 'bij, bjk -> bik' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn +) + +X = np.random.randn(5, 2, 3) +Y = np.random.randn(5, 3, 4) +Z = einsum_reference_implementation(Eqn, (X, Y)) + +expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_batch_matmul') +``` + +
+ + +
+einsum_inner_prod + +```python +Eqn = 'i,i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn +) + +X = np.random.randn(5) +Y = np.random.randn(5) +Z = einsum_reference_implementation(Eqn, (X, Y)) + +expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_inner_prod') +``` + +
+ + +
+einsum_sum + +```python +Eqn = 'ij->i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 4) +Z = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Z], name='test_einsum_sum') +``` + +
+ + +
+einsum_transpose + +```python +Eqn = 'ij->ji' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 4) +Y = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Y], name='test_einsum_transpose') +``` + +
+ + +### **Elu** + + Elu takes one input data (Tensor) and produces one output data + (Tensor) where the function `f(x) = alpha * (exp(x) - 1.) for x < + 0`, `f(x) = x for x >= 0`., is applied to the tensor elementwise. + + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Coefficient of ELU.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
1D input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
1D output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+elu + +```python +node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], + alpha=2.0 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-1.2642411, 0., 1.] +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 +expect(node, inputs=[x], outputs=[y], + name='test_elu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 +expect(node, inputs=[x], outputs=[y], + name='test_elu') +``` + +
+ + +
+elu_default + +```python +default_alpha = 1.0 +node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha +expect(node, inputs=[x], outputs=[y], + name='test_elu_default') +``` + +
+ + +### **Equal** + + Returns the tensor resulted from performing the `equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 7, 11 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+equal + +```python +node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], +) + +x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +y = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +z = np.equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_equal') +``` + +
+ + +
+equal_broadcast + +```python +node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], +) + +x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +y = (np.random.randn(5) * 10).astype(np.int32) +z = np.equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_equal_bcast') +``` + +
+ + +### **Erf** + + Computes the error function of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The error function of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+erf + +```python +node = onnx.helper.make_node( + 'Erf', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +y = np.vectorize(math.erf)(x).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_erf') +``` + +
+ + +### **Exp** + + Calculates the exponential of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The exponential of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+exp + +```python +node = onnx.helper.make_node( + 'Exp', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.exp(x) # expected output [0.36787945, 1., 2.71828175] +expect(node, inputs=[x], outputs=[y], + name='test_exp_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.exp(x) +expect(node, inputs=[x], outputs=[y], + name='test_exp') +``` + +
+ + +### **Expand** + + Broadcast the input tensor following the given shape and the broadcast rule. + The broadcast rule is similar to numpy.array(input) * numpy.ones(shape): + Dimensions are right alignment; + Two corresponding dimensions must have the same value, or one of them is equal to 1. + Also, this operator is similar to numpy.broadcast_to(input, shape), + but the major difference is numpy.broadcast_to() does not allow shape to be smaller than input.size(). + It is possible that the output.shape is not equal to shape, when some dimensions in shape is equal to 1, + or the shape.ndim < input.shape.ndim. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 8 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
shape (non-differentiable) : tensor(int64)
+
A 1-D tensor indicates the shape you want to expand to, following the broadcast rule
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensors.
+
+ + +#### Examples + +
+dim_changed + +```python +node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], +) +shape = [3, 1] +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[1.], [2.], [3.]] +new_shape = [2, 1, 6] +expanded = data * np.ones(new_shape, dtype=np.float32) +#print(expanded) +#[[[1., 1., 1., 1., 1., 1.], +# [2., 2., 2., 2., 2., 2.], +# [3., 3., 3., 3., 3., 3.]], +# +# [[1., 1., 1., 1., 1., 1.], +# [2., 2., 2., 2., 2., 2.], +# [3., 3., 3., 3., 3., 3.]]] +new_shape = np.array(new_shape, dtype=np.int64) +expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_changed') +``` + +
+ + +
+dim_unchanged + +```python +node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], +) +shape = [3, 1] +new_shape = [3, 4] +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[1.], [2.], [3.]] +expanded = np.tile(data, 4) +#print(expanded) +#[[1., 1., 1., 1.], +# [2., 2., 2., 2.], +# [3., 3., 3., 3.]] +new_shape = np.array(new_shape, dtype=np.int64) +expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_unchanged') +``` + +
+ + +### **EyeLike** + + Generate a 2D tensor (matrix) with ones on the diagonal and zeros everywhere else. Only 2D + tensors are supported, i.e. input T1 must be of rank 2. The shape of the output tensor is the + same as the input tensor. The data type can be specified by the 'dtype' argument. If + 'dtype' is not specified, then the type of input tensor is used. By default, the main diagonal + is populated with ones, but attribute 'k' can be used to populate upper or lower diagonals. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message and be valid as an output type. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor. If not specified,the data type of the input tensor T1 is used. If input tensor T1 is also notspecified, then type defaults to 'float'.
+
k : int (default is 0)
+
(Optional) Index of the diagonal to be populated with ones. Default is 0. If T2 is the output, this op sets T2[i, i+k] = 1. k = 0 populates the main diagonal, k > 0 populates an upper diagonal, and k < 0 populates a lower diagonal.
+
+ +#### Inputs + +
+
input : T1
+
2D input tensor to copy shape, and optionally, type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor, same shape as input tensor T1.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain input types. Strings and complex are not supported.
+
T2 : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(bool)
+
Constrain output types. Strings and complex are not supported.
+
+ + +#### Examples + +
+populate_off_main_diagonal + +```python +shape = (4, 5) +off_diagonal_offset = 1 +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + k=off_diagonal_offset, + dtype=onnx.TensorProto.FLOAT, +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], k=off_diagonal_offset, dtype=np.float32) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_populate_off_main_diagonal') +``` + +
+ + +
+with_dtype + +```python +shape = (3, 4) +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], dtype=np.float64) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_with_dtype') +``` + +
+ + +
+without_dtype + +```python +shape = (4, 4) +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], dtype=np.int32) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_without_dtype') +``` + +
+ + +### **Flatten** + + Flattens the input tensor into a 2D matrix. If input tensor has shape + (d_0, d_1, ... d_n) then the output will have shape + (d_0 X d_1 ... d_(axis-1), d_axis X d_(axis+1) ... X dn). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 9, 11 + +#### Attributes + +
+
axis : int (default is 1)
+
Indicate up to which input dimensions (exclusive) should be flattened to the outer dimension of the output. The value for axis must be in the range [-r, r], where r is the rank of the input tensor. Negative value means counting dimensions from the back. When axis = 0, the shape of the output tensor is (1, (d_0 X d_1 ... d_n), where the shape of the input tensor is (d_0, d_1, ... d_n).
+
+ +#### Inputs + +
+
input (differentiable) : T
+
A tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
A 2D tensor with the contents of the input tensor, with input dimensions up to axis flattened to the outer dimension of the output and remaining input dimensions flattened into the inner dimension of the output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output to all tensor types.
+
+ + +#### Examples + +
+flatten + +```python +shape = (2, 3, 4, 5) +a = np.random.random_sample(shape).astype(np.float32) + +for i in range(len(shape)): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (1, -1) if i == 0 else (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_axis' + str(i)) +``` + +
+ + +
+flatten_negative_axis + +```python +shape = (2, 3, 4, 5) +a = np.random.random_sample(shape).astype(np.float32) + +for i in range(-len(shape), 0): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_negative_axis' + str(abs(i))) +``` + +
+ + +
+flatten_with_default_axis + +```python +node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], # Default value for axis: axis=1 +) + +shape = (5, 4, 3, 2) +a = np.random.random_sample(shape).astype(np.float32) +new_shape = (5, 24) +b = np.reshape(a, new_shape) +expect(node, inputs=[a], outputs=[b], + name='test_flatten_default_axis') +``` + +
+ + +### **Floor** + + Floor takes one input data (Tensor) and produces one output data + (Tensor) where the floor is, y = floor(x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+floor + +```python +node = onnx.helper.make_node( + 'Floor', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1.5, 1.2, 2]).astype(np.float32) +y = np.floor(x) # expected output [-2., 1., 2.] +expect(node, inputs=[x], outputs=[y], + name='test_floor_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.floor(x) +expect(node, inputs=[x], outputs=[y], + name='test_floor') +``` + +
+ + +### **GRU** + + Computes an one-layer GRU. This operator is usually supported via some custom + implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `z` - update gate + + `r` - reset gate + + `h` - hidden gate + + `t` - time step (t-1 means previous time step) + + `W[zrh]` - W parameter weight matrix for update, reset, and hidden gates + + `R[zrh]` - R recurrence weight matrix for update, reset, and hidden gates + + `Wb[zrh]` - W bias vectors for update, reset, and hidden gates + + `Rb[zrh]` - R bias vectors for update, reset, and hidden gates + + `WB[zrh]` - W parameter weight matrix for backward update, reset, and hidden gates + + `RB[zrh]` - R recurrence weight matrix for backward update, reset, and hidden gates + + `WBb[zrh]` - W bias vectors for backward update, reset, and hidden gates + + `RBb[zrh]` - R bias vectors for backward update, reset, and hidden gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh): + + - zt = f(Xt*(Wz^T) + Ht-1*(Rz^T) + Wbz + Rbz) + + - rt = f(Xt*(Wr^T) + Ht-1*(Rr^T) + Wbr + Rbr) + + - ht = g(Xt*(Wh^T) + (rt (.) Ht-1)*(Rh^T) + Rbh + Wbh) # default, when linear_before_reset = 0 + + - ht = g(Xt*(Wh^T) + (rt (.) (Ht-1*(Rh^T) + Rbh)) + Wbh) # when linear_before_reset != 0 + + - Ht = (1 - zt) (.) ht + zt (.) Ht-1 + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 3, 7 + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 2 (or 4 if bidirectional) activation functions for update, reset, and hidden gates. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h and outputs Y, Y_h. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = [batch_size, num_directions, hidden_size].
+
linear_before_reset : int (default is 0)
+
When computing the output of the hidden gate, apply the linear transformation before multiplying by the output of the reset gate.
+
+ +#### Inputs (3 - 6) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for the gates. Concatenation of `W[zrh]` and `WB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `R[zrh]` and `RB[zrh]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 3*hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for the gates. Concatenation of `[Wb[zrh], Rb[zrh]]` and `[WBb[zrh], RBb[zrh]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 6*hidden_size]`. Optional: If not specified - assumed to be 0
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ + +#### Examples + +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 6 +number_of_gates = 3 +weight_scale = 0.2 +layout = 1 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +gru = GRU_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = gru.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_gru_batchwise') +``` + +
+ + +
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 5 +weight_scale = 0.1 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +gru = GRU_Helper(X=input, W=W, R=R) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_gru_defaults') +``` + +
+ + +
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 3 +weight_scale = 0.1 +custom_bias = 0.1 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) +R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +gru = GRU_Helper(X=input, W=W, R=R, B=B) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_with_initial_bias') +``` + +
+ + +
+seq_length + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = np.random.randn(1, number_of_gates * hidden_size, input_size).astype(np.float32) +R = np.random.randn(1, number_of_gates * hidden_size, hidden_size).astype(np.float32) + +# Adding custom bias +W_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) +R_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +gru = GRU_Helper(X=input, W=W, R=R, B=B) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_seq_length') +``` + +
+ + +### **Gather** + + Given `data` tensor of rank r >= 1, and `indices` tensor of rank q, gather + entries of the axis dimension of `data` (by default outer-most one as axis=0) indexed by `indices`, and concatenates + them in an output tensor of rank q + (r - 1). + + axis = 0 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[i_{0}, ..., i_{q-1}, j_{0}, ..., j_{r-2}] = input[k , j_{0}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + indices = [ + [0, 1], + [1, 2], + ] + output = [ + [ + [1.0, 1.2], + [2.3, 3.4], + ], + [ + [2.3, 3.4], + [4.5, 5.7], + ], + ] + ``` + axis = 1 : + + Let + k = indices[i_{0}, ..., i_{q-1}] + Then + output[j_{0}, i_{0}, ..., i_{q-1}, j_{1}, ..., j_{r-2}] = input[j_{0}, k, j_{1}, ..., j_{r-2}] + + ``` + data = [ + [1.0, 1.2, 1.9], + [2.3, 3.4, 3.9], + [4.5, 5.7, 5.9], + ] + indices = [ + [0, 2], + ] + axis = 1, + output = [ + [[1.0, 1.9]], + [[2.3, 3.9]], + [[4.5, 5.9]], + ] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, of any rank q. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank q + (r - 1).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ + +#### Examples + +
+gather_0 + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, +) +data = np.random.randn(5, 4, 3, 2).astype(np.float32) +indices = np.array([0, 1, 3]) +y = np.take(data, indices, axis=0) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_0') +``` + +
+ + +
+gather_1 + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, +) +data = np.random.randn(5, 4, 3, 2).astype(np.float32) +indices = np.array([0, 1, 3]) +y = np.take(data, indices, axis=1) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_1') +``` + +
+ + +
+gather_2d_indices + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, +) +data = np.random.randn(3, 3).astype(np.float32) +indices = np.array([[0, 2]]) +y = np.take(data, indices, axis=1) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_2d_indices') +``` + +
+ + +
+gather_negative_indices + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, +) +data = np.arange(10).astype(np.float32) +indices = np.array([0, -9, -10]) +y = np.take(data, indices, axis=0) + +# print(y) +# [0. 1. 0.] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_negative_indices') +``` + +
+ + +### **GatherElements** + + GatherElements takes two inputs `data` and `indices` of the same rank r >= 1 + and an optional attribute `axis` that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). It is an indexing operation + that produces its output by indexing into the input data tensor at index + positions determined by elements of the `indices` tensor. + Its output shape is the same as the shape of `indices` and consists of one value + (gathered from the `data`) for each element in `indices`. + + For instance, in the 3-D case (r = 3), the output produced is determined + by the following equations: + ``` + out[i][j][k] = input[index[i][j][k]][j][k] if axis = 0, + out[i][j][k] = input[i][index[i][j][k]][k] if axis = 1, + out[i][j][k] = input[i][j][index[i][j][k]] if axis = 2, + ``` + + This operator is also the inverse of ScatterElements. It is similar to Torch's gather operation. + + Example 1: + ``` + data = [ + [1, 2], + [3, 4], + ] + indices = [ + [0, 0], + [1, 0], + ] + axis = 1 + output = [ + [1, 1], + [4, 3], + ] + ``` + Example 2: + ``` + data = [ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ] + indices = [ + [1, 2, 0], + [2, 0, 0], + ] + axis = 0 + output = [ + [4, 8, 3], + [7, 2, 3], + ] + ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 11 + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to gather on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, with the same rank r as the input. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of the same shape as indices.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ + +#### Examples + +
+gather_elements_0 + +```python +axis = 1 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2], + [3, 4]], dtype=np.float32) +indices = np.array([[0, 0], + [1, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[1, 1], +# [4, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_0') +``` + +
+ + +
+gather_elements_1 + +```python +axis = 0 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) +indices = np.array([[1, 2, 0], + [2, 0, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[4, 8, 3], +# [7, 2, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_1') +``` + +
+ + +
+gather_elements_negative_indices + +```python +axis = 0 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) +indices = np.array([[-1, -2, 0], + [-2, 0, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[7, 5, 3], +# [4, 2, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_negative_indices') +``` + +
+ + +### **GatherND** + + Given `data` tensor of rank `r` >= 1, `indices` tensor of rank `q` >= 1, and `batch_dims` integer `b`, this operator gathers + slices of `data` into an output tensor of rank `q + r - indices_shape[-1] - 1 - b`. + + `indices` is an q-dimensional integer tensor, best thought of as a `(q-1)`-dimensional tensor of index-tuples into `data`, + where each element defines a slice of `data` + + `batch_dims` (denoted as `b`) is an integer indicating the number of batch dimensions, i.e the leading `b` number of dimensions of + `data` tensor and `indices` are representing the batches, and the gather starts from the `b+1` dimension. + + Some salient points about the inputs' rank and shape: + + 1) r >= 1 and q >= 1 are to be honored. There is no dependency condition to be met between ranks `r` and `q` + + 2) The first `b` dimensions of the shape of `indices` tensor and `data` tensor must be equal. + + 3) b < min(q, r) is to be honored. + + 4) The `indices_shape[-1]` should have a value between 1 (inclusive) and rank `r-b` (inclusive) + + 5) All values in `indices` are expected to be within bounds [-s, s-1] along axis of size `s` (i.e.) `-data_shape[i] <= indices[...,i] <= data_shape[i] - 1`. + It is an error if any of the index values are out of bounds. + + The output is computed as follows: + + The output tensor is obtained by mapping each index-tuple in the `indices` tensor to the corresponding slice of the input `data`. + + 1) If `indices_shape[-1] > r-b` => error condition + + 2) If `indices_shape[-1] == r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensors + containing 1-D tensors of dimension `r-b`, where `N` is an integer equals to the product of 1 and all the elements in the batch dimensions + of the indices_shape. Let us think of each such `r-b` ranked tensor as `indices_slice`. Each *scalar value* corresponding to `data[0:b-1,indices_slice]` + is filled into the corresponding location of the `(q-b-1)`-dimensional tensor to form the `output` tensor (Example 1 below) + + 3) If `indices_shape[-1] < r-b`, since the rank of `indices` is `q`, `indices` can be thought of as `N` `(q-b-1)`-dimensional tensor + containing 1-D tensors of dimension `< r-b`. Let us think of each such tensors as `indices_slice`. Each *tensor slice* corresponding + to `data[0:b-1, indices_slice , :]` is filled into the corresponding location of the `(q-b-1)`-dimensional tensor + to form the `output` tensor (Examples 2, 3, 4 and 5 below) + + This operator is the inverse of `ScatterND`. + + `Example 1` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[0,0],[1,1]] # indices_shape = [2, 2] + + output = [0,3] # output_shape = [2] + + `Example 2` + + batch_dims = 0 + + data = [[0,1],[2,3]] # data_shape = [2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[0,1]] # output_shape = [2, 2] + + `Example 3` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[0,1],[1,0]] # indices_shape = [2, 2] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + `Example 4` + + batch_dims = 0 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[[0,1]],[[1,0]]] # indices_shape = [2, 1, 2] + + output = [[[2,3]],[[4,5]]] # output_shape = [2, 1, 2] + + `Example 5` + + batch_dims = 1 + + data = [[[0,1],[2,3]],[[4,5],[6,7]]] # data_shape = [2, 2, 2] + + indices = [[1],[0]] # indices_shape = [2, 1] + + output = [[2,3],[4,5]] # output_shape = [2, 2] + + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 11, 12 + +#### Attributes + +
+
batch_dims : int (default is 0)
+
The number of batch dimensions. The gather of indexing starts from dimension of data[batch_dims:]
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : tensor(int64)
+
Tensor of rank q >= 1. All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ + +#### Examples + +
+float32 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], +) + +data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.float32) +indices = np.array([[[0, 1]], [[1, 0]]], dtype=np.int64) +output = gather_nd_impl(data, indices, 0) +expected_output = np.array([[[2, 3]], [[4, 5]]], dtype=np.float32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_float32') +``` + +
+ + +
+int32 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], +) + +data = np.array([[0, 1], [2, 3]], dtype=np.int32) +indices = np.array([[0, 0], [1, 1]], dtype=np.int64) +output = gather_nd_impl(data, indices, 0) +expected_output = np.array([0, 3], dtype=np.int32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32') +``` + +
+ + +
+int32_batchdim_1 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], + batch_dims=1, +) + +data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.int32) +indices = np.array([[1], [0]], dtype=np.int64) +output = gather_nd_impl(data, indices, 1) +expected_output = np.array([[2, 3], [4, 5]], dtype=np.int32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32_batch_dim1') +``` + +
+ + +### **Gemm** + + General Matrix multiplication: + https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3 + + A' = transpose(A) if transA else A + + B' = transpose(B) if transB else B + + Compute Y = alpha * A' * B' + beta * C, where input tensor A has shape (M, K) or (K, M), + input tensor B has shape (K, N) or (N, K), input tensor C is broadcastable to shape (M, N), + and output tensor Y has shape (M, N). A will be transposed before doing the + computation if attribute transA is non-zero, same for B and transB. + This operator supports **unidirectional broadcasting** (tensor C should be unidirectional broadcastable to tensor A * B); for more details please check [the doc](Broadcasting.md). + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 9, 11 + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Scalar multiplier for the product of input tensors A * B.
+
beta : float (default is 1.0)
+
Scalar multiplier for input tensor C.
+
transA : int (default is 0)
+
Whether A should be transposed
+
transB : int (default is 0)
+
Whether B should be transposed
+
+ +#### Inputs (2 - 3) + +
+
A (differentiable) : T
+
Input tensor A. The shape of A should be (M, K) if transA is 0, or (K, M) if transA is non-zero.
+
B (differentiable) : T
+
Input tensor B. The shape of B should be (K, N) if transB is 0, or (N, K) if transB is non-zero.
+
C (optional, differentiable) : T
+
Optional input tensor C. If not specified, the computation is done as if C is a scalar 0. The shape of C should be unidirectional broadcastable to (M, N).
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor of shape (M, N).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(bfloat16)
+
Constrain input and output types to float/int tensors.
+
+ + +#### Examples + +
+all_attributes + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.25, + beta=0.35, + transA=1, + transB=1 +) +a = np.random.ranf([4, 3]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.random.ranf([1, 5]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transA=1, transB=1, alpha=0.25, beta=0.35) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_all_attributes') +``` + +
+ + +
+alpha + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.5 +) +a = np.random.ranf([3, 5]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, alpha=0.5) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_alpha') +``` + +
+ + +
+beta + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + beta=0.5 +) +a = np.random.ranf([2, 7]).astype(np.float32) +b = np.random.ranf([7, 4]).astype(np.float32) +c = np.random.ranf([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, beta=0.5) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_beta') +``` + +
+ + +
+default_matrix_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 6]).astype(np.float32) +b = np.random.ranf([6, 4]).astype(np.float32) +c = np.random.ranf([3, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_matrix_bias') +``` + +
+ + +
+default_no_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b'], + outputs=['y'] +) +a = np.random.ranf([2, 10]).astype(np.float32) +b = np.random.ranf([10, 3]).astype(np.float32) +y = gemm_reference_implementation(a, b) +expect(node, inputs=[a, b], outputs=[y], + name='test_gemm_default_no_bias') +``` + +
+ + +
+default_scalar_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([2, 3]).astype(np.float32) +b = np.random.ranf([3, 4]).astype(np.float32) +c = np.array(3.14).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_scalar_bias') +``` + +
+ + +
+default_single_elem_vector_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 7]).astype(np.float32) +b = np.random.ranf([7, 3]).astype(np.float32) +c = np.random.ranf([1]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_single_elem_vector_bias') +``` + +
+ + +
+default_vector_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([2, 7]).astype(np.float32) +b = np.random.ranf([7, 4]).astype(np.float32) +c = np.random.ranf([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_vector_bias') +``` + +
+ + +
+default_zero_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 5]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_zero_bias') +``` + +
+ + +
+transposeA + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transA=1 +) +a = np.random.ranf([6, 3]).astype(np.float32) +b = np.random.ranf([6, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transA=1) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeA') +``` + +
+ + +
+transposeB + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transB=1 +) +a = np.random.ranf([3, 6]).astype(np.float32) +b = np.random.ranf([4, 6]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transB=1) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeB') +``` + +
+ + +### **GlobalAveragePool** + + GlobalAveragePool consumes an input tensor X and applies average pooling across + the values in the same channel. This is equivalent to AveragePool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+globalaveragepool + +```python +node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(1, 3, 5, 5).astype(np.float32) +y = np.mean(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) +expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool') +``` + +
+ + +
+globalaveragepool_precomputed + +```python + +node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], +) +x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], +]]]).astype(np.float32) +y = np.array([[[[5]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool_precomputed') +``` + +
+ + +### **GlobalLpPool** + + GlobalLpPool consumes an input tensor X and applies lp pool pooling across + the values in the same channel. This is equivalent to LpPool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 2 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
p : int (default is 2)
+
p value of the Lp norm used to pool over the input data.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +### **GlobalMaxPool** + + GlobalMaxPool consumes an input tensor X and applies max pooling across + the values in the same channel. This is equivalent to MaxPool with kernel size + equal to the spatial dimension of input tensor. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from pooling across the input tensor. The output tensor has the same rank as the input. The first two dimensions of output shape are the same as the input (N x C), while the other dimensions are all 1.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+globalmaxpool + +```python + +node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(1, 3, 5, 5).astype(np.float32) +y = np.max(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) +expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool') +``` + +
+ + +
+globalmaxpool_precomputed + +```python + +node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], +) +x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], +]]]).astype(np.float32) +y = np.array([[[[9]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool_precomputed') +``` + +
+ + +### **Greater** + + Returns the tensor resulted from performing the `greater` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 7, 9 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+greater + +```python +node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.greater(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater') +``` + +
+ + +
+greater + +```python +node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.greater_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal') +``` + +
+ + +
+greater_broadcast + +```python +node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.greater(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_bcast') +``` + +
+ + +
+greater_broadcast + +```python +node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.greater_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal_bcast') +``` + +
+ + +### **GreaterOrEqual** + + Returns the tensor resulted from performing the `greater_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 12 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +### **GridSample** + + Given an `input` and a flow-field `grid`, computes the `output` using `input` values and pixel locations from `grid`. + Currently, only spatial (4-D) inputs are supported. For `input` with shape (N, C, H, W) and `grid` with shape (N, H_out, W_out, 2), + the `output` will have shape (N, C, H_out, W_out). + For each output location `output[N, C, H_out, W_out]`, the size-2 vector `grid[N, H_out, W_out]` specifies `input` pixel locations `x` and `y`, + which are used to interpolate the output value `output[N, C, H_out, W_out]`. + + The GridSample operator is often used in doing grid generator and sampler in the [Spatial Transformer Networks](https://arxiv.org/abs/1506.02025). + See also in [torch.nn.functional.grid_sample](https://pytorch.org/docs/master/generated/torch.nn.functional.grid_sample.html#torch-nn-functional-grid-sample). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +#### Attributes + +
+
align_corners : int (default is 0)
+
If align_corners=1, the extrema (-1 and 1) are considered as referring to the center points of the input's corner pixels. If align_corners=0, they are instead considered as referring to the corner points of the input's corner pixels, making the sampling more resolution agnostic.
+
mode : string (default is bilinear)
+
Three interpolation modes: bilinear (default), nearest and bicubic.
+
padding_mode : string (default is zeros)
+
Support padding modes for outside grid values: `zeros`(default), `border`, `reflection`. zeros: use 0 for out-of-bound grid locations, border: use border values for out-of-bound grid locations, reflection: use values at locations reflected by the border for out-of-bound grid locations. If index 0 represents the margin pixel, the reflected value at index -1 will be the same as the value at index 1. For location far away from the border, it will keep being reflected until becoming in bound. If pixel location x = -3.5 reflects by border -1 and becomes x' = 1.5, then reflects by border 1 and becomes x'' = 0.5.
+
+ +#### Inputs + +
+
X (differentiable) : T1
+
4-D tensor of shape (N, C, H, W), where N is the batch size, C is the numbers of channels, H and W are the height and width of the input data.
+
grid (non-differentiable) : T1
+
Input offset, 4-D tensor of shape (N, H_out, W_out, 2), where H_out and W_out are the height and width of grid and output, Grid specifies the sampling pixel locations normalized by the input spatial dimensions. Therefore, it should have most values in the range of [-1, 1]. If grid has values outside the range of [-1, 1], the corresponding outputs will be handled as defined by padding_mode.
+
+ +#### Outputs + +
+
Y (differentiable) : T2
+
4-D tensor of shape (N, C, H_out, W_out).
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to all tensor types.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ + +#### Examples + +
+gridsample + +```python +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + padding_mode='zeros', + align_corners=0, +) +# X shape, [N, C, H, W] - [1, 1, 4, 4] +X = np.array( + [ + [ + [ + [0., 1., 2., 3.], + [4., 5., 6., 7.], + [8., 9., 10., 11.], + [12., 13., 14., 15.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 6, 6, 2] +Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.6000, -1.0000], + [-0.2000, -1.0000], + [0.2000, -1.0000], + [0.6000, -1.0000], + [1.0000, -1.0000] + ], + [ + [-1.0000, -0.6000], + [-0.6000, -0.6000], + [-0.2000, -0.6000], + [0.2000, -0.6000], + [0.6000, -0.6000], + [1.0000, -0.6000] + ], + [ + [-1.0000, -0.2000], + [-0.6000, -0.2000], + [-0.2000, -0.2000], + [0.2000, -0.2000], + [0.6000, -0.2000], + [1.0000, -0.2000] + ], + [ + [-1.0000, 0.2000], + [-0.6000, 0.2000], + [-0.2000, 0.2000], + [0.2000, 0.2000], + [0.6000, 0.2000], + [1.0000, 0.2000] + ], + [ + [-1.0000, 0.6000], + [-0.6000, 0.6000], + [-0.2000, 0.6000], + [0.2000, 0.6000], + [0.6000, 0.6000], + [1.0000, 0.6000] + ], + [ + [-1.0000, 1.0000], + [-0.6000, 1.0000], + [-0.2000, 1.0000], + [0.2000, 1.0000], + [0.6000, 1.0000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 6, 6] +Y = np.array( + [ + [ + [ + [0.0000, 0.1500, 0.5500, 0.9500, 1.3500, 0.7500], + [0.6000, 1.5000, 2.3000, 3.1000, 3.9000, 2.1000], + [2.2000, 4.7000, 5.5000, 6.3000, 7.1000, 3.7000], + [3.8000, 7.9000, 8.7000, 9.5000, 10.3000, 5.3000], + [5.4000, 11.1000, 11.9000, 12.7000, 13.5000, 6.9000], + [3.0000, 6.1500, 6.5500, 6.9500, 7.3500, 3.7500] + ] + ] + ], + dtype=np.float32, +) +expect(node, inputs=[X, Grid], outputs=[Y], + name='test_gridsample') +``` + +
+ + +
+gridsample_mode_aligncorners + +```python +# X shape, [N, C, H, W] - [1, 1, 3, 2] +X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] +Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.5000, -0.5000], + [-0.2000, -0.2000], + [0.0000, 0.0000] + ], + + [ + [0.0000, 0.0000], + [-0.2000, -0.2000], + [0.5000, 0.5000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, +) + +# setting mode = 'bilinear', default align_corners = 0 +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_bilinear = np.array( + [ + [ + [ + [0.0000, 0.5000, 1.7000, 2.5000], + [2.5000, 1.7000, 4.5000, 1.2500] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_bilinear], + name='test_gridsample_bilinear') + +# setting mode = 'bilinear', align_corners = 1 +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + align_corners=1, +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_align_corners = np.array( + [ + [ + [ + [0.0000, 1.2500, 2.0000, 2.5000], + [2.5000, 2.0000, 3.7500, 5.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_align_corners], + name='test_gridsample_aligncorners_true') + +# setting mode = 'nearest' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='nearest', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_nearest = np.array( + [ + [ + [ + [0., 0., 2., 2.], + [2., 2., 5., 0.] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_nearest], + name='test_gridsample_nearest') + +# setting mode = 'bicubic' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bicubic', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_bicubic = np.array( + [ + [ + [ + [-0.1406, 0.3828, 1.7556, 2.9688], + [2.9688, 1.7556, 5.1445, 1.3906] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_bicubic], + name='test_gridsample_bicubic') +``` + +
+ + +
+gridsample_paddingmode + +```python +# X shape, [N, C, H, W] - [1, 1, 3, 2] +X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] +Grid = np.array( + [ + [ + [ + [-10.0000, -10.0000], + [-5.0000, -5.0000], + [-0.2000, -0.2000], + [10.0000, 10.0000] + ], + + [ + [10.0000, 10.0000], + [-0.2000, -0.2000], + [5.0000, 5.0000], + [10.0000, 10.0000] + ] + ] + ], + dtype=np.float32, +) + +# setting padding_mode = 'zeros' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='zeros', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_zeros = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 0.0000], + [0.0000, 1.7000, 0.0000, 0.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_zeros], + name='test_gridsample_zeros_padding') + +# setting padding_mode = 'border' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='border', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_border = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 5.0000], + [5.0000, 1.7000, 5.0000, 5.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_border], + name='test_gridsample_border_padding') + +# setting padding_mode = 'reflection' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='reflection', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_reflection = np.array( + [ + [ + [ + [2.5000, 0.0000, 1.7000, 2.5000], + [2.5000, 1.7000, 5.0000, 2.5000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_reflection], + name='test_gridsample_reflection_padding') +``` + +
+ + +### **HardSigmoid** + + HardSigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the HardSigmoid function, y = max(0, min(1, alpha * x + beta)), + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
alpha : float (default is 0.2)
+
Value of alpha.
+
beta : float (default is 0.5)
+
Value of beta.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+hardsigmoid + +```python +node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], + alpha=0.5, + beta=0.6 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.clip(x * 0.5 + 0.6, 0, 1) # expected output [0.1, 0.6, 1.] +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x * 0.5 + 0.6, 0, 1) +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid') +``` + +
+ + +
+hardsigmoid_default + +```python +default_alpha = 0.2 +default_beta = 0.5 +node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x * default_alpha + default_beta, 0, 1) +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_default') +``` + +
+ + +### **HardSwish** + + HardSwish takes one input data (Tensor) and produces one output data (Tensor) where + the HardSwish function, y = x * max(0, min(1, alpha * x + beta)) = x * HardSigmoid(x), + where alpha = 1/6 and beta = 0.5, is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+hardswish + +```python +node = onnx.helper.make_node( + 'HardSwish', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = hardswish(x) + +expect(node, inputs=[x], outputs=[y], + name='test_hardswish') +``` + +
+ + +### **Hardmax** + + The operator computes the hardmax values for the given input: + + Hardmax(element in input, axis) = 1 if the element is the first maximum value along the specified axis, 0 otherwise + + The "axis" attribute indicates the dimension along which Hardmax + will be performed. The output tensor has the same shape + and contains the Hardmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension Hardmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+hardmax + +```python +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], +) + +x = np.array([[3, 0, 1, 2], [2, 5, 1, 0], [0, 1, 3, 2], + [0, 1, 2, 3]]).astype(np.float32) +# expect result: +# [[1. 0. 0. 0.] +# [0. 1. 0. 0.] +# [0. 0. 1. 0.] +# [0. 0. 0. 1.]] +y = hardmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_example') + +# For multiple occurrences of the maximal values, the first occurrence is selected for one-hot output +x = np.array([[3, 3, 3, 1]]).astype(np.float32) +# expect result: +# [[1, 0, 0, 0]] +y = hardmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_one_hot') +``` + +
+ + +
+hardmax_axis + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = hardmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_0') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = hardmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_1') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = hardmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_2') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = hardmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_default_axis') +``` + +
+ + +### **Identity** + + Identity operator + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 1, 13, 14 + +#### Inputs + +
+
input (differentiable) : V
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : V
+
Tensor to copy input into.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input and output types to all tensor, sequence, and optional types.
+
+ + +#### Examples + +
+identity + +```python +node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +expect(node, inputs=[data], outputs=[data], + name='test_identity') +``` + +
+ + +
+identity_opt + +```python +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) +opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['opt_in'], + outputs=['opt_out'] +) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] + +expect(identity_node, inputs=[x], outputs=[x], name='test_identity_opt', + opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[opt_in_tp], + output_type_protos=[opt_in_tp]) +``` + +
+ + +
+sequence + +```python +node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], +) + +data = [ + np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32), + np.array([[[ + [2, 3], + [1, 5], + ]]], dtype=np.float32)] + +expect(node, inputs=[data], outputs=[data], name='test_identity_sequence') +``` + +
+ + +### **If** + + If conditional + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 13 + +#### Attributes + +
+
else_branch : graph (required)
+
Graph to run if condition is false. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the then_branch.
+
then_branch : graph (required)
+
Graph to run if condition is true. Has N outputs: values you wish to be live-out to the enclosing scope. The number of outputs must match the number of outputs in the else_branch.
+
+ +#### Inputs + +
+
cond : B
+
Condition for the if
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : V
+
Values that are live-out to the enclosing scope. The return values in the `then_branch` and `else_branch` must be of the same data type. The `then_branch` and `else_branch` may produce tensors with the same element type and different shapes. If corresponding outputs from the then-branch and the else-branch have static shapes S1 and S2, then the shape of the corresponding output variable of the if-node (if present) must be compatible with both S1 and S2 as it represents the union of both possible shapes.For example, if in a model file, the the first output of `then_branch` is typed float tensor with shape [2] and the first output of `else_branch` is another float tensor with shape [3], If's first output should have (a) no shape set, or (b) a shape of rank 1 with neither `dim_value` nor `dim_param` set, or (c) a shape of rank 1 with a unique `dim_param`. In contrast, the first output cannot have the shape [2] since [2] and [3] are not compatible.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(bfloat16)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(bfloat16))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(bfloat16)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
All Tensor, Sequence(Tensor), Optional(Tensor), and Optional(Sequence(Tensor)) types
+
B : tensor(bool)
+
Only bool
+
+ + +#### Examples + +
+if + +```python +# Given a bool scalar input cond. +# return constant tensor x if cond is True, otherwise return constant tensor y. + +then_out = onnx.helper.make_tensor_value_info('then_out', onnx.TensorProto.FLOAT, [5]) +else_out = onnx.helper.make_tensor_value_info('else_out', onnx.TensorProto.FLOAT, [5]) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) +y = np.array([5, 4, 3, 2, 1]).astype(np.float32) + +then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['then_out'], + value=onnx.numpy_helper.from_array(x) +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['else_out'], + value=onnx.numpy_helper.from_array(y) +) + +then_body = onnx.helper.make_graph( + [then_const_node], + 'then_body', + [], + [then_out] +) + +else_body = onnx.helper.make_graph( + [else_const_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body +) + +cond = np.array(1).astype(bool) +res = x if cond else y +expect(if_node, inputs=[cond], outputs=[res], name='test_if', + opset_imports=[onnx.helper.make_opsetid("", 11)]) +``` + +
+ + +
+if_optional + +```python +# Given a bool scalar input cond, return an empty optional sequence of +# tensor if True, return an optional sequence with value x +# (the input optional sequence) otherwise. + +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) + +then_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +then_out_seq_tp = onnx.helper.make_sequence_type_proto(then_out_tensor_tp) +then_out_opt_tp = onnx.helper.make_optional_type_proto(then_out_seq_tp) +then_out = onnx.helper.make_value_info('optional_empty', then_out_opt_tp) + +else_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +else_out_seq_tp = onnx.helper.make_sequence_type_proto(else_out_tensor_tp) +else_out_opt_tp = onnx.helper.make_optional_type_proto(else_out_seq_tp) +else_out = onnx.helper.make_value_info('else_opt', else_out_opt_tp) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] +cond = np.array(0).astype(bool) +res = compute_if_outputs(x, cond) + +opt_empty_in = onnx.helper.make_node( + 'Optional', + inputs=[], + outputs=['optional_empty'], + type=seq_in_tp +) + +then_body = onnx.helper.make_graph( + [opt_empty_in], + 'then_body', + [], + [then_out] +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) +) + +else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['else_seq'] +) + +else_optional_seq_node = onnx.helper.make_node( + 'Optional', + inputs=['else_seq'], + outputs=['else_opt'] +) + +else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node, else_optional_seq_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body +) + +expect(if_node, inputs=[cond], outputs=[res], name='test_if_opt', + output_type_protos=[else_out_opt_tp], + opset_imports=[onnx.helper.make_opsetid("", 16)]) +``` + +
+ + +
+if_seq + +```python +# Given a bool scalar input cond. +# return constant sequence x if cond is True, otherwise return constant sequence y. + +then_out = onnx.helper.make_tensor_sequence_value_info('then_out', onnx.TensorProto.FLOAT, shape=[5]) +else_out = onnx.helper.make_tensor_sequence_value_info('else_out', onnx.TensorProto.FLOAT, shape=[5]) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] +y = [np.array([5, 4, 3, 2, 1]).astype(np.float32)] + +then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) +) + +then_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['then_out'] +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['y'], + value=onnx.numpy_helper.from_array(y[0]) +) + +else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['y'], + outputs=['else_out'] +) + +then_body = onnx.helper.make_graph( + [then_const_node, then_seq_node], + 'then_body', + [], + [then_out] +) + +else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body +) + +cond = np.array(1).astype(bool) +res = x if cond else y +expect(if_node, inputs=[cond], outputs=[res], name='test_if_seq', + opset_imports=[onnx.helper.make_opsetid("", 13)]) +``` + +
+ + +### **InstanceNormalization** + + Carries out instance normalization as described in the paper + https://arxiv.org/abs/1607.08022. + + y = scale * (x - mean) / sqrt(variance + epsilon) + B, + where mean and variance are computed per instance per channel. + + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
scale (differentiable) : T
+
The input 1-dimensional scale tensor of size C.
+
B (differentiable) : T
+
The input 1-dimensional bias tensor of size C.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output tensor of the same shape as input.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+instancenormalization + +```python +def _instancenorm_test_mode(x, s, bias, epsilon=1e-5): # type: ignore + dims_x = len(x.shape) + axis = tuple(range(2, dims_x)) + mean = np.mean(x, axis=axis, keepdims=True) + var = np.var(x, axis=axis, keepdims=True) + dim_ones = (1,) * (dims_x - 2) + s = s.reshape(-1, *dim_ones) + bias = bias.reshape(-1, *dim_ones) + return s * (x - mean) / np.sqrt(var + epsilon) + bias + +# input size: (1, 2, 1, 3) +x = np.array([[[[-1, 0, 1]], [[2, 3, 4]]]]).astype(np.float32) +s = np.array([1.0, 1.5]).astype(np.float32) +bias = np.array([0, 1]).astype(np.float32) +y = _instancenorm_test_mode(x, s, bias).astype(np.float32) + +node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], +) + +# output size: (1, 2, 1, 3) +expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_example') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +epsilon = 1e-2 +y = _instancenorm_test_mode(x, s, bias, epsilon).astype(np.float32) + +node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], + epsilon=epsilon, +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_epsilon') +``` + +
+ + +### **IsInf** + + Map infinity to true and other values to false. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
detect_negative : int (default is 1)
+
(Optional) Whether map negative infinity to true. Default to 1 so that negative infinity induces true. Set this attribute to 0 if negative infinity should be mapped to false.
+
detect_positive : int (default is 1)
+
(Optional) Whether map positive infinity to true. Default to 1 so that positive infinity induces true. Set this attribute to 0 if positive infinity should be mapped to false.
+
+ +#### Inputs + +
+
X (non-differentiable) : T1
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : T2
+
output
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(bool)
+
Constrain output types to boolean tensors.
+
+ + +#### Examples + +
+infinity + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + ) + +x = np.array([-1.2, np.nan, np.inf, 2.8, np.NINF, np.inf], + dtype=np.float32) +y = np.isinf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf') +``` + +
+ + +
+negative_infinity_only + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_positive=0 + ) + +x = np.array([-1.7, np.nan, np.inf, -3.6, np.NINF, np.inf], + dtype=np.float32) +y = np.isneginf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf_negative') +``` + +
+ + +
+positive_infinity_only + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_negative=0 + ) + +x = np.array([-1.7, np.nan, np.inf, 3.6, np.NINF, np.inf], + dtype=np.float32) +y = np.isposinf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf_positive') +``` + +
+ + +### **IsNaN** + + Returns which elements of the input are NaN. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Inputs + +
+
X (non-differentiable) : T1
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : T2
+
output
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to float tensors.
+
T2 : tensor(bool)
+
Constrain output types to boolean tensors.
+
+ + +#### Examples + +
+isnan + +```python +node = onnx.helper.make_node( + 'IsNaN', + inputs=['x'], + outputs=['y'], +) + +x = np.array([3.0, np.nan, 4.0, np.nan], dtype=np.float32) +y = np.isnan(x) +expect(node, inputs=[x], outputs=[y], name='test_isnan') +``` + +
+ + +### **LRN** + + Local Response Normalization proposed in the [AlexNet paper](https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf). + It normalizes over local input regions. + The local region is defined across the channels. For an element X[n, c, d1, ..., dk] in a tensor + of shape (N x C x D1 x D2, ..., Dk), its region is + {X[n, i, d1, ..., dk] | max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2))}. + + square_sum[n, c, d1, ..., dk] = sum(X[n, i, d1, ..., dk] ^ 2), + where max(0, c - floor((size - 1) / 2)) <= i <= min(C - 1, c + ceil((size - 1) / 2)). + + Y[n, c, d1, ..., dk] = X[n, c, d1, ..., dk] / (bias + alpha / size * square_sum[n, c, d1, ..., dk] ) ^ beta + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
alpha : float (default is 0.0001)
+
Scaling parameter.
+
beta : float (default is 0.75)
+
The exponent.
+
bias : float (default is 1.0)
+
+
size : int (required)
+
The number of channels to sum over
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor, which has the shape and type as input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+default + +```python +alpha = 0.0001 +beta = 0.75 +bias = 1.0 +nsize = 3 +node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + size=3 +) +x = np.random.randn(5, 5, 5, 5).astype(np.float32) +square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) +for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) +y = x / ((bias + (alpha / nsize) * square_sum) ** beta) +expect(node, inputs=[x], outputs=[y], + name='test_lrn_default') +``` + +
+ + +
+lrn + +```python +alpha = 0.0002 +beta = 0.5 +bias = 2.0 +nsize = 3 +node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + alpha=alpha, + beta=beta, + bias=bias, + size=nsize +) +x = np.random.randn(5, 5, 5, 5).astype(np.float32) +square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) +for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) +y = x / ((bias + (alpha / nsize) * square_sum) ** beta) +expect(node, inputs=[x], outputs=[y], + name='test_lrn') +``` + +
+ + +### **LSTM** + + Computes an one-layer LSTM. This operator is usually supported via some + custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `o` - output gate + + `f` - forget gate + + `c` - cell gate + + `t` - time step (t-1 means previous time step) + + `W[iofc]` - W parameter weight matrix for input, output, forget, and cell gates + + `R[iofc]` - R recurrence weight matrix for input, output, forget, and cell gates + + `Wb[iofc]` - W bias vectors for input, output, forget, and cell gates + + `Rb[iofc]` - R bias vectors for input, output, forget, and cell gates + + `P[iof]` - P peephole weight vector for input, output, and forget gates + + `WB[iofc]` - W parameter weight matrix for backward input, output, forget, and cell gates + + `RB[iofc]` - R recurrence weight matrix for backward input, output, forget, and cell gates + + `WBb[iofc]` - W bias vectors for backward input, output, forget, and cell gates + + `RBb[iofc]` - R bias vectors for backward input, output, forget, and cell gates + + `PB[iof]` - P peephole weight vector for backward input, output, and forget gates + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Sigmoid, g=Tanh, h=Tanh): + + - it = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Pi (.) Ct-1 + Wbi + Rbi) + + - ft = f(Xt*(Wf^T) + Ht-1*(Rf^T) + Pf (.) Ct-1 + Wbf + Rbf) + + - ct = g(Xt*(Wc^T) + Ht-1*(Rc^T) + Wbc + Rbc) + + - Ct = ft (.) Ct-1 + it (.) ct + + - ot = f(Xt*(Wo^T) + Ht-1*(Ro^T) + Po (.) Ct + Wbo + Rbo) + + - Ht = ot (.) h(Ct) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 7 + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings
+
A list of 3 (or 6 if bidirectional) activation functions for input, output, forget, cell, and hidden. The activation functions must be one of the activation functions specified above. Optional: See the equations for default if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
input_forget : int (default is 0)
+
Couple the input and forget gates if 1.
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h, initial_c and outputs Y, Y_h, Y_c. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = initial_c.shape = Y_c.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = initial_c.shape = Y_c.shape = [batch_size, num_directions, hidden_size].
+
+ +#### Inputs (3 - 8) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for the gates. Concatenation of `W[iofc]` and `WB[iofc]` (if bidirectional) along dimension 0. The tensor has shape `[num_directions, 4*hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `R[iofc]` and `RB[iofc]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 4*hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for input gate. Concatenation of `[Wb[iofc], Rb[iofc]]`, and `[WBb[iofc], RBb[iofc]]` (if bidirectional) along dimension 0. This tensor has shape `[num_directions, 8*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
initial_c (optional, non-differentiable) : T
+
Optional initial value of the cell. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
P (optional, differentiable) : T
+
The weight tensor for peepholes. Concatenation of `P[iof]` and `PB[iof]` (if bidirectional) along dimension 0. It has shape `[num_directions, 3*hidde_size]`. Optional: If not specified - assumed to be 0.
+
+ +#### Outputs (0 - 3) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
Y_c (optional, differentiable) : T
+
The last output value of the cell. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ + +#### Examples + +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 7 +weight_scale = 0.3 +number_of_gates = 4 +layout = 1 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = lstm.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_lstm_batchwise') +``` + +
+ + +
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 3 +weight_scale = 0.1 +number_of_gates = 4 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_lstm_defaults') +``` + +
+ + +
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 4 +weight_scale = 0.1 +custom_bias = 0.1 +number_of_gates = 4 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) +R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), 1) + +lstm = LSTM_Helper(X=input, W=W, R=R, B=B) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_lstm_with_initial_bias') +``` + +
+ + +
+peepholes + +```python +input = np.array([[[1., 2., 3., 4.], [5., 6., 7., 8.]]]).astype(np.float32) + +input_size = 4 +hidden_size = 3 +weight_scale = 0.1 +number_of_gates = 4 +number_of_peepholes = 3 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B', 'sequence_lens', 'initial_h', 'initial_c', 'P'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +# Initializing Inputs +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) +B = np.zeros((1, 2 * number_of_gates * hidden_size)).astype(np.float32) +seq_lens = np.repeat(input.shape[0], input.shape[1]).astype(np.int32) +init_h = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) +init_c = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) +P = weight_scale * np.ones((1, number_of_peepholes * hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R, B=B, P=P, initial_c=init_c, initial_h=init_h) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R, B, seq_lens, init_h, init_c, P], outputs=[Y_h.astype(np.float32)], + name='test_lstm_with_peepholes') +``` + +
+ + +### **LayerNormalization** + + This is layer normalization defined in ONNX as function. + The overall computation can be split into two stages. + The first stage is standardization, which makes the + normalized elements have zero mean and unit variances. + The computation required by standardization can be + described by the following equations. + ``` + Mean = ReduceMean(X) + D = Sub(X, Mean) + DD = Mul(Diff, Diff) + Var = ReduceMean(DD) + VarEps = Add(Var, epsilon) + StdDev = Sqrt(VarEps) + InvStdDev = Reciprocal(StdDev) + Normalized = Mul(D, InvStdDev) + ``` + where `normalized_axes` is `[axis, ..., rank of X - 1]`. + The variables `Var` and `StdDev` stand for variance and + standard deviation, respectively. The second output is + `Mean` and the last one is `InvStdDev`. + Depending on `stash_type` attribute, the actual computation + must happen in different floating-point precision. + For example, if `stash_type` is 1, this operator casts + all input variables to 32-bit float, perform the computation, and + finally cast `Normalized` back to the original type of `X`. + The second stage then scales and shifts the outcome of the + first stage using + ``` + NormalizedScaled = Mul(Normalized, Scale) + Y = Add(NormalizedScaled, B) + ``` + The second stage doesn't depends on `stash_type`. + All equations are in [this syntax](https://github.com/onnx/onnx/blob/main/docs/Syntax.md). + The same variable (i.e., input, output, and attribute) uses + the same name in the equations above and this operator's definition. + Let `d[i]` indicate the i-th dimension of `X`. + If `X`'s shape is `[d[0], ..., d[axis-1], d[axis], ..., d[rank-1]]`, + the shape of `Mean` and `InvStdDev` is `[d[0], ..., d[axis-1], 1, ..., 1]`. + `Y` and `X` have the same shape. + +#### Version + +This version of the operator has been available since version 17 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
The first normalization dimension. If rank(X) is r, axis' allowed range is [-r, r]. Negative value means counting dimensions from the back.
+
epsilon : float (default is 1e-05)
+
The epsilon value to use to avoid division by zero.
+
stash_type : int (default is 1)
+
Type of Mean and InvStdDev. This also specifies stage one's computation precision.
+
+ +#### Inputs (2 - 3) + +
+
X : T
+
Tensor to be normalized.
+
Scale : T
+
Scale tensor.
+
B (optional) : T
+
Bias tensor.
+
+ +#### Outputs (1 - 3) + +
+
Y : T
+
Normalized tensor.
+
Mean (optional) : U
+
Saved mean used during training to speed up gradient computation
+
InvStdDev (optional) : U
+
Saved inverse standard deviation used during training to speed up gradient computation.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types and output Y type to float tensors.
+
U : tensor(float), tensor(bfloat16)
+
Type of Mean and InvStdDev tensors.
+
+ + +#### Examples + +
+d + +```python +X = np.random.randn(3, 4).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis=axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_2d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_2d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+ + +
+d_epsilon + +```python +X = np.random.randn(2, 3, 5).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + epsilon=1e-1 + ) + + if axis < 0: + name = f'test_layer_normalization_3d_axis_negative_{-axis}_epsilon' + else: + name = f'test_layer_normalization_3d_axis{axis}_epsilon' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+ + +
+default_axis + +```python +X = np.random.randn(2, 3, 4, 5).astype(np.float32) + +# Default axis in LayerNormalization is -1. +normalized_shape = calculate_normalized_shape(X.shape, -1) +W = np.random.randn(*normalized_shape).astype(np.float32) +B = np.random.randn(*normalized_shape).astype(np.float32) +# Axis is default to -1 in the reference implementation. +Y, mean, inv_std_dev = _layer_normalization(X, W, B) + +# Not specifying axis attribute means -1. +node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'] +) + +expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name='test_layer_normalization_default_axis') +``` + +
+ + +
+layernormalization + +```python +X = np.random.randn(2, 3, 4, 5).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_4d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_4d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+ + +### **LeakyRelu** + + LeakyRelu takes input data (Tensor) and an argument alpha, and produces one + output data (Tensor) where the function `f(x) = alpha * x for x < 0`, + `f(x) = x for x >= 0`, is applied to the data tensor elementwise. + + **History** + - Version 16 adds bfloat16 to the types allowed. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Attributes + +
+
alpha : float (default is 0.01)
+
Coefficient of leakage.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(bfloat16), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+leakyrelu + +```python +node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], + alpha=0.1 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-0.1, 0., 1.] +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu') +``` + +
+ + +
+leakyrelu_default + +```python +default_alpha = 0.01 +node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * default_alpha +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_default') +``` + +
+ + +### **Less** + + Returns the tensor resulted from performing the `less` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 7, 9 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+less + +```python +node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.less(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less') +``` + +
+ + +
+less + +```python +node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.less_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal') +``` + +
+ + +
+less_broadcast + +```python +node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.less(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_bcast') +``` + +
+ + +
+less_broadcast + +```python +node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.less_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal_bcast') +``` + +
+ + +### **LessOrEqual** + + Returns the tensor resulted from performing the `less_equal` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 12 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input types to all numeric tensors.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +### **Log** + + Calculates the natural log of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The natural log of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+log + +```python +node = onnx.helper.make_node( + 'Log', + inputs=['x'], + outputs=['y'], +) + +x = np.array([1, 10]).astype(np.float32) +y = np.log(x) # expected output [0., 2.30258512] +expect(node, inputs=[x], outputs=[y], + name='test_log_example') + +x = np.exp(np.random.randn(3, 4, 5).astype(np.float32)) +y = np.log(x) +expect(node, inputs=[x], outputs=[y], + name='test_log') +``` + +
+ + +### **LogSoftmax** + + The operator computes the log of softmax values for the given input: + + LogSoftmax(input, axis) = Log(Softmax(input, axis=axis)) + + The "axis" attribute indicates the dimension along which LogSoftmax + will be performed. The output tensor has the same shape + and contains the LogSoftmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension LogSoftmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+logsoftmax + +```python +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +x = np.array([[-1, 0, 1]]).astype(np.float32) +# expected output +# [[-2.4076061 -1.407606 -0.407606 ]] +y = logsoftmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_example_1') +``` + +
+ + +
+logsoftmax_axis + +```python +x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) +# expected output +# [[-3.4401896 -2.4401896 -1.4401896 -0.44018966] +# [-3.4401896 -2.4401896 -1.4401896 -0.44018966]] +y = logsoftmax(x) + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_large_number') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = logsoftmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_0') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = logsoftmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_1') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = logsoftmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_2') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = logsoftmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_default_axis') +``` + +
+ + +### **Loop** + + Generic Looping construct. This loop has multiple termination conditions: + + 1) Trip count. Iteration count specified at runtime. Set by + specifying the input M. Optional. Set to empty string to omit. + Note that a static trip count (specified at graph construction time) can be + specified by passing in a constant node for input M. + 2) Loop termination condition. This is an input to the op that determines + whether to run the first iteration and also a loop-carried dependency for + the body graph. The body graph must yield a value for the condition variable, + whether this input is provided or not. + + This table summarizes the operating modes of this operator with equivalent + C-style code: + + Operator inputs defined as (max_trip_count, condition_var). + + input ("", ""): + for (int i=0; ; ++i) { + cond = ... // Note this value is ignored, but is required in the body + } + + input ("", cond) // Note this is analogous to a while loop + bool cond = ...; + for (int i=0; cond; ++i) { + cond = ...; + } + + input ("", 1) // Note this is analogous to a do-while loop + bool cond = true + for (int i=0; cond; ++i) { + cond = ...; + } + + input (trip_count, "") // Note this is analogous to a for loop + int trip_count = ... + for (int i=0; i < trip_count; ++i) { + cond = ...; // ignored + } + + input (trip_count, cond) + int trip_count = ...; + bool cond = ...; + for (int i=0; i < trip_count && cond; ++i) { + cond = ...; + } + + + *Sample usage - cond as well as trip count* + + graph predict-net { + %a = Constant[value = ]() + %b = Constant[value = ]() + %keepgoing = Constant[value = ]() + %max_trip_count = Constant[value = ]() + %keepgoing_out, %b_out, %user_defined_vals = Loop[body = ](%max_trip_count, %keepgoing, %b) + return + } + + graph body-net ( + %i[INT32, scalar] // iteration number + %keepgoing_in[BOOL, scalar] // incoming loop-termination-condition; not used + %b_in[INT32, scalar] // incoming value of loop-carried-dependency b + ) { + %my_local = Add(%a, %b_in) + %b_out = Sub(%a, %b_in) // outgoing value of loop-carried-dependency b + %keepgoing_out = Greater(%my_local, %b_out) // outgoing loop-termination-condition + %user_defined_val = Add(%b_in, %b_in) // scan-output value to be accumulated + return %keepgoing_out, %b_out, %user_defined_val + } + + *Sample equivalent C code* + + { + /* User-defined code (enclosing scope) */ + int a = 3, b = 6; + bool keepgoing = true; // Analogous to input cond + /* End user-defined code */ + + /* Implicitly-defined code */ + const int max_trip_count = 10; // Analogous to input M + int user_defined_vals[]; // Imagine this is resizable + /* End implicitly-defined code */ + /* initialize loop-carried variables and scan-output variables */ + bool keepgoing_out = keepgoing + int b_out = b + + for (int i=0; i < max_trip_count && keepgoing_out; ++i) { + /* Implicitly-defined code: bind actual parameter values + to formal parameter variables of loop-body */ + bool keepgoing_in = keepgoing_out; + bool b_in = b_out; + + /* User-defined code (loop body) */ + int my_local = a + b_in; // Reading value "a" from the enclosing scope is fine + b_out = a - b_in; + keepgoing_out = my_local > b_out; + user_defined_val = b_in + b_in; // b_in and b_out are different variables + /* End user-defined code */ + + /* Implicitly defined-code */ + user_defined_vals[i] = user_defined_val // accumulate scan-output values + } + // int t = my_local; // Can't do this. my_local is not accessible here. + + // The values below are bound to the output variables of the loop and therefore accessible + // b_out; user_defined_vals; keepgoing_out; + } + + There are several things of note in this code snippet: + + 1) Values from the enclosing scope (i.e. variable "a" here) are in scope and can + be referenced in the inputs of the loop. + 2) Any values computed in the loop body that needs to be used in a subsequent + iteration or after the loop are modelled using a pair of variables in the loop-body, + consisting of an input variable (eg., b_in) and an output variable (eg., b_out). + These are referred to as loop-carried dependences. The loop operation node + supplies the input value of the input variable for the first iteration, and + returns the output value of the output variable produced by the final + iteration. + 3) Scan_output variables are used to implicitly concatenate values computed across + all the iterations. In the above example, the value of user_defined_val computed + over all iterations are concatenated and returned as the value of user_defined_vals + after the loop. + 4) Values created in the body cannot be accessed in the enclosing scope, + except using the mechanism described above. + + Note that the semantics of this op support "diagonal" or "wavefront" execution. + (See Step 3 here for an example: + https://devblogs.nvidia.com/optimizing-recurrent-neural-networks-cudnn-5/). + Frontends should emit multi-layer RNNs as a series of While operators (with + time being the inner looping dimension), with each successive layer consuming + the scan_outputs from the previous layer, possibly going through several + point-wise operators (e.g. dropout, residual connections, linear layer). + + The input/output of subgraph (produced by loop node) matching is based on order instead of name. The implementation will figure out the names based on this order. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 13 + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has 2+N inputs: (iteration_num, condition, loop carried dependencies...). It has 1+N+K outputs: (condition, loop carried dependencies..., scan_outputs...). Each scan_output is created by concatenating the value of the specified output value at the end of each iteration of the loop. It is an error if the dimensions or data type of these scan_outputs change across loop iterations.
+
+ +#### Inputs (2 - ∞) + +
+
M (optional) : I
+
A maximum trip-count for the loop specified at runtime. Optional. Pass empty string to skip.
+
cond (optional) : B
+
A boolean termination condition. Optional. Pass empty string to skip.
+
v_initial (variadic, heterogeneous) : V
+
The initial values of any loop-carried dependencies (values that change across loop iterations)
+
+ +#### Outputs (1 - ∞) + +
+
v_final_and_scan_outputs (variadic, heterogeneous) : V
+
Final N loop carried dependency values then K scan_outputs. Scan outputs must be Tensors.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(bfloat16)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128)), optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(bfloat16))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(bfloat16)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
All Tensor, Sequence(Tensor), Optional(Tensor), and Optional(Sequence(Tensor)) types
+
I : tensor(int64)
+
tensor of int64, which should be a scalar.
+
B : tensor(bool)
+
tensor of bool, which should be a scalar.
+
+ + +#### Examples + +
+loop_11 + +```python +# Given a tensor x of values [x1, ..., xN], and initial tensor y +# sum up its elements using a scan +# returning the final state (y+x1+x2+...+xN) as well the scan_output +# [y+x1, y+x1+x2, ..., y+x1+x2+...+xN] + +y_in = onnx.helper.make_tensor_value_info('y_in', onnx.TensorProto.FLOAT, [1]) +y_out = onnx.helper.make_tensor_value_info('y_out', onnx.TensorProto.FLOAT, [1]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [1]) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) +y = np.array([-2]).astype(np.float32) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +i_add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +start_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['iter_count'], + outputs=['slice_start'], + axes=[0] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end'], + outputs=['slice_end'], + axes=[0] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +y_add_node = onnx.helper.make_node( + 'Add', + inputs=['y_in', 'slice_out'], + outputs=['y_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +scan_identity_node = onnx.helper.make_node( + 'Identity', + inputs=['y_out'], + outputs=['scan_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, i_add_node, + start_unsqueeze_node, end_unsqueeze_node, slice_node, y_add_node, + scan_identity_node], + 'loop_body', + [iter_count, cond_in, y_in], + [cond_out, y_out, scan_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'y'], + outputs=['res_y', 'res_scan'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +res_y = np.array([13]).astype(np.float32) +cond = np.array(1).astype(bool) +res_scan = np.array([-1, 1, 4, 8, 13]).astype(np.float32).reshape((5, 1)) +expect(node, inputs=[trip_count, cond, y], outputs=[res_y, res_scan], + name='test_loop11', opset_imports=[onnx.helper.make_opsetid("", 11)]) +``` + +
+ + +
+loop_13 + +```python +# Given a tensor x of values [x1, ..., xN], +# Return a sequence of tensors of +# [[x1], [x1, x2], ..., [x1, ..., xN]] + +seq_in = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, None) +seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, None) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) +) + +axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) +) + +add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['seq_in', 'slice_out'], + outputs=['seq_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, zero_const_node, add_node, + axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, seq_in], + [cond_out, seq_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'seq_empty'], + outputs=['seq_res'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +seq_empty: List[Any] = [] +seq_res = [x[:int(i)] for i in x] +cond = np.array(1).astype(bool) +expect(node, inputs=[trip_count, cond, seq_empty], outputs=[seq_res], + name='test_loop13_seq', opset_imports=[onnx.helper.make_opsetid("", 13)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []))]) +``` + +
+ + +
+loop_16_none + +```python +# Given a tensor sequence of values [x1, ..., xN], and an initial optional sequence of tensors [x0], +# Return a concatenated sequence of tensors of +# [x0, [x1], [x1, x2], ..., [x1, ..., xN]] + +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) +opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) +opt_in = onnx.helper.make_value_info('opt_seq_in', opt_in_tp) +seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, []) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x0 = np.array(0).astype(np.float32) +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + +optional_has_elem_node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['opt_seq_in'], + outputs=['optional_has_elem'] +) + +optional_is_none = onnx.helper.make_node( + 'Not', + inputs=['optional_has_elem'], + outputs=['optional_is_none'] +) + +optional_get_elem = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['opt_seq_in'], + outputs=['seq_in'] +) + +constant_in = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['constant_in'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=(), + vals=[0] + ) +) + +seq_const_in = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['constant_in'], + outputs=['init_seq_in'] +) + +then_seq_out = onnx.helper.make_tensor_sequence_value_info('init_seq_in', onnx.TensorProto.FLOAT, []) +then_body = onnx.helper.make_graph( + [constant_in, seq_const_in], + 'then_body', + [], + [then_seq_out] +) + +else_seq_out = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, []) +else_body = onnx.helper.make_graph( + [optional_get_elem], + 'else_body', + [], + [else_seq_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['optional_is_none'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body +) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) +) + +axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) +) + +add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'slice_out'], + outputs=['seq_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, optional_has_elem_node, optional_is_none, if_node, x_const_node, one_const_node, + zero_const_node, add_node, axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, opt_in], + [cond_out, seq_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'opt_seq'], + outputs=['seq_res'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +cond = np.array(1).astype(bool) +seq_res = compute_loop_outputs(x, [x0], trip_count) +opt_seq_in: List[Any] = [x0] +expect(node, inputs=[trip_count, cond, opt_seq_in], outputs=[seq_res], + name='test_loop16_seq_none', opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + opt_in_tp]) +``` + +
+ + +### **LpNormalization** + + Given a matrix, apply Lp-normalization along the provided axis. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is -1)
+
The axis on which to apply normalization, -1 mean last axis.
+
p : int (default is 2)
+
The order of the normalization, only 1 or 2 are supported.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input matrix
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Matrix after normalization
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +### **LpPool** + + LpPool consumes an input tensor X and applies Lp pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + Lp pooling consisting of computing the Lp norm on all values of a subset + of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 1, 2 + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
p : int (default is 2)
+
p value of the Lp norm used to pool over the input data.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size.
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output data tensor from Lp pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +### **MatMul** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 9 + +#### Inputs + +
+
A (differentiable) : T
+
N-dimensional matrix A
+
B (differentiable) : T
+
N-dimensional matrix B
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(bfloat16)
+
Constrain input and output types to float/int tensors.
+
+ + +#### Examples + +
+matmul + +```python +node = onnx.helper.make_node( + 'MatMul', + inputs=['a', 'b'], + outputs=['c'], +) + +# 2d +a = np.random.randn(3, 4).astype(np.float32) +b = np.random.randn(4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_2d') + +# 3d +a = np.random.randn(2, 3, 4).astype(np.float32) +b = np.random.randn(2, 4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_3d') + +# 4d +a = np.random.randn(1, 2, 3, 4).astype(np.float32) +b = np.random.randn(1, 2, 4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_4d') +``` + +
+ + +### **MatMulInteger** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html. + The production MUST never overflow. The accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs (2 - 4) + +
+
A (non-differentiable) : T1
+
N-dimensional matrix A
+
B (non-differentiable) : T2
+
N-dimensional matrix B
+
a_zero_point (optional, non-differentiable) : T1
+
Zero point tensor for input 'A'. It's optional and default value is 0. It could be a scalar or N-D tensor. Scalar refers to per tensor quantization whereas N-D refers to per row quantization. If the input is 2D of shape [M, K] then zero point tensor may be an M element vector [zp_1, zp_2, ..., zp_M]. If the input is N-D tensor with shape [D1, D2, M, K] then zero point tensor may have shape [D1, D2, M, 1].
+
b_zero_point (optional, non-differentiable) : T2
+
Zero point tensor for input 'B'. It's optional and default value is 0. It could be a scalar or a N-D tensor, Scalar refers to per tensor quantization whereas N-D refers to per col quantization. If the input is 2D of shape [K, N] then zero point tensor may be an N element vector [zp_1, zp_2, ..., zp_N]. If the input is N-D tensor with shape [D1, D2, K, N] then zero point tensor may have shape [D1, D2, 1, N].
+
+ +#### Outputs + +
+
Y (non-differentiable) : T3
+
Matrix multiply results from A * B
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input A data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input B data type to 8-bit integer tensor.
+
T3 : tensor(int32)
+
Constrain output Y data type as 32-bit integer tensor.
+
+ + +#### Examples + +
+matmulinteger + +```python +node = onnx.helper.make_node('MatMulInteger', + inputs=['A', 'B', 'a_zero_point', 'b_zero_point'], + outputs=['Y'],) + +A = np.array([[11, 7, 3], + [10, 6, 2], + [9, 5, 1], + [8, 4, 0], ], dtype=np.uint8) + +a_zero_point = np.array([12], dtype=np.uint8) + +B = np.array([[1, 4], + [2, 5], + [3, 6], ], dtype=np.uint8) + +b_zero_point = np.array([0], dtype=np.uint8) + +output = np.array([[-38, -83], + [-44, -98], + [-50, -113], + [-56, -128], ], dtype=np.int32) + +expect(node, inputs=[A, B, a_zero_point, b_zero_point], outputs=[output], + name='test_matmulinteger') +``` + +
+ + +### **Max** + + Element-wise max of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 8, 12 + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for max.
+
+ +#### Outputs + +
+
max (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to numeric tensors.
+
+ + +#### Examples + +
+max + +```python +data_0 = np.array([3, 2, 1]).astype(np.float32) +data_1 = np.array([1, 4, 4]).astype(np.float32) +data_2 = np.array([2, 5, 3]).astype(np.float32) +result = np.array([3, 5, 4]).astype(np.float32) +node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_max_example') + +node = onnx.helper.make_node( + 'Max', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_max_one_input') + +result = np.maximum(data_0, data_1) +node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_two_inputs') +``` + +
+ + +
+max_all_numeric_types + +```python +for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([3, 4, 4]).astype(op_dtype) + node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_{0}'.format(np.dtype(op_dtype).name)) +``` + +
+ + +### **MaxPool** + + MaxPool consumes an input tensor X and applies max pooling across + the tensor according to kernel sizes, stride sizes, and pad lengths. + max pooling consisting of computing the max on all values of a + subset of the input tensor according to the kernel size and downsampling the + data into the output tensor Y for further processing. The output spatial shape will be following: + ``` + output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + or + ``` + output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1)) / strides_spatial_shape[i] + 1) + ``` + if ceil_mode is enabled + + ``` + * pad_shape[i] is sum of pads along axis i + ``` + + `auto_pad` is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following: + ``` + VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) + 1) / strides_spatial_shape[i]) + SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i]) + ``` + And pad shape will be following if `SAME_UPPER` or `SAME_LOWER`: + ``` + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + ((kernel_spatial_shape[i] - 1) * dilations[i] + 1) - input_spatial_shape[i] + ``` + The output of each pooling window is maximum number of elements exclude pad. + + +#### Version + +This version of the operator has been available since version 12 of the default ONNX operator set. + +Other versions of this operator: 1, 8, 10, 11 + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
ceil_mode : int (default is 0)
+
Whether to use ceil or floor (default) to compute the output shape.
+
dilations : list of ints
+
Dilation value along each spatial axis of filter. If not present, the dilation defaults to 1 along each spatial axis.
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
storage_order : int (default is 0)
+
The storage order of the tensor. 0 is row major, and 1 is column major.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
+ +#### Outputs (1 - 2) + +
+
Y (differentiable) : T
+
Output data tensor from average or max pooling across the input tensor. Dimensions will vary based on various kernel, stride, and pad sizes. Floor value of the dimension is used
+
Indices (optional, non-differentiable) : I
+
Indices tensor from max pooling across the input tensor. The dimensions of indices are the same as output tensor. The values in indices of are the indices of the selected values during pooling. The indices are computed as flatten 1-D tensor, and the indices do not consider padding. So the values in indices are in [0, N x C x D1 x ... x Dn).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(uint8)
+
Constrain input and output types to float and 8 bit tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ + +#### Examples + +
+maxpool_1d_default + +```python +""" +input_shape: [1, 3, 32] +output_shape: [1, 3, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], +) +x = np.random.randn(1, 3, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2] +strides = [1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_1d_default') +``` + +
+ + +
+maxpool_2d_ceil + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_ceil') +``` + +
+ + +
+maxpool_2d_default + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 31, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_default') +``` + +
+ + +
+maxpool_2d_dilations + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[1, 1], + dilations=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_dilations') +``` + +
+ + +
+maxpool_2d_pads + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = pad_top = pad_right = pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_pads') +``` + +
+ + +
+maxpool_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_pads') +``` + +
+ + +
+maxpool_2d_precomputed_same_upper + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 3, 3] +pad_shape: [2, 2] -> [1, 1, 1, 1] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9, 10], + [17, 19, 20], + [22, 24, 25]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_same_upper') +``` + +
+ + +
+maxpool_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_strides') +``` + +
+ + +
+maxpool_2d_same_lower + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [1, 0, 1, 0] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) +pad_bottom = pad_shape[0] // 2 +pad_top = pad_shape[0] - pad_bottom +pad_right = pad_shape[1] // 2 +pad_left = pad_shape[1] - pad_right +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_lower') +``` + +
+ + +
+maxpool_2d_same_upper + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [0, 1, 0, 1] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) +pad_top = pad_shape[0] // 2 +pad_bottom = pad_shape[0] - pad_top +pad_left = pad_shape[1] // 2 +pad_right = pad_shape[1] - pad_left +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_upper') +``` + +
+ + +
+maxpool_2d_strides + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 10, 10] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (5, 5) +strides = (3, 3) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_strides') +``` + +
+ + +
+maxpool_2d_uint8 + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.uint8) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.uint8) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_uint8') +``` + +
+ + +
+maxpool_3d_default + +```python +""" +input_shape: [1, 3, 32, 32, 32] +output_shape: [1, 3, 31, 31, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], +) +x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2, 2, 2] +strides = [1, 1, 1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_3d_default') +``` + +
+ + +
+maxpool_with_argmax_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) +z = np.array([[[ + [12, 13, 14, 14, 14], + [17, 18, 19, 19, 19], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24]]]]).astype(np.int64) + +expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_pads') +``` + +
+ + +
+maxpool_with_argmax_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[2, 2], + strides=[2, 2], + storage_order=1 +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) +z = np.array([[[[6, 16], + [8, 18]]]]).astype(np.int64) + +expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_strides') +``` + +
+ + +### **MaxRoiPool** + + ROI max pool consumes an input tensor X and region of interests (RoIs) to + apply max pooling across each RoI, to produce output 4-D tensor of shape + (num_rois, channels, pooled_shape[0], pooled_shape[1]). + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
pooled_shape : list of ints (required)
+
ROI pool output shape (height, width).
+
spatial_scale : float (default is 1.0)
+
Multiplicative spatial scale factor to translate ROI coordinates from their input scale to the scale used when pooling.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input data tensor from the previous operator; dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data.
+
rois (non-differentiable) : T
+
RoIs (Regions of Interest) to pool over. Should be a 2-D tensor of shape (num_rois, 5) given as [[batch_id, x1, y1, x2, y2], ...].
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
RoI pooled output 4-D tensor of shape (num_rois, channels, pooled_shape[0], pooled_shape[1]).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +### **MaxUnpool** + + MaxUnpool essentially computes the partial inverse of the MaxPool op. + The input information to this op is typically the the output information from a MaxPool op. The first + input tensor X is the tensor that needs to be unpooled, which is typically the pooled tensor (first output) + from MaxPool. The second input tensor, I, contains the indices to the (locally maximal) elements corrsponding + to the elements in the first input tensor X. Input tensor I is typically the second output of the MaxPool op. + The third (optional) input is a tensor that specifies the output size of the unpooling operation. + + MaxUnpool is intended to do 'partial' inverse of the MaxPool op. 'Partial' because all the non-maximal + values from the original input to MaxPool are set to zero in the output of the MaxUnpool op. Pooling + the result of an unpooling operation should give back the original input to the unpooling op. + + MaxUnpool can produce the same output size for several input sizes, which makes unpooling op ambiguous. + The third input argument, output_size, is meant to disambiguate the op and produce output tensor of + known/predictable size. + + In addition to the inputs, MaxUnpool takes three attributes, namely kernel_shape, strides, and pads, + which define the exact unpooling op. The attributes typically have the same values as the corrsponding + pooling op that the unpooling op is trying to invert. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Attributes + +
+
kernel_shape : list of ints (required)
+
The size of the kernel along each axis.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0. The value represent the number of pixels added to the beginning and end part of the corresponding axis. `pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`. This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaults to 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (2 - 3) + +
+
X (differentiable) : T1
+
Input data tensor that has to be unpooled. This tensor is typically the first output of the MaxPool op.Dimensions for image case are (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data. For non-image case, the dimensions are in the form of (N x C x D1 x D2 ... Dn), where N is the batch size. Optionally, if dimension denotation is in effect, the operation expects the input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
I (non-differentiable) : T2
+
Input data tensor containing the indices corresponding to elements in the first input tensor X.This tensor is typically the second output of the MaxPool op.Dimensions must be the same as input tensor X. The indices are linear, i.e. computed considering the tensor as flattened 1-D tensor, assuming row-major storage. Also, the linear indices should not consider padding. So the values in indices are in the range [0, N x C x D1 x ... x Dn).
+
output_shape (optional, non-differentiable) : T2
+
The shape of the output can be explicitly set which will cause pads values to be auto generated. If 'output_shape' is specified, 'pads' values are ignored.
+
+ +#### Outputs + +
+
output (differentiable) : T1
+
Output data tensor that contains the result of the unpooling.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T2 : tensor(int64)
+
Constrain index tensor to int64
+
+ + +#### Examples + +
+with_output_shape + +```python +node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI', 'output_shape'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +xT = np.array([[[[5, 6], + [7, 8]]]], dtype=np.float32) +xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) +output_shape = np.array((1, 1, 5, 5), dtype=np.int64) +y = np.array([[[[0, 0, 0, 0, 0], + [0, 5, 0, 6, 0], + [0, 0, 0, 0, 0], + [0, 7, 0, 8, 0], + [0, 0, 0, 0, 0]]]], dtype=np.float32) +expect(node, inputs=[xT, xI, output_shape], outputs=[y], name='test_maxunpool_export_with_output_shape') +``` + +
+ + +
+without_output_shape + +```python +node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +xT = np.array([[[[1, 2], + [3, 4]]]], dtype=np.float32) +xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) +y = np.array([[[[0, 0, 0, 0], + [0, 1, 0, 2], + [0, 0, 0, 0], + [0, 3, 0, 4]]]], dtype=np.float32) +expect(node, inputs=[xT, xI], outputs=[y], name='test_maxunpool_export_without_output_shape') +``` + +
+ + +### **Mean** + + Element-wise mean of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 8 + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for mean.
+
+ +#### Outputs + +
+
mean (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+mean + +```python +data_0 = np.array([3, 0, 2]).astype(np.float32) +data_1 = np.array([1, 3, 4]).astype(np.float32) +data_2 = np.array([2, 6, 6]).astype(np.float32) +result = np.array([2, 3, 4]).astype(np.float32) +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_mean_example') + +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_mean_one_input') + +result = np.divide(np.add(data_0, data_1), 2.) +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_mean_two_inputs') +``` + +
+ + +### **MeanVarianceNormalization** + + A MeanVarianceNormalization Function: Perform mean variance normalization + on the input tensor X using formula:
``` (X-EX)/sqrt(E(X-EX)^2) ``` + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Attributes + +
+
axes : list of ints (default is ['0', '2', '3'])
+
A list of integers, along which to reduce. The default is to caculate along axes [0,2,3] for calculating mean and variance along each channel. Two variables with the same C-coordinate are associated with the same mean and variance.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+meanvariancenormalization + +```python +node = onnx.helper.make_node( + 'MeanVarianceNormalization', + inputs=['X'], + outputs=['Y'] +) + +input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + +# Calculate expected output data +data_mean = np.mean(input_data, axis=(0, 2, 3), keepdims=1) +data_mean_squared = np.power(data_mean, 2) +data_squared = np.power(input_data, 2) +data_squared_mean = np.mean(data_squared, axis=(0, 2, 3), keepdims=1) +std = np.sqrt(data_squared_mean - data_mean_squared) +expected_output = (input_data - data_mean) / (std + 1e-9) + +expect(node, inputs=[input_data], outputs=[expected_output], + name='test_mvn') +``` + +
+ + +### **Min** + + Element-wise min of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 8, 12 + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for min.
+
+ +#### Outputs + +
+
min (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to numeric tensors.
+
+ + +#### Examples + +
+min + +```python +data_0 = np.array([3, 2, 1]).astype(np.float32) +data_1 = np.array([1, 4, 4]).astype(np.float32) +data_2 = np.array([2, 5, 0]).astype(np.float32) +result = np.array([1, 2, 0]).astype(np.float32) +node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_min_example') + +node = onnx.helper.make_node( + 'Min', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_min_one_input') + +result = np.minimum(data_0, data_1) +node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_two_inputs') +``` + +
+ + +
+min_all_numeric_types + +```python +for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([1, 2, 1]).astype(op_dtype) + node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_{0}'.format(np.dtype(op_dtype).name)) +``` + +
+ + +### **Mod** + + Performs element-wise binary modulus (with Numpy-style broadcasting support). + The sign of the remainder is the same as that of the Divisor. + + Mod operator can also behave like C fmod() or numpy.fmod. In this case, the sign of the remainder however, will be the same as the Dividend + (in contrast to integer mod). To force a behavior like numpy.fmod() an 'fmod' Attribute is provided. + This attribute is set to 0 by default causing the behavior to be like integer mod. + Setting this attribute to 1 causes the remainder to be calculated similar to that of numpy.fmod(). + + If the input type is floating point, then `fmod` attribute must be set to 1. + + In case of dividend being zero, the results will be platform dependent. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 10 + +#### Attributes + +
+
fmod : int (default is 0)
+
Whether the operator should behave like fmod (default=0 meaning it will do integer mods); Set this to 1 to force fmod treatment
+
+ +#### Inputs + +
+
A (differentiable) : T
+
Dividend tensor
+
B (non-differentiable) : T
+
Divisor tensor
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Remainder tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+mod_broadcast + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.arange(0, 30).reshape([3, 2, 5]).astype(np.int32) +y = np.array([7]).astype(np.int32) +z = np.mod(x, y) +# array([[[0, 1, 2, 3, 4], +# [5, 6, 0, 1, 2]], + +# [[3, 4, 5, 6, 0], +# [1, 2, 3, 4, 5]], + +# [[6, 0, 1, 2, 3], +# [4, 5, 6, 0, 1]]], dtype=int32) +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_broadcast') +``` + +
+ + +
+mod_int64_fmod + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) +z = np.fmod(x, y) # expected output [ 0, 1, 5, 0, -1, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_int64_fmod') +``` + +
+ + +
+mod_mixed_sign_float16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float16) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float16) +z = np.fmod(x, y) # expected output [-0.10156, 0.3984 , 5. , 0.10156, -0.3984 , 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float16') +``` + +
+ + +
+mod_mixed_sign_float32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float32) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float32) +z = np.fmod(x, y) # expected output [-0.10000038, 0.39999962, 5. , 0.10000038, -0.39999962, 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float32') +``` + +
+ + +
+mod_mixed_sign_float64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float64) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float64) +z = np.fmod(x, y) # expected output [-0.1, 0.4, 5. , 0.1, -0.4, 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float64') +``` + +
+ + +
+mod_mixed_sign_int16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int16) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int16) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int16') +``` + +
+ + +
+mod_mixed_sign_int32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int32) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int32) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int32') +``` + +
+ + +
+mod_mixed_sign_int64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int64') +``` + +
+ + +
+mod_mixed_sign_int8 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int8) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int8) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int8') +``` + +
+ + +
+mod_uint16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint16) +y = np.array([2, 3, 8]).astype(np.uint16) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint16') +``` + +
+ + +
+mod_uint32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint32) +y = np.array([2, 3, 8]).astype(np.uint32) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint32') +``` + +
+ + +
+mod_uint64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint64) +y = np.array([2, 3, 8]).astype(np.uint64) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint64') +``` + +
+ + +
+mod_uint8 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint8) +y = np.array([2, 3, 8]).astype(np.uint8) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint8') +``` + +
+ + +### **Mul** + + Performs element-wise binary multiplication (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 13 + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+mul + +```python +node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.float32) +z = x * y # expected output [4., 10., 18.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul') + +x = np.random.randint(4, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_uint8') +``` + +
+ + +
+mul_broadcast + +```python +node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_bcast') +``` + +
+ + +### **Multinomial** + + Generate a tensor of samples from a multinomial distribution according to the probabilities + of each of the possible outcomes. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 6)
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use int32.
+
sample_size : int (default is 1)
+
Number of times to sample.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor with shape [batch_size, class_size], where class_size is the number of all possible outcomes. Each value along the axis zero represents the unnormalized log-probability of each corresponding outcome in a batch.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor with shape [batch_size, sample_size], where sample_size is the number of times to sample. Each value along the axis zero represents the outcome of the corresponding sample in a batch.
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
T2 : tensor(int32), tensor(int64)
+
Constrain output types to integral tensors.
+
+ + +### **Neg** + + Neg takes one input data (Tensor) and produces one output data + (Tensor) where each element flipped sign, y = -x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(int32), tensor(int8), tensor(int16), tensor(int64), tensor(float16), tensor(double), tensor(bfloat16)
+
Constrain input and output types to signed numeric tensors.
+
+ + +#### Examples + +
+neg + +```python +node = onnx.helper.make_node( + 'Neg', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-4, 2]).astype(np.float32) +y = np.negative(x) # expected output [4., -2.], +expect(node, inputs=[x], outputs=[y], + name='test_neg_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.negative(x) +expect(node, inputs=[x], outputs=[y], + name='test_neg') +``` + +
+ + +### **NegativeLogLikelihoodLoss** + + A NegativeLogLikelihoodLoss operator computes (weighted) negative log likelihood loss. + Its "input" tensor has the shape of (N, C, d1, d2, ..., dk) where k >= 0. + The "input" tensor contains log-probabilities for input[n, :, d_1, d_2,..., d_k] being in a class of [0, C). + The operator's "target" input tensor has the shape of (N, d1, d2, ..., dk). It encodes class labels (one of C classes) + or it may contain a special value (indicated by an attribute ignore_index) for N x d1 x d2 x ... x dk samples. + The loss value for input[n, :, d_1, d_2,...d_k] being classified as class c = target[n][d_1][d_2]...[d_k] is computed as: + + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k]. + + When an optional "weight" is provided, the sample loss is calculated as: + + loss[n][d_1][d_2]...[d_k] = -input[n][c][d_1][d_2]...[d_k] * weight[c]. + + loss is zero for the case when target-value equals ignore_index. + + loss[n][d_1][d_2]...[d_k] = 0, when target[n][d_1][d_2]...[d_k] = ignore_index + + If "reduction" attribute is set to "none", the operator's output will be the above loss with shape (N, d1, d2, ..., dk). + If "reduction" attribute is set to "mean" (the default attribute value), the output loss is (weight) averaged: + + mean(loss), if "weight" is not provided, + + or if weight is provided, + + sum(loss) / sum(weight[target[n][d_1][d_2]...[d_k]]]), for all samples. + + If "reduction" attribute is set to "sum", the output is a scalar: + sum(loss). + + See also https://pytorch.org/docs/stable/nn.html#torch.nn.NLLLoss. + + Example 1: + + // negative log likelihood loss, "none" reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] + + // print(loss) + // [[-3. -2.] + // [-0. -2.]] + + Example 2: + + // weighted negative log likelihood loss, sum reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + + loss = np.sum(loss) + // print(loss) + // -1.1 + + Example 3: + + // weighted negative log likelihood loss, mean reduction + N, C, d1 = 2, 3, 2 + input = [[[1.0, 2.0], [2.0, 2.0], [3.0, 2.0]], + [[0.0, 1.0], [2.0, 2.0], [1.0, 2]]] + target = [[2, 1], [0, 2]] + weight = [0.2, 0.3, 0.1] + loss = np.zeros((N, d1)) + weight_total = 0 + for n in range(N): + for d_1 in range(d1): + c = target[n][d_1] + loss[n][d_1] = -input[n][c][d_1] * weight[c] + weight_total = weight_total + weight[c] + + loss = np.sum(loss) / weight_total + // print(loss) + // -1.57 + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 12 + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean (default). 'none': the output is the loss for each sample. 'sum': the output will be summed. 'mean': the sum of the output will be divided by the sum of applied weights.
+
+ +#### Inputs (2 - 3) + +
+
input (differentiable) : T
+
Input tensor of shape (N, C) or (N, C, d1, d2, ..., dk).
+
target (non-differentiable) : Tind
+
Target tensor of shape (N) or (N, d1, d2, ..., dk). Target element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the target values should either be in the range [0, C) or have the value ignore_index.
+
weight (optional, non-differentiable) : T
+
Optional rescaling weight tensor. If given, it has to be a tensor of size C. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs + +
+
loss (differentiable) : T
+
The negative log likelihood loss
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input, weight, and output types to floating-point tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ + +#### Examples + +
+input_shape_is_NC + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C = 3, 5 +np.random.seed(0) +input = np.random.rand(N, C).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, )).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NC') +``` + +
+ + +
+input_shape_is_NCd1 + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1') +``` + +
+ + +
+input_shape_is_NCd1_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +target[0][0] = np.int64(1) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_ii') +``` + +
+ + +
+input_shape_is_NCd1_mean_weight_negative_ii + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +target[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_mean_weight_negative_ii') +``` + +
+ + +
+input_shape_is_NCd1_weight + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight') +``` + +
+ + +
+input_shape_is_NCd1_weight_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +target[0][0] = np.int64(1) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight_ii') +``` + +
+ + +
+input_shape_is_NCd1d2 + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2') +``` + +
+ + +
+input_shape_is_NCd1d2_no_weight_reduction_mean_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +target[0][0][0] = np.int64(1) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_no_weight_reduction_mean_ii') +``` + +
+ + +
+input_shape_is_NCd1d2_reduction_mean + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_mean') +``` + +
+ + +
+input_shape_is_NCd1d2_reduction_sum + +```python +reduction = 'sum' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_sum') +``` + +
+ + +
+input_shape_is_NCd1d2_with_weight + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight') +``` + +
+ + +
+input_shape_is_NCd1d2_with_weight_reduction_mean + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_mean') +``` + +
+ + +
+input_shape_is_NCd1d2_with_weight_reduction_sum + +```python +reduction = 'sum' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum') +``` + +
+ + +
+input_shape_is_NCd1d2_with_weight_reduction_sum_ii + +```python +reduction = 'sum' +ignore_index = np.int64(0) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +target[0][0][0] = np.int64(0) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum_ii') +``` + +
+ + +
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +target[0][0][0][0] = -5 + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_none_no_weight_negative_ii') +``` + +
+ + +
+input_shape_is_NCd1d2d3_sum_weight_high_ii + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +input = np.random.rand(N, C).astype(np.float32) +target = np.random.randint(0, high=C, size=(N)) +target[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_sum_weight_high_ii') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_mean_weight + +```python +reduction = 'mean' + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_mean_weight') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_none_no_weight + +```python +reduction = 'none' + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_none_no_weight') +``` + +
+ + +### **NonMaxSuppression** + + Filter out boxes that have high intersection-over-union (IOU) overlap with previously selected boxes. + Bounding boxes with score less than score_threshold are removed. Bounding box format is indicated by attribute center_point_box. + Note that this algorithm is agnostic to where the origin is in the coordinate system and more generally is invariant to + orthogonal transformations and translations of the coordinate system; thus translating or reflections of the coordinate system + result in the same boxes being selected by the algorithm. + The selected_indices output is a set of integers indexing into the input collection of bounding boxes representing the selected boxes. + The bounding box coordinates corresponding to the selected indices can then be obtained using the Gather or GatherND operation. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 10 + +#### Attributes + +
+
center_point_box : int (default is 0)
+
Integer indicate the format of the box data. The default is 0. 0 - the box data is supplied as [y1, x1, y2, x2] where (y1, x1) and (y2, x2) are the coordinates of any diagonal pair of box corners and the coordinates can be provided as normalized (i.e., lying in the interval [0, 1]) or absolute. Mostly used for TF models. 1 - the box data is supplied as [x_center, y_center, width, height]. Mostly used for Pytorch models.
+
+ +#### Inputs (2 - 5) + +
+
boxes : tensor(float)
+
An input tensor with shape [num_batches, spatial_dimension, 4]. The single box data format is indicated by center_point_box.
+
scores : tensor(float)
+
An input tensor with shape [num_batches, num_classes, spatial_dimension]
+
max_output_boxes_per_class (optional) : tensor(int64)
+
Integer representing the maximum number of boxes to be selected per batch per class. It is a scalar. Default to 0, which means no output.
+
iou_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding whether boxes overlap too much with respect to IOU. It is scalar. Value range [0, 1]. Default to 0.
+
score_threshold (optional) : tensor(float)
+
Float representing the threshold for deciding when to remove boxes based on score. It is a scalar.
+
+ +#### Outputs + +
+
selected_indices : tensor(int64)
+
selected indices from the boxes tensor. [num_selected_indices, 3], the selected index format is [batch_index, class_index, box_index].
+
+ +#### Type Constraints + + + +#### Examples + +
+nonmaxsuppression_center_point_box_format + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'], + center_point_box=1 +) +boxes = np.array([[ + [0.5, 0.5, 1.0, 1.0], + [0.5, 0.6, 1.0, 1.0], + [0.5, 0.4, 1.0, 1.0], + [0.5, 10.5, 1.0, 1.0], + [0.5, 10.6, 1.0, 1.0], + [0.5, 100.5, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_center_point_box_format') +``` + +
+ + +
+nonmaxsuppression_flipped_coordinates + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [1.0, 1.0, 0.0, 0.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, 0.9, 1.0, -0.1], + [0.0, 10.0, 1.0, 11.0], + [1.0, 10.1, 0.0, 11.1], + [1.0, 101.0, 0.0, 100.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_flipped_coordinates') +``` + +
+ + +
+nonmaxsuppression_identical_boxes + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_identical_boxes') +``` + +
+ + +
+nonmaxsuppression_limit_output_size + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_limit_output_size') +``` + +
+ + +
+nonmaxsuppression_single_box + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_single_box') +``` + +
+ + +
+nonmaxsuppression_suppress_by_IOU + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU') +``` + +
+ + +
+nonmaxsuppression_suppress_by_IOU_and_scores + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.4]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU_and_scores') +``` + +
+ + +
+nonmaxsuppression_two_batches + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]], + [[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]], + [[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [1, 0, 3], [1, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_batches') +``` + +
+ + +
+nonmaxsuppression_two_classes + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3], + [0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 1, 3], [0, 1, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_classes') +``` + +
+ + +### **NonZero** + + Returns the indices of the elements that are non-zero + (in row-major order - by dimension). + NonZero behaves similar to numpy.nonzero: + https://docs.scipy.org/doc/numpy/reference/generated/numpy.nonzero.html + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Inputs + +
+
X (non-differentiable) : T
+
input
+
+ +#### Outputs + +
+
Y (non-differentiable) : tensor(int64)
+
output
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to all tensor types.
+
+ + +#### Examples + +
+nonzero + +```python +node = onnx.helper.make_node( + 'NonZero', + inputs=['condition'], + outputs=['result'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +result = np.array(np.nonzero(condition), dtype=np.int64) # expected output [[0, 1, 1], [0, 0, 1]] +expect(node, inputs=[condition], outputs=[result], + name='test_nonzero_example') +``` + +
+ + +### **Not** + + Returns the negation of the input tensor element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input/output to boolean tensors.
+
+ + +#### Examples + +
+not + +```python +node = onnx.helper.make_node( + 'Not', + inputs=['x'], + outputs=['not'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_4d') +``` + +
+ + +### **OneHot** + + Produces a one-hot tensor based on inputs. + The locations represented by the index values in the 'indices' input tensor will have 'on_value' + and the other locations will have 'off_value' in the output tensor, where 'on_value' and 'off_value' + are specified as part of required input argument 'values', which is a two-element tensor of format + [off_value, on_value]. The rank of the output tensor will be one greater than the rank of the + input tensor. The additional dimension is for one-hot representation. The additional dimension will + be inserted at the position specified by 'axis'. If 'axis' is not specified then then additional + dimension will be inserted as the innermost dimension, i.e. axis=-1. The size of the additional + dimension is specified by required scalar input 'depth'. The type of the output tensor is the same + as the type of the 'values' input. Any entries in the 'indices' input tensor with values outside + the range [-depth, depth-1] will result in one-hot representation with all 'off_value' values in the + output tensor. + + when axis = 0: + output[input[i, j, k], i, j, k] = 1 for all i, j, k and 0 otherwise. + + when axis = -1: + output[i, j, k, input[i, j, k]] = 1 for all i, j, k and 0 otherwise. + + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Attributes + +
+
axis : int (default is -1)
+
(Optional) Axis along which one-hot representation in added. Default: axis=-1. axis=-1 means that the additional dimension will be inserted as the innermost/last dimension in the output tensor. Negative value means counting dimensions from the back. Accepted range is [-r-1, r] where r = rank(indices).
+
+ +#### Inputs + +
+
indices (non-differentiable) : T1
+
Input tensor containing indices. Any entries in the 'indices' input tensor with values outside the range [-depth, depth-1] will result in one-hot representation with all 'off_value' values in the output tensor.In case 'indices' is of non-integer type, the values will be casted to int64 before use.
+
depth (non-differentiable) : T2
+
Scalar specifying the number of classes in one-hot tensor. This is also the size of the one-hot dimension (specified by 'axis' attribute) added on in the output tensor. The values in the 'indices' input tensor are expected to be in the range [-depth, depth-1]. In case 'depth' is of non-integer type, it will be casted to int64 before use.
+
values (non-differentiable) : T3
+
Rank 1 tensor containing exactly two elements, in the format [off_value, on_value], where 'on_value' is the value used for filling locations specified in 'indices' input tensor, and 'off_value' is the value used for filling locations other than those specified in 'indices' input tensor.
+
+ +#### Outputs + +
+
output (non-differentiable) : T3
+
Tensor of rank one greater than input tensor 'indices', i.e. rank(output) = rank(indices) + 1. The data type for the elements of the output tensor is the same as the type of input 'values' is used.
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T2 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
T3 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
+ + +#### Examples + +
+with_axis + +```python +axisValue = 1 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_axis') +``` + +
+ + +
+with_negative_axis + +```python +axisValue = -2 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_negative_axis') +``` + +
+ + +
+with_negative_indices + +```python +axisValue = 1 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([0, -7, -8], dtype=np.int64) + +# print(y) +# [[3. 1. 1. 1. 1. 1. 1. 1. 1. 1.] +# [1. 1. 1. 3. 1. 1. 1. 1. 1. 1.] +# [1. 1. 3. 1. 1. 1. 1. 1. 1. 1.]] + +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_negative_indices') +``` + +
+ + +
+without_axis + +```python +on_value = 5 +off_value = 2 +output_type = np.int32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'] +) +indices = np.array([0, 7, 8], dtype=np.int64) +depth = np.float32(12) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_without_axis') +``` + +
+ + +### **Optional** + + Constructs an optional-type value containing either an empty optional of a certain type specified by the attribute, + or a non-empty value containing the input element. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Attributes + +
+
type : type_proto
+
Type of the element in the optional output
+
+ +#### Inputs (0 - 1) + +
+
input (optional) : V
+
The input element.
+
+ +#### Outputs + +
+
output : O
+
The optional output enclosing the input element.
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input type to all tensor and sequence types.
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain output type to all optional tensor or optional sequence types.
+
+ + +### **OptionalGetElement** + + Outputs the element in the optional-type input. It is an error if the input value does not have an element + and the behavior is undefined in this case. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input : O
+
The optional input.
+
+ +#### Outputs + +
+
output : V
+
Output element in the optional input.
+
+ +#### Type Constraints + +
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input type to optional tensor and optional sequence types.
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output type to all tensor or sequence types.
+
+ + +### **OptionalHasElement** + + Returns true if the optional-type input contains an element. If it is an empty optional-type, this op returns false. + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +#### Inputs + +
+
input : O
+
The optional input.
+
+ +#### Outputs + +
+
output : B
+
A scalar boolean tensor. If true, it indicates that optional-type input contains an element. Otherwise, it is empty.
+
+ +#### Type Constraints + +
+
O : optional(seq(tensor(uint8))), optional(seq(tensor(uint16))), optional(seq(tensor(uint32))), optional(seq(tensor(uint64))), optional(seq(tensor(int8))), optional(seq(tensor(int16))), optional(seq(tensor(int32))), optional(seq(tensor(int64))), optional(seq(tensor(float16))), optional(seq(tensor(float))), optional(seq(tensor(double))), optional(seq(tensor(string))), optional(seq(tensor(bool))), optional(seq(tensor(complex64))), optional(seq(tensor(complex128))), optional(tensor(uint8)), optional(tensor(uint16)), optional(tensor(uint32)), optional(tensor(uint64)), optional(tensor(int8)), optional(tensor(int16)), optional(tensor(int32)), optional(tensor(int64)), optional(tensor(float16)), optional(tensor(float)), optional(tensor(double)), optional(tensor(string)), optional(tensor(bool)), optional(tensor(complex64)), optional(tensor(complex128))
+
Constrain input type to optional tensor and optional sequence types.
+
B : tensor(bool)
+
Constrain output to a boolean tensor.
+
+ + +#### Examples + +
+empty + +```python +optional = None +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) +node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_has_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element_empty') +``` + +
+ + +
+get_element_sequence + +```python +optional = [np.array([1, 2, 3, 4]).astype(np.int32)] +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[4, ]) +seq_type_proto = onnx.helper.make_sequence_type_proto(tensor_type_proto) +input_type_proto = onnx.helper.make_optional_type_proto(seq_type_proto) + +node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_get_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element_sequence') +``` + +
+ + +
+get_element_tensor + +```python +optional = np.array([1, 2, 3, 4]).astype(np.float32) +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) + +node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_get_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element') +``` + +
+ + +
+optionalhaselement + +```python +optional = np.array([1, 2, 3, 4]).astype(np.float32) +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) +node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_has_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element') +``` + +
+ + +### **Or** + + Returns the tensor resulted from performing the `or` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+or + +```python +node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or4d') +``` + +
+ + +
+or_broadcast + +```python +node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v4d') +``` + +
+ + +### **PRelu** + + PRelu takes input data (Tensor) and slope tensor as input, and produces one + output data (Tensor) where the function `f(x) = slope * x for x < 0`, + `f(x) = x for x >= 0`., is applied to the data tensor elementwise. + + **History** + - Version 16 adds bfloat16 to the types allowed. + This operator supports **unidirectional broadcasting** (tensor slope should be unidirectional broadcastable to input tensor X); for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 9 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
slope (differentiable) : T
+
Slope tensor. The shape of slope can be smaller then first input X; if so, its shape must be unidirectional broadcastable to X
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor (same size as X)
+
+ +#### Type Constraints + +
+
T : tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(uint32), tensor(uint64), tensor(int32), tensor(int64)
+
Constrain input and output types to float/int tensors.
+
+ + +#### Examples + +
+prelu + +```python +node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +slope = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + +expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_example') +``` + +
+ + +
+prelu_broadcast + +```python +node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +slope = np.random.randn(5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + +expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_broadcast') +``` + +
+ + +### **Pad** + + Given a tensor containing the data to be padded (`data`), a tensor containing the number of start and end pad values for axis (`pads`), (optionally) a `mode`, and (optionally) `constant_value`, + a padded tensor (`output`) is generated. + + The three supported `modes` are (similar to corresponding modes supported by `numpy.pad`): + + 1) `constant`(default) - pads with a given constant value as specified by `constant_value` (which defaults to 0, empty string, or False) + + 2) `reflect` - pads with the reflection of the vector mirrored on the first and last values of the vector along each axis + + 3) `edge` - pads with the edge values of array + + + Example 1 (`constant` mode): + Insert 0 pads to the beginning of the second dimension. + + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'constant' + + constant_value = 0.0 + + output = + [ + [0.0, 0.0, 1.0, 1.2], + [0.0, 0.0, 2.3, 3.4], + [0.0, 0.0, 4.5, 5.7], + ] + + + Example 2 (`reflect` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'reflect' + + output = + [ + [1.0, 1.2, 1.0, 1.2], + [2.3, 3.4, 2.3, 3.4], + [4.5, 5.7, 4.5, 5.7], + ] + + + Example 3 (`edge` mode): + data = + [ + [1.0, 1.2], + [2.3, 3.4], + [4.5, 5.7], + ] + + pads = [0, 2, 0, 0] + + mode = 'edge' + + output = + [ + [1.0, 1.0, 1.0, 1.2], + [2.3, 2.3, 2.3, 3.4], + [4.5, 4.5, 4.5, 5.7], + ] + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 2, 11 + +#### Attributes + +
+
mode : string (default is constant)
+
Supported modes: `constant`(default), `reflect`, `edge`
+
+ +#### Inputs (2 - 3) + +
+
data (differentiable) : T
+
Input tensor.
+
pads (non-differentiable) : tensor(int64)
+
Tensor of integers indicating the number of padding elements to add or remove (if negative) at the beginning and end of each axis. For 2D input tensor, it is the number of pixels. `pads` should be a 1D tensor of shape [2 * input_rank]. `pads` format should be: [x1_begin, x2_begin,...,x1_end, x2_end,...], where xi_begin is the number of pad values added at the beginning of axis `i` and xi_end, the number of pad values added at the end of axis `i`.
+
constant_value (optional, non-differentiable) : T
+
(Optional) A scalar value to be used if the mode chosen is `constant` (by default it is 0, empty string or False).
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor after padding.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+constant_pad + +```python +node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads', 'value'], + outputs=['y'], + mode='constant' +) +x = np.random.randn(1, 3, 4, 5).astype(np.float32) +pads = np.array([0, 0, 1, 3, 0, 0, 2, 4]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] +value = np.float32(1.2) +y = pad_impl( + x, + pads, + 'constant', + 1.2 +) + +expect(node, inputs=[x, pads, value], outputs=[y], + name='test_constant_pad') +``` + +
+ + +
+reflection_and_edge_pad + +```python +for mode in ['edge', 'reflect']: + node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads'], + outputs=['y'], + mode=mode + ) + x = np.random.randn(1, 3, 4, 5).astype(np.int32) + pads = np.array([0, 0, 1, 1, 0, 0, 1, 1]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] + y = pad_impl( + x, + pads, + mode + ) + + expect(node, inputs=[x, pads], outputs=[y], + name='test_{}_pad'.format(mode)) +``` + +
+ + +### **Pow** + + Pow takes input data (Tensor) and exponent Tensor, and + produces one output data (Tensor) where the function `f(x) = x^exponent`, + is applied to the data tensor elementwise. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +Other versions of this operator: 1, 7, 12, 13 + +#### Inputs + +
+
X (differentiable) : T
+
First operand, base of the exponent.
+
Y (differentiable) : T1
+
Second operand, power of the exponent.
+
+ +#### Outputs + +
+
Z (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input X and output types to float/int tensors.
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input Y types to float/int tensors.
+
+ + +#### Examples + +
+pow + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_example') + +x = np.arange(60).reshape(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = pow(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_pow') +``` + +
+ + +
+pow_broadcast + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array(2).astype(np.float32) +z = pow(x, y) # expected output [1., 4., 9.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_scalar') + +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) +x = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32) +y = np.array([1, 2, 3]).astype(np.float32) +# expected output [[1, 4, 27], [4, 25, 216]] +z = pow(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_array') +``` + +
+ + +
+types + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.int64) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int64') + +x = np.array([1, 2, 3]).astype(np.int64) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_float32') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.int32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int32') + +x = np.array([1, 2, 3]).astype(np.int32) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_float32') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.uint64) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint64') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.uint32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint32') + +x = np.array([1, 2, 3]).astype(np.int64) +y = np.array([4, 5, 6]).astype(np.int64) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_int64') + +x = np.array([1, 2, 3]).astype(np.int32) +y = np.array([4, 5, 6]).astype(np.int32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_int32') +``` + +
+ + +### **QLinearConv** + + The convolution operator consumes a quantized input tensor, its scale and zero point, + a quantized filter, its scale and zero point, and output's scale and zero point, + and computes the quantized output. Each scale and zero-point pair must have same shape. + It means they must be either scalars (per tensor) or 1-D tensors (per output channel). + Each input or output and its related zero point must have same type. + When bias is present it must be quantized using scale = input scale * weight scale and + zero point as 0. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
auto_pad : string (default is NOTSET)
+
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID. Where default value is NOTSET, which means explicit padding is used. SAME_UPPER or SAME_LOWER mean pad the input so that `output_shape[i] = ceil(input_shape[i] / strides[i])` for each axis `i`. The padding is split between the two sides equally or almost equally (depending on whether it is even or odd). In case the padding is an odd number, the extra padding is added at the end for SAME_UPPER and at the beginning for SAME_LOWER.
+
dilations : list of ints
+
dilation value along each spatial axis of the filter. If not present, the dilation defaults to 1 along each spatial axis.
+
group : int (default is 1)
+
number of groups input channels and output channels are divided into. default is 1.
+
kernel_shape : list of ints
+
The shape of the convolution kernel. If not present, should be inferred from input 'w'.
+
pads : list of ints
+
Padding for the beginning and ending along each spatial axis, it can take any value greater than or equal to 0.The value represent the number of pixels added to the beginning and end part of the corresponding axis.`pads` format should be as follow [x1_begin, x2_begin...x1_end, x2_end,...], where xi_begin the number ofpixels added at the beginning of axis `i` and xi_end, the number of pixels added at the end of axis `i`.This attribute cannot be used simultaneously with auto_pad attribute. If not present, the padding defaultsto 0 along start and end of each spatial axis.
+
strides : list of ints
+
Stride along each spatial axis. If not present, the stride defaults to 1 along each spatial axis.
+
+ +#### Inputs (8 - 9) + +
+
x : T1
+
Input data tensor from previous layer; has size (N x C x H x W), where N is the batch size, C is the number of channels, and H and W are the height and width. Note that this is for the 2D image. Otherwise the size is (N x C x D1 x D2 ... x Dn). Optionally, if dimension denotation is in effect, the operation expects input data tensor to arrive with the dimension denotation of [DATA_BATCH, DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
+
x_scale : tensor(float)
+
Scale tensor for input 'x'. It's a scalar, which means a per-tensor/layer quantization.
+
x_zero_point : T1
+
Zero point tensor for input 'x'. It's a scalar, which means a per-tensor/layer quantization.
+
w : T2
+
The weight tensor that will be used in the convolutions; has size (M x C/group x kH x kW), where C is the number of channels, and kH and kW are the height and width of the kernel, and M is the number of feature maps. For more than 2 dimensions, the kernel shape will be (M x C/group x k1 x k2 x ... x kn), where (k1 x k2 x ... kn) is the dimension of the kernel. Optionally, if dimension denotation is in effect, the operation expects the weight tensor to arrive with the dimension denotation of [FILTER_OUT_CHANNEL, FILTER_IN_CHANNEL, FILTER_SPATIAL, FILTER_SPATIAL ...]. X.shape[1] == (W.shape[1] * group) == C (assuming zero based indices for the shape array). Or in other words FILTER_IN_CHANNEL should be equal to DATA_CHANNEL.
+
w_scale : tensor(float)
+
Scale tensor for input 'w'. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M).
+
w_zero_point : T2
+
Zero point tensor for input 'w'. It could be a scalar or a 1-D tensor, which means a per-tensor/layer or per output channel quantization. If it's a 1-D tensor, its number of elements should be equal to the number of output channels (M).
+
y_scale : tensor(float)
+
Scale tensor for output 'y'. It's a scalar, which means a per-tensor/layer quantization.
+
y_zero_point : T3
+
Zero point tensor for output 'y'. It's a scalar, which means a per-tensor/layer quantization.
+
B (optional) : T4
+
Optional 1D bias to be added to the convolution, has size of M. Bias must be quantized using scale = x_scale * w_scale and zero_point = 0
+
+ +#### Outputs + +
+
y : T3
+
Output data tensor that contains the result of the convolution. The output dimensions are functions of the kernel size, stride size, and pad lengths.
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain filter type to 8-bit integer tensor.
+
T3 : tensor(int8), tensor(uint8)
+
Constrain output type to 8-bit integer tensor.
+
T4 : tensor(int32)
+
Constrain bias type to 32-bit integer tensor.
+
+ + +#### Examples + +
+qlinearconv + +```python +node = onnx.helper.make_node('QLinearConv', + inputs=['x', 'x_scale', 'x_zero_point', 'w', 'w_scale', 'w_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([[255, 174, 162, 25, 203, 168, 58], + [15, 59, 237, 95, 129, 0, 64], + [56, 242, 153, 221, 168, 12, 166], + [232, 178, 186, 195, 237, 162, 237], + [188, 39, 124, 77, 80, 102, 43], + [127, 230, 21, 83, 41, 40, 134], + [255, 154, 92, 141, 42, 148, 247], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + +x_scale = np.float32(0.00369204697) +x_zero_point = np.uint8(132) + +w = np.array([0], dtype=np.uint8).reshape((1, 1, 1, 1)) + +w_scale = np.array([0.00172794575], dtype=np.float32) +w_zero_point = np.array([255], dtype=np.uint8) + +y_scale = np.float32(0.00162681262) +y_zero_point = np.uint8(123) + +output = np.array([[0, 81, 93, 230, 52, 87, 197], + [240, 196, 18, 160, 126, 255, 191], + [199, 13, 102, 34, 87, 243, 89], + [23, 77, 69, 60, 18, 93, 18], + [67, 216, 131, 178, 175, 153, 212], + [128, 25, 234, 172, 214, 215, 121], + [0, 101, 163, 114, 213, 107, 8], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + +expect(node, inputs=[x, x_scale, x_zero_point, w, w_scale, w_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearconv') +``` + +
+ + +### **QLinearMatMul** + + Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html. + It consumes two quantized input tensors, their scales and zero points, scale and zero point of output, + and computes the quantized output. The quantization formula is y = saturate((x / y_scale) + y_zero_point). + For (x / y_scale), it is rounding to nearest ties to even. Refer to https://en.wikipedia.org/wiki/Rounding for details. + Scale and zero point must have same shape. They must be either scalar (per tensor) or N-D tensor + (per row for 'a' and per column for 'b'). Scalar refers to per tensor quantization whereas N-D refers to per row + or per column quantization. If the input is 2D of shape [M, K] then zero point and scale tensor may be + an M element vector [v_1, v_2, ..., v_M] for per row quantization and K element vector of shape [v_1, v_2, ..., v_K] + for per column quantization. If the input is N-D tensor with shape [D1, D2, M, K] then zero point and scale tensor may + have shape [D1, D2, M, 1] for per row quantization and shape [D1, D2, 1, K] for per column quantization. + Production must never overflow, and accumulation may overflow if and only if in 32 bits. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Inputs + +
+
a (non-differentiable) : T1
+
N-dimensional quantized matrix a
+
a_scale (non-differentiable) : tensor(float)
+
scale of quantized input a
+
a_zero_point (non-differentiable) : T1
+
zero point of quantized input a
+
b (non-differentiable) : T2
+
N-dimensional quantized matrix b
+
b_scale (non-differentiable) : tensor(float)
+
scale of quantized input b
+
b_zero_point (non-differentiable) : T2
+
zero point of quantized input b
+
y_scale (non-differentiable) : tensor(float)
+
scale of quantized output y
+
y_zero_point (non-differentiable) : T3
+
zero point of quantized output y
+
+ +#### Outputs + +
+
y (non-differentiable) : T3
+
Quantized matrix multiply results from a * b
+
+ +#### Type Constraints + +
+
T1 : tensor(int8), tensor(uint8)
+
Constrain input a and its zero point data type to 8-bit integer tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain input b and its zero point data type to 8-bit integer tensor.
+
T3 : tensor(int8), tensor(uint8)
+
Constrain output y and its zero point data type to 8-bit integer tensor.
+
+ + +#### Examples + +
+qlinearmatmul + +```python +node = onnx.helper.make_node('QLinearMatMul', + inputs=['a', 'a_scale', 'a_zero_point', 'b', 'b_scale', 'b_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +#2D +a = np.array([[208, 236, 0, 238], + [3, 214, 255, 29], ], dtype=np.uint8) + +a_scale = np.array([0.0066], dtype=np.float32) +a_zero_point = np.array([113], dtype=np.uint8) + +b = np.array([[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], dtype=np.uint8) + +b_scale = np.array([0.00705], dtype=np.float32) +b_zero_point = np.array([114], dtype=np.uint8) + +y_scale = np.array([0.0107], dtype=np.float32) +y_zero_point = np.array([118], dtype=np.uint8) + +output = np.array([[168, 115, 255], + [1, 66, 151], ], dtype=np.uint8) + +expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_2D') + +#3D +a = np.array([[[208, 236, 0, 238], + [3, 214, 255, 29]], + [[208, 236, 0, 238], + [3, 214, 255, 29]]], dtype=np.uint8) + +a_scale = np.array([0.0066], dtype=np.float32) +a_zero_point = np.array([113], dtype=np.uint8) + +b = np.array([[[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], + [[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]]], dtype=np.uint8) + +b_scale = np.array([0.00705], dtype=np.float32) +b_zero_point = np.array([114], dtype=np.uint8) + +y_scale = np.array([0.0107], dtype=np.float32) +y_zero_point = np.array([118], dtype=np.uint8) + +output = np.array([[[168, 115, 255], + [1, 66, 151]], + [[168, 115, 255], + [1, 66, 151]]], dtype=np.uint8) + +expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_3D') +``` + +
+ + +### **QuantizeLinear** + + The linear quantization operator. It consumes a high precision tensor, a scale, and a zero point to compute the low precision / quantized tensor. + The scale factor and zero point must have same shape, and can be either a scalar for per-tensor / per layer quantization, or a 1-D tensor for per-axis quantization. + The quantization formula is y = saturate ((x / y_scale) + y_zero_point). + For saturation, it saturates to [0, 255] if it's uint8, or [-128, 127] if it's int8. + For (x / y_scale), it's rounding to nearest ties to even. Refer to https://en.wikipedia.org/wiki/Rounding for details. 'y_zero_point' and 'y' must have same type. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 10 + +#### Attributes + +
+
axis : int (default is 1)
+
(Optional) The axis of the quantization dimension of the input tensor. Ignored for per-tensor quantization. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
+ +#### Inputs (2 - 3) + +
+
x : T1
+
N-D full precision Input tensor to be quantized.
+
y_scale : tensor(float)
+
Scale for doing quantization to get 'y'. It can be a scalar, which means per-tensor/layer quantization, or a 1-D Tensor for per-axis quantization.
+
y_zero_point (optional) : T2
+
Zero point for doing quantization to get 'y'. Shape must match y_scale. Default is uint8 with zero point of 0 if it's not specified.
+
+ +#### Outputs + +
+
y : T2
+
N-D quantized output tensor. It has same shape as input 'x'.
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(int32)
+
Constrain 'x' to float or int32 tensor.
+
T2 : tensor(int8), tensor(uint8)
+
Constrain 'y_zero_point' and 'y' to 8-bit integer tensor.
+
+ + +#### Examples + +
+axis + +```python +node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([[[[-162, 10], + [-100, 232], + [-20, -50]], + + [[-76, 0], + [0, 252], + [32, -44]], + + [[245, -485], + [-960, -270], + [-375, -470]], ], ], dtype=np.float32) +y_scale = np.array([2, 4, 5], dtype=np.float32) +y_zero_point = np.array([84, 24, 196], dtype=np.uint8) +y = (x / y_scale.reshape(1, 3, 1, 1) + y_zero_point.reshape(1, 3, 1, 1)).astype(np.uint8) + +expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear_axis') +``` + +
+ + +
+quantizelinear + +```python +node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([0, 2, 3, 1000, -254, -1000]).astype(np.float32) +y_scale = np.float32(2) +y_zero_point = np.uint8(128) +y = np.array([128, 129, 130, 255, 1, 0]).astype(np.uint8) + +expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear') +``` + +
+ + +### **RNN** + + Computes an one-layer simple RNN. This operator is usually supported + via some custom implementation such as CuDNN. + + Notations: + + `X` - input tensor + + `i` - input gate + + `t` - time step (t-1 means previous time step) + + `Wi` - W parameter weight matrix for input gate + + `Ri` - R recurrence weight matrix for input gate + + `Wbi` - W parameter bias vector for input gate + + `Rbi` - R parameter bias vector for input gate + + `WBi` - W parameter weight matrix for backward input gate + + `RBi` - R recurrence weight matrix for backward input gate + + `WBbi` - WR bias vectors for backward input gate + + `RBbi` - RR bias vectors for backward input gate + + `H` - Hidden state + + `num_directions` - 2 if direction == bidirectional else 1 + + Activation functions: + + Relu(x) - max(0, x) + + Tanh(x) - (1 - e^{-2x})/(1 + e^{-2x}) + + Sigmoid(x) - 1/(1 + e^{-x}) + + (NOTE: Below are optional) + + Affine(x) - alpha*x + beta + + LeakyRelu(x) - x if x >= 0 else alpha * x + + ThresholdedRelu(x) - x if x >= alpha else 0 + + ScaledTanh(x) - alpha*Tanh(beta*x) + + HardSigmoid(x) - min(max(alpha*x + beta, 0), 1) + + Elu(x) - x if x >= 0 else alpha*(e^x - 1) + + Softsign(x) - x/(1 + |x|) + + Softplus(x) - log(1 + e^x) + + Equations (Default: f=Tanh): + + - Ht = f(Xt*(Wi^T) + Ht-1*(Ri^T) + Wbi + Rbi) + This operator has **optional** inputs/outputs. See [the doc](IR.md) for more details about the representation of optional arguments. An empty string may be used in the place of an actual argument's name to indicate a missing argument. Trailing optional arguments (those not followed by an argument that is present) may also be simply omitted. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 7 + +#### Attributes + +
+
activation_alpha : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.For example with LeakyRelu, the default alpha is 0.01.
+
activation_beta : list of floats
+
Optional scaling values used by some activation functions. The values are consumed in the order of activation functions, for example (f, g, h) in LSTM. Default values are the same as of corresponding ONNX operators.
+
activations : list of strings (default is ['Tanh', 'Tanh'])
+
One (or two if bidirectional) activation function for input gate. The activation function must be one of the activation functions specified above. Optional: Default `Tanh` if not specified.
+
clip : float
+
Cell clip threshold. Clipping bounds the elements of a tensor in the range of [-threshold, +threshold] and is applied to the input of activations. No clip if not specified.
+
direction : string (default is forward)
+
Specify if the RNN is forward, reverse, or bidirectional. Must be one of forward (default), reverse, or bidirectional.
+
hidden_size : int
+
Number of neurons in the hidden layer
+
layout : int (default is 0)
+
The shape format of inputs X, initial_h and outputs Y, Y_h. If 0, the following shapes are expected: X.shape = [seq_length, batch_size, input_size], Y.shape = [seq_length, num_directions, batch_size, hidden_size], initial_h.shape = Y_h.shape = [num_directions, batch_size, hidden_size]. If 1, the following shapes are expected: X.shape = [batch_size, seq_length, input_size], Y.shape = [batch_size, seq_length, num_directions, hidden_size], initial_h.shape = Y_h.shape = [batch_size, num_directions, hidden_size].
+
+ +#### Inputs (3 - 6) + +
+
X (differentiable) : T
+
The input sequences packed (and potentially padded) into one 3-D tensor with the shape of `[seq_length, batch_size, input_size]`.
+
W (differentiable) : T
+
The weight tensor for input gate. Concatenation of `Wi` and `WBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, input_size]`.
+
R (differentiable) : T
+
The recurrence weight tensor. Concatenation of `Ri` and `RBi` (if bidirectional). The tensor has shape `[num_directions, hidden_size, hidden_size]`.
+
B (optional, differentiable) : T
+
The bias tensor for input gate. Concatenation of `[Wbi, Rbi]` and `[WBbi, RBbi]` (if bidirectional). The tensor has shape `[num_directions, 2*hidden_size]`. Optional: If not specified - assumed to be 0.
+
sequence_lens (optional, non-differentiable) : T1
+
Optional tensor specifying lengths of the sequences in a batch. If not specified - assumed all sequences in the batch to have length `seq_length`. It has shape `[batch_size]`.
+
initial_h (optional, non-differentiable) : T
+
Optional initial value of the hidden. If not specified - assumed to be 0. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Outputs (0 - 2) + +
+
Y (optional, differentiable) : T
+
A tensor that concats all the intermediate output values of the hidden. It has shape `[seq_length, num_directions, batch_size, hidden_size]`.
+
Y_h (optional, differentiable) : T
+
The last output value of the hidden. It has shape `[num_directions, batch_size, hidden_size]`.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
T1 : tensor(int32)
+
Constrain seq_lens to integer tensor.
+
+ + +#### Examples + +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 4 +weight_scale = 0.5 +layout = 1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +rnn = RNN_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = rnn.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_simple_rnn_batchwise') +``` + +
+ + +
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 4 +weight_scale = 0.1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +rnn = RNN_Helper(X=input, W=W, R=R) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_simple_rnn_defaults') +``` + +
+ + +
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 +custom_bias = 0.1 +weight_scale = 0.1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, hidden_size)).astype(np.float32) +R_B = np.zeros((1, hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +rnn = RNN_Helper(X=input, W=W, R=R, B=B) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], + name='test_simple_rnn_with_initial_bias') +``` + +
+ + +
+seq_length + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = np.random.randn(1, hidden_size, input_size).astype(np.float32) +R = np.random.randn(1, hidden_size, hidden_size).astype(np.float32) + +# Adding custom bias +W_B = np.random.randn(1, hidden_size).astype(np.float32) +R_B = np.random.randn(1, hidden_size).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +rnn = RNN_Helper(X=input, W=W, R=R, B=B) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_rnn_seq_length') +``` + +
+ + +### **RandomNormal** + + Generate a tensor with random values drawn from a normal distribution. The shape + of the tensor is specified by the `shape` argument and the parameter of the normal distribution + specified by `mean` and `scale`. + + The data type is specified by the 'dtype' argument. The 'dtype' argument must + be one of the data types specified in the 'DataType' enum field in the + TensorProto message. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 1)
+
The data type for the elements of the output tensor. Default is TensorProto::FLOAT.
+
mean : float (default is 0.0)
+
The mean of the normal distribution.
+
scale : float (default is 1.0)
+
The standard deviation of the normal distribution.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
shape : list of ints (required)
+
The shape of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor of random values drawn from normal distribution
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ + +### **RandomNormalLike** + + Generate a tensor with random values drawn from a normal distribution. + The shape of the output tensor is copied from the shape of the input tensor, + and the parameters of the normal distribution are specified by `mean` and `scale`. + + The data type is specified by the 'dtype' argument, or copied from the input tensor if not provided. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message, and be valid as an output type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use the data type of the input tensor.
+
mean : float (default is 0.0)
+
The mean of the normal distribution.
+
scale : float (default is 1.0)
+
The standard deviation of the normal distribution.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to copy shape and optionally type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of random values drawn from normal distribution
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type. If the dtype attribute is not provided this must be a valid output type.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ + +### **RandomUniform** + + Generate a tensor with random values drawn from a uniform distribution. The shape + of the tensor is specified by the `shape` argument and the range by `low` and `high`. + + The data type is specified by the 'dtype' argument. The 'dtype' argument must + be one of the data types specified in the 'DataType' enum field in the + TensorProto message. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int (default is 1)
+
The data type for the elements of the output tensor. If not specified, default is TensorProto::FLOAT.
+
high : float (default is 1.0)
+
Upper boundary of the output values.
+
low : float (default is 0.0)
+
Lower boundary of the output values.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
shape : list of ints (required)
+
The shape of the output tensor.
+
+ +#### Inputs + + +#### Outputs + +
+
output : T
+
Output tensor of random values drawn from uniform distribution
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ + +### **RandomUniformLike** + + Generate a tensor with random values drawn from a uniform distribution. + The shape of the output tensor is copied from the shape of the input tensor, + and the parameters of the uniform distribution are specified by `low` and `high`. + + The data type is specified by the 'dtype' argument, or copied from the input tensor if not provided. + The 'dtype' argument must be one of the data types specified in the 'DataType' enum field in the + TensorProto message and be valid as an output type. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type for the elements of the output tensor, if not specified, we will use the data type of the input tensor.
+
high : float (default is 1.0)
+
Upper boundary of the output values.
+
low : float (default is 0.0)
+
Lower boundary of the output values.
+
seed : float
+
(Optional) Seed to the random generator, if not specified we will auto generate one.
+
+ +#### Inputs + +
+
input : T1
+
Input tensor to copy shape and optionally type information from.
+
+ +#### Outputs + +
+
output : T2
+
Output tensor of random values drawn from uniform distribution
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type. If the dtype attribute is not provided this must be a valid output type.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain output types to float tensors.
+
+ + +### **Range** + + Generate a tensor containing a sequence of numbers that begin at `start` and extends by increments of `delta` + up to `limit` (exclusive). + + The number of elements in the output of range is computed as below- + + `number_of_elements = max( ceil( (limit - start) / delta ) , 0 )` + + The pseudocode determining the contents of the output is shown below- + + `for(int i=0; i +
start : T
+
Scalar. First entry for the range of output values.
+
limit : T
+
Scalar. Exclusive upper limit for the range of output values.
+
delta : T
+
Scalar. Value to step by.
+ + +#### Outputs + +
+
output : T
+
A 1-D tensor with same type as the inputs containing generated range of values.
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(double), tensor(int16), tensor(int32), tensor(int64)
+
Constrain input types to common numeric type tensors.
+
+ + +#### Examples + +
+range_float_type_positive_delta + +```python +node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], +) + +start = np.float32(1) +limit = np.float32(5) +delta = np.float32(2) + +output = np.arange(start, limit, delta, dtype=np.float32) # expected output [1.0, 3.0] +expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_float_type_positive_delta') +``` + +
+ + +
+range_int32_type_negative_delta + +```python +node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], +) + +start = np.int32(10) +limit = np.int32(6) +delta = np.int32(-3) + +output = np.arange(start, limit, delta, dtype=np.int32) # expected output [10, 7] +expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_int32_type_negative_delta') +``` + +
+ + +### **Reciprocal** + + Reciprocal takes one input data (Tensor) and produces one output data + (Tensor) where the reciprocal is, y = 1/x, is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+reciprocal + +```python +node = onnx.helper.make_node( + 'Reciprocal', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-4, 2]).astype(np.float32) +y = np.reciprocal(x) # expected output [-0.25, 0.5], +expect(node, inputs=[x], outputs=[y], + name='test_reciprocal_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) + 0.5 +y = np.reciprocal(x) +expect(node, inputs=[x], outputs=[y], + name='test_reciprocal') +``` + +
+ + +### **ReduceL1** + + Computes the L1 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[78.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[3., 7.], [11., 15.], [19., 23.]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +# print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_random') +``` + +
+ + +### **ReduceL2** + + Computes the L2 norm of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) +#print(reduced) +#[[[25.49509757]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +#print(reduced) +#[[2.23606798, 5.], +# [7.81024968, 10.63014581], +# [13.45362405, 16.2788206]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +#print(reduced) +#[[[2.23606798], [5.]] +# [[7.81024968], [10.63014581]] +# [[13.45362405], [16.2788206 ]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_l2_keep_dims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +# print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +# print(reduced) +#[[[2.23606798], [5.]] +# [[7.81024968], [10.63014581]] +# [[13.45362405], [16.2788206 ]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_random') +``` + +
+ + +### **ReduceLogSum** + + Computes the log sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+keepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"] +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, keepdims=True)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_default') +``` + +
+ + +
+negative_axes_keepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[-2] +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(-2), keepdims=True)) +# print(reduced) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_negative_axes') +``` + +
+ + +
+nokeepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[2, 1], + keepdims=0 +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(2, 1), keepdims=False)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_desc_axes') + +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[0, 1], + keepdims=0 +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(0, 1), keepdims=False)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_asc_axes') +``` + +
+ + +### **ReduceLogSumExp** + + Computes the log sum exponent of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) +# print(reduced) +# [[[60.00671387]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) +# print(reduced) +#[[20., 2.31326175] +# [40.00004578, 2.31326175] +# [60.00671387, 2.31326175]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) +# print(reduced) +# [[[20., 2.31326175]] +# [[40.00004578, 2.31326175]] +# [[60.00671387, 2.31326175]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) +# print(reduced) +# [[[20., 2.31326175]] +# [[40.00004578, 2.31326175]] +# [[60.00671387, 2.31326175]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceMax** + + Computes the max of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 12 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +[[[60.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdim_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[20., 2.] +# [40., 2.] +# [60., 2.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[20., 2.]] +# [[40., 2.]] +# [[60., 2.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[20., 2.]] +# [[40., 2.]] +# [[60., 2.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceMean** + + Computes the mean of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[18.25]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[12.5, 1.5] +# [35., 1.5] +# [57.5, 1.5]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[12.5, 1.5]] +# [[35., 1.5]] +# [[57.5, 1.5]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +# [[[12.5, 1.5]] +# [[35., 1.5]] +# [[57.5, 1.5]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceMin** + + Computes the min of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11, 12 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16), tensor(uint8), tensor(int8)
+
Constrain input and output types to high-precision and 8 bit numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[5., 1.] +# [30., 1.] +# [55., 1.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[5., 1.]] +# [[30., 1.]] +# [[55., 1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[5., 1.]] +# [[30., 1.]] +# [[55., 1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceProd** + + Computes the product of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[4.790016e+08]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[3., 8.] +# [35., 48.] +# [99., 120.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[3., 8.]] +# [[35., 48.]] +# [[99., 120.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[3., 8.]] +# [[35., 48.]] +# [[99., 120.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceSum** + + Computes the sum of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
noop_with_empty_axes : int (default is 0)
+
Defines behaviour if 'axes' is empty. Default behaviour with 'false' is to reduce all axes. When axes is empty and this attribute is set to true, input tensor will not be reduced,and the output tensor would be equivalent to input tensor.
+
+ +#### Inputs (1 - 2) + +
+
data (differentiable) : T
+
An input tensor.
+
axes (optional, non-differentiable) : tensor(int64)
+
Optional input list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor if 'noop_with_empty_axes' is false, else act as an Identity op when 'noop_with_empty_axes' is true. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=None, keepdims=keepdims == 1) +#print(reduced) +#[[[78.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=None, keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([1], dtype=np.int64) +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +#print(reduced) +#[[4., 6.] +# [12., 14.] +# [20., 22.]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_random') +``` + +
+ + +
+empty_axes_input_noop + +```python +shape = [3, 2, 2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims, + noop_with_empty_axes=True) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +axes = np.array([], dtype=np.int64) +reduced = np.array(data) +#print(reduced) +#[[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]] + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_empty_axes_input_noop_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.array(data) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_negative_axes_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = np.array([1], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +#print(reduced) +#[[[4., 6.]] +# [[12., 14.]] +# [[20., 22.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([-2], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +# print(reduced) +#[[[4., 6.]] +# [[12., 14.]] +# [[20., 22.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple( + axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_random') +``` + +
+ + +### **ReduceSumSquare** + + Computes the sum square of the input tensor's element along the provided axes. The resulting + tensor has the same rank as the input if keepdims equals 1. If keepdims equals 0, then + the resulting tensor has the reduced dimension pruned. + + The above behavior is similar to numpy, with the exception that numpy defaults keepdims to + False instead of True. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axes : list of ints
+
A list of integers, along which to reduce. The default is to reduce over all the dimensions of the input tensor. Accepted range is [-r, r-1] where r = rank(data).
+
keepdims : int (default is 1)
+
Keep the reduced dimension or not, default 1 means keep reduced dimension.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
reduced (differentiable) : T
+
Reduced output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint32), tensor(uint64), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to high-precision numeric tensors.
+
+ + +#### Examples + +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[650.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_random') +``` + +
+ + +
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[10., 20.] +# [74., 100.] +# [202., 244.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_random') +``` + +
+ + +
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[10., 20.]] +# [[74., 100.]] +# [[202., 244.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_random') +``` + +
+ + +
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[10., 20.s]] +# [[74., 100.]] +# [[202., 244.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_random') +``` + +
+ + +### **Relu** + + Relu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = max(0, x), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 13 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float), tensor(int32), tensor(int8), tensor(int16), tensor(int64), tensor(float16), tensor(double), tensor(bfloat16)
+
Constrain input and output types to signed numeric tensors.
+
+ + +#### Examples + +
+relu + +```python +node = onnx.helper.make_node( + 'Relu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + +expect(node, inputs=[x], outputs=[y], + name='test_relu') +``` + +
+ + +### **Reshape** + + Reshape the input tensor similar to numpy.reshape. + First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor. + At most one dimension of the new shape can be -1. In this case, the value is + inferred from the size of the tensor and the remaining dimensions. A dimension + could also be 0, in which case the actual dimension value is unchanged (i.e. taken + from the input tensor). If 'allowzero' is set, and the new shape includes 0, the + dimension will be set explicitly to zero (i.e. not taken from input tensor). + Shape (second input) could be an empty shape, which means converting to a scalar. + The input tensor's shape and the output tensor's shape are required to have the same number of elements. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 5, 13 + +#### Attributes + +
+
allowzero : int (default is 0)
+
(Optional) By default, when any value in the 'shape' input is equal to zero the corresponding dimension value is copied from the input tensor dynamically. allowzero=1 indicates that if any value in the 'shape' input is set to zero, the zero value is honored, similar to NumPy.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
shape (non-differentiable) : tensor(int64)
+
Specified shape for output.
+
+ +#### Outputs + +
+
reshaped (differentiable) : T
+
Reshaped data.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+allowzero + +```python +original_shape = [0, 3, 4] +test_cases = { + 'allowzero_reordered': np.array([3, 4, 0], dtype=np.int64), +} +data = np.random.random_sample(original_shape).astype(np.float32) + +for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + allowzero=1, # if allowzero=1, final shape = (3, 4, 0) + # if allowzero=0, final shape = (3, 4, 4) + ) + + reshaped = reshape_reference_implementation(data, shape, allowzero=1) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) +``` + +
+ + +
+reshape + +```python +original_shape = [2, 3, 4] +test_cases = { + 'reordered_all_dims': np.array([4, 2, 3], dtype=np.int64), + 'reordered_last_dims': np.array([2, 4, 3], dtype=np.int64), + 'reduced_dims': np.array([2, 12], dtype=np.int64), + 'extended_dims': np.array([2, 3, 2, 2], dtype=np.int64), + 'one_dim': np.array([24], dtype=np.int64), + 'negative_dim': np.array([2, -1, 2], dtype=np.int64), + 'negative_extended_dims': np.array([-1, 2, 3, 4], dtype=np.int64), + 'zero_dim': np.array([2, 0, 4, 1], dtype=np.int64), + 'zero_and_negative_dim': np.array([2, 0, 1, -1], dtype=np.int64), +} +data = np.random.random_sample(original_shape).astype(np.float32) + +for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + ) + + reshaped = reshape_reference_implementation(data, shape) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) +``` + +
+ + +### **Resize** + + Resize the input tensor. In general, it calculates every value in the output tensor as a weighted average of neighborhood (a.k.a. sampling locations) in the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * (roi_end - roi_start) * scale) if input \"sizes\" is not specified. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 10, 11 + +#### Attributes + +
+
coordinate_transformation_mode : string (default is half_pixel)
+
+This attribute describes how to transform the coordinate in the resized tensor to the coordinate in the original tensor.
+ +The coordinate of each dimension is transformed individually. Let's describe a case using axis x as an example. +Denote x_resized as the coordinate of axis x in the resized tensor, x_original as the coordinate of axis x in the original tensor, length_original as the length of the original tensor in axis x, length_resized as the length of the resized tensor in axis x, roi_x = (start_x, end_x) of the axis x in input "roi", scale = length_resized / length_original,
+ +if coordinate_transformation_mode is "half_pixel",
+x_original = (x_resized + 0.5) / scale - 0.5,
+ +if coordinate_transformation_mode is "pytorch_half_pixel",
+x_original = length_resized > 1 ? (x_resized + 0.5) / scale - 0.5 : 0,
+ +if coordinate_transformation_mode is "align_corners",
+x_original = x_resized * (length_original - 1) / (length_resized - 1),
+ +if coordinate_transformation_mode is "asymmetric",
+x_original = x_resized / scale,
+ +if coordinate_transformation_mode is "tf_crop_and_resize",
+x_original = length_resized > 1 ? start_x * (length_original - 1) + x_resized * (end_x - start_x) * (length_original - 1) / (length_resized - 1) : 0.5 * (start_x + end_x) * (length_original - 1).
+
cubic_coeff_a : float (default is -0.75)
+
The coefficient 'a' used in cubic interpolation. Two common choice are -0.5 (in some cases of TensorFlow) and -0.75 (in PyTorch). Check out Equation (4) in https://ieeexplore.ieee.org/document/1163711 for the details. This attribute is valid only if "mode" is "cubic".
+
exclude_outside : int (default is 0)
+
If set to 1, the weight of sampling locations outside the tensor will be set to 0 and the weight will be renormalized so that their sum is 1.0. The default value is 0.
+
extrapolation_value : float (default is 0.0)
+
When coordinate_transformation_mode is "tf_crop_and_resize" and x_original is outside the range [0, length_original - 1], this value is used as the corresponding output value. Default is 0.0f.
+
mode : string (default is nearest)
+
Three interpolation modes: nearest (default), linear and cubic. The "linear" mode includes linear interpolation for 1D tensor and N-linear interpolation for N-D tensor (for example, bilinear interpolation for 2D tensor). The "cubic" mode includes cubic interpolation for 1D tensor and N-cubic interpolation for N-D tensor (for example, bicubic interpolation for 2D tensor).
+
nearest_mode : string (default is round_prefer_floor)
+
Four modes: round_prefer_floor (default, as known as round half down), round_prefer_ceil (as known as round half up), floor, ceil. Only used by nearest interpolation. It indicates how to get "nearest" pixel in input tensor from x_original, so this attribute is valid only if "mode" is "nearest".
+
+ +#### Inputs (1 - 4) + +
+
X (differentiable) : T1
+
N-D tensor
+
roi (optional, non-differentiable) : T2
+
1-D tensor given as [start1, ..., startN, end1, ..., endN], where N is the rank of X. The RoIs' coordinates are normalized in the coordinate system of the input image. It only takes effect when coordinate_transformation_mode is "tf_crop_and_resize"
+
scales (optional, non-differentiable) : tensor(float)
+
The scale array along each dimension. It takes value greater than 0. If it's less than 1, it's sampling down, otherwise, it's upsampling. The number of elements of 'scales' should be the same as the rank of input 'X'. One of 'scales' and 'sizes' MUST be specified and it is an error if both are specified. If 'sizes' is needed, the user can use an empty string as the name of 'scales' in this operator's input list.
+
sizes (optional, non-differentiable) : tensor(int64)
+
The size of the output tensor. The number of elements of 'sizes' should be the same as the rank of input 'X'. Only one of 'scales' and 'sizes' can be specified.
+
+ +#### Outputs + +
+
Y (differentiable) : T1
+
N-D tensor after resizing
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input 'X' and output 'Y' to all tensor types.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Constrain roi type to float or double.
+
+ + +#### Examples + +
+resize_downsample_scales_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1.47119141 2.78125 4.08251953] +# [ 6.71142578 8.02148438 9.32275391] +# [11.91650391 13.2265625 14.52783203]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic') +``` + +
+ + +
+resize_downsample_scales_cubic_A_n0p5_exclude_outside + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1.36812675 2.6695014 4.0133367 ] +# [ 6.57362535 7.875 9.2188353 ] +# [11.94896657 13.25034122 14.59417652]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_A_n0p5_exclude_outside') +``` + +
+ + +
+resize_downsample_scales_cubic_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1. 2.39519159 3.79038317] +# [ 6.58076634 7.97595793 9.37114951] +# [12.16153268 13.55672427 14.95191585]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_align_corners') +``` + +
+ + +
+resize_downsample_scales_linear + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[2.6666665 4.3333331]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear') +``` + +
+ + +
+resize_downsample_scales_linear_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[1. 3.142857]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear_align_corners') +``` + +
+ + +
+resize_downsample_scales_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[1. 3.]]]] +output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_nearest') +``` + +
+ + +
+resize_downsample_sizes_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 1.63078704 3.00462963 4.37847222] +# [ 7.12615741 8.5 9.87384259] +# [12.62152778 13.99537037 15.36921296]]]] +output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_cubic') +``` + +
+ + +
+resize_downsample_sizes_linear_pytorch_half_pixel + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='pytorch_half_pixel' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 3, 1], dtype=np.int64) + +# [[[[ 1.6666666] +# [ 7. ] +# [12.333333 ]]]] +output = interpolate_nd( + data, linear_coeffs, output_size=sizes, coordinate_transformation_mode='pytorch_half_pixel').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_linear_pytorch_half_pixel') +``` + +
+ + +
+resize_downsample_sizes_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 1, 3], dtype=np.int64) + +# [[[[1. 3.]]]] +output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_nearest') +``` + +
+ + +
+resize_tf_crop_and_resize + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +# Note: for some rois, the result may be different with that of TF for inaccurate floating point +roi = np.array([0, 0, 0.4, 0.6, 1, 1, 0.6, 0.8], dtype=np.float32) +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 7.6000004 7.9 8.2 ] +# [ 8.8 9.1 9.400001 ] +# [10. 10.3 10.6 ]]]] +output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize').astype(np.float32) + +expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') +``` + +
+ + +
+resize_tf_crop_and_resize_extrapolation_value + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize', + extrapolation_value=10.0 +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +# Note: for some rois, the result may be different with that of TF for inaccurate floating point +roi = np.array([0, 0, 0.4, 0.6, 1, 1, 1.2, 1.7], dtype=np.float32) +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 7.6000004 10. 10. ] +# [12.400001 10. 10. ] +# [10. 10. 10. ]]]] +output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize', extrapolation_value=10.0).astype(np.float32) + +expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') +``` + +
+ + +
+resize_upsample_scales_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 0.47265625 0.76953125 1.24609375 1.875 2.28125 +# 2.91015625 3.38671875 3.68359375] +# [ 1.66015625 1.95703125 2.43359375 3.0625 3.46875 +# 4.09765625 4.57421875 4.87109375] +# [ 3.56640625 3.86328125 4.33984375 4.96875 5.375 +# 6.00390625 6.48046875 6.77734375] +# [ 6.08203125 6.37890625 6.85546875 7.484375 7.890625 +# 8.51953125 8.99609375 9.29296875] +# [ 7.70703125 8.00390625 8.48046875 9.109375 9.515625 +# 10.14453125 10.62109375 10.91796875] +# [10.22265625 10.51953125 10.99609375 11.625 12.03125 +# 12.66015625 13.13671875 13.43359375] +# [12.12890625 12.42578125 12.90234375 13.53125 13.9375 +# 14.56640625 15.04296875 15.33984375] +# [13.31640625 13.61328125 14.08984375 14.71875 15.125 +# 15.75390625 16.23046875 16.52734375]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic') +``` + +
+ + +
+resize_upsample_scales_cubic_A_n0p5_exclude_outside + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 0.55882353 0.81494204 1.35698249 1.89705882 2.39705882 +# 2.93713516 3.47917561 3.73529412] +# [ 1.58329755 1.83941606 2.38145651 2.92153285 3.42153285 +# 3.96160918 4.50364964 4.75976814] +# [ 3.75145936 4.00757787 4.54961832 5.08969466 5.58969466 +# 6.12977099 6.67181144 6.92792995] +# [ 5.91176471 6.16788321 6.70992366 7.25 7.75 +# 8.29007634 8.83211679 9.08823529] +# [ 7.91176471 8.16788321 8.70992366 9.25 9.75 +# 10.29007634 10.83211679 11.08823529] +# [10.07207005 10.32818856 10.87022901 11.41030534 11.91030534 +# 12.45038168 12.99242213 13.24854064] +# [12.24023186 12.49635036 13.03839082 13.57846715 14.07846715 +# 14.61854349 15.16058394 15.41670245] +# [13.26470588 13.52082439 14.06286484 14.60294118 15.10294118 +# 15.64301751 16.18505796 16.44117647]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_A_n0p5_exclude_outside') +``` + +
+ + +
+resize_upsample_scales_cubic_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 1. 1.34110787 1.80029155 2.32944606 2.67055394 +# 3.19970845 3.65889213 4. ] +# [ 2.36443149 2.70553936 3.16472303 3.69387755 4.03498542 +# 4.56413994 5.02332362 5.36443149] +# [ 4.20116618 4.54227405 5.00145773 5.53061224 5.87172012 +# 6.40087464 6.86005831 7.20116618] +# [ 6.31778426 6.65889213 7.1180758 7.64723032 7.98833819 +# 8.51749271 8.97667638 9.31778426] +# [ 7.68221574 8.02332362 8.48250729 9.01166181 9.35276968 +# 9.8819242 10.34110787 10.68221574] +# [ 9.79883382 10.13994169 10.59912536 11.12827988 11.46938776 +# 11.99854227 12.45772595 12.79883382] +# [11.63556851 11.97667638 12.43586006 12.96501458 13.30612245 +# 13.83527697 14.29446064 14.63556851] +# [13. 13.34110787 13.80029155 14.32944606 14.67055394 +# 15.19970845 15.65889213 16. ]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_align_corners') +``` + +
+ + +
+resize_upsample_scales_cubic_asymmetric + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='asymmetric' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 1. 1.40625 2. 2.5 3. 3.59375 4. +# 4.09375] +# [ 2.625 3.03125 3.625 4.125 4.625 5.21875 5.625 +# 5.71875] +# [ 5. 5.40625 6. 6.5 7. 7.59375 8. +# 8.09375] +# [ 7. 7.40625 8. 8.5 9. 9.59375 10. +# 10.09375] +# [ 9. 9.40625 10. 10.5 11. 11.59375 12. +# 12.09375] +# [11.375 11.78125 12.375 12.875 13.375 13.96875 14.375 +# 14.46875] +# [13. 13.40625 14. 14.5 15. 15.59375 16. +# 16.09375] +# [13.375 13.78125 14.375 14.875 15.375 15.96875 16.375 +# 16.46875]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.75), scale_factors=scales, + coordinate_transformation_mode='asymmetric').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_asymmetric') +``` + +
+ + +
+resize_upsample_scales_linear + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[1. 1.25 1.75 2. ] +# [1.5 1.75 2.25 2.5 ] +# [2.5 2.75 3.25 3.5 ] +# [3. 3.25 3.75 4. ]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear') +``` + +
+ + +
+resize_upsample_scales_linear_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[1. 1.33333333 1.66666667 2. ] +# [1.66666667 2. 2.33333333 2.66666667] +# [2.33333333 2.66666667 3. 3.33333333] +# [3. 3.33333333 3.66666667 4. ]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear_align_corners') +``` + +
+ + +
+resize_upsample_scales_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + +# [[[[1. 1. 1. 2. 2. 2.] +# [1. 1. 1. 2. 2. 2.] +# [3. 3. 3. 4. 4. 4.] +# [3. 3. 3. 4. 4. 4.]]]] +output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_nearest') +``` + +
+ + +
+resize_upsample_sizes_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 9, 10], dtype=np.int64) + +# [[[[ 0.45507922 0.64057922 0.97157922 1.42257922 1.90732922 +# 2.22332922 2.70807922 3.15907922 3.49007922 3.67557922] +# [ 1.39437963 1.57987963 1.91087963 2.36187963 2.84662963 +# 3.16262963 3.64737963 4.09837963 4.42937963 4.61487963] +# [ 2.95130693 3.13680693 3.46780693 3.91880693 4.40355693 +# 4.71955693 5.20430693 5.65530693 5.98630693 6.17180693] +# [ 5.20525069 5.39075069 5.72175069 6.17275069 6.65750069 +# 6.97350069 7.45825069 7.90925069 8.24025069 8.42575069] +# [ 6.88975 7.07525 7.40625 7.85725 8.342 +# 8.658 9.14275 9.59375 9.92475 10.11025 ] +# [ 8.57424931 8.75974931 9.09074931 9.54174931 10.02649931 +# 10.34249931 10.82724931 11.27824931 11.60924931 11.79474931] +# [10.82819307 11.01369307 11.34469307 11.79569307 12.28044307 +# 12.59644307 13.08119307 13.53219307 13.86319307 14.04869307] +# [12.38512037 12.57062037 12.90162037 13.35262037 13.83737037 +# 14.15337037 14.63812037 15.08912037 15.42012037 15.60562037] +# [13.32442078 13.50992078 13.84092078 14.29192078 14.77667078 +# 15.09267078 15.57742078 16.02842078 16.35942078 16.54492078]]]] +output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_cubic') +``` + +
+ + +
+resize_upsample_sizes_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 7, 8], dtype=np.int64) + +# [[[[1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [3. 3. 3. 3. 4. 4. 4. 4.] +# [3. 3. 3. 3. 4. 4. 4. 4.] +# [3. 3. 3. 3. 4. 4. 4. 4.]]]] +output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest') +``` + +
+ + +
+resize_upsample_sizes_nearest_ceil_half_pixel + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='half_pixel', + nearest_mode='ceil' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='ceil'), output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_ceil_half_pixel') +``` + +
+ + +
+resize_upsample_sizes_nearest_floor_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='align_corners', + nearest_mode='floor' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 5. 5. 5. 6. 6. 7. 7. 8.] +# [ 5. 5. 5. 6. 6. 7. 7. 8.] +# [ 9. 9. 9. 10. 10. 11. 11. 12.] +# [ 9. 9. 9. 10. 10. 11. 11. 12.] +# [13. 13. 13. 14. 14. 15. 15. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='floor'), output_size=sizes, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_floor_align_corners') +``` + +
+ + +
+resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='asymmetric', + nearest_mode='round_prefer_ceil' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='round_prefer_ceil'), + output_size=sizes, coordinate_transformation_mode='asymmetric').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric') +``` + +
+ + +### **ReverseSequence** + + Reverse batch of sequences having different lengths specified by `sequence_lens`. + + For each slice i iterating on batch axis, the operator reverses the first sequence_lens[i] elements on time axis, + and copies elements whose index's beyond sequence_lens[i] to the output. So the output slice i contains reversed + sequences on the first sequence_lens[i] elements, then have original values copied for the other elements. + + Example 1: + input = [[0.0, 4.0, 8.0, 12.0], + [1.0, 5.0, 9.0, 13.0], + [2.0, 6.0, 10.0, 14.0], + [3.0, 7.0, 11.0, 15.0]] + sequence_lens = [4, 3, 2, 1] + time_axis = 0 + batch_axis = 1 + + output = [[3.0, 6.0, 9.0, 12.0], + [2.0, 5.0, 8.0, 13.0], + [1.0, 4.0, 10.0, 14.0], + [0.0, 7.0, 11.0, 15.0]] + + Example 2: + input = [[0.0, 1.0, 2.0, 3.0 ], + [4.0, 5.0, 6.0, 7.0 ], + [8.0, 9.0, 10.0, 11.0], + [12.0, 13.0, 14.0, 15.0]] + sequence_lens = [1, 2, 3, 4] + time_axis = 1 + batch_axis = 0 + + output = [[0.0, 1.0, 2.0, 3.0 ], + [5.0, 4.0, 6.0, 7.0 ], + [10.0, 9.0, 8.0, 11.0], + [15.0, 14.0, 13.0, 12.0]] + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
batch_axis : int (default is 1)
+
(Optional) Specify which axis is batch axis. Must be one of 1 (default), or 0.
+
time_axis : int (default is 0)
+
(Optional) Specify which axis is time axis. Must be one of 0 (default), or 1.
+
+ +#### Inputs + +
+
input : T
+
Tensor of rank r >= 2.
+
sequence_lens : tensor(int64)
+
Tensor specifying lengths of the sequences in a batch. It has shape `[batch_size]`.
+
+ +#### Outputs + +
+
Y : T
+
Tensor with same shape of input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
+ + +#### Examples + +
+reversesequence_batch + +```python +node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=1, + batch_axis=0, +) +x = np.array([[0.0, 1.0, 2.0, 3.0], + [4.0, 5.0, 6.0, 7.0], + [8.0, 9.0, 10.0, 11.0], + [12.0, 13.0, 14.0, 15.0]], dtype=np.float32) +sequence_lens = np.array([1, 2, 3, 4], dtype=np.int64) + +y = np.array([[0.0, 1.0, 2.0, 3.0], + [5.0, 4.0, 6.0, 7.0], + [10.0, 9.0, 8.0, 11.0], + [15.0, 14.0, 13.0, 12.0]], dtype=np.float32) + +expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_batch') +``` + +
+ + +
+reversesequence_time + +```python +node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=0, + batch_axis=1, +) +x = np.array([[0.0, 4.0, 8.0, 12.0], + [1.0, 5.0, 9.0, 13.0], + [2.0, 6.0, 10.0, 14.0], + [3.0, 7.0, 11.0, 15.0]], dtype=np.float32) +sequence_lens = np.array([4, 3, 2, 1], dtype=np.int64) + +y = np.array([[3.0, 6.0, 9.0, 12.0], + [2.0, 5.0, 8.0, 13.0], + [1.0, 4.0, 10.0, 14.0], + [0.0, 7.0, 11.0, 15.0]], dtype=np.float32) + +expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_time') +``` + +
+ + +### **RoiAlign** + + Region of Interest (RoI) align operation described in the + [Mask R-CNN paper](https://arxiv.org/abs/1703.06870). + RoiAlign consumes an input tensor X and region of interests (rois) + to apply pooling across each RoI; it produces a 4-D tensor of shape + (num_rois, C, output_height, output_width). + + RoiAlign is proposed to avoid the misalignment by removing + quantizations while converting from original image into feature + map and from feature map into RoI feature; in each ROI bin, + the value of the sampled locations are computed directly + through bilinear interpolation. + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 10 + +#### Attributes + +
+
coordinate_transformation_mode : string (default is half_pixel)
+
Allowed values are 'half_pixel' and 'output_half_pixel'. Use the value 'half_pixel' to pixel shift the input coordinates by -0.5 (the recommended behavior). Use the value 'output_half_pixel' to omit the pixel shift for the input (use this for a backward-compatible behavior).
+
mode : string (default is avg)
+
The pooling method. Two modes are supported: 'avg' and 'max'. Default is 'avg'.
+
output_height : int (default is 1)
+
default 1; Pooled output Y's height.
+
output_width : int (default is 1)
+
default 1; Pooled output Y's width.
+
sampling_ratio : int (default is 0)
+
Number of sampling points in the interpolation grid used to compute the output value of each pooled output bin. If > 0, then exactly sampling_ratio x sampling_ratio grid points are used. If == 0, then an adaptive number of grid points are used (computed as ceil(roi_width / output_width), and likewise for height). Default is 0.
+
spatial_scale : float (default is 1.0)
+
Multiplicative spatial scale factor to translate ROI coordinates from their input spatial scale to the scale used when pooling, i.e., spatial scale of the input feature map X relative to the input image. E.g.; default is 1.0f.
+
+ +#### Inputs + +
+
X : T1
+
Input data tensor from the previous operator; 4-D feature map of shape (N, C, H, W), where N is the batch size, C is the number of channels, and H and W are the height and the width of the data.
+
rois : T1
+
RoIs (Regions of Interest) to pool over; rois is 2-D input of shape (num_rois, 4) given as [[x1, y1, x2, y2], ...]. The RoIs' coordinates are in the coordinate system of the input image. Each coordinate set has a 1:1 correspondence with the 'batch_indices' input.
+
batch_indices : T2
+
1-D tensor of shape (num_rois,) with each element denoting the index of the corresponding image in the batch.
+
+ +#### Outputs + +
+
Y : T1
+
RoI pooled output, 4-D tensor of shape (num_rois, C, output_height, output_width). The r-th batch element Y[r-1] is a pooled feature map corresponding to the r-th RoI X[r-1].
+
+ +#### Type Constraints + +
+
T1 : tensor(float16), tensor(float), tensor(double)
+
Constrain types to float tensors.
+
T2 : tensor(int64)
+
Constrain types to int tensors.
+
+ + +#### Examples + +
+roialign_aligned_false + +```python +node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="output_half_pixel", +) + +X, batch_indices, rois = get_roi_align_input_values() +# (num_rois, C, output_height, output_width) +Y = np.array( + [ + [ + [ + [0.4664, 0.4466, 0.3405, 0.5688, 0.6068], + [0.3714, 0.4296, 0.3835, 0.5562, 0.3510], + [0.2768, 0.4883, 0.5222, 0.5528, 0.4171], + [0.4713, 0.4844, 0.6904, 0.4920, 0.8774], + [0.6239, 0.7125, 0.6289, 0.3355, 0.3495], + ] + ], + [ + [ + [0.3022, 0.4305, 0.4696, 0.3978, 0.5423], + [0.3656, 0.7050, 0.5165, 0.3172, 0.7015], + [0.2912, 0.5059, 0.6476, 0.6235, 0.8299], + [0.5916, 0.7389, 0.7048, 0.8372, 0.8893], + [0.6227, 0.6153, 0.7097, 0.6154, 0.4585], + ] + ], + [ + [ + [0.2384, 0.3379, 0.3717, 0.6100, 0.7601], + [0.3767, 0.3785, 0.7147, 0.9243, 0.9727], + [0.5749, 0.5826, 0.5709, 0.7619, 0.8770], + [0.5355, 0.2566, 0.2141, 0.2796, 0.3600], + [0.4365, 0.3504, 0.2887, 0.3661, 0.2349], + ] + ], + ], + dtype=np.float32, +) + +expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_false") +``` + +
+ + +
+roialign_aligned_true + +```python +node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="half_pixel", +) + +X, batch_indices, rois = get_roi_align_input_values() +# (num_rois, C, output_height, output_width) +Y = np.array( + [ + [ + [ + [0.5178, 0.3434, 0.3229, 0.4474, 0.6344], + [0.4031, 0.5366, 0.4428, 0.4861, 0.4023], + [0.2512, 0.4002, 0.5155, 0.6954, 0.3465], + [0.3350, 0.4601, 0.5881, 0.3439, 0.6849], + [0.4932, 0.7141, 0.8217, 0.4719, 0.4039], + ] + ], + [ + [ + [0.3070, 0.2187, 0.3337, 0.4880, 0.4870], + [0.1871, 0.4914, 0.5561, 0.4192, 0.3686], + [0.1433, 0.4608, 0.5971, 0.5310, 0.4982], + [0.2788, 0.4386, 0.6022, 0.7000, 0.7524], + [0.5774, 0.7024, 0.7251, 0.7338, 0.8163], + ] + ], + [ + [ + [0.2393, 0.4075, 0.3379, 0.2525, 0.4743], + [0.3671, 0.2702, 0.4105, 0.6419, 0.8308], + [0.5556, 0.4543, 0.5564, 0.7502, 0.9300], + [0.6626, 0.5617, 0.4813, 0.4954, 0.6663], + [0.6636, 0.3721, 0.2056, 0.1928, 0.2478], + ] + ], + ], + dtype=np.float32, +) + +expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_true") +``` + +
+ + +### **Round** + + Round takes one input Tensor and rounds the values, element-wise, meaning + it finds the nearest integer for each value. + In case of halfs, the rule is to round them to the nearest even integer. + The output tensor has the same shape and type as the input. + + Examples: + ``` + round([0.9]) = [1.0] + round([2.5]) = [2.0] + round([2.3]) = [2.0] + round([1.5]) = [2.0] + round([-4.5]) = [-4.0] + ``` + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
X (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (non-differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+round + +```python +node = onnx.helper.make_node( + 'Round', + inputs=['x'], + outputs=['y'], +) + +x = np.array([0.1, 0.5, 0.9, 1.2, 1.5, + 1.8, 2.3, 2.5, 2.7, -1.1, + -1.5, -1.9, -2.2, -2.5, -2.8]).astype(np.float32) +y = np.array([0., 0., 1., 1., 2., + 2., 2., 2., 3., -1., + -2., -2., -2., -2., -3.]).astype(np.float32) # expected output +expect(node, inputs=[x], outputs=[y], + name='test_round') +``` + +
+ + +### **Scan** + + Scan can be used to iterate over one or more scan_input tensors, + constructing zero or more scan_output tensors. It combines ideas from general recurrences, + functional programming constructs such as scan, fold, map, and zip, and is intended to enable + generalizations of RNN-like constructs for sequence-to-sequence processing. + Other tensors (referred to as state_variables here) can be used to carry a state + when iterating from one element to another (similar to hidden-state in RNNs, also referred + to as loop-carried dependences in the context of loops). + Many common usages involve a single scan_input tensor (where functionality + similar to scan, fold and map can be obtained). When more than one scan_input is used, + a behavior similar to zip is obtained. + + The attribute body must be a graph, specifying the computation to be performed in + every iteration. It takes as input the current values of the state_variables and + the current iterated element of the scan_inputs. It must return the (updated) values + of the state_variables and zero or more scan_output_element tensors. The values of the + scan_output_element tensors are concatenated over all the iterations to produce the + scan_output values of the scan construct (similar to the concatenated intermediate + hidden-state values of RNN-like constructs). All the output tensors (state_variables as + well as scan_output_element tensors) are required to have the same shape in each iteration + of the loop (a restriction imposed to enable efficient memory allocation). + + Note that the iterated element passed to the body subgraph does not have a sequence + axis. It will have a rank one less than the rank of the corresponding scan_input. + + The scan operation returns the final values of the state_variables as well as the + scan_outputs. + + The optional attribute scan_input_directions specifies the direction (forward or backward) + for each scan input. If this attribute is omitted, all sequences are scanned in the forward + direction. A bidirectional scan may be performed by specifying the same tensor input twice + in the scan_inputs, once with a forward direction, and once with a backward direction. + + The scan_output of the operation is produced by concatenating the scan_output_element + values produced by the body in each iteration. The optional attribute scan_output_directions + specifies the direction in which scan_output is constructed (by appending or prepending the + scan_output_element to scan_output in each iteration) for each scan_output. If this attribute + is omitted, the scan_output_element is appended to the scan_output in each iteration. + + The optional attribute scan_input_axes specifies the axis to be scanned for each scan_input. + If omitted, every scan_input will be scanned in axis 0. For example, if axis 0 is the + batch axis and axis 1 is the time axis (to be scanned), specify an axis value of 1. + Note that scanning a non-zero axis may be less efficient than scanning axis zero. + + The optional attribute scan_output_axes specifies the axis along which the scan_outputs + are accumulated for each scan_output. For example, if axis 1 is the time axis (to be + scanned) for both inputs and outputs, specify a scan_input axis and scan_output axis + value of 1. + + Note that because of the ONNX restriction that only the last parameter of an operator can + be variadic, the initial-states and scan-inputs are listed together as one input parameter. + Similarly, the final-states and scan-outputs are listed together as one output parameter. + The attribute num_scan_inputs indicates the number M of scan-inputs. + + The behavior of + + Scan < + num_scan_inputs = m, + body = loop-body, + scan_input_axes = [axis_1, ..., axis_m] + > (init_1, ..., init_n, scan_1, ..., scan_m) + + is equivalent to the following pseudo-code: + + // scan_i.shape[axis_i] denotes the (max) sequence-length of scan_i + // scan_i.shape[axis_i] is required to be equal to scan_j.shape[axis_j] for all i,j. + sequence_length = scan_1.shape[axis_1]; + + // initialize state-variables + st_1 = init_1; ... st_n = init_n; + // initialize scan-output variables: [] denotes an empty tensor + scan_out_1 = []; ...; scan_out_k = []; + // identify number of iterations: + + // execute loop + for (int t = 0; t < sequence_length; ++t) { + // generate the scan-input elements: the notation T[t] indicates the sub-tensor + // of rank one less than T obtained by indexing T at position t along axis k. + si_1 = scan_1[t]; + ... ; + si_m = scan_m[t]; + // execute loop-body + st_1, ..., st_n, so_1, ..., so_k = loop-body(st_1, ..., st_n, si_1, ..., si_m) + // accumulate the scan-output elements + scan_out_1 = Concat(scan_out_1, so_1); ... ; scan_out_k = Concat(scan_out_k, so_k); + } + + return st_1, ..., st_n, scan_out_1, ..., scan_out_k; + + *Sample usage: Encoding RNN using a Scan* + + The following example shows how a simple RNN over an input tensor %X, with weight tensor %Wi, + recurrence weight tensor %Ri, bias tensors %Wbi and %Rbi, and initial hidden-state %H_0 can + be encoded as a ScanLoop. Note that the loop-body is a nested graph, and it directly computes + %Wi, %Ri, %Wbi, and %Rbi (typically constants or initializers in the body graph). If these + values are computed in the outer graph, they need to be passed in as extra state_variables. + + graph rnn-encoding { + %H_0 = ... + %X = ... + %Y_h, %Y = Scan[body = , num_scan_inputs=1](%H_0, %X) + return %Y, %Y_h + } + + graph rnn-cell-1 ( + %H_tminus1[FLOAT, tensor] + %X_t[FLOAT, tensor] + ) { + %Wi = ... + %Ri = ... + %Wbi = ... + %Rbi = ... + %t1 = X_t * (Wi^T) + %t2 = H_tminus1*(Ri^T) + %t3 = Add(%t1, %t2) + %t4 = Add(%t3, %Wbi) + %t5 = Add(%t4, %Rbi) + %Ht = Tanh(%t5) + %Accumulate = Identity(%Ht) + return %Ht, %Accumulate + } + + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 8, 9, 11 + +#### Attributes + +
+
body : graph (required)
+
The graph run each iteration. It has N+M inputs: (loop state variables..., scan_input_elts...). It has N+K outputs: (loop state variables..., scan_output_elts...). Each scan_output is created by concatenating the value of the specified scan_output_elt value at the end of each iteration of the loop. It is an error if the dimensions of these values change across loop iterations.
+
num_scan_inputs : int (required)
+
An attribute specifying the number of scan_inputs M.
+
scan_input_axes : list of ints
+
An optional list of M flags. The i-th element of the list specifies the axis to be scanned (the sequence axis) for the i-th scan_input. If omitted, 0 will be used as the scan axis for every scan_input. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
scan_input_directions : list of ints
+
An optional list of M flags. The i-th element of the list specifies the direction to be scanned for the i-th scan_input tensor: 0 indicates forward direction and 1 indicates reverse direction. If omitted, all scan_input tensors will be scanned in the forward direction.
+
scan_output_axes : list of ints
+
An optional list of K flags. The i-th element of the list specifies the axis for the i-th scan_output. The scan outputs are accumulated along the specified axis. If omitted, 0 will be used as the scan axis for every scan_output. Negative value for an axis means counting dimensions from the back. Accepted range is [-r, r-1].
+
scan_output_directions : list of ints
+
An optional list of K flags, one for each scan_output. The i-th element of the list specifies whether the i-th scan_output should be constructed by appending or prepending a new value in each iteration: 0 indicates appending and 1 indicates prepending. If omitted, all scan_output tensors will be produced by appending a value in each iteration.
+
+ +#### Inputs (1 - ∞) + +
+
initial_state_and_scan_inputs (variadic, heterogeneous) : V
+
Initial values of the loop's N state variables followed by M scan_inputs
+
+ +#### Outputs (1 - ∞) + +
+
final_state_and_scan_outputs (variadic, heterogeneous) : V
+
Final values of the loop's N state variables followed by K scan_outputs
+
+ +#### Type Constraints + +
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
All Tensor types
+
+ + +#### Examples + +
+scan_8 + +```python +# Given an input sequence [x1, ..., xN], sum up its elements using a scan +# returning the final state (x1+x2+...+xN) as well the scan_output +# [x1, x1+x2, ..., x1+x2+...+xN] +# +# create graph to represent scan body +sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) +next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) +sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) +add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] +) +id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] +) +scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] +) +# create scan op node +no_sequence_lens = '' # optional input, not supplied +node = onnx.helper.make_node( + 'Scan', + inputs=[no_sequence_lens, 'initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body +) +# create inputs for batch-size 1, sequence-length 3, inner dimension 2 +initial = np.array([0, 0]).astype(np.float32).reshape((1, 2)) +x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((1, 3, 2)) +# final state computed = [1 + 3 + 5, 2 + 4 + 6] +y = np.array([9, 12]).astype(np.float32).reshape((1, 2)) +# scan-output computed +z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((1, 3, 2)) + +expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan_sum', opset_imports=[onnx.helper.make_opsetid("", 8)]) +``` + +
+ + +
+scan_9 + +```python +# Given an input sequence [x1, ..., xN], sum up its elements using a scan +# returning the final state (x1+x2+...+xN) as well the scan_output +# [x1, x1+x2, ..., x1+x2+...+xN] +# +# create graph to represent scan body +sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) +next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) +sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) +add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] +) +id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] +) +scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] +) +# create scan op node +node = onnx.helper.make_node( + 'Scan', + inputs=['initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body +) +# create inputs for sequence-length 3, inner dimension 2 +initial = np.array([0, 0]).astype(np.float32).reshape((2,)) +x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((3, 2)) +# final state computed = [1 + 3 + 5, 2 + 4 + 6] +y = np.array([9, 12]).astype(np.float32).reshape((2,)) +# scan-output computed +z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((3, 2)) + +expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan9_sum', opset_imports=[onnx.helper.make_opsetid("", 9)]) +``` + +
+ + +### **Scatter** (deprecated) + + This operator is deprecated. Please use ScatterElements, which provides the same functionality. + + Scatter takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + For instance, in a 2-D tensor case, the update corresponding to the [i][j] entry + is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been deprecated since version 11 of the default ONNX operator set. + +Other versions of this operator: 9 + + +#### Examples + +
+scatter_with_axis + +```python +axis = 1 +node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter(data, indices, updates, axis=axis) +# print(y) produces +# [[1.0, 1.1, 3.0, 2.1, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_with_axis', opset_imports=[helper.make_opsetid("", 10)]) +``` + +
+ + +
+scatter_without_axis + +```python +node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.zeros((3, 3), dtype=np.float32) +indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) +updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + +y = scatter(data, indices, updates) +# print(y) produces +# [[2.0, 1.1, 0.0], +# [1.0, 0.0, 2.2], +# [0.0, 2.1, 1.2]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_without_axis', opset_imports=[helper.make_opsetid("", 10)]) +``` + +
+ + +### **ScatterElements** + + ScatterElements takes three inputs `data`, `updates`, and `indices` of the same + rank r >= 1 and an optional attribute axis that identifies an axis of `data` + (by default, the outer-most axis, that is axis 0). The output of the operation + is produced by creating a copy of the input `data`, and then updating its value + to values specified by `updates` at specific index positions specified by + `indices`. Its output shape is the same as the shape of `data`. + + For each entry in `updates`, the target index in `data` is obtained by combining + the corresponding entry in `indices` with the index of the entry itself: the + index-value for dimension = axis is obtained from the value of the corresponding + entry in `indices` and the index-value for dimension != axis is obtained from the + index of the entry itself. + + `reduction` allows specification of an optional reduction operation, which is applied to all values in `updates` + tensor into `output` at the specified `indices`. + In cases where `reduction` is set to "none", indices should not have duplicate entries: that is, if idx1 != idx2, + then indices[idx1] != indices[idx2]. For instance, in a 2-D tensor case, the update + corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] = updates[i][j] if axis = 0, + output[i][indices[i][j]] = updates[i][j] if axis = 1, + ``` + When `reduction` is set to "add", the update corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] += updates[i][j] if axis = 0, + output[i][indices[i][j]] += updates[i][j] if axis = 1, + ``` + When `reduction` is set to "mul", the update corresponding to the [i][j] entry is performed as below: + ``` + output[indices[i][j]][j] *= updates[i][j] if axis = 0, + output[i][indices[i][j]] *= updates[i][j] if axis = 1, + ``` + + This operator is the inverse of GatherElements. It is similar to Torch's Scatter operation. + + Example 1: + ``` + data = [ + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + [0.0, 0.0, 0.0], + ] + indices = [ + [1, 0, 2], + [0, 2, 1], + ] + updates = [ + [1.0, 1.1, 1.2], + [2.0, 2.1, 2.2], + ] + output = [ + [2.0, 1.1, 0.0] + [1.0, 0.0, 2.2] + [0.0, 2.1, 1.2] + ] + ``` + Example 2: + ``` + data = [[1.0, 2.0, 3.0, 4.0, 5.0]] + indices = [[1, 3]] + updates = [[1.1, 2.1]] + axis = 1 + output = [[1.0, 1.1, 3.0, 2.1, 5.0]] + ``` + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 11, 13 + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to scatter on. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
reduction : string (default is none)
+
Type of reduction to apply: none (default), add, mul. 'none': no reduction applied. 'add': reduction using the addition operation. 'mul': reduction using the multiplication operation.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : Tind
+
Tensor of int32/int64 indices, of r >= 1 (same rank as input). All index values are expected to be within bounds [-s, s-1] along axis of size s. It is an error if any of the index values are out of bounds.
+
updates (differentiable) : T
+
Tensor of rank r >=1 (same rank and shape as indices)
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1 (same rank as input).
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input and output types can be of any tensor type.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ + +#### Examples + +
+scatter_elements_with_axis + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis) +# print(y) produces +# [[1.0, 1.1, 3.0, 2.1, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_axis') +``` + +
+ + +
+scatter_elements_with_duplicate_indices + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + reduction='add', +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 1]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis, reduction='add') +# print(y) produces +# [[1.0, 5.2, 3.0, 4.0, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_duplicate_indices') +``` + +
+ + +
+scatter_elements_with_negative_indices + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, -3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis) +# print(y) produces +# [[1.0, 1.1, 2.1, 4.0, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_negative_indices') +``` + +
+ + +
+scatter_elements_without_axis + +```python +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.zeros((3, 3), dtype=np.float32) +indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) +updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + +y = scatter_elements(data, indices, updates) +# print(y) produces +# [[2.0, 1.1, 0.0], +# [1.0, 0.0, 2.2], +# [0.0, 2.1, 1.2]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_without_axis') +``` + +
+ + +### **ScatterND** + + ScatterND takes three inputs `data` tensor of rank r >= 1, `indices` tensor of rank q >= 1, + and `updates` tensor of rank q + r - indices.shape[-1] - 1. The output of the operation + is produced by creating a copy of the input `data`, and then updating its value to values + specified by `updates` at specific index positions specified by `indices`. Its output shape + is the same as the shape of `data`. Note that `indices` should not have duplicate entries. + That is, two or more `updates` for the same index-location is not supported. + + `indices` is an integer tensor. Let k denote indices.shape[-1], the last dimension in the shape of `indices`. + `indices` is treated as a (q-1)-dimensional tensor of k-tuples, where each k-tuple is a partial-index into `data`. + Hence, k can be a value at most the rank of `data`. When k equals rank(data), each update entry specifies an + update to a single element of the tensor. When k is less than rank(data) each update entry specifies an + update to a slice of the tensor. + + `updates` is treated as a (q-1)-dimensional tensor of replacement-slice-values. Thus, the + first (q-1) dimensions of updates.shape must match the first (q-1) dimensions of indices.shape. + The remaining dimensions of `updates` correspond to the dimensions of the + replacement-slice-values. Each replacement-slice-value is a (r-k) dimensional tensor, + corresponding to the trailing (r-k) dimensions of `data`. Thus, the shape of `updates` + must equal indices.shape[0:q-1] ++ data.shape[k:r-1], where ++ denotes the concatenation + of shapes. + + The `output` is calculated via the following equation: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] = updates[idx] + + The order of iteration in the above loop is not specified. + In particular, indices should not have duplicate entries: that is, if idx1 != idx2, then indices[idx1] != indices[idx2]. + This ensures that the output value does not depend on the iteration order. + + `reduction` allows specification of an optional reduction operation, which is applied to all values in `updates` + tensor into `output` at the specified `indices`. + In cases where `reduction` is set to "none", indices should not have duplicate entries: that is, if idx1 != idx2, + then indices[idx1] != indices[idx2]. This ensures that the output value does not depend on the iteration order. + When `reduction` is set to "add", `output` is calculated as follows: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] += updates[idx] + + When `reduction` is set to "mul", `output` is calculated as follows: + + output = np.copy(data) + update_indices = indices.shape[:-1] + for idx in np.ndindex(update_indices): + output[indices[idx]] *= updates[idx] + + This operator is the inverse of GatherND. + + Example 1: + ``` + data = [1, 2, 3, 4, 5, 6, 7, 8] + indices = [[4], [3], [1], [7]] + updates = [9, 10, 11, 12] + output = [1, 11, 3, 10, 9, 6, 7, 12] + ``` + + Example 2: + ``` + data = [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + indices = [[0], [2]] + updates = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]] + output = [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]] + ``` + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 11, 13 + +#### Attributes + +
+
reduction : string (default is none)
+
Type of reduction to apply: none (default), add, mul. 'none': no reduction applied. 'add': reduction using the addition operation. 'mul': reduction using the multiplication operation.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
Tensor of rank r >= 1.
+
indices (non-differentiable) : tensor(int64)
+
Tensor of rank q >= 1.
+
updates (differentiable) : T
+
Tensor of rank q + r - indices_shape[-1] - 1.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of rank r >= 1.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to any tensor type.
+
+ + +#### Examples + +
+scatternd + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [2]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates) +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd') +``` + +
+ + +
+scatternd_add + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='add', +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [0]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[7, 8, 9, 10], [13, 14, 15, 16], [18, 17, 16, 15], [16, 15, 14, 13]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates, reduction='add') +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_add') +``` + +
+ + +
+scatternd_multiply + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='mul', +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [0]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[5, 10, 15, 20], [60, 72, 84, 96], [168, 147, 126, 105], [128, 96, 64, 32]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates, reduction='mul') +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_multiply') +``` + +
+ + +### **Selu** + + Selu takes one input data (Tensor) and produces one output data + (Tensor) where the scaled exponential linear unit function, + `y = gamma * (alpha * e^x - alpha) for x <= 0`, `y = gamma * x for x > 0`, + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 6 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
alpha : float (default is 1.67326)
+
Coefficient of SELU default to 1.67326319217681884765625 (i.e., float32 approximation of 1.6732632423543772848170429916717).
+
gamma : float (default is 1.0507)
+
Coefficient of SELU default to 1.05070102214813232421875 (i.e., float32 approximation of 1.0507009873554804934193349852946).
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+selu + +```python +node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], + alpha=2.0, + gamma=3.0 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-3.79272318, 0., 3.] +y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 +expect(node, inputs=[x], outputs=[y], + name='test_selu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 +expect(node, inputs=[x], outputs=[y], + name='test_selu') +``` + +
+ + +
+selu_default + +```python +default_alpha = 1.67326319217681884765625 +default_gamma = 1.05070102214813232421875 +node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) * default_gamma + \ + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha * default_gamma +expect(node, inputs=[x], outputs=[y], + name='test_selu_default') +``` + +
+ + +### **SequenceAt** + + Outputs a tensor copy from the tensor at 'position' in 'input_sequence'. + Accepted range for 'position' is in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
input_sequence : S
+
Input sequence.
+
position : I
+
Position of the tensor in the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
tensor : T
+
Output tensor at the specified position in the input sequence.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ + +### **SequenceConstruct** + + Construct a tensor sequence containing 'inputs' tensors. + All tensors in 'inputs' must have the same data type. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (1 - ∞) + +
+
inputs (variadic) : T
+
Tensors.
+
+ +#### Outputs + +
+
output_sequence : S
+
Sequence enclosing the input tensors.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to any tensor type.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to any tensor type.
+
+ + +### **SequenceEmpty** + + Construct an empty tensor sequence, with given data type. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
dtype : int
+
(Optional) The data type of the tensors in the output sequence. The default type is 'float'.
+
+ +#### Inputs + + +#### Outputs + +
+
output : S
+
Empty sequence.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to any tensor type.
+
+ + +### **SequenceErase** + + Outputs a tensor sequence that removes the tensor at 'position' from 'input_sequence'. + Accepted range for 'position' is in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + 'position' is optional, by default it erases the last tensor from 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (1 - 2) + +
+
input_sequence : S
+
Input sequence.
+
position (optional) : I
+
Position of the tensor in the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n - 1]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output_sequence : S
+
Output sequence that has the tensor at the specified position removed.
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ + +### **SequenceInsert** + + Outputs a tensor sequence that inserts 'tensor' into 'input_sequence' at 'position'. + 'tensor' must have the same data type as 'input_sequence'. + Accepted range for 'position' is in `[-n, n]`, where `n` is the number of tensors in 'input_sequence'. + Negative value means counting positions from the back. + 'position' is optional, by default it inserts 'tensor' to the back of 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs (2 - 3) + +
+
input_sequence : S
+
Input sequence.
+
tensor : T
+
Input tensor to be inserted into the input sequence.
+
position (optional) : I
+
Position in the sequence where the new tensor is inserted. It is optional and default is to insert to the back of the sequence. Negative value means counting positions from the back. Accepted range in `[-n, n]`, where `n` is the number of tensors in 'input_sequence'. It is an error if any of the index values are out of bounds. It must be a scalar(tensor of empty shape).
+
+ +#### Outputs + +
+
output_sequence : S
+
Output sequence that contains the inserted tensor at given position.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain to any tensor type.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int32), tensor(int64)
+
Constrain position to integral tensor. It must be a scalar(tensor of empty shape).
+
+ + +#### Examples + +
+sequenceinsert + +```python +test_cases = { + 'at_back': [np.array([10, 11, 12]).astype(np.int64)], + 'at_front': [np.array([-2, -1, 0]), np.array([0]).astype(np.int64)] +} +sequence = [np.array([1, 2, 3, 4]).astype(np.int64), np.array([5, 6, 7]).astype(np.int64), np.array([8, 9]).astype(np.int64)] + +for test_name, test_inputs in test_cases.items(): + tensor = test_inputs[0].astype(np.int64) + + if len(test_inputs) > 1: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor', 'position'], + outputs=['output_sequence'] + ) + position = test_inputs[1] + inserted = sequence_insert_reference_implementation(sequence, tensor, position) + expect(node, inputs=[sequence, tensor, position], outputs=[inserted], + name='test_sequence_insert_' + test_name) + else: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor'], + outputs=['output_sequence'] + ) + inserted = sequence_insert_reference_implementation(sequence, tensor) + expect(node, inputs=[sequence, tensor], outputs=[inserted], + name='test_sequence_insert_' + test_name) +``` + +
+ + +### **SequenceLength** + + Produces a scalar(tensor of empty shape) containing the number of tensors in 'input_sequence'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Inputs + +
+
input_sequence : S
+
Input sequence.
+
+ +#### Outputs + +
+
length : I
+
Length of input sequence. It must be a scalar(tensor of empty shape).
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor type.
+
I : tensor(int64)
+
Constrain output to integral tensor. It must be a scalar(tensor of empty shape).
+
+ + +### **SequenceMap** + + Applies a sub-graph to each sample in the input sequence(s). + + Inputs can be either tensors or sequences, with the exception of the first input which must + be a sequence. The length of the first input sequence will determine the number of samples in the + outputs. Any other sequence inputs should have the same number of samples. The number of inputs + and outputs, should match the one of the subgraph. + + For each i-th element in the output, a sample will be extracted from the input sequence(s) at + the i-th position and the sub-graph will be applied to it. + The outputs will contain the outputs of the sub-graph for each sample, in the same order as in + the input. + + This operator assumes that processing each sample is independent and could executed in parallel + or in any order. Users cannot expect any specific ordering in which each subgraph is computed. + +#### Version + +This version of the operator has been available since version 17 of the default ONNX operator set. + +#### Attributes + +
+
body : graph (required)
+
The graph to be run for each sample in the sequence(s). It should have as many inputs and outputs as inputs and outputs to the SequenceMap function.
+
+ +#### Inputs (1 - ∞) + +
+
input_sequence : S
+
Input sequence.
+
additional_inputs (variadic, heterogeneous) : V
+
Additional inputs to the graph
+
+ +#### Outputs (1 - ∞) + +
+
out_sequence (variadic, heterogeneous) : S
+
Output sequence(s)
+
+ +#### Type Constraints + +
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain input types to any sequence type.
+
V : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128), seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain to any tensor or sequence type.
+
+ + +#### Examples + +
+sequence_map_add_1_sequence_1_tensor + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) for k in range(3)] +x1 = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y0 = [x0[i] + x1 for i in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N']), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_1_sequence_1_tensor') +``` + +
+ + +
+sequence_map_add_2_sequences + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body +) + +N = [np.random.randint(1, 10) for _ in range(3)] +x0 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] +x1 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] +y0 = [x0[k] + x1[k] for k in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_2_sequences') +``` + +
+ + +
+sequence_map_extract_shapes + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Shape', ['x'], ['shape'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('x', onnx.TensorProto.FLOAT, ['H', 'W', 'C'])], + [onnx.helper.make_tensor_value_info('shape', onnx.TensorProto.INT64, [3])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['in_seq'], + outputs=['shapes'], + body=body +) + +shapes = [ + np.array([40, 30, 3], dtype=np.int64), + np.array([20, 10, 3], dtype=np.int64), + np.array([10, 5, 3], dtype=np.int64), +] +x0 = [np.zeros(shape, dtype=np.float32) for shape in shapes] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['H', 'W', 'C'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, [3])), +] +expect(node, inputs=[x0], outputs=[shapes], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_extract_shapes') +``` + +
+ + +
+sequence_map_identity_1_sequence + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info( + 'in0', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x'], + outputs=['y'], + body=body +) + +x = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) + for _ in range(3)] +y = x +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x], outputs=[y], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence') +``` + +
+ + +
+sequence_map_identity_1_sequence_1_tensor + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info( + 'out1', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +x1 = np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) +y0 = x0 +y1 = [x1 for _ in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M']), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence_1_tensor') +``` + +
+ + +
+sequence_map_identity_2_sequences + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info('out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('out1', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +x1 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +y0 = x0 +y1 = x1 +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_2_sequences') +``` + +
+ + +### **Shape** + + Takes a tensor as input and outputs an 1D int64 tensor containing the shape of the input tensor. + Optional attributes start and end can be used to compute a slice of the input tensor's shape. + If start axis is omitted, the slice starts from axis 0. + The end axis, if specified, is exclusive (and the returned value will not include the size of that axis). + If the end axis is omitted, the axes upto the last one will be included. + Negative axes indicate counting back from the last axis. + Note that axes will be clamped to the range [0, r-1], where r is the + rank of the input tensor if they are out-of-range (after adding r in the case of + negative axis). Thus, specifying any end value > r is equivalent to specifying an end + value of r, and specifying any start value < -r is equivalent to specifying a start + value of 0. + + For example: + Input tensor with shape: [2, 3, 4] + No attributes specified. + Output: [2, 3, 4] + + Input tensor with shape: [2, 3, 4] + start: -1 + Output: [4] + + Input tensor with shape: [2, 3, 4] + end: -1 + Output: [2, 3] + + Input tensor with shape: [2, 3, 4] + start: 1 + end: 2 + Output: [3] + +#### Version + +This version of the operator has been available since version 15 of the default ONNX operator set. + +Other versions of this operator: 1, 13 + +#### Attributes + +
+
end : int
+
(Optional) Ending axis for slicing the shape. Negative value means counting dimensions from the back. If omitted, sizes of all axes upto (including) the last one will be included.
+
start : int (default is 0)
+
(Optional) Starting axis for slicing the shape. Default value is 0.Negative value means counting dimensions from the back.
+
+ +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
shape (non-differentiable) : T1
+
Shape of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor.
+
+ + +#### Examples + +
+shape + +```python +x = np.array([ + [1, 2, 3], + [4, 5, 6], +]).astype(np.float32) +test_shape('_example', x) # preserve names of original test cases + +x = np.random.randn(3, 4, 5).astype(np.float32) + +test_shape('', x) # preserve names of original test cases + +test_shape('_start_1', x, start=1) + +test_shape('_end_1', x, end=1) + +test_shape('_start_negative_1', x, start=-1) + +test_shape('_end_negative_1', x, end=-1) + +test_shape('_start_1_end_negative_1', x, start=1, end=-1) + +test_shape('_start_1_end_2', x, start=1, end=2) + +test_shape('_clip_start', x, start=-10) + +test_shape('_clip_end', x, end=10) +``` + +
+ + +### **Shrink** + + Shrink takes one input data (Tensor) and produces one Tensor output, + having same datatype and shape with input. It has two attributes, lambd and + bias. The formula of this operator is: If x < -lambd, y = x + bias; + If x > lambd, y = x - bias; Otherwise, y = 0. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
bias : float (default is 0.0)
+
The bias value added to output. Default is 0.
+
lambd : float (default is 0.5)
+
The lambd value for the Shrink formulation. Default is 0.5.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input data as Tensor.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input to only numeric types.
+
+ + +#### Examples + +
+hard_shrink + +```python +node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, +) +X = np.arange(-2.0, 2.1, dtype=np.float32) +Y = np.array([-2, 0, 0, 0, 2], dtype=np.float32) +expect(node, inputs=[X], outputs=[Y], + name='test_shrink_hard') +``` + +
+ + +
+soft_shrink + +```python +node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, + bias=1.5, +) +X = np.arange(-2.0, 2.1, dtype=np.float32) +Y = np.array([-0.5, 0, 0, 0, 0.5], dtype=np.float32) +expect(node, inputs=[X], outputs=[Y], + name='test_shrink_soft') +``` + +
+ + +### **Sigmoid** + + Sigmoid takes one input data (Tensor) and produces one output data + (Tensor) where the sigmoid function, y = 1 / (1 + exp(-x)), is applied to the + tensor elementwise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+sigmoid + +```python +node = onnx.helper.make_node( + 'Sigmoid', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = 1.0 / (1.0 + np.exp(np.negative(x))) # expected output [0.26894143, 0.5, 0.7310586] +expect(node, inputs=[x], outputs=[y], + name='test_sigmoid_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = 1.0 / (1.0 + np.exp(np.negative(x))) +expect(node, inputs=[x], outputs=[y], + name='test_sigmoid') +``` + +
+ + +### **Sign** + + Calculate the sign of the given input tensor element-wise. + If input > 0, output 1. if input < 0, output -1. if input == 0, output 0. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Inputs + +
+
input (non-differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (non-differentiable) : T
+
The sign of the input tensor computed element-wise. It has the same shape and type of the input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+sign + +```python +node = onnx.helper.make_node( + 'Sign', + inputs=['x'], + outputs=['y'], +) + +x = np.array(range(-5, 6)).astype(np.float32) +y = np.sign(x) +expect(node, inputs=[x], outputs=[y], + name='test_sign') +``` + +
+ + +### **Sin** + + Calculates the sine of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The sine of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+sin + +```python +node = onnx.helper.make_node( + 'Sin', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.sin(x) +expect(node, inputs=[x], outputs=[y], + name='test_sin_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.sin(x) +expect(node, inputs=[x], outputs=[y], + name='test_sin') +``` + +
+ + +### **Sinh** + + Calculates the hyperbolic sine of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic sine values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+sinh + +```python +node = onnx.helper.make_node( + 'Sinh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.sinh(x) # expected output [-1.17520118, 0., 1.17520118] +expect(node, inputs=[x], outputs=[y], + name='test_sinh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.sinh(x) +expect(node, inputs=[x], outputs=[y], + name='test_sinh') +``` + +
+ + +### **Size** + + Takes a tensor as input and outputs a int64 scalar that equals to the total number of elements of the input tensor. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Inputs + +
+
data (non-differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
size (non-differentiable) : T1
+
Total number of elements of the input tensor
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input tensor can be of arbitrary type.
+
T1 : tensor(int64)
+
Constrain output to int64 tensor, which should be a scalar though.
+
+ + +#### Examples + +
+size + +```python +node = onnx.helper.make_node( + 'Size', + inputs=['x'], + outputs=['y'], +) + +x = np.array([ + [1, 2, 3], + [4, 5, 6], +]).astype(np.float32) +y = np.array(6).astype(np.int64) + +expect(node, inputs=[x], outputs=[y], + name='test_size_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.array(x.size).astype(np.int64) + +expect(node, inputs=[x], outputs=[y], + name='test_size') +``` + +
+ + +### **Slice** + + Produces a slice of the input tensor along multiple axes. Similar to numpy: + https://numpy.org/doc/stable/user/basics.indexing.html?highlight=slice#slicing-and-striding + + Slice uses the `starts`, `ends`, `axes` and `steps` inputs to select a sub-tensor + of its input `data` tensor. + + An effective `start[i]`, `end[i]`, and `step[i]` must be computed for each `i` + in `[0, ... r-1]` where `r = rank(input)` as follows: + + If `axes` are omitted, they are set to `[0, ..., r-1]`. + If `steps` are omitted, they are set to `[1, ..., 1]` of length `len(starts)` + + The effective values are initialized as `start[i] = 0`, `end[i] = dims[i]` where + `dims` are the dimensions of `input` and `step[i] = `1. + + All negative elements of `axes` are made non-negatve by adding `r` to them, where + `r =rank(input)`. + + All negative values in `starts[i]` and `ends[i]` have `dims[axes[i]]` added to them, + where `dims` are the dimensions of `input`. Then `start[axes[i]]` is the adjusted + `starts[i]` is clamped into the range `[0, dims[axes[i]]]` for positive stepping + and `[0, dims[axes[i]]-1]` for negative stepping. + + The clamping for the adjusted `ends[i]` depends on the sign of `steps[i]` and must + accommodate copying 0 through `dims[axes[i]]` elements, so for positive stepping + `end[axes[i]]` is clamped to `[0, dims[axes[i]]]`, while for negative stepping it + is clamped to `[-1, dims[axes[i]]-1]`. + + Finally, `step[axes[i]] = steps[i]`. + + For slicing to the end of a dimension with unknown size, it is recommended to pass + in `INT_MAX` when slicing forward and 'INT_MIN' when slicing backward. + + Example 1: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + axes = [0, 1] + starts = [1, 0] + ends = [2, 3] + steps = [1, 2] + result = [ + [5, 7], + ] + Example 2: + data = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + starts = [0, 1] + ends = [-1, 1000] + result = [ + [2, 3, 4], + ] + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 10, 11 + +#### Inputs (3 - 5) + +
+
data (differentiable) : T
+
Tensor of data to extract slices from.
+
starts (non-differentiable) : Tind
+
1-D tensor of starting indices of corresponding axis in `axes`
+
ends (non-differentiable) : Tind
+
1-D tensor of ending indices (exclusive) of corresponding axis in `axes`
+
axes (optional, non-differentiable) : Tind
+
1-D tensor of axes that `starts` and `ends` apply to. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data). Behavior is undefined if an axis is repeated.
+
steps (optional, non-differentiable) : Tind
+
1-D tensor of slice step of corresponding axis in `axes`. Negative value means slicing backward. 'steps' cannot be 0. Defaults to 1s.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Sliced data tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
Tind : tensor(int32), tensor(int64)
+
Constrain indices to integer types
+
+ + +#### Examples + +
+slice + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +y = x[0:3, 0:10] +starts = np.array([0, 0], dtype=np.int64) +ends = np.array([3, 10], dtype=np.int64) +axes = np.array([0, 1], dtype=np.int64) +steps = np.array([1, 1], dtype=np.int64) + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice') +``` + +
+ + +
+slice_default_axes + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends], outputs=[y], + name='test_slice_default_axes') +``` + +
+ + +
+slice_default_steps + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +axes = np.array([0, 1, 2], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_default_steps') +``` + +
+ + +
+slice_end_out_of_bounds + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([1], dtype=np.int64) +ends = np.array([1000], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 1:1000] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_end_out_of_bounds') +``` + +
+ + +
+slice_neg + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0], dtype=np.int64) +ends = np.array([-1], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 0:-1] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg') +``` + +
+ + +
+slice_neg_steps + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([20, 10, 4], dtype=np.int64) +ends = np.array([0, 0, 1], dtype=np.int64) +axes = np.array([0, 1, 2], dtype=np.int64) +steps = np.array([-1, -3, -2]).astype(np.int64) +y = x[20:0:-1, 10:0:-3, 4:1:-2] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg_steps') +``` + +
+ + +
+slice_negative_axes + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +axes = np.array([0, -2, -1], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_negative_axes') +``` + +
+ + +
+slice_start_out_of_bounds + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([1000], dtype=np.int64) +ends = np.array([1000], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 1000:1000] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_start_out_of_bounds') +``` + +
+ + +### **Softmax** + + The operator computes the normalized exponential values for the given input: + + Softmax(input, axis) = Exp(input) / ReduceSum(Exp(input), axis=axis, keepdims=1) + + The "axis" attribute indicates the dimension along which Softmax + will be performed. The output tensor has the same shape + and contains the Softmax values of the corresponding input. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Attributes + +
+
axis : int (default is -1)
+
+Describes the dimension Softmax will be performed on. +Negative value means counting dimensions +from the back. Accepted range is [-r, r-1] where r = rank(input). +
+
+ +#### Inputs + +
+
input (differentiable) : T
+
The input tensor of rank >= axis.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The output values with the same shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+softmax + +```python +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +x = np.array([[-1, 0, 1]]).astype(np.float32) +# expected output [[0.09003058, 0.24472848, 0.66524094]] +y = softmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_example') +``` + +
+ + +
+softmax_axis + +```python +x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) +# expected output +# [[0.032058604 0.08714432 0.23688284 0.6439143 ] +# [0.032058604 0.08714432 0.23688284 0.6439143 ]] +y = softmax(x) + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_large_number') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = softmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_0') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = softmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_1') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = softmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_2') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = softmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_default_axis') +``` + +
+ + +### **SoftmaxCrossEntropyLoss** + + Loss function that measures the softmax cross entropy + between 'scores' and 'labels'. + This operator first computes a loss tensor whose shape is identical to the labels input. + If the input is 2-D with shape (N, C), the loss tensor may be a N-element vector L = (l_1, l_2, ..., l_N). + If the input is N-D tensor with shape (N, C, D1, D2, ..., Dk), + the loss tensor L may have (N, D1, D2, ..., Dk) as its shape and L[i,][j_1][j_2]...[j_k] denotes a scalar element in L. + After L is available, this operator can optionally do a reduction operator. + + shape(scores): (N, C) where C is the number of classes, or (N, C, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + shape(labels): (N) where each value is 0 <= labels[i] <= C-1, or (N, D1, D2,..., Dk), + with K >= 1 in case of K-dimensional loss. + + The loss for one sample, l_i, can caculated as follows: + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk], where i is the index of classes. + or + l[i][d1][d2]...[dk] = -y[i][c][d1][d2]..[dk] * weights[c], if 'weights' is provided. + + loss is zero for the case when label-value equals ignore_index. + l[i][d1][d2]...[dk] = 0, when labels[n][d1][d2]...[dk] = ignore_index + + where: + p = Softmax(scores) + y = Log(p) + c = labels[i][d1][d2]...[dk] + + Finally, L is optionally reduced: + If reduction = 'none', the output is L with shape (N, D1, D2, ..., Dk). + If reduction = 'sum', the output is scalar: Sum(L). + If reduction = 'mean', the output is scalar: ReduceMean(L), or if weight is provided: ReduceSum(L) / ReduceSum(W), + where tensor W is of shape (N, D1, D2, ..., Dk) and W[n][d1][d2]...[dk] = weights[labels[i][d1][d2]...[dk]]. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 12 + +#### Attributes + +
+
ignore_index : int
+
Specifies a target value that is ignored and does not contribute to the input gradient. It's an optional value.
+
reduction : string (default is mean)
+
Type of reduction to apply to loss: none, sum, mean(default). 'none': no reduction will be applied, 'sum': the output will be summed. 'mean': the sum of the output will be divided by the number of elements in the output.
+
+ +#### Inputs (2 - 3) + +
+
scores (differentiable) : T
+
The predicted outputs with shape [batch_size, class_size], or [batch_size, class_size, D1, D2 , ..., Dk], where K is the number of dimensions.
+
labels (non-differentiable) : Tind
+
The ground truth output tensor, with shape [batch_size], or [batch_size, D1, D2, ..., Dk], where K is the number of dimensions. Labels element value shall be in range of [0, C). If ignore_index is specified, it may have a value outside [0, C) and the label values should either be in the range [0, C) or have the value ignore_index.
+
weights (optional, non-differentiable) : T
+
A manual rescaling weight given to each class. If given, it has to be a 1D Tensor assigning weight to each of the classes. Otherwise, it is treated as if having all ones.
+
+ +#### Outputs (1 - 2) + +
+
output (differentiable) : T
+
Weighted loss float Tensor. If reduction is 'none', this has the shape of [batch_size], or [batch_size, D1, D2, ..., Dk] in case of K-dimensional loss. Otherwise, it is a scalar.
+
log_prob (optional, differentiable) : T
+
Log probability tensor. If the output of softmax is prob, its value is log(prob).
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
Tind : tensor(int32), tensor(int64)
+
Constrain target to integer types
+
+ + +#### Examples + +
+input_shape_is_NCd1_mean_weight_negative_ii + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +x = np.random.rand(N, C, dim1).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +labels[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1_mean_weight_negative_ii') +``` + +
+ + +
+input_shape_is_NCd1_mean_weight_negative_ii_log_prob + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +x = np.random.rand(N, C, dim1).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +labels[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1_mean_weight_negative_ii_log_prob') +``` + +
+ + +
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +labels[0][0][0][0] = -5 + +sce = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3_none_no_weight_negative_ii') +``` + +
+ + +
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii_log_prob + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +labels[0][0][0][0] = -5 + +loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob') +``` + +
+ + +
+input_shape_is_NCd1d2d3_sum_weight_high_ii + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +x = np.random.rand(N, C).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) +labels[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3_sum_weight_high_ii') +``` + +
+ + +
+input_shape_is_NCd1d2d3_sum_weight_high_ii_log_prob + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +x = np.random.rand(N, C).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) +labels[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_sum_weight_high_ii_log_prob') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_mean_weight + +```python +reduction = 'mean' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3d4d5_mean_weight') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_mean_weight_log_prob + +```python +reduction = 'mean' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_mean_weight_log_prob') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_none_no_weight + +```python +reduction = 'none' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +sce = softmaxcrossentropy(x, + labels, + reduction=reduction) + +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3d4d5_none_no_weight') +``` + +
+ + +
+input_shape_is_NCd1d2d3d4d5_none_no_weight_log_prob + +```python +reduction = 'none' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + get_log_prob=True) + +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_none_no_weight_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean') +``` + +
+ + +
+softmaxcrossentropy_mean_3d + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, y) + +# Check results +expect(node, inputs=[x, y], outputs=[sce], name='test_sce_mean_3d') +``` + +
+ + +
+softmaxcrossentropy_mean_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, y, get_log_prob=True) + +# Check results +expect(node, inputs=[x, y], outputs=[loss, log_prob], name='test_sce_mean_3d_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii_3d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_3d') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_3d_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii_4d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_4d') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii_4d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_4d_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_no_weights_ii_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_weights + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(0) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(0) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii_3d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(1) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(1) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_3d') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(1) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(1) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_3d_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii_4d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_4d') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii_4d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_4d_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_ii_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(0) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(0) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_log_prob') +``` + +
+ + +
+softmaxcrossentropy_mean_weights_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_log_prob') +``` + +
+ + +
+softmaxcrossentropy_none + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction='none') + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_none') +``` + +
+ + +
+softmaxcrossentropy_none_log_prob + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction='none', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_none_log_prob') +``` + +
+ + +
+softmaxcrossentropy_none_weights + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, reduction='none') + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_none_weights') +``` + +
+ + +
+softmaxcrossentropy_none_weights_log_prob + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, reduction='none', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_none_weights_log_prob') +``` + +
+ + +
+softmaxcrossentropy_sum + +```python +# Define operator attributes. +reduction = 'sum' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction='sum') + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_sum') +``` + +
+ + +
+softmaxcrossentropy_sum_log_prob + +```python +# Define operator attributes. +reduction = 'sum' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction='sum', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_sum_log_prob') +``` + +
+ + +### **Softplus** + + Softplus takes one input data (Tensor) and produces one output data + (Tensor) where the softplus function, y = ln(exp(x) + 1), is applied to + the tensor elementwise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
X (differentiable) : T
+
1D input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
1D input tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+softplus + +```python +node = onnx.helper.make_node( + 'Softplus', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.log(np.exp(x) + 1) # expected output [0.31326166, 0.69314718, 1.31326163] +expect(node, inputs=[x], outputs=[y], + name='test_softplus_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.log(np.exp(x) + 1) +expect(node, inputs=[x], outputs=[y], + name='test_softplus') +``` + +
+ + +### **Softsign** + + Calculates the softsign (x/(1+|x|)) of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 1 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The softsign (x/(1+|x|)) values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+softsign + +```python +node = onnx.helper.make_node( + 'Softsign', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-0.5, 0, 0.5]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_softsign_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = x / (1 + np.abs(x)) +expect(node, inputs=[x], outputs=[y], + name='test_softsign') +``` + +
+ + +### **SpaceToDepth** + + SpaceToDepth rearranges blocks of spatial data into depth. More specifically, + this op outputs a copy of the input tensor where values from the height and width dimensions + are moved to the depth dimension. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
blocksize : int (required)
+
Blocks of [blocksize, blocksize] are moved.
+
+ +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of [N,C,H,W], where N is the batch axis, C is the channel or depth, H is the height and W is the width.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of [N, C * blocksize * blocksize, H/blocksize, W/blocksize].
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+example + +```python +node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=2, +) + +# (1, 1, 4, 6) input tensor +x = np.array([[[[0, 6, 1, 7, 2, 8], + [12, 18, 13, 19, 14, 20], + [3, 9, 4, 10, 5, 11], + [15, 21, 16, 22, 17, 23]]]]).astype(np.float32) + +# (1, 4, 2, 3) output tensor +y = np.array([[[[0, 1, 2], + [3, 4, 5]], + [[6, 7, 8], + [9, 10, 11]], + [[12, 13, 14], + [15, 16, 17]], + [[18, 19, 20], + [21, 22, 23]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth_example') +``` + +
+ + +
+spacetodepth + +```python +b, c, h, w = shape = (2, 2, 6, 6) +blocksize = 2 +node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=blocksize, +) +x = np.random.random_sample(shape).astype(np.float32) +tmp = np.reshape(x, [b, c, + h // blocksize, blocksize, + w // blocksize, blocksize]) +tmp = np.transpose(tmp, [0, 3, 5, 1, 2, 4]) +y = np.reshape(tmp, [b, c * (blocksize**2), + h // blocksize, + w // blocksize]) +expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth') +``` + +
+ + +### **Split** + + Split a tensor into a list of tensors, along the specified + 'axis'. Lengths of the parts can be specified using input 'split'. + Otherwise, the tensor is split to equal sized parts. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 2, 11 + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on. A negative value means counting dimensions from the back. Accepted range is [-rank, rank-1] where r = rank(input).
+
+ +#### Inputs (1 - 2) + +
+
input (differentiable) : T
+
The tensor to split
+
split (optional, non-differentiable) : tensor(int64)
+
Optional length of each output. Values should be >= 0.Sum of the values must be equal to the dim value at 'axis' specified.
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, differentiable) : T
+
One or more outputs forming list of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+1d + +```python +input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'], + axis=0 +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_1d') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=0, +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_1d') +``` + +
+ + +
+2d + +```python +input = np.array([[1., 2., 3., 4., 5., 6.], + [7., 8., 9., 10., 11., 12.]]).astype(np.float32) + +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2'], + axis=1 +) + +expected_outputs = [np.array([[1., 2., 3.], [7., 8., 9.]]).astype(np.float32), + np.array([[4., 5., 6.], [10., 11., 12.]]).astype(np.float32)] + +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_2d') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=1, +) + +expected_outputs = [np.array([[1., 2.], [7., 8.]]).astype(np.float32), + np.array([[3., 4., 5., 6.], [9., 10., 11., 12.]]).astype(np.float32)] + +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_2d') +``` + +
+ + +
+default_values + +```python +input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + +# If axis is not specified, split is applied on default axis 0 +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'] +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_default_axis') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'] +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_default_axis') +``` + +
+ + +
+zero_size_splits + +```python +input = np.array([]).astype(np.float32) + +# Split emtpy tensor to tensors of size zero +split = np.array([0, 0, 0]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2', 'output_3'] +) + +expected_outputs = [np.array([]).astype(np.float32), np.array([]).astype(np.float32), np.array([]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_zero_size_splits') +``` + +
+ + +### **SplitToSequence** + + Split a tensor into a sequence of tensors, along the specified + 'axis'. Lengths of the parts can be specified using argument 'split'. + 'split' must contain only positive numbers. + 'split' is either a scalar (tensor of empty shape), or a 1-D tensor. + If 'split' is a scalar, then 'input' will be split into equally sized chunks(if possible). + Last chunk will be smaller if the 'input' size along the given axis 'axis' is not divisible + by 'split'. + Otherwise, the tensor is split into 'size(split)' chunks, with lengths of the parts on 'axis' + specified in 'split'. In this scenario, the sum of entries in 'split' must be equal to the + dimension size of input tensor on 'axis'. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int (default is 0)
+
Which axis to split on. A negative value means counting dimensions from the back. Accepted range is [-rank, rank-1].
+
keepdims : int (default is 1)
+
Keep the split dimension or not. Default 1, which means we keep split dimension. If input 'split' is specified, this attribute is ignored.
+
+ +#### Inputs (1 - 2) + +
+
input : T
+
The tensor to split
+
split (optional) : I
+
Length of each output. It can be either a scalar(tensor of empty shape), or a 1-D tensor. All values must be >= 0.
+
+ +#### Outputs + +
+
output_sequence : S
+
One or more outputs forming a sequence of tensors after splitting
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input types to all tensor types.
+
I : tensor(int32), tensor(int64)
+
Constrain split size to integral tensor.
+
S : seq(tensor(uint8)), seq(tensor(uint16)), seq(tensor(uint32)), seq(tensor(uint64)), seq(tensor(int8)), seq(tensor(int16)), seq(tensor(int32)), seq(tensor(int64)), seq(tensor(float16)), seq(tensor(float)), seq(tensor(double)), seq(tensor(string)), seq(tensor(bool)), seq(tensor(complex64)), seq(tensor(complex128))
+
Constrain output types to all tensor types.
+
+ + +### **Sqrt** + + Square root takes one input data (Tensor) and produces one output data + (Tensor) where the square root is, y = x^0.5, is applied to + the tensor elementwise. If x is negative, then it will return NaN. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+sqrt + +```python +node = onnx.helper.make_node( + 'Sqrt', + inputs=['x'], + outputs=['y'], +) + +x = np.array([1, 4, 9]).astype(np.float32) +y = np.sqrt(x) # expected output [1., 2., 3.] +expect(node, inputs=[x], outputs=[y], + name='test_sqrt_example') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +y = np.sqrt(x) +expect(node, inputs=[x], outputs=[y], + name='test_sqrt') +``` + +
+ + +### **Squeeze** + + Remove single-dimensional entries from the shape of a tensor. + Takes an input `axes` with a list of axes to squeeze. + If `axes` is not provided, all the single dimensions will be removed from + the shape. If an axis is selected with shape entry not equal to one, an error is raised. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Inputs (1 - 2) + +
+
data (differentiable) : T
+
Tensors with at least max(dims) dimensions.
+
axes (optional, non-differentiable) : tensor(int64)
+
List of integers indicating the dimensions to squeeze. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(data).
+
+ +#### Outputs + +
+
squeezed (differentiable) : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+squeeze + +```python +node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 4, 5).astype(np.float32) +axes = np.array([0], dtype=np.int64) +y = np.squeeze(x, axis=0) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze') +``` + +
+ + +
+squeeze_negative_axes + +```python +node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 1, 5).astype(np.float32) +axes = np.array([-2], dtype=np.int64) +y = np.squeeze(x, axis=-2) +expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze_negative_axes') +``` + +
+ + +### **StringNormalizer** + + StringNormalization performs string operations for basic cleaning. + This operator has only one input (denoted by X) and only one output + (denoted by Y). This operator first examines the elements in the X, + and removes elements specified in "stopwords" attribute. + After removing stop words, the intermediate result can be further lowercased, + uppercased, or just returned depending the "case_change_action" attribute. + This operator only accepts [C]- and [1, C]-tensor. + If all elements in X are dropped, the output will be the empty value of string tensor with shape [1] + if input shape is [C] and shape [1, 1] if input shape is [1, C]. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
case_change_action : string (default is NONE)
+
string enum that cases output to be lowercased/uppercases/unchanged. Valid values are "LOWER", "UPPER", "NONE". Default is "NONE"
+
is_case_sensitive : int (default is 0)
+
Boolean. Whether the identification of stop words in X is case-sensitive. Default is false
+
locale : string
+
Environment dependent string that denotes the locale according to which output strings needs to be upper/lowercased.Default en_US or platform specific equivalent as decided by the implementation.
+
stopwords : list of strings
+
List of stop words. If not set, no word would be removed from X.
+
+ +#### Inputs + +
+
X : tensor(string)
+
UTF-8 strings to normalize
+
+ +#### Outputs + +
+
Y : tensor(string)
+
UTF-8 Normalized strings
+
+ +#### Type Constraints + + + +#### Examples + +
+monday_casesensintive_lower + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='LOWER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_lower') +``` + +
+ + +
+monday_casesensintive_nochangecase + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_nochangecase') +``` + +
+ + +
+monday_casesensintive_upper + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'TUESDAY', u'WEDNESDAY', u'THURSDAY']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_upper') +``` + +
+ + +
+monday_empty_output + +```python +input = np.array([u'monday', u'monday']).astype(object) +output = np.array([u'']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_empty_output') +``` + +
+ + +
+monday_insensintive_upper_twodim + +```python +input = np.array([u'Monday', u'tuesday', u'wednesday', u'Monday', u'tuesday', u'wednesday']).astype(object).reshape([1, 6]) + +# It does upper case cecedille, accented E +# and german umlaut but fails +# with german eszett +output = np.array([u'TUESDAY', u'WEDNESDAY', u'TUESDAY', u'WEDNESDAY']).astype(object).reshape([1, 4]) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_insensintive_upper_twodim') +``` + +
+ + +
+nostopwords_nochangecase + +```python +input = np.array([u'monday', u'tuesday']).astype(object) +output = input + +# No stopwords. This is a NOOP +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_nostopwords_nochangecase') +``` + +
+ + +### **Sub** + + Performs element-wise binary subtraction (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + (Opset 14 change): Extend supported types to include uint8, int8, uint16, and int16. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 7, 13 + +#### Inputs + +
+
A (differentiable) : T
+
First operand.
+
B (differentiable) : T
+
Second operand.
+
+ +#### Outputs + +
+
C (differentiable) : T
+
Result, has same element type as two inputs
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to all numeric tensors.
+
+ + +#### Examples + +
+sub + +```python +node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([3, 2, 1]).astype(np.float32) +z = x - y # expected output [-2., 0., 2.] +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub') + +x = np.random.randint(12, 24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(12, size=(3, 4, 5), dtype=np.uint8) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_uint8') +``` + +
+ + +
+sub_broadcast + +```python +node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_bcast') +``` + +
+ + +### **Sum** + + Element-wise sum of each of the input tensors (with Numpy-style broadcasting support). + All inputs and outputs must have the same data type. + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6, 8 + +#### Inputs (1 - ∞) + +
+
data_0 (variadic, differentiable) : T
+
List of tensors for sum.
+
+ +#### Outputs + +
+
sum (differentiable) : T
+
Output tensor.
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+sum + +```python +data_0 = np.array([3, 0, 2]).astype(np.float32) +data_1 = np.array([1, 3, 4]).astype(np.float32) +data_2 = np.array([2, 6, 6]).astype(np.float32) +result = np.array([6, 9, 12]).astype(np.float32) +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_sum_example') + +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_sum_one_input') + +result = np.add(data_0, data_1) +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_sum_two_inputs') +``` + +
+ + +### **Tan** + + Calculates the tangent of the given input tensor, element-wise. + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The tangent of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+tan + +```python +node = onnx.helper.make_node( + 'Tan', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.tan(x) +expect(node, inputs=[x], outputs=[y], + name='test_tan_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.tan(x) +expect(node, inputs=[x], outputs=[y], + name='test_tan') +``` + +
+ + +### **Tanh** + + Calculates the hyperbolic tangent of the given input tensor element-wise. + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
output (differentiable) : T
+
The hyperbolic tangent values of the input tensor computed element-wise
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double), tensor(bfloat16)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+tanh + +```python +node = onnx.helper.make_node( + 'Tanh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.tanh(x) # expected output [-0.76159418, 0., 0.76159418] +expect(node, inputs=[x], outputs=[y], + name='test_tanh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.tanh(x) +expect(node, inputs=[x], outputs=[y], + name='test_tanh') +``` + +
+ + +### **TfIdfVectorizer** + + This transform extracts n-grams from the input sequence and save them as a vector. Input can + be either a 1-D or 2-D tensor. For 1-D input, output is the n-gram representation of that input. + For 2-D input, the output is also a 2-D tensor whose i-th row is the n-gram representation of the i-th input row. + More specifically, if input shape is [C], the corresponding output shape would be [max(ngram_indexes) + 1]. + If input shape is [N, C], this operator produces a [N, max(ngram_indexes) + 1]-tensor. + + In contrast to standard n-gram extraction, here, the indexes of extracting an n-gram from the original + sequence are not necessarily consecutive numbers. The discontinuity between indexes are controlled by the number of skips. + If the number of skips is 2, we should skip two tokens when scanning through the original sequence. + Let's consider an example. Assume that input sequence is [94, 17, 36, 12, 28] and the number of skips is 2. + The associated 2-grams are [94, 12] and [17, 28] respectively indexed by [0, 3] and [1, 4]. + If the number of skips becomes 0, the 2-grams generated are [94, 17], [17, 36], [36, 12], [12, 28] + indexed by [0, 1], [1, 2], [2, 3], [3, 4], respectively. + + The output vector (denoted by Y) stores the count of each n-gram; + Y[ngram_indexes[i]] indicates the times that the i-th n-gram is found. The attribute ngram_indexes is used to determine the mapping + between index i and the corresponding n-gram's output coordinate. If pool_int64s is [94, 17, 17, 36], ngram_indexes is [1, 0], + ngram_counts=[0, 0], then the Y[0] (first element in Y) and Y[1] (second element in Y) are the counts of [17, 36] and [94, 17], + respectively. An n-gram which cannot be found in pool_strings/pool_int64s should be ignored and has no effect on the output. + Note that we may consider all skips up to S when generating the n-grams. + + The examples used above are true if mode is "TF". If mode is "IDF", all the counts larger than 1 would be truncated to 1 and + the i-th element in weights would be used to scale (by multiplication) the count of the i-th n-gram in pool. If mode is "TFIDF", + this operator first computes the counts of all n-grams and then scale them by the associated values in the weights attribute. + + Only one of pool_strings and pool_int64s can be set. If pool_int64s is set, the input should be an integer tensor. + If pool_strings is set, the input must be a string tensor. + +#### Version + +This version of the operator has been available since version 9 of the default ONNX operator set. + +#### Attributes + +
+
max_gram_length : int (required)
+
Maximum n-gram length. If this value is 3, 3-grams will be used to generate the output.
+
max_skip_count : int (required)
+
Maximum number of items (integers/strings) to be skipped when constructing an n-gram from X. If max_skip_count=1, min_gram_length=2, max_gram_length=3, this operator may generate 2-grams with skip_count=0 and skip_count=1, and 3-grams with skip_count=0 and skip_count=1
+
min_gram_length : int (required)
+
Minimum n-gram length. If this value is 2 and max_gram_length is 3, output may contain counts of 2-grams and 3-grams.
+
mode : string (required)
+
The weighting criteria. It can be one of "TF" (term frequency), "IDF" (inverse document frequency), and "TFIDF" (the combination of TF and IDF)
+
ngram_counts : list of ints (required)
+
The starting indexes of 1-grams, 2-grams, and so on in pool. It is useful when determining the boundary between two consecutive collections of n-grams. For example, if ngram_counts is [0, 17, 36], the first index (zero-based) of 1-gram/2-gram/3-gram in pool are 0/17/36. This format is essentially identical to CSR (or CSC) sparse matrix format, and we choose to use this due to its popularity.
+
ngram_indexes : list of ints (required)
+
list of int64s (type: AttributeProto::INTS). This list is parallel to the specified 'pool_*' attribute. The i-th element in ngram_indexes indicate the coordinate of the i-th n-gram in the output tensor.
+
pool_int64s : list of ints
+
List of int64 n-grams learned from the training set. Either this or pool_strings attributes must be present but not both. It's an 1-D tensor starting with the collections of all 1-grams and ending with the collections of n-grams. The i-th element in pool stores the n-gram that should be mapped to coordinate ngram_indexes[i] in the output vector.
+
pool_strings : list of strings
+
List of strings n-grams learned from the training set. Either this or pool_int64s attributes must be present but not both. It's an 1-D tensor starting with the collections of all 1-grams and ending with the collections of n-grams. The i-th element in pool stores the n-gram that should be mapped to coordinate ngram_indexes[i] in the output vector.
+
weights : list of floats
+
list of floats. This attribute stores the weight of each n-gram in pool. The i-th element in weights is the weight of the i-th n-gram in pool. Its length equals to the size of ngram_indexes. By default, weights is an all-one tensor.This attribute is used when mode is "IDF" or "TFIDF" to scale the associated word counts.
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
Input for n-gram extraction
+
+ +#### Outputs + +
+
Y (non-differentiable) : T1
+
Ngram results
+
+ +#### Type Constraints + +
+
T : tensor(string), tensor(int32), tensor(int64)
+
Input is ether string UTF-8 or int32/int64
+
T1 : tensor(float)
+
1-D tensor of floats
+
+ + +#### Examples + +
+tf_batch_onlybigrams_skip0 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 0., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip0') +``` + +
+ + +
+tf_batch_onlybigrams_skip5 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 1., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip5') +``` + +
+ + +
+tf_batch_uniandbigrams_skip5 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 3., 0., 0., 0., 0., 0.], [0., 0., 1., 0., 1., 1., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_uniandbigrams_skip5') +``` + +
+ + +
+tf_only_bigrams_skip0 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 0., 0., 0., 1., 1., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_only_bigrams_skip0') +``` + +
+ + +
+tf_onlybigrams_levelempty + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([1., 1., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 0]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2]).astype(np.int64) +pool_int64s = np.array([ # unigrams none + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_levelempty') +``` + +
+ + +
+tf_onlybigrams_skip5 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 0., 0., 0., 1., 3., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_skip5') +``` + +
+ + +
+tf_uniandbigrams_skip5 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 3., 1., 0., 1., 3., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_uniandbigrams_skip5') +``` + +
+ + +### **ThresholdedRelu** + + ThresholdedRelu takes one input data (Tensor) and produces one output data + (Tensor) where the rectified linear function, y = x for x > alpha, y = 0 otherwise, + is applied to the tensor elementwise. + +#### Version + +This version of the operator has been available since version 10 of the default ONNX operator set. + +#### Attributes + +
+
alpha : float (default is 1.0)
+
Threshold value
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Input tensor
+
+ +#### Outputs + +
+
Y (differentiable) : T
+
Output tensor
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+default + +```python +default_alpha = 1.0 +node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'] +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, default_alpha, np.inf) +y[y == default_alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_default') +``` + +
+ + +
+thresholdedrelu + +```python +alpha = 2.0 +node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'], + alpha=alpha +) + +x = np.array([-1.5, 0., 1.2, 2.0, 2.2]).astype(np.float32) +y = np.clip(x, alpha, np.inf) # expected output [0., 0., 0., 0., 2.2] +y[y == alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, alpha, np.inf) +y[y == alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu') +``` + +
+ + +### **Tile** + + Constructs a tensor by tiling a given tensor. + This is the same as function `tile` in Numpy, but no broadcast. + For example A = [[1, 2], [3, 4]], B = [1, 2], tile(A, B) = [[1, 2, 1, 2], [3, 4, 3, 4]] + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 6 + +#### Inputs + +
+
input (differentiable) : T
+
Input tensor of any shape.
+
repeats (non-differentiable) : T1
+
1D int64 tensor of the same length as input's dimension number, includes numbers of repeated copies along input's dimensions.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of the same dimensions and type as tensor input. output_dim[i] = input_dim[i] * repeats[i]
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
T1 : tensor(int64)
+
Constrain repeat's type to int64 tensors.
+
+ + +#### Examples + +
+tile + +```python +node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] +) + +x = np.random.rand(2, 3, 4, 5).astype(np.float32) + +repeats = np.random.randint(low=1, high=10, size=(np.ndim(x),)).astype(np.int64) + +z = np.tile(x, repeats) + +expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile') +``` + +
+ + +
+tile_precomputed + +```python +node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] +) + +x = np.array([ + [0, 1], + [2, 3] +], dtype=np.float32) + +repeats = np.array([2, 2], dtype=np.int64) + +z = np.array([ + [0, 1, 0, 1], + [2, 3, 2, 3], + [0, 1, 0, 1], + [2, 3, 2, 3] +], dtype=np.float32) + +expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile_precomputed') +``` + +
+ + +### **TopK** + + Retrieve the top-K largest or smallest elements along a specified axis. Given an input tensor of + shape [a_1, a_2, ..., a_n, r] and integer argument k, return two outputs: + -Value tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] + which contains the values of the top k elements along the specified axis + -Index tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] which + contains the indices of the top k elements (original indices from the input + tensor). + + If "largest" is 1 (the default value) then the k largest elements are returned. + If "sorted" is 1 (the default value) then the resulting k elements will be sorted. + If "sorted" is 0, order of returned 'Values' and 'Indices' are undefined. + + Given two equivalent values, this operator uses the indices along the axis as + a tiebreaker. That is, the element with the lower index will appear first. + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +Other versions of this operator: 1, 10 + +#### Attributes + +
+
axis : int (default is -1)
+
Dimension on which to do the sort. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
largest : int (default is 1)
+
Whether to return the top-K largest or smallest elements.
+
sorted : int (default is 1)
+
Whether to return the elements in sorted order.
+
+ +#### Inputs + +
+
X (differentiable) : T
+
Tensor of shape [a_1, a_2, ..., a_n, r]
+
K (non-differentiable) : tensor(int64)
+
A 1-D tensor containing a single positive value corresponding to the number of top elements to retrieve
+
+ +#### Outputs + +
+
Values (differentiable) : T
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing top K values from the input tensor
+
Indices (non-differentiable) : I
+
Tensor of shape [a_1, a_2, ..., a_{axis-1}, k, a_{axis+1}, ... a_n] containing the corresponding input tensor indices for the top K values.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to numeric tensors.
+
I : tensor(int64)
+
Constrain index tensor to int64
+
+ + +#### Examples + +
+top_k + +```python +axis = 1 +largest = 1 + +k = 3 +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis +) +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +#print(values_ref) +#[[ 3. 2. 1.] +# [ 7. 6. 5.] +# [11. 10. 9.]] +#print(indices_ref) +#[[3 2 1] +# [3 2 1] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k') +``` + +
+ + +
+top_k_negative_axis + +```python +axis = -1 +largest = 1 + +k = 3 +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis +) +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +# print(values_ref) +#[[ 3. 2. 1.] +# [ 7. 6. 5.] +# [11. 10. 9.]] +# print(indices_ref) +#[[3 2 1] +# [3 2 1] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_negative_axis') +``` + +
+ + +
+top_k_smallest + +```python +axis = 1 +largest = 0 +sorted = 1 +k = 3 + +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis, + largest=largest, + sorted=sorted +) + +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [11, 10, 9, 8], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +#print(values_ref) +#[[ 0. 1. 2.] +# [ 4. 5. 6.] +# [ 8. 9. 10.]] +#print(indices_ref) +#[[0 1 2] +# [0 1 2] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_smallest') +``` + +
+ + +### **Transpose** + + Transpose the input tensor similar to numpy.transpose. For example, when + perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape + will be (2, 1, 3). + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Attributes + +
+
perm : list of ints
+
A list of integers. By default, reverse the dimensions, otherwise permute the axes according to the values given.
+
+ +#### Inputs + +
+
data (differentiable) : T
+
An input tensor.
+
+ +#### Outputs + +
+
transposed (differentiable) : T
+
Transposed output.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+all_permutations + +```python +shape = (2, 3, 4) +data = np.random.random_sample(shape).astype(np.float32) +permutations = list(itertools.permutations(np.arange(len(shape)))) + +for i in range(len(permutations)): + node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'], + perm=permutations[i] + ) + transposed = np.transpose(data, permutations[i]) + expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_all_permutations_' + str(i)) +``` + +
+ + +
+default + +```python +shape = (2, 3, 4) +data = np.random.random_sample(shape).astype(np.float32) + +node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'] +) + +transposed = np.transpose(data) +expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_default') +``` + +
+ + +### **Trilu** + + Given a 2-D matrix or batches of 2-D matrices, returns the upper or lower triangular part of the tensor(s). + The attribute "upper" determines whether the upper or lower part is retained. If set to true, + the upper triangular matrix is retained. Lower triangular matrix is retained otherwise. + Default value for the "upper" attribute is true. + Trilu takes one input tensor of shape [*, N, M], where * is zero or more batch dimensions. The upper triangular part consists + of the elements on and above the given diagonal (k). The lower triangular part consists of elements on and below the diagonal. + All other elements in the matrix are set to zero. + If k = 0, the triangular part on and above/below the main diagonal is retained. + If upper is set to true, a positive k retains the upper triangular matrix excluding the main diagonal and (k-1) diagonals above it. + A negative k value retains the main diagonal and |k| diagonals below it. + If upper is set to false, a positive k retains the lower triangular matrix including the main diagonal and k diagonals above it. + A negative k value excludes the main diagonal and (|k|-1) diagonals below it. + +#### Version + +This version of the operator has been available since version 14 of the default ONNX operator set. + +#### Attributes + +
+
upper : int (default is 1)
+
Boolean. Indicates whether upper or lower part of matrix is retained. Default is true.
+
+ +#### Inputs (1 - 2) + +
+
input (differentiable) : T
+
Input tensor of rank 2 or higher.
+
k (optional, non-differentiable) : tensor(int64)
+
A 0-D tensor containing a single value corresponding to the number diagonals above or below the main diagonal to exclude or include. Default value is 0 if it's not specified.
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Output tensor of the same type and shape as the input tensor.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+tril + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 0, 0, 0, 0], +# [1, 2, 0, 0, 0], +# [9, 4, 1, 0, 0], +# [4, 3, 4, 2, 0]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril') +``` + +
+ + +
+tril_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [1, 0, 0, 0, 0], +# [9, 4, 0, 0, 0], +# [4, 3, 4, 0, 0]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_neg') +``` + +
+ + +
+tril_one_row + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) +# X: +# [[[6, 2, 4, 1, 6]], +# +# [[8, 3, 8, 7, 0]], +# +# [[2, 2, 9, 5, 9]]] +# expect result: +# [[[6, 0, 0, 0, 0]], +# +# [[8, 0, 0, 0, 0]], +# +# [[2, 0, 0, 0, 0]]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril_one_row_neg') +``` + +
+ + +
+tril_out_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-7).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_neg') +``` + +
+ + +
+tril_out_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_pos') +``` + +
+ + +
+tril_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(2).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 0, 0], +# [1, 2, 8, 6, 0], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_pos') +``` + +
+ + +
+tril_square + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +# X: +# [[[0, 4, 3], +# [2, 0, 9], +# [8, 2, 5]], +# +# [[2, 7, 2], +# [2, 6, 0], +# [2, 6, 5]]] +# expect result: +# [[[0, 0, 0], +# [2, 0, 0], +# [8, 2, 5]], +# +# [[2, 0, 0], +# [2, 6, 0], +# [2, 6, 5]]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril_square') +``` + +
+ + +
+tril_square_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[[0, 4, 3], +# [2, 0, 9], +# [8, 2, 5]], +# +# [[2, 7, 2], +# [2, 6, 0], +# [2, 6, 5]]] +# expect result: +# [[[0, 0, 0], +# [2, 0, 0], +# [8, 2, 0]], +# +# [[0, 0, 0], +# [2, 0, 0], +# [2, 6, 0]]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_square_neg') +``` + +
+ + +
+tril_zero + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(3, 0, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [] +# expect result: +# [] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_zero') +``` + +
+ + +
+triu + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [0, 2, 8, 6, 9], +# [0, 0, 0, 8, 7], +# [0, 0, 0, 2, 4]] +y = triu_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_triu') +``` + +
+ + +
+triu_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [0, 4, 0, 8, 7], +# [0, 0, 4, 2, 4]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_neg') +``` + +
+ + +
+triu_one_row + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) +k = np.array(1).astype(np.int64) +# X: +# [[[1, 4, 9, 7, 1]], +# +# [[9, 2, 8, 8, 4]], +# +# [[3, 9, 7, 4, 2]]] +# expect result: +# [[[0, 4, 9, 7, 1]], +# +# [[0, 2, 8, 8, 4]], +# +# [[0, 9, 7, 4, 2]]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_one_row') +``` + +
+ + +
+triu_out_neg_out + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-7).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_neg_out') +``` + +
+ + +
+triu_out_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_pos') +``` + +
+ + +
+triu_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(2).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 3, 7, 9], +# [0, 0, 0, 6, 9], +# [0, 0, 0, 0, 7], +# [0, 0, 0, 0, 0]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_pos') +``` + +
+ + +
+triu_square + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +y = triu_reference_implementation(x) +# X: +# [[[4, 6, 9], +# [7, 5, 4], +# [8, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [8, 9, 8]]] +# expect result: +# [[[4, 6, 9], +# [0, 5, 4], +# [0, 0, 2]], +# +# [[1, 4, 9], +# [0, 6, 3], +# [0, 0, 8]]] +expect(node, inputs=[x], outputs=[y], name='test_triu_square') +``` + +
+ + +
+triu_square_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[[4, 6, 9], +# [7, 5, 4], +# [8, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [8, 9, 8]]] +# expect result: +# [[[4, 6, 9], +# [7, 5, 4], +# [0, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [0, 9, 8]]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_square_neg') +``` + +
+ + +
+triu_zero + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(0, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [] +# expect result: +# [] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_zero') +``` + +
+ + +### **Unique** + + Find the unique elements of a tensor. When an optional attribute 'axis' is provided, unique subtensors sliced along the 'axis' are returned. + Otherwise the input tensor is flattened and unique values of the flattened tensor are returned. + + This operator returns the unique values or sliced unique subtensors of the input tensor and three optional outputs. + The first output tensor 'Y' contains all unique values or subtensors of the input. + The second optional output tensor 'indices' contains indices of 'Y' elements' first occurance in 'X'.. + The third optional output tensor 'inverse_indices' contains, for elements of 'X', its corresponding indices in 'Y'. ". + The fourth optional output tensor 'counts' contains the count of each element of 'Y' in the input. + + Outputs are either sorted in ascending order or optionally in the order of the first occurrence of the values in the input. + + https://docs.scipy.org/doc/numpy/reference/generated/numpy.unique.html + + Example 1: + input_X = [2, 1, 1, 3, 4, 3] + attribute_sorted = 0 + attribute_axis = None + output_Y = [2, 1, 3, 4] + output_indices = [0, 1, 3, 4] + output_inverse_indices = [0, 1, 1, 2, 3, 2] + output_counts = [1, 2, 2, 1] + + Example 2: + input_X = [[1, 3], [2, 3]] + attribute_sorted = 1 + attribute_axis = None + output_Y = [1, 2, 3] + output_indices = [0, 2, 1] + output_inverse_indices = [0, 2, 1, 2] + output_counts = [1, 1, 2] + + Example 3: + input_X = [[1, 0, 0], [1, 0, 0], [2, 3, 4]] + attribute_sorted = 1 + attribute_axis = 0 + output_Y = [[1, 0, 0], [2, 3, 4]] + output_indices = [0, 2] + output_inverse_indices = [0, 0, 1] + output_counts = [2, 1] + + Example 4: + input_x = [[[1., 1.], [0., 1.], [2., 1.], [0., 1.]], + [[1., 1.], [0., 1.], [2., 1.], [0., 1.]]] + attribute_sorted = 1 + attribute_axis = 1 + + intermediate data are presented below for better understanding: + + there are 4 subtensors sliced along axis 1 of input_x (shape = (2, 4, 2)): + A: [[1, 1], [1, 1]], + [[0, 1], [0, 1]], + [[2, 1], [2, 1]], + [[0, 1], [0, 1]]. + + there are 3 unique subtensors: + [[1, 1], [1, 1]], + [[0, 1], [0, 1]], + [[2, 1], [2, 1]]. + + sorted unique subtensors: + B: [[0, 1], [0, 1]], + [[1, 1], [1, 1]], + [[2, 1], [2, 1]]. + + output_Y is constructed from B: + [[[0. 1.], [1. 1.], [2. 1.]], + [[0. 1.], [1. 1.], [2. 1.]]] + + output_indices is to map from B to A: + [1, 0, 2] + + output_inverse_indices is to map from A to B: + [1, 0, 2, 0] + + output_counts = [2 1 1] + +#### Version + +This version of the operator has been available since version 11 of the default ONNX operator set. + +#### Attributes + +
+
axis : int
+
(Optional) The dimension to apply unique. If not specified, the unique elements of the flattened input are returned. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(input).
+
sorted : int (default is 1)
+
(Optional) Whether to sort the unique elements in ascending order before returning as output. Must be one of 0, or 1 (default).
+
+ +#### Inputs + +
+
X (non-differentiable) : T
+
A N-D input tensor that is to be processed.
+
+ +#### Outputs (1 - 4) + +
+
Y (non-differentiable) : T
+
A tensor of the same type as 'X' containing all the unique values or subtensors sliced along a provided 'axis' in 'X', either sorted or maintained in the same order they occur in input 'X'
+
indices (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing indices of 'Y' elements' first occurance in 'X'. When 'axis' is provided, it contains indices to subtensors in input 'X' on the 'axis'. When 'axis' is not provided, it contains indices to values in the flattened input tensor.
+
inverse_indices (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing, for elements of 'X', its corresponding indices in 'Y'. When 'axis' is provided, it contains indices to subtensors in output 'Y' on the 'axis'. When 'axis' is not provided, it contains indices to values in output 'Y'.
+
counts (optional, non-differentiable) : tensor(int64)
+
A 1-D INT64 tensor containing the count of each element of 'Y' in input 'X'
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Input can be of any tensor type.
+
+ + +#### Examples + +
+not_sorted_without_axis + +```python +node_not_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=0 +) +# numpy unique does not retain original order (it sorts the output unique values) +# https://github.com/numpy/numpy/issues/8621 +# we need to recover unsorted output and indices +x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True) + +# prepare index mapping from sorted to unsorted +argsorted_indices = np.argsort(indices) +inverse_indices_map = {i: si for i, si in zip(argsorted_indices, np.arange(len(argsorted_indices)))} + +indices = indices[argsorted_indices] +y = np.take(x, indices, axis=0) +inverse_indices = np.asarray([inverse_indices_map[i] for i in inverse_indices], dtype=np.int64) +counts = counts[argsorted_indices] +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [2.0, 1.0, 3.0, 4.0] +# print(indices) +# [0 1 3 4] +# print(inverse_indices) +# [0, 1, 1, 2, 3, 2] +# print(counts) +# [1, 2, 2, 1] + +expect(node_not_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_not_sorted_without_axis') +``` + +
+ + +
+sorted_with_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=0 +) + +x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=0) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[1. 0. 0.] +# [2. 3. 4.]] +# print(indices) +# [0 2] +# print(inverse_indices) +# [0 0 1] +# print(counts) +# [2 1] + +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis') +``` + +
+ + +
+sorted_with_axis_3d + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=1 +) + +x = np.array([[[1., 1.], [0., 1.], [2., 1.], [0., 1.]], + [[1., 1.], [0., 1.], [2., 1.], [0., 1.]]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=1) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[[0. 1.] +# [1. 1.] +# [2. 1.]] +# [[0. 1.] +# [1. 1.] +# [2. 1.]]] +# print(indices) +# [1 0 2] +# print(inverse_indices) +# [1 0 2 0] +# print(counts) +# [2 1 1] +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis_3d') +``` + +
+ + +
+sorted_with_negative_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=-1 +) + +x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 3]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=-1) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[0. 1.] +# [0. 1.] +# [3. 2.]] +# print(indices) +# [1 0] +# print(inverse_indices) +# [1 0 0] +# print(counts) +# [2 1] + +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_negative_axis') +``` + +
+ + +
+sorted_without_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'] +) + +x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_without_axis') +``` + +
+ + +### **Unsqueeze** + + Insert single-dimensional entries to the shape of an input tensor (`data`). + Takes one required input `axes` - which contains a list of dimension indices and this operator will insert a dimension of value `1` into the corresponding index of the output tensor (`expanded`). + + For example: + Given an input tensor (`data`) of shape [3, 4, 5], then + Unsqueeze(data, axes=[0, 4]) outputs a tensor (`expanded`) containing same data as `data` but with shape [1, 3, 4, 5, 1]. + + The input `axes` should not contain any duplicate entries. It is an error if it contains duplicates. + The rank of the output tensor (`output_rank`) is the rank of the input tensor (`data`) plus the number of values in `axes`. + Each value in `axes` should be within the (inclusive) range [-output_rank , output_rank - 1]. + The order of values in `axes` does not matter and can come in any order. + + +#### Version + +This version of the operator has been available since version 13 of the default ONNX operator set. + +Other versions of this operator: 1, 11 + +#### Inputs + +
+
data (differentiable) : T
+
Original tensor
+
axes (non-differentiable) : tensor(int64)
+
List of integers indicating the dimensions to be inserted. Negative value means counting dimensions from the back. Accepted range is [-r, r-1] where r = rank(expanded).
+
+ +#### Outputs + +
+
expanded (differentiable) : T
+
Reshaped tensor with same data as input.
+
+ +#### Type Constraints + +
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types.
+
+ + +#### Examples + +
+unsqueeze_negative_axes + +```python +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 1, 5).astype(np.float32) +axes = np.array([-2]).astype(np.int64) +y = np.expand_dims(x, axis=-2) +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_negative_axes') +``` + +
+ + +
+unsqueeze_one_axis + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) + +for i in range(x.ndim): + axes = np.array([i]).astype(np.int64) + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=i) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_axis_' + str(i)) +``` + +
+ + +
+unsqueeze_three_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([2, 4, 5]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=2) +y = np.expand_dims(y, axis=4) +y = np.expand_dims(y, axis=5) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_three_axes') +``` + +
+ + +
+unsqueeze_two_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([1, 4]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=1) +y = np.expand_dims(y, axis=4) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_two_axes') +``` + +
+ + +
+unsqueeze_unsorted_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([5, 4, 2]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=2) +y = np.expand_dims(y, axis=4) +y = np.expand_dims(y, axis=5) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_unsorted_axes') +``` + +
+ + +### **Upsample** (deprecated) + + Upsample the input tensor. + Each dimension value of the output tensor is: + output_dimension = floor(input_dimension * scale). + +#### Version + +This version of the operator has been deprecated since version 10 of the default ONNX operator set. + +Other versions of this operator: 7, 9 + + +#### Examples + +
+nearest + +```python +node = onnx.helper.make_node( + 'Upsample', + inputs=['X', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + +output = np.array([[[ + [1, 1, 1, 2, 2, 2], + [1, 1, 1, 2, 2, 2], + [3, 3, 3, 4, 4, 4], + [3, 3, 3, 4, 4, 4], +]]], dtype=np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_upsample_nearest', opset_imports=[helper.make_opsetid("", 9)]) +``` + +
+ + +### **Where** + + Return elements, either from X or Y, depending on condition. + Where behaves like + [numpy.where](https://docs.scipy.org/doc/numpy/reference/generated/numpy.where.html) + with three parameters. + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + + **History** + - Version 16 adds bfloat16 to the types allowed (for the second and third parameter). + +#### Version + +This version of the operator has been available since version 16 of the default ONNX operator set. + +Other versions of this operator: 9 + +#### Inputs + +
+
condition (non-differentiable) : B
+
When True (nonzero), yield X, otherwise yield Y
+
X (differentiable) : T
+
values selected at indices where condition is True
+
Y (differentiable) : T
+
values selected at indices where condition is False
+
+ +#### Outputs + +
+
output (differentiable) : T
+
Tensor of shape equal to the broadcasted shape of condition, X, and Y.
+
+ +#### Type Constraints + +
+
B : tensor(bool)
+
Constrain to boolean tensors.
+
T : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(bfloat16), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Constrain input and output types to all tensor types (including bfloat).
+
+ + +#### Examples + +
+long + +```python +node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +x = np.array([[1, 2], [3, 4]], dtype=np.int64) +y = np.array([[9, 8], [7, 6]], dtype=np.int64) +z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] +expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_long_example') +``` + +
+ + +
+where + +```python +node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +x = np.array([[1, 2], [3, 4]], dtype=np.float32) +y = np.array([[9, 8], [7, 6]], dtype=np.float32) +z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] +expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_example') +``` + +
+ + +### **Xor** + + Returns the tensor resulted from performing the `xor` logical operation + elementwise on the input tensors `A` and `B` (with Numpy-style broadcasting support). + + This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [the doc](Broadcasting.md). + +#### Version + +This version of the operator has been available since version 7 of the default ONNX operator set. + +Other versions of this operator: 1 + +#### Inputs + +
+
A (non-differentiable) : T
+
First input operand for the logical operator.
+
B (non-differentiable) : T
+
Second input operand for the logical operator.
+
+ +#### Outputs + +
+
C (non-differentiable) : T1
+
Result tensor.
+
+ +#### Type Constraints + +
+
T : tensor(bool)
+
Constrain input to boolean tensor.
+
T1 : tensor(bool)
+
Constrain output to boolean tensor.
+
+ + +#### Examples + +
+xor + +```python +node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor4d') +``` + +
+ + +
+xor_broadcast + +```python +node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v4d') +``` + +
+ + +## ai.onnx.preview.training +### **ai.onnx.preview.training.Adagrad** + + Compute one iteration of ADAGRAD, a stochastic gradient based optimization + algorithm. This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. As you can imagine, ADAGRAD requires + some parameters: + + - The initial learning-rate "R". + - The update count "T". That is, the number of training iterations conducted. + - A L2-norm regularization coefficient "norm_coefficient". + - A learning-rate decay factor "decay_factor". + - A small constant "epsilon" to avoid dividing-by-zero. + + At each ADAGRAD iteration, the optimized tensors are moved along a direction + computed based on their estimated gradient and accumulated squared gradient. Assume + that only a single tensor "X" is updated by this operator. We need the value of "X", + its gradient "G", and its accumulated squared gradient "H". Therefore, variables in + this operator's input list are sequentially "R", "T", "X", "G", and "H". Other + parameters are given as attributes because they are usually constants. Also, the + corresponding output tensors are the new value of "X" (called "X_new"), and then + the new accumulated squared gradient (called "H_new"). Those outputs are computed + from the given inputs following the pseudo code below. + + Let "+", "-", "*", and "/" are all element-wise arithmetic operations with + numpy-style broadcasting support. The pseudo code to compute those outputs is: + + // Compute a scalar learning-rate factor. At the first update of X, T is generally + // 0 (0-based update index) or 1 (1-based update index). + r = R / (1 + T * decay_factor); + + // Add gradient of 0.5 * norm_coefficient * ||X||_2^2, where ||X||_2 is the 2-norm. + G_regularized = norm_coefficient * X + G; + + // Compute new accumulated squared gradient. + H_new = H + G_regularized * G_regularized; + + // Compute the adaptive part of per-coordinate learning rate. Note that Sqrt(...) + // computes element-wise square-root. + H_adaptive = Sqrt(H_new) + epsilon + + // Compute the new value of "X". + X_new = X - r * G_regularized / H_adaptive; + + If one assign this operators to optimize multiple inputs, for example, "X_1" and "X_2", the same + pseudo code may be extended to handle all tensors jointly. More specifically, we can view "X" as a + concatenation of "X_1" and "X_2" (of course, their gradient and accumulate gradient should + be concatenated too) and then just reuse the entire pseudo code. + + Note that ADAGRAD was first proposed in http://jmlr.org/papers/volume12/duchi11a/duchi11a.pdf. + In that reference paper, this operator is a special case of the Figure 1's composite mirror + descent update. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
decay_factor : float (default is 0.0)
+
The decay factor of learning rate after one update.The effective learning rate is computed by r = R / (1 + T * decay_factor). Default to 0 so that increasing update counts doesn't reduce the learning rate.
+
epsilon : float (default is 0.0)
+
Small scalar to avoid dividing by zero.
+
norm_coefficient : float (default is 0.0)
+
Regularization coefficient in 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The initial learning rate.
+
T : T2
+
The update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
The current values of optimized tensors, followed by their respective gradients, followed by their respective accumulated squared gradients.For example, if two tensor "X_1" and "X_2" are optimized, The input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", accumulated squared gradient of "X_1", accumulated squared gradient of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
Updated values of optimized tensors, followed by their updated values of accumulated squared gradients. For example, if two tensor "X_1" and "X_2" are optimized, the output list would be [new value of "X_1," new value of "X_2" new accumulated squared gradient of "X_1", new accumulated squared gradient of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+adagrad + +```python +# Define operator attributes. +norm_coefficient = 0.001 +epsilon = 1e-5 +decay_factor = 0.1 + +# Create operator. +node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X', 'G', 'H'], + outputs=['X_new', 'H_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.0], dtype=np.float32) +g = np.array([-1.0], dtype=np.float32) +h = np.array([2.0], dtype=np.float32) + +# Compute expected outputs of Adagrad. +x_new, h_new = apply_adagrad(r, t, x, g, h, + norm_coefficient, epsilon, decay_factor) + +# Check results. +expect(node, inputs=[r, t, x, g, h], + outputs=[x_new, h_new], name='test_adagrad', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +
+adagrad_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +epsilon = 1e-5 +decay_factor = 0.1 + +node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +h1 = np.array([2.0], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +h2 = np.array([4.0, 1.0], dtype=np.float32) + +# Compute expected outputs of Adagrad. +x1_new, h1_new = apply_adagrad(r, t, x1, g1, h1, + norm_coefficient, epsilon, decay_factor) +x2_new, h2_new = apply_adagrad(r, t, x2, g2, h2, + norm_coefficient, epsilon, decay_factor) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, h1, h2], + outputs=[x1_new, x2_new, h1_new, h2_new], name='test_adagrad_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +### **ai.onnx.preview.training.Adam** + + Compute one iteration of Adam, a stochastic gradient based optimization + algorithm. This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. First of all, Adam requires + some parameters: + + - The learning-rate "R". + - The update count "T". That is, the number of training iterations conducted. + - A L2-norm regularization coefficient "norm_coefficient". + - A small constant "epsilon" to avoid dividing-by-zero. + - Two coefficients, "alpha" and "beta". + + At each Adam iteration, the optimized tensors are moved along a direction + computed based on their exponentially-averaged historical gradient and + exponentially-averaged historical squared gradient. Assume that only a tensor + "X" is being optimized. The rest of required information is + + - the value of "X", + - "X"'s gradient (denoted by "G"), + - "X"'s exponentially-averaged historical gradient (denoted by "V"), and + - "X"'s exponentially-averaged historical squared gradient (denoted by "H"). + + Some of those parameters are passed into this operator as input tensors and others + are stored as this operator's attributes. Specifically, this operator's input tensor + list is ["R", "T", "X", "G", "V", "H"]. That is, "R" is the first input, "T" is + the second input, and so on. Other parameters are given as attributes because they + are constants. Moreover, the corresponding output tensors are + + - the new value of "X" (called "X_new"), + - the new exponentially-averaged historical gradient (denoted by "V_new"), and + - the new exponentially-averaged historical squared gradient (denoted by "H_new"). + + Those outputs are computed following the pseudo code below. + + Let "+", "-", "*", and "/" are all element-wise arithmetic operations with + numpy-style broadcasting support. The pseudo code to compute those outputs is: + + // Add gradient of 0.5 * norm_coefficient * ||X||_2^2, where ||X||_2 is the 2-norm. + G_regularized = norm_coefficient * X + G + + // Update exponentially-averaged historical gradient. + V_new = alpha * V + (1 - alpha) * G_regularized + + // Update exponentially-averaged historical squared gradient. + H_new = beta * H + (1 - beta) * G_regularized * G_regularized + + // Compute the element-wise square-root of H_new. V_new will be element-wisely + // divided by H_sqrt for a better update direction. + H_sqrt = Sqrt(H_new) + epsilon + + // Compute learning-rate. Note that "alpha**T"/"beta**T" is alpha's/beta's T-th power. + R_adjusted = T > 0 ? R * Sqrt(1 - beta**T) / (1 - alpha**T) : R + + // Compute new value of "X". + X_new = X - R_adjusted * V_new / H_sqrt + + // Post-update regularization. + X_final = (1 - norm_coefficient_post) * X_new + + If there are multiple inputs to be optimized, the pseudo code will be applied + independently to each of them. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
alpha : float (default is 0.9)
+
Coefficient of previously accumulated gradient in running average. Default to 0.9.
+
beta : float (default is 0.999)
+
Coefficient of previously accumulated squared-gradient in running average. Default to 0.999.
+
epsilon : float (default is 0.0)
+
Small scalar to avoid dividing by zero.
+
norm_coefficient : float (default is 0.0)
+
Regularization coefficient of 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
norm_coefficient_post : float (default is 0.0)
+
Regularization coefficient of 0.5 * norm_coefficient * ||X||_2^2. Default to 0, which means no regularization.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The initial learning rate.
+
T : T2
+
The update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
The tensors to be optimized, followed by their respective gradients, followed by their respective accumulated gradients (aka momentum), followed by their respective accumulated squared gradients. For example, to optimize tensors "X_1" and "X_2,", the input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", accumulated gradient of "X_1", accumulated gradient of "X_2", accumulated squared gradient of "X_1", accumulated squared gradient of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
New values of optimized tensors, followed by their respective new accumulated gradients, followed by their respective new accumulated squared gradients. For example, if two tensors "X_1" and "X_2" are optimized, the outputs list would be [new value of "X_1", new value of "X_2", new accumulated gradient of "X_1", new accumulated gradient of "X_2", new accumulated squared gradient of "X_1", new accumulated squared gradient of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input and output types to float tensors.
+
+ + +#### Examples + +
+adam + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.1 +epsilon = 1e-7 + +# Create operator. +node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X', 'G', 'V', 'H'], + outputs=['X_new', 'V_new', 'H_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + epsilon=epsilon, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) +h = np.array([0.1, 0.1], dtype=np.float32) + +# Compute expected outputs of Adam. +x_new, v_new, h_new = apply_adam(r, t, x, g, v, h, + norm_coefficient, 0.0, alpha, beta, + epsilon) + +# Check results. +expect(node, inputs=[r, t, x, g, v, h], + outputs=[x_new, v_new, h_new], name='test_adam', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +
+adam_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.85 +epsilon = 1e-2 + +node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'V1', 'V2', + 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +v1 = np.array([2.0], dtype=np.float32) +h1 = np.array([0.5], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +v2 = np.array([4.0, 1.0], dtype=np.float32) +h2 = np.array([1.0, 10.0], dtype=np.float32) + +# Compute expected outputs of Adam. +x1_new, v1_new, h1_new = apply_adam(r, t, x1, g1, v1, h1, + norm_coefficient, 0.0, alpha, beta, + epsilon) +x2_new, v2_new, h2_new = apply_adam(r, t, x2, g2, v2, h2, + norm_coefficient, 0.0, alpha, beta, + epsilon) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2, h1, h2], + outputs=[x1_new, x2_new, v1_new, v2_new, h1_new, h2_new], + name='test_adam_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +### **ai.onnx.preview.training.Gradient** + + Gradient operator computes the partial derivatives of a specific tensor w.r.t. + some other tensors. This operator is widely used in gradient-based training + algorithms. To illustrate its use, let's consider a computation graph, + + ``` + X -----. + | + v + W --> Conv --> H --> Gemm --> Y + ^ + | + Z + ``` + + , where W and Z are trainable tensors. Note that operators' attributes are + omitted for the sake of simplicity. Let dY/dW (dY/dZ) be the gradient of + Y with respect to W (Z). The user can compute gradient by inserting Gradient + operator to form another graph shown below. + + ``` + W --> Conv --> H --> Gemm --> Y + | ^ ^ + | | | + | X Z + | | | + | | .----------' + | | | (W/Z/X is the 1st/2nd/3rd input of Gradient as shown in + | | | "xs" followed by "zs") + | v v + '---> Gradient(xs=["W", "Z"], zs=["X"], y="Y") + | | + | '-----------------------------------> dY/dW (1st output of Gradient) + | + '---------------------------------------> dY/dZ (2nd output of Gradient) + ``` + + By definition, the tensor "y" is a function of independent variables in "xs" + and "zs". Since we only compute the gradient of "y" w.r.t. the differentiable + variables in "xs", this Gradient only outputs dY/dW and dY/dZ. Note that "H" + cannot appear in "xs" and "zs". The reason is that "H" can be determined by + tensors "W" and "X" and therefore "H" is not an independent variable. + + All outputs are optional. If needed, for example, user can assign an empty + string to the 1st output name of that Gradient to skip the generation of dY/dW. + Note that the concept of optional outputs can also be found in ONNX's RNN, GRU, + and LSTM. + + Gradient operator can compute derivative against intermediate tensors. For + example, the gradient of Y with respect to H can be done via + + ``` + W --> Conv --> H --> Gemm --> Y + ^ | ^ + | | | + X | Z + .-------' | + | .----------' + | | (H/Z is the 1st/2nd input of Gradient as shown in "xs") + v v + Gradient(xs=["H", "Z"], y="Y") + | | + | '-----------------------------------> dY/dH (1st output of Gradient) + | + '---------------------------------------> dY/dZ (2nd output of Gradient) + ``` + + It is possible to represent high-order differentiation using Gradient operators. + For example, given the following linear model: + + ``` + W --> Gemm --> Y --> Loss --> O + ^ ^ + | | + X L + ``` + + To compute the 2nd order derivative of O with respect to W (denoted by + d^2O/dW^2), one can do + + ``` + W --> Gemm --> Y --> Loss --> O + | ^ ^ + | | | + | X .------------L + | | | | + | | | v + +------+-+> Gradient(xs=["X", "W"], zs=["L"], y="O") ---> dO/dX (1st output of Gradient) + | | | | + | | | '---> dO/dW (2nd output of Gradient) + | v v + '---> Gradient(xs=["X", "W"], zs=["L"], y="dO/dW") ---> d(dO/dW)dX (1st output of + | Gradient) + | + | + '---> d^2O/dW^2 (2nd output of Gradient) + ``` + + The tensors named in attributes "xs", "zs", and "y" define the differentiated + computation graph, and the inputs to Gradient node define the values at + which the gradient is computed. We can feed different tensors to the identified + graph. For example, one can compute the gradient of Y with respect to H at + a specific value of H, H_1, by providing that value as an input to the Gradient + node. + + ``` + W --> Conv --> H --> Gemm --> Y + ^ ^ + | | + X Z + + Z_1 (2nd input of Gradient) + | + v + H_1 --> Gradient(xs=["H", "Z"], y="Y") ---> dY/dH when H = H_1 and Y = Y_1. + | + '------------------------------> dY/dZ (2nd output of Gradient) + ``` + + When the inputs of Gradient are the tensors named in "xs" and "zs", the + computation can be optimized. More specifically, intermediate variables in + forward pass can be reused if the gradient is computed via reverse-mode + auto-differentiation. + + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
xs : list of strings (required)
+
Input tensor names of the differentiated sub-graph. It contains only the necessary differentiated inputs of a (sub-)graph. Variables (usually called intermediate variables) that can be generated from inputs cannot be included in this attribute.
+
y : string (required)
+
The targeted tensor. It can be viewed as the output of the differentiated function. The attribute "xs" and attribute "zs" are the minimal independent variable set that determines the value of "y".
+
zs : list of strings
+
Input tensor names of the differentiated sub-graph. It contains only the necessary non-differentiated inputs of a (sub-)graph. Variables (usually called intermediate variables) that can be generated from inputs cannot be included in this attribute.
+
+ +#### Inputs (1 - ∞) + +
+
Inputs (variadic, heterogeneous) : T1
+
The values fed into graph identified by the attributes. The i-th input is the value of the i-th tensor specified in the concatenated list of the attribute "xs" and the attribute "zs". For example, if xs=["A", "B"] and zs=["C"], the first input is used as the value of symbol "A" and the 3rd input is substituted for all the occurrences of "C".
+
+ +#### Outputs (1 - ∞) + +
+
Outputs (variadic, heterogeneous) : T2
+
The gradient of the tensor specified by the attribute "y" with respect to each of tensors specified in the attribute "xs". The i-th output is the gradient of "y" with respect to the i-th tensor specified in the attribute "xs".
+
+ +#### Type Constraints + +
+
T1 : tensor(uint8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(int8), tensor(int16), tensor(int32), tensor(int64), tensor(float16), tensor(float), tensor(double), tensor(string), tensor(bool), tensor(complex64), tensor(complex128)
+
Allow outputs to be any kind of tensor.
+
T2 : tensor(float16), tensor(float), tensor(double)
+
Allow inputs to be any kind of floating-point tensor.
+
+ + +#### Examples + +
+gradient_scalar_add + +```python +add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') +gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dc_da', 'dc_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='c') + +a = np.array(1.0).astype(np.float32) +b = np.array(2.0).astype(np.float32) +c = a + b +# dc / da = d(a+b) / da = 1 +dc_da = np.array(1).astype(np.float32) +# db / db = d(a+b) / db = 1 +dc_db = np.array(1).astype(np.float32) + +graph = onnx.helper.make_graph( + nodes=[add_node, gradient_node], + name='GradientOfAdd', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('c', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dc_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dc_db', + onnx.TensorProto.FLOAT, [])]) +opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] +model = onnx.helper.make_model( + graph, + producer_name='backend-test', + opset_imports=opsets) +expect(model, inputs=[a, b], outputs=[c, dc_da, dc_db], + name='test_gradient_of_add') +``` + +
+ + +
+gradient_scalar_add_and_mul + +```python +add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') +mul_node = onnx.helper.make_node('Mul', + ['c', 'a'], ['d'], name='my_mul') +gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dd_da', 'dd_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='d') + +a = np.array(1.0).astype(np.float32) +b = np.array(2.0).astype(np.float32) +c = a + b +# d = a * c = a * (a + b) +d = a * c +# dd / da = d(a*a+a*b) / da = 2 * a + b +dd_da = (2 * a + b).astype(np.float32) +# dd / db = d(a*a+a*b) / db = a +dd_db = a + +graph = onnx.helper.make_graph( + nodes=[add_node, mul_node, gradient_node], + name='GradientOfTwoOperators', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('d', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dd_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dd_db', + onnx.TensorProto.FLOAT, [])]) + +opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] +model = onnx.helper.make_model(graph, + producer_name='backend-test', + opset_imports=opsets) +expect(model, inputs=[a, b], outputs=[d, dd_da, dd_db], + name='test_gradient_of_add_and_mul') +``` + +
+ + +### **ai.onnx.preview.training.Momentum** + + Compute one iteration of stochastic gradient update with momentum. + This operator can conduct the optimization of multiple tensor variables. + + Let's define the behavior of this operator. As you can imagine, SG with momentum requires + several parameters: + + - The learning-rate "R". + - The update count "T". That is, the number of conducted training iterations. It should + be zero in the first training iteration. + - A L2-norm regularization coefficient "norm_coefficient". + - A decay coefficient of previous accumulated gradient (i.e., momentum) "alpha". + - The scaling coefficient of current gradient "beta". + - An attribute to choose either standard momentum or Nesterov's momentum "mode" should + be used. + + For the sake of simplicity, assume that there is only one tensor (called "X") to be optimized. + Other necessary inputs are "X"'s gradient (called "G") and "X"'s momentum (called "V"). This + Momentum operator maps all these inputs to the new value of "X" (called "X_new") and its new + momentum (called "V_new"). + + This operator supports two different momentum algorithms. Set the attribute "mode" to + "nesterov" if Nesterov's momentum is desired. Otherwise, set the attribute "model" to + "standard" to use standard momentum. Computation details are described subsequently. + + Let "+", "-", "*", and "/" are all element-wise operations with numpy-style broadcasting. + + Pseudo code for SG with standard momentum: + + // Add gradient of 0.5 * norm_coefficient * ||X||^2, where ||X|| is the sum of squared + // values of all elements in X. + G_regularized = norm_coefficient * X + G + + // In the first training iteration, beta should always be 1. + beta_adjusted = T > 0 ? beta : 1 + + // Compute the current momentum based on previous momentum and the current gradient. + V_new = alpha * V + beta_adjusted * G_regularized + + // Update X. + X_new = X - R * V_new + + Pseudo code for SG with Nesterov's momentum: + + // Add gradient of 0.5 * norm_coefficient * ||X||^2, where ||X|| is the sum of squared + // values of all elements in X. + G_regularized = norm_coefficient * X + G; + + // In the first training iteration, beta should always be 1. + beta_adjusted = T > 0 ? beta : 1 + + // Compute the current momentum based on previous momentum and the current gradient. + V_new = alpha * V + beta_adjusted * G_regularized; + + // Compute final update direction and then update X. + X_new = X - R * (G_regularized + alpha * V_new) + + If one assign this operators to optimize multiple inputs, for example, "X_1" and "X_2". The same + pseudo code would be extended to handle all tensors jointly. More specifically, we can view "X" as a + concatenation of "X_1" and "X_2" (of course, their gradient and accumulate gradient should + be concatenated too) and then our pseudo code becomes applicable. + +#### Version + +This version of the operator has been available since version 1 of the 'ai.onnx.preview.training' operator set. + +#### Attributes + +
+
alpha : float (required)
+
The decay factor of momentum. It should be a scalar.
+
beta : float (required)
+
The coefficient of gradient in computing new momentum. It should be a scalar.
+
mode : string (required)
+
Its value should be either "nesterov" or "standard". The value "nesterov" leads to the use of Nesterov's momentum while "standard" invokes stochastic gradient method using standard momentum
+
norm_coefficient : float (required)
+
Coefficient of 0.5 * norm_coefficient * ||X||^2.
+
+ +#### Inputs (3 - ∞) + +
+
R : T1
+
The learning rate.
+
T : T2
+
Update count of "X". It should be a scalar.
+
inputs (variadic, heterogeneous) : T3
+
It sequentially contains the current values of optimized tensors, then their gradient tensors, and finally their momentum tensors. For example, if two tensors "X_1" and "X_2" are optimized, The expected input list would be ["X_1", "X_2", gradient of "X_1", gradient of "X_2", momentum of "X_1", momentum of "X_2"].
+
+ +#### Outputs (1 - ∞) + +
+
outputs (variadic, heterogeneous) : T3
+
It sequentially contains the new values of optimized tensors and then the new values of their momentum tensors. For example, if two tensors "X_1" and "X_2" are optimized, the output list would be [new value of "X_1," new value of "X_2" new momentum of "X_1", new momentum of "X_2"].
+
+ +#### Type Constraints + +
+
T1 : tensor(float), tensor(double)
+
Constrain input types to float scalars.
+
T2 : tensor(int64)
+
Constrain input types to 64-bit integer scalars.
+
T3 : tensor(float), tensor(double)
+
Constrain input types to float tensors.
+
+ + +#### Examples + +
+momentum + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.1 + +# Create operator. +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) + +# Compute expected outputs of Momentum. +x_new, v_new = apply_momentum(r, t, x, g, v, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +
+momentum_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.85 + +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +v1 = np.array([2.0], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +v2 = np.array([4.0, 1.0], dtype=np.float32) + +# Compute expected outputs of Momentum. +x1_new, v1_new = apply_momentum(r, t, x1, g1, v1, + norm_coefficient, alpha, beta) +x2_new, v2_new = apply_momentum(r, t, x2, g2, v2, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2], + outputs=[x1_new, x2_new, v1_new, v2_new], name='test_momentum_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +
+nesterov_momentum + +```python +# Define operator attributes. +norm_coefficient = 0.01 +alpha = 0.95 +beta = 1.0 + +# Create operator. +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='nesterov', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) + +# Compute expected outputs of Momentum. +x_new, v_new = apply_nesterov(r, t, x, g, v, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_nesterov_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + diff --git a/third_party/onnx/docs/Overview.md b/third_party/onnx/docs/Overview.md new file mode 100644 index 0000000000..c5062e7638 --- /dev/null +++ b/third_party/onnx/docs/Overview.md @@ -0,0 +1,22 @@ + + +Overview +======== + +Deep learning with neural networks is accomplished through computation over dataflow graphs. Some frameworks (such as CNTK, Caffe2, Theano, and TensorFlow) make use of static graphs, while others (such as PyTorch and Chainer) use dynamic graphs. However, they all provide interfaces that make it simple for developers to construct computation graphs and runtimes that process the graphs in an optimized way. The graph serves as an Intermediate Representation (IR) that captures the specific intent of the developer's source code, and is conducive for optimization and translation to run on specific devices (CPU, GPU, FPGA, etc.). + +Why a common IR? +---------------- + +Today, each framework has its own proprietary representation of the graph, though they all provide similar capabilities – meaning each framework is a siloed stack of API, graph, and runtime. Furthermore, frameworks are typically optimized for some characteristic, such as fast training, supporting complicated network architectures, inference on mobile devices, etc. It's up to the developer to select a framework that is optimized for one of these characteristics. Additionally, these optimizations may be better suited for particular stages of development. This leads to significant delays between research and production due to the necessity of conversion. + +With the goal of democratizing AI, we envision empowering developers to select the framework that works best for their project, at any stage of development or deployment. The Open Neural Network Exchange (ONNX) format is a common IR to help establish this powerful ecosystem. + +By providing a common representation of the computation graph, ONNX helps developers choose the right framework for their task, allows authors to focus on innovative enhancements, and enables hardware vendors to streamline optimizations for their platforms. + +ONNX is designed to be an open format. We welcome contributions from the community and encourage everyone to adopt ONNX in their ecosystem. + +Why two variants? +----------------- + +The base definition of ONNX includes the necessary support for machine learning algorithms based on neural network technologies. ONNX-ML includes additional types and standard operators commonly used in classical machine learning algorithms. The two variants were created in order to explicitly recognize the desire for some frameworks to go beyond neural network algorithms in a standardized fashion, while allowing other frameworks to support only neural networks. diff --git a/third_party/onnx/docs/PythonAPIOverview.md b/third_party/onnx/docs/PythonAPIOverview.md new file mode 100644 index 0000000000..78ce4d4383 --- /dev/null +++ b/third_party/onnx/docs/PythonAPIOverview.md @@ -0,0 +1,412 @@ + + +# Python API Overview + +## Loading an ONNX Model +```python +import onnx + +# onnx_model is an in-memory ModelProto +onnx_model = onnx.load('path/to/the/model.onnx') +``` +Runnable IPython notebooks: +- [load_model.ipynb](/onnx/examples/load_model.ipynb) + +## Loading an ONNX Model with External Data + + +* [Default] If the external data is under the same directory of the model, simply use `onnx.load()` +```python +import onnx + +onnx_model = onnx.load('path/to/the/model.onnx') +``` + +* If the external data is under another directory, use `load_external_data_for_model()` to specify the directory path and load after using `onnx.load()` + +```python +import onnx +from onnx.external_data_helper import load_external_data_for_model + +onnx_model = onnx.load('path/to/the/model.onnx', load_external_data=False) +load_external_data_for_model(onnx_model, 'data/directory/path/') +# Then the onnx_model has loaded the external data from the specific directory +``` + +## Converting an ONNX Model to External Data +```python +from onnx.external_data_helper import convert_model_to_external_data + +# onnx_model is an in-memory ModelProto +onnx_model = ... +convert_model_to_external_data(onnx_model, all_tensors_to_one_file=True, location='filename', size_threshold=1024, convert_attribute=False) +# Then the onnx_model has converted raw data as external data +# Must be followed by save +``` + +## Saving an ONNX Model +```python +import onnx + +# onnx_model is an in-memory ModelProto +onnx_model = ... + +# Save the ONNX model +onnx.save(onnx_model, 'path/to/the/model.onnx') +``` +Runnable IPython notebooks: +- [save_model.ipynb](/onnx/examples/save_model.ipynb) + + +## Converting and Saving an ONNX Model to External Data +```python +import onnx + +# onnx_model is an in-memory ModelProto +onnx_model = ... +onnx.save_model(onnx_model, 'path/to/save/the/model.onnx', save_as_external_data=True, all_tensors_to_one_file=True, location='filename', size_threshold=1024, convert_attribute=False) +# Then the onnx_model has converted raw data as external data and saved to specific directory +``` + + +## Manipulating TensorProto and Numpy Array +```python +import numpy +import onnx +from onnx import numpy_helper + +# Preprocessing: create a Numpy array +numpy_array = numpy.array([[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]], dtype=float) +print('Original Numpy array:\n{}\n'.format(numpy_array)) + +# Convert the Numpy array to a TensorProto +tensor = numpy_helper.from_array(numpy_array) +print('TensorProto:\n{}'.format(tensor)) + +# Convert the TensorProto to a Numpy array +new_array = numpy_helper.to_array(tensor) +print('After round trip, Numpy array:\n{}\n'.format(new_array)) + +# Save the TensorProto +with open('tensor.pb', 'wb') as f: + f.write(tensor.SerializeToString()) + +# Load a TensorProto +new_tensor = onnx.TensorProto() +with open('tensor.pb', 'rb') as f: + new_tensor.ParseFromString(f.read()) +print('After saving and loading, new TensorProto:\n{}'.format(new_tensor)) +``` +Runnable IPython notebooks: +- [np_array_tensorproto.ipynb](/onnx/examples/np_array_tensorproto.ipynb) + +## Creating an ONNX Model Using Helper Functions +```python +import onnx +from onnx import helper +from onnx import AttributeProto, TensorProto, GraphProto + + +# The protobuf definition can be found here: +# https://github.com/onnx/onnx/blob/main/onnx/onnx.proto + + +# Create one input (ValueInfoProto) +X = helper.make_tensor_value_info('X', TensorProto.FLOAT, [3, 2]) +pads = helper.make_tensor_value_info('pads', TensorProto.FLOAT, [1, 4]) + +value = helper.make_tensor_value_info('value', AttributeProto.FLOAT, [1]) + + +# Create one output (ValueInfoProto) +Y = helper.make_tensor_value_info('Y', TensorProto.FLOAT, [3, 4]) + +# Create a node (NodeProto) - This is based on Pad-11 +node_def = helper.make_node( + 'Pad', # name + ['X', 'pads', 'value'], # inputs + ['Y'], # outputs + mode='constant', # attributes +) + +# Create the graph (GraphProto) +graph_def = helper.make_graph( + [node_def], # nodes + 'test-model', # name + [X, pads, value], # inputs + [Y], # outputs +) + +# Create the model (ModelProto) +model_def = helper.make_model(graph_def, producer_name='onnx-example') + +print('The model is:\n{}'.format(model_def)) +onnx.checker.check_model(model_def) +print('The model is checked!') +``` +Runnable IPython notebooks: +- [make_model.ipynb](/onnx/examples/make_model.ipynb) +- [Protobufs.ipynb](/onnx/examples/Protobufs.ipynb) + +## Checking an ONNX Model +```python +import onnx + +# Preprocessing: load the ONNX model +model_path = 'path/to/the/model.onnx' +onnx_model = onnx.load(model_path) + +print('The model is:\n{}'.format(onnx_model)) + +# Check the model +try: + onnx.checker.check_model(onnx_model) +except onnx.checker.ValidationError as e: + print('The model is invalid: %s' % e) +else: + print('The model is valid!') +``` +Runnable IPython notebooks: +- [check_model.ipynb](/onnx/examples/check_model.ipynb) + +### Checking a Large ONNX Model >2GB +Current checker supports checking models with external data, but for those models larger than 2GB, please use the model path for onnx.checker and the external data needs to be under the same directory. + +```python +import onnx + +onnx.checker.check_model('path/to/the/model.onnx') +# onnx.checker.check_model(loaded_onnx_model) will fail if given >2GB model +``` + +## Running Shape Inference on an ONNX Model +```python +import onnx +from onnx import helper, shape_inference +from onnx import TensorProto + + +# Preprocessing: create a model with two nodes, Y's shape is unknown +node1 = helper.make_node('Transpose', ['X'], ['Y'], perm=[1, 0, 2]) +node2 = helper.make_node('Transpose', ['Y'], ['Z'], perm=[1, 0, 2]) + +graph = helper.make_graph( + [node1, node2], + 'two-transposes', + [helper.make_tensor_value_info('X', TensorProto.FLOAT, (2, 3, 4))], + [helper.make_tensor_value_info('Z', TensorProto.FLOAT, (2, 3, 4))], +) + +original_model = helper.make_model(graph, producer_name='onnx-examples') + +# Check the model and print Y's shape information +onnx.checker.check_model(original_model) +print('Before shape inference, the shape info of Y is:\n{}'.format(original_model.graph.value_info)) + +# Apply shape inference on the model +inferred_model = shape_inference.infer_shapes(original_model) + +# Check the model and print Y's shape information +onnx.checker.check_model(inferred_model) +print('After shape inference, the shape info of Y is:\n{}'.format(inferred_model.graph.value_info)) +``` +Runnable IPython notebooks: +- [shape_inference.ipynb](/onnx/examples/shape_inference.ipynb) + +### Shape inference a Large ONNX Model >2GB +Current shape_inference supports models with external data, but for those models larger than 2GB, please use the model path for onnx.shape_inference.infer_shapes_path and the external data needs to be under the same directory. You can specify the output path for saving the inferred model; otherwise, the default output path is same as the original model path. + +```python +import onnx + +# output the inferred model to the original model path +onnx.shape_inference.infer_shapes_path('path/to/the/model.onnx') + +# output the inferred model to the specified model path +onnx.shape_inference.infer_shapes_path('path/to/the/model.onnx', 'output/inferred/model.onnx') + +# inferred_model = onnx.shape_inference.infer_shapes(loaded_onnx_model) will fail if given >2GB model +``` + +## Converting Version of an ONNX Model within Default Domain (""/"ai.onnx") +```python +import onnx +from onnx import version_converter, helper + +# Preprocessing: load the model to be converted. +model_path = 'path/to/the/model.onnx' +original_model = onnx.load(model_path) + +print('The model before conversion:\n{}'.format(original_model)) + +# A full list of supported adapters can be found here: +# https://github.com/onnx/onnx/blob/main/onnx/version_converter.py#L21 +# Apply the version conversion on the original model +converted_model = version_converter.convert_version(original_model, ) + +print('The model after conversion:\n{}'.format(converted_model)) +``` + +## Utility Functions +### Extracting Sub-model with Inputs Outputs Tensor Names + +Function `extract_model()` extracts sub-model from an ONNX model. +The sub-model is defined by the names of the input and output tensors *exactly*. + +```python +import onnx + +input_path = 'path/to/the/original/model.onnx' +output_path = 'path/to/save/the/extracted/model.onnx' +input_names = ['input_0', 'input_1', 'input_2'] +output_names = ['output_0', 'output_1'] + +onnx.utils.extract_model(input_path, output_path, input_names, output_names) +``` + +Note: For control-flow operators, e.g. If and Loop, the _boundary of sub-model_, +which is defined by the input and output tensors, should not _cut through_ the +subgraph that is connected to the _main graph_ as attributes of these operators. + +### ONNX Compose + +`onnx.compose` module provides tools to create combined models. + +`onnx.compose.merge_models` can be used to merge two models, by connecting some of the outputs +from the first model with inputs from the second model. By default, inputs/outputs not present in the +`io_map` argument will remain as inputs/outputs of the combined model. + +In this example we merge two models by connecting each output of the first model to an input in the second. The resulting model will have the same inputs as the first model and the same outputs as the second: +```python +import onnx + +model1 = onnx.load('path/to/model1.onnx') +# agraph (float[N] A, float[N] B) => (float[N] C, float[N] D) +# { +# C = Add(A, B) +# D = Sub(A, B) +# } + +model2 = onnx.load('path/to/model2.onnx') +# agraph (float[N] X, float[N] Y) => (float[N] Z) +# { +# Z = Mul(X, Y) +# } + +combined_model = onnx.compose.merge_models( + model1, model2, + io_map=[('C', 'X'), ('D', 'Y')] +) +``` + +Additionally, a user can specify a list of `inputs`/`outputs` to be included in the combined model, +effectively dropping the part of the graph that doesn't contribute to the combined model outputs. +In the following example, we are connecting only one of the two outputs in the first model +to both inputs in the second. By specifying the outputs of the combined model explicitly, we are dropping the output not consumed from the first model, and the relevant part of the graph: +```python +import onnx + +# Default case. Include all outputs in the combined model +combined_model = onnx.compose.merge_models( + model1, model2, + io_map=[('C', 'X'), ('C', 'Y')], +) # outputs: 'D', 'Z' + +# Explicit outputs. 'Y' output and the Sub node are not present in the combined model +combined_model = onnx.compose.merge_models( + model1, model2, + io_map=[('C', 'X'), ('C', 'Y')], + outputs=['Z'], +) # outputs: 'Z' +``` + +`onnx.compose.add_prefix` allows you to add a prefix to names in the model, to avoid a name collision +when merging them. By default, it renames all names in the graph: inputs, outputs, edges, nodes, +initializers, sparse initializers and value infos. + +```python +import onnx + +model = onnx.load('path/to/the/model.onnx') +# model - outputs: ['out0', 'out1'], inputs: ['in0', 'in1'] + +new_model = onnx.compose.add_prefix(model, prefix='m1/') +# new_model - outputs: ['m1/out0', 'm1/out1'], inputs: ['m1/in0', 'm1/in1'] + +# Can also be run in-place +onnx.compose.add_prefix(model, prefix='m1/', inplace=True) +``` + +`onnx.compose.expand_out_dim` can be used to connect models that expect a different number + of dimensions by inserting dimensions with extent one. This can be useful, when combining a + model producing samples with a model that works with batches of samples. + +```python +import onnx + +# outputs: 'out0', shape=[200, 200, 3] +model1 = onnx.load('path/to/the/model1.onnx') + +# outputs: 'in0', shape=[N, 200, 200, 3] +model2 = onnx.load('path/to/the/model2.onnx') + +# outputs: 'out0', shape=[1, 200, 200, 3] +new_model1 = onnx.compose.expand_out_dims(model1, dim_idx=0) + +# Models can now be merged +combined_model = onnx.compose.merge_models( + new_model1, model2, io_map=[('out0', 'in0')] +) + +# Can also be run in-place +onnx.compose.expand_out_dims(model1, dim_idx=0, inplace=True) +``` + +## Tools +### Updating Model's Inputs Outputs Dimension Sizes with Variable Length +Function `update_inputs_outputs_dims` updates the dimension of the inputs and outputs of the model, +to the provided values in the parameter. You could provide both static and dynamic dimension size, +by using dim_param. For more information on static and dynamic dimension size, checkout [Tensor Shapes](IR.md#tensor-shapes). + +The function runs model checker after the input/output sizes are updated. +```python +import onnx +from onnx.tools import update_model_dims + +model = onnx.load('path/to/the/model.onnx') +# Here both 'seq', 'batch' and -1 are dynamic using dim_param. +variable_length_model = update_model_dims.update_inputs_outputs_dims(model, {'input_name': ['seq', 'batch', 3, -1]}, {'output_name': ['seq', 'batch', 1, -1]}) +``` + +## ONNX Parser + +Functions `onnx.parser.parse_model` and `onnx.parser.parse_graph` can be used to create an ONNX model +or graph from a textual representation as shown below. See [Language Syntax](Syntax.md) for more details +about the language syntax. + +```python +input = ''' + agraph (float[N, 128] X, float[128, 10] W, float[10] B) => (float[N, 10] C) + { + T = MatMul(X, W) + S = Add(T, B) + C = Softmax(S) + } +''' +graph = onnx.parser.parse_graph(input) + +input = ''' + < + ir_version: 7, + opset_import: ["" : 10] + > + agraph (float[N, 128] X, float[128, 10] W, float[10] B) => (float[N, 10] C) + { + T = MatMul(X, W) + S = Add(T, B) + C = Softmax(S) + } +''' +model = onnx.parser.parse_model(input) + +``` diff --git a/third_party/onnx/docs/Relicensing.md b/third_party/onnx/docs/Relicensing.md new file mode 100644 index 0000000000..3a65903fb3 --- /dev/null +++ b/third_party/onnx/docs/Relicensing.md @@ -0,0 +1,11 @@ + + +# Relicensing MIT to Apache-2.0 + +The following copyright holders agree that all of their contributions originally submitted to this project under the MIT license are hereby relicensed to Apache-2.0, and are submitted pursuant to the Developer Certificate of Origin, version 1.1: + +Intel Corporation +Microsoft Corporation +NVIDIA Corporation +IBM Corporation +Facebook Inc. diff --git a/third_party/onnx/docs/ShapeInference.md b/third_party/onnx/docs/ShapeInference.md new file mode 100644 index 0000000000..9c51e51e51 --- /dev/null +++ b/third_party/onnx/docs/ShapeInference.md @@ -0,0 +1,137 @@ + + +# ONNX Shape Inference + +ONNX provides an optional implementation of shape inference on ONNX +graphs. This implementation covers each of the core operators, as well +as provides an interface for extensibility. Therefore, you may choose +to invoke the existing shape inference functionality on your graphs, +or to define shape inference implementations to go along with your +custom operators (or both!). Shape inference functions are stored as a +member of the OpSchema objects. + +In ONNX 1.10 release, symbol generation and propagation along with shape +data propagation was added to ONNX graph level shape inference. +Detailed proposal is [here](proposals/SymbolicShapeInfProposal.md) + +## Background + +Please see this [section](IR.md#static-tensor-shapes) of IR.md for a review of static tensor shapes. +In particular, a static tensor shape (represented by a `TensorShapeProto`) is distinct from +a runtime tensor shape. This feature is commonly used when the exact runtime tensor shape is +not known statically (that is, at compile time). + +* A `Tensor` with an undefined `shape` field is used to represent a tensor of unknown rank. +* A `Tensor` with a defined `shape` represents a tensor of known rank. +* Each `Dimension` of a `TensorShapeProto` can have a known integer value +(represented by the `dim_value` field) or it can have an unknown value +represented by a symbolic identified (the `dim_param` field) or it +may have neither field defined (in which case it represents an anonymous +unknown value). + +## Invoking Shape Inference + +Shape inference can be invoked either via C++ or Python. The Python +API is described, with example, +[here](PythonAPIOverview.md#running-shape-inference-on-an-onnx-model). + +The C++ API consists of a single function + +``` +shape_inference::InferShapes( + ModelProto& m, + const ISchemaRegistry* schema_registry); +``` + +The first argument is a `ModelProto` to perform shape inference on, +which is annotated in-place with shape information. The second +argument is optional. + +## Limitations + +Shape inference is not guaranteed to be complete. In particular, some +dynamic behaviors block the flow of shape inference, for example a +Reshape to a dynamically-provide shape. Also, all operators are not +required to have a shape inference implementation. + +Shape inference works only with constants and simple variables. It +does not support arithmetic expressions containing variables. For +example, `Concat` on tensors of shapes `(5, 2)` and `(7, 2)` can be +inferred to produce a result of shape `(12, 2)`, but `Concat` on +tensors of shapes `(5, 2)` and `(N, 2)` will simply produce `(M, 2)`, +rather than containing a representation of `N+5`. Note that differing +unknown symbolic values will be propagated, so the `M` here represents +an unknown quantity that is the same as other occurrences of `M`. + +These limitations are a property of the current implementation, not +fundamental constraints - if you are in need of something more +advanced, do let us know! + +## Implementing Shape Inference For Operators + +You can add a shape inference function to your operator's Schema with + +``` +OpSchema& Opschema::TypeAndShapeInferenceFunction(InferenceFunction inferenceFunction); +``` + +`InferenceFunction` is defined in +[shape_inference.h](/onnx/defs/shape_inference.h), along with the core +interface struct `InferenceContext` and an assortment of helper +methods. `InferenceContext` is the core struct which is provided to +your inference function. It allows accessing information about the +operator's inputs, and also allows writing out inferred information. + +To see numerous examples, search for occurrences of +`TypeAndShapeInferenceFunction` in the codebase. One that is +relatively involved is the implementation for `Concat`, in +onnx/defs/tensor/defs.cc. + +Please note the following points when implementing the shape-inference method for +operators to avoid common errors: + +* Before accessing the `shape` of any input, the code must check that +the shape is available. If unavailable, it should be treated as a dynamic +tensor whose rank is unknown and handled appropriately. Usually, the +shape-inference logic is guarded by a call to `hasInputShape` or +`hasNInputShapes`. + +* Before accessing the `dim_value` or `dim_param` of any dimension, the +code must check if these fields have a value. In particular, the code must +handle the possibility that the dimension may not have a statically +known value. + +There are several utility functions in [shape_inference.h](/onnx/defs/shape_inference.h) +to handle various common situations. + +* Use `checkInputRank` for inputs that must have a fixed rank. (See the +inference for `RoiAlign` as an example.) + +* `unifyInputDim` and `unifyDim` and `updateOutputShape` can be used +when multiple input dims are expected to be the same, and when input +dimensions are propagated to specific output dimensions. (See the inference +for `RoiAlign` for an example.) + +* Overloaded operators `*` and `/` can be used on symbolic dimensions when output +dimensions are computed from input dimensions using arithmetic. (See the inference +for `SpaceToDepth` for an example.) + +These utilities handle missing shapes and dimensions safely. + +_Example_: Consider a simple matrix-multiplication op that expects inputs of shape +`[M,K]` and `[K,N]` and returns an output of shape `[M,N]`. This can be coded +up as below: +```cpp + // Check that input 0 has rank 2 (if its rank is known). + checkInputRank(ctx, 0, 2); + // Check that input 1 has rank 2 (if its rank is known). + checkInputRank(ctx, 1, 2); + Dim M, K, N; + // Check various dimensions, handling missing dimensions/shapes safely. + unifyInputDim(ctx, 0, 0, M); + unifyInputDim(ctx, 0, 1, K); + unifyInputDim(ctx, 1, 0, K); + unifyInputDim(ctx, 1, 1, N); + updateOutputShape(ctx, 0, {M. N}); +``` + diff --git a/third_party/onnx/docs/Syntax.md b/third_party/onnx/docs/Syntax.md new file mode 100644 index 0000000000..3c11d1f552 --- /dev/null +++ b/third_party/onnx/docs/Syntax.md @@ -0,0 +1,77 @@ + + +Overview +======== + +This document describes a textual syntax for ONNX models, which is currently an experimental feature. +The syntax enables a compact and readable representation of ONNX models. It is motivated by a couple +of use-cases. One is to enable compact description of test-cases and its use in CI (both in the ONNX +repo as well as in other dependent repos such as ONNX-MLIR). The second is to help simplify the +definition of ONNX functions. Several of the existing function-definitions are verbose, and the +use of this syntax will lead to more compact, readable, and easier-to-maintain function definitions. +Efficient representation and efficient parsing of very large tensor-constants is *not* a goal. +Alternative methods should be used for that. + +The API +------- + +The key parser methods are the ```OnnxParser::Parse``` methods, used as below. + +```cpp + const char* code = R"ONNX( +< + ir_version: 7, + opset_import: [ "" : 10 ] +> +agraph (float[N, 128] X, float[128, 10] W, float[10] B) => (float[N, 10] C) +{ + T = MatMul(X, W) + S = Add(T, B) + C = Softmax(S) +} +)ONNX"; + + ModelProto model; + OnnxParser::Parse(model, code); + + checker::check_model(model); +``` + +See the [test-cases](../onnx/test/cpp/parser_test.cc) for more examples illustrating the API and syntax. + +The Syntax +---------- + +The grammar below describes the syntax: + +``` + id-list ::= id (',' id)* + tensor-dim ::= '?' | id | int-constant + tensor-dims ::= tensor-dim (',' tensor-dim)* + tensor-type ::= prim-type | prim-type '[' ']' | prim-type '[' tensor-dims ']' + type ::= tensor-type | 'seq' '(' type ')' | 'map' '(' prim-type ',' type ')' + | 'optional' '(' type ')' | 'sparse_tensor' '(' tensor-type ')' + value-info ::= type id + value-infos ::= value-info (',' value-info)* + value-info-list ::= '(' value-infos? ')' + prim-constants ::= prim-constant (',' prim-constant)* + tensor-constant ::= tensor-type (id)? ('=')? '{' prim-constants '}' + attr-ref ::= '@' id + single-attr-value ::= tensor-constant | graph | prim-constant | attr-ref + attr-value-list ::= '[' single-attr-value (',' single-attr-value)* ']' + attr-value ::= single-attr-value | attr-value-list + attr-type ::= ':' id + attr ::= id attr-type? '=' attr-value + attr-list ::= '<' attr (',' attr)* '>' + node ::= id-list? '=' qualified-id attr-list? '(' id-list? ')' + | id-list? '=' qualified-id '(' id-list? ')' attr-list + node-list ::= '{' node* '}' + graph ::= id value-info-list '=>' value-info-list node-list + other-data ::= id ':' value + other-data-list ::= '<' other-data (',' other-data)* '>' + fun-attr-list ::= '<' id-list '>' + fun-input-list ::= '(' id-list ')' + fun-output-list ::= '(' id-list ')' + function ::= other-data-list? id fun-attr-list? fun-input-list '=>' fun-output-list node-list + model ::= other-data-list? graph function* +``` diff --git a/third_party/onnx/docs/TestCoverage-ml.md b/third_party/onnx/docs/TestCoverage-ml.md new file mode 100644 index 0000000000..1f4e2e0049 --- /dev/null +++ b/third_party/onnx/docs/TestCoverage-ml.md @@ -0,0 +1,87 @@ + +# Test Coverage Report (ONNX-ML Operators) +## Outlines +* [Node Test Coverage](#node-test-coverage) +* [Model Test Coverage](#model-test-coverage) +* [Overall Test Coverage](#overall-test-coverage) +# Node Test Coverage +## Summary +Node tests have covered 0/18 (0.00%, 0 generators excluded) common operators. + +Node tests have covered 0/0 (N/A) experimental operators. + +* [Covered Common Operators](#covered-common-operators) +* [No Cover Common Operators](#no-cover-common-operators) +* [Covered Experimental Operators](#covered-experimental-operators) +* [No Cover Experimental Operators](#no-cover-experimental-operators) + +## 💚Covered Common Operators +
+ +## 💔No Cover Common Operators +### ArrayFeatureExtractor (call for test cases) + + +### Binarizer (call for test cases) + + +### CastMap (call for test cases) + + +### CategoryMapper (call for test cases) + + +### DictVectorizer (call for test cases) + + +### FeatureVectorizer (call for test cases) + + +### Imputer (call for test cases) + + +### LabelEncoder (call for test cases) + + +### LinearClassifier (call for test cases) + + +### LinearRegressor (call for test cases) + + +### Normalizer (call for test cases) + + +### OneHotEncoder (call for test cases) + + +### SVMClassifier (call for test cases) + + +### SVMRegressor (call for test cases) + + +### Scaler (call for test cases) + + +### TreeEnsembleClassifier (call for test cases) + + +### TreeEnsembleRegressor (call for test cases) + + +### ZipMap (call for test cases) + + +
+ +## 💚Covered Experimental Operators +
+ +## 💔No Cover Experimental Operators +
+ +# Model Test Coverage +No model tests present for selected domain +# Overall Test Coverage +## To be filled. diff --git a/third_party/onnx/docs/TestCoverage.md b/third_party/onnx/docs/TestCoverage.md new file mode 100644 index 0000000000..34f116dadc --- /dev/null +++ b/third_party/onnx/docs/TestCoverage.md @@ -0,0 +1,16718 @@ + +# Test Coverage Report (ONNX Core Operators) +## Outlines +* [Node Test Coverage](#node-test-coverage) +* [Model Test Coverage](#model-test-coverage) +* [Overall Test Coverage](#overall-test-coverage) +# Node Test Coverage +## Summary +Node tests have covered 156/171 (91.23%, 5 generators excluded) common operators. + +Node tests have covered 0/0 (N/A) experimental operators. + +* [Covered Common Operators](#covered-common-operators) +* [No Cover Common Operators](#no-cover-common-operators) +* [Covered Experimental Operators](#covered-experimental-operators) +* [No Cover Experimental Operators](#no-cover-experimental-operators) + +## 💚Covered Common Operators +### Abs +There are 1 test cases, listed as following: +
+abs + +```python +node = onnx.helper.make_node( + 'Abs', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = abs(x) + +expect(node, inputs=[x], outputs=[y], + name='test_abs') +``` + +
+ + +### Acos +There are 1 test cases, listed as following: +
+acos + +```python +node = onnx.helper.make_node( + 'Acos', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arccos(x) +expect(node, inputs=[x], outputs=[y], + name='test_acos_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) +y = np.arccos(x) +expect(node, inputs=[x], outputs=[y], + name='test_acos') +``` + +
+ + +### Acosh +There are 1 test cases, listed as following: +
+acosh + +```python +node = onnx.helper.make_node( + 'Acosh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([10, np.e, 1]).astype(np.float32) +y = np.arccosh(x) # expected output [2.99322295, 1.65745449, 0.] +expect(node, inputs=[x], outputs=[y], + name='test_acosh_example') + +x = np.random.uniform(1.0, 10.0, (3, 4, 5)).astype(np.float32) +y = np.arccosh(x) +expect(node, inputs=[x], outputs=[y], + name='test_acosh') +``` + +
+ + +### Adagrad +There are 2 test cases, listed as following: +
+adagrad + +```python +# Define operator attributes. +norm_coefficient = 0.001 +epsilon = 1e-5 +decay_factor = 0.1 + +# Create operator. +node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X', 'G', 'H'], + outputs=['X_new', 'H_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.0], dtype=np.float32) +g = np.array([-1.0], dtype=np.float32) +h = np.array([2.0], dtype=np.float32) + +# Compute expected outputs of Adagrad. +x_new, h_new = apply_adagrad(r, t, x, g, h, + norm_coefficient, epsilon, decay_factor) + +# Check results. +expect(node, inputs=[r, t, x, g, h], + outputs=[x_new, h_new], name='test_adagrad', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+
+adagrad_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +epsilon = 1e-5 +decay_factor = 0.1 + +node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +h1 = np.array([2.0], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +h2 = np.array([4.0, 1.0], dtype=np.float32) + +# Compute expected outputs of Adagrad. +x1_new, h1_new = apply_adagrad(r, t, x1, g1, h1, + norm_coefficient, epsilon, decay_factor) +x2_new, h2_new = apply_adagrad(r, t, x2, g2, h2, + norm_coefficient, epsilon, decay_factor) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, h1, h2], + outputs=[x1_new, x2_new, h1_new, h2_new], name='test_adagrad_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +### Adam +There are 2 test cases, listed as following: +
+adam + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.1 +epsilon = 1e-7 + +# Create operator. +node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X', 'G', 'V', 'H'], + outputs=['X_new', 'V_new', 'H_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + epsilon=epsilon, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) +h = np.array([0.1, 0.1], dtype=np.float32) + +# Compute expected outputs of Adam. +x_new, v_new, h_new = apply_adam(r, t, x, g, v, h, + norm_coefficient, 0.0, alpha, beta, + epsilon) + +# Check results. +expect(node, inputs=[r, t, x, g, v, h], + outputs=[x_new, v_new, h_new], name='test_adam', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+
+adam_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.85 +epsilon = 1e-2 + +node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'V1', 'V2', + 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +v1 = np.array([2.0], dtype=np.float32) +h1 = np.array([0.5], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +v2 = np.array([4.0, 1.0], dtype=np.float32) +h2 = np.array([1.0, 10.0], dtype=np.float32) + +# Compute expected outputs of Adam. +x1_new, v1_new, h1_new = apply_adam(r, t, x1, g1, v1, h1, + norm_coefficient, 0.0, alpha, beta, + epsilon) +x2_new, v2_new, h2_new = apply_adam(r, t, x2, g2, v2, h2, + norm_coefficient, 0.0, alpha, beta, + epsilon) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2, h1, h2], + outputs=[x1_new, x2_new, v1_new, v2_new, h1_new, h2_new], + name='test_adam_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +### Add +There are 3 test cases, listed as following: +
+add + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add') +``` + +
+
+add_broadcast + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_bcast') +``` + +
+
+add_uint8 + +```python +node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], +) + +x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_uint8') +``` + +
+ + +### And +There are 2 test cases, listed as following: +
+and + +```python +node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and4d') +``` + +
+
+and_broadcast + +```python +node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_and(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v4d') +``` + +
+ + +### ArgMax +There are 8 test cases, listed as following: +
+default_axes_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + +# result: [[1, 1]] +result = argmax_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmax_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random') +``` + +
+
+default_axes_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + +# result: [[1, 1]] +result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random_select_last_index') +``` + +
+
+keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [[0], [1]] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random') +``` + +
+
+keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [1]] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random_select_last_index') +``` + +
+
+negative_axis_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [[0], [1]] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random') +``` + +
+
+negative_axis_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [1]] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random_select_last_index') +``` + +
+
+no_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# result: [0, 1] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random') +``` + +
+
+no_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [1, 1] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random_select_last_index') +``` + +
+ + +### ArgMin +There are 8 test cases, listed as following: +
+default_axes_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + +# The content of result is : [[0], [0]] +result = argmin_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmin_use_numpy(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random') +``` + +
+
+default_axes_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + +# result: [[0, 0]] +result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [1, 3, 4] +result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random_select_last_index') +``` + +
+
+keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1], [0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random') +``` + +
+
+keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 1, 4] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random_select_last_index') +``` + +
+
+negative_axis_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1], [0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random') +``` + +
+
+negative_axis_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = -1 +keepdims = 1 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1], [0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 3, 1] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random_select_last_index') +``` + +
+
+no_keepdims + +```python +data = np.array([[2, 1], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) +# The content of result is : [[1, 0]] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random') +``` + +
+
+no_keepdims_select_last_index + +```python +data = np.array([[2, 2], [3, 10]], dtype=np.float32) +axis = 1 +keepdims = 0 +node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) +# result: [[1, 0]] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example_select_last_index') + +data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) +# result's shape: [2, 4] +result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) +expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random_select_last_index') +``` + +
+ + +### Asin +There are 1 test cases, listed as following: +
+asin + +```python +node = onnx.helper.make_node( + 'Asin', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arcsin(x) +expect(node, inputs=[x], outputs=[y], + name='test_asin_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) +y = np.arcsin(x) +expect(node, inputs=[x], outputs=[y], + name='test_asin') +``` + +
+ + +### Asinh +There are 1 test cases, listed as following: +
+asinh + +```python +node = onnx.helper.make_node( + 'Asinh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.arcsinh(x) # expected output [-0.88137358, 0., 0.88137358] +expect(node, inputs=[x], outputs=[y], + name='test_asinh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.arcsinh(x) +expect(node, inputs=[x], outputs=[y], + name='test_asinh') +``` + +
+ + +### Atan +There are 1 test cases, listed as following: +
+atan + +```python +node = onnx.helper.make_node( + 'Atan', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.arctan(x) +expect(node, inputs=[x], outputs=[y], + name='test_atan_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.arctan(x) +expect(node, inputs=[x], outputs=[y], + name='test_atan') +``` + +
+ + +### Atanh +There are 1 test cases, listed as following: +
+atanh + +```python +node = onnx.helper.make_node( + 'Atanh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-0.5, 0, 0.5]).astype(np.float32) +y = np.arctanh(x) # expected output [-0.54930615, 0., 0.54930615] +expect(node, inputs=[x], outputs=[y], + name='test_atanh_example') + +x = np.random.uniform(0.0, 1.0, (3, 4, 5)).astype(np.float32) +y = np.arctanh(x) +expect(node, inputs=[x], outputs=[y], + name='test_atanh') +``` + +
+ + +### AveragePool +There are 13 test cases, listed as following: +
+averagepool_1d_default + +```python +""" +input_shape: [1, 3, 32] +output_shape: [1, 3, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], +) +x = np.random.randn(1, 3, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2] +strides = [1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_1d_default') +``` + +
+
+averagepool_2d_ceil + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [6, 7.5], + [12, 13.5]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_ceil') +``` + +
+
+averagepool_2d_default + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 31, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_default') +``` + +
+
+averagepool_2d_pads + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = 2 +pad_top = 2 +pad_right = 2 +pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads') +``` + +
+
+averagepool_2d_pads_count_include_pad + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2], + count_include_pad=1, +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = 2 +pad_top = 2 +pad_right = 2 +pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=0) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG', count_include_pad=1) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads_count_include_pad') +``` + +
+
+averagepool_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 7.5, 8, 8.5, 9], + [9.5, 10, 10.5, 11, 11.5], + [12, 12.5, 13, 13.5, 14], + [14.5, 15, 15.5, 16, 16.5], + [17, 17.5, 18, 18.5, 19]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads') +``` + +
+
+averagepool_2d_precomputed_pads_count_include_pad + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2], + count_include_pad=1 +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[2.5200, 3.6000, 4.8000, 4.0800, 3.2400], + [4.5600, 6.4000, 8.4000, 7.0400, 5.5200], + [7.2000, 10.0000, 13.0000, 10.8000, 8.4000], + [6.9600, 9.6000, 12.4000, 10.2400, 7.9200], + [6.1200, 8.4000, 10.8000, 8.8800, 6.8400]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads_count_include_pad') +``` + +
+
+averagepool_2d_precomputed_same_upper + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 3, 3] +pad_shape: [2, 2] -> [1, 1, 1, 1] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[4, 5.5, 7], + [11.5, 13, 14.5], + [19, 20.5, 22]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_same_upper') +``` + +
+
+averagepool_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[4, 6], + [14, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_strides') +``` + +
+
+averagepool_2d_same_lower + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [1, 0, 1, 0] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) +pad_bottom = pad_shape[0] // 2 +pad_top = pad_shape[0] - pad_bottom +pad_right = pad_shape[1] // 2 +pad_left = pad_shape[1] - pad_right +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_lower') +``` + +
+
+averagepool_2d_same_upper + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [0, 1, 0, 1] by axis +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) +pad_top = pad_shape[0] // 2 +pad_bottom = pad_shape[0] - pad_top +pad_left = pad_shape[1] // 2 +pad_right = pad_shape[1] - pad_left +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_upper') +``` + +
+
+averagepool_2d_strides + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 10, 10] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (5, 5) +strides = (3, 3) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_strides') +``` + +
+
+averagepool_3d_default + +```python +""" +input_shape: [1, 3, 32, 32, 32] +output_shape: [1, 3, 31, 31, 31] +""" +node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], +) +x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2, 2, 2] +strides = [1, 1, 1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'AVG') + +expect(node, inputs=[x], outputs=[y], name='test_averagepool_3d_default') +``` + +
+ + +### BatchNormalization +There are 2 test cases, listed as following: +
+batchnormalization + +```python +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +y = _batchnorm_test_mode(x, s, bias, mean, var).astype(np.float32) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_example') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +epsilon = 1e-2 +y = _batchnorm_test_mode(x, s, bias, mean, var, epsilon).astype(np.float32) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], + epsilon=epsilon, +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_epsilon') +``` + +
+
+train + +```python +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +# using np.bool(1) while generating test data with "'bool' object has no attribute 'dtype'" +# working around by using np.byte(1).astype(bool) +training_mode = 1 +y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + training_mode=training_mode +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_example_training_mode') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +mean = np.random.randn(3).astype(np.float32) +var = np.random.rand(3).astype(np.float32) +training_mode = 1 +momentum = 0.9 +epsilon = 1e-2 +y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var, momentum, + epsilon) + +node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + epsilon=epsilon, + training_mode=training_mode +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_epsilon_training_mode') +``` + +
+ + +### Bernoulli +There are 3 test cases, listed as following: +
+bernoulli_with_dtype + +```python +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y = bernoulli_reference_implementation(x, np.float64) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli_double') +``` + +
+
+bernoulli_with_seed + +```python +seed = np.float(0) +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + seed=seed, +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y = bernoulli_reference_implementation(x, np.float32) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli_seed') +``` + +
+
+bernoulli_without_dtype + +```python +node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], +) + +x = np.random.uniform(0.0, 1.0, 10).astype(np.float) +y = bernoulli_reference_implementation(x, np.float) +expect(node, inputs=[x], outputs=[y], name='test_bernoulli') +``` + +
+ + +### BitShift +There are 8 test cases, listed as following: +
+left_unit16 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint16) +y = np.array([1, 2, 3]).astype(np.uint16) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint16') +``` + +
+
+left_unit32 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint32) +y = np.array([1, 2, 3]).astype(np.uint32) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint32') +``` + +
+
+left_unit64 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint64) +y = np.array([1, 2, 3]).astype(np.uint64) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint64') +``` + +
+
+left_unit8 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" +) + +x = np.array([16, 4, 1]).astype(np.uint8) +y = np.array([1, 2, 3]).astype(np.uint8) +z = x << y # expected output [32, 16, 8] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint8') +``` + +
+
+right_unit16 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint16) +y = np.array([1, 2, 3]).astype(np.uint16) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint16') +``` + +
+
+right_unit32 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint32) +y = np.array([1, 2, 3]).astype(np.uint32) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint32') +``` + +
+
+right_unit64 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint64) +y = np.array([1, 2, 3]).astype(np.uint64) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint64') +``` + +
+
+right_unit8 + +```python +node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" +) + +x = np.array([16, 4, 1]).astype(np.uint8) +y = np.array([1, 2, 3]).astype(np.uint8) +z = x >> y # expected output [8, 1, 0] +expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint8') +``` + +
+ + +### Cast +There are 1 test cases, listed as following: +
+cast + +```python +shape = (3, 4) +test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), +] + +for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + node = onnx.helper.make_node( + 'Cast', + inputs=['input'], + outputs=['output'], + to=getattr(TensorProto, to_type), + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type) +``` + +
+ + +### CastLike +There are 1 test cases, listed as following: +
+castlike + +```python +shape = (3, 4) +test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), +] + +for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it np.object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(np.object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(np.object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + like = output.flatten()[0:1] + node = onnx.helper.make_node( + 'CastLike', + inputs=['input', 'like'], + outputs=['output'], + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto, output_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type) +``` + +
+ + +### Ceil +There are 1 test cases, listed as following: +
+ceil + +```python +node = onnx.helper.make_node( + 'Ceil', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1.5, 1.2]).astype(np.float32) +y = np.ceil(x) # expected output [-1., 2.] +expect(node, inputs=[x], outputs=[y], + name='test_ceil_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.ceil(x) +expect(node, inputs=[x], outputs=[y], + name='test_ceil') +``` + +
+ + +### Celu +There are 1 test cases, listed as following: +
+celu + +```python +alpha = 2.0 +node = onnx.helper.make_node( + 'Celu', + inputs=['X'], + outputs=['Y'], + alpha=alpha, +) + +input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + +# Calculate expected output data +positive_input = np.maximum(0, input_data) +negative_input = np.minimum(0, alpha * (np.exp(input_data / alpha) - 1)) +expected_output = positive_input + negative_input + +expect(node, inputs=[input_data], outputs=[expected_output], + name='test_celu') +``` + +
+ + +### Clip +There are 3 test cases, listed as following: +
+clip + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], +) + +x = np.array([-2, 0, 2]).astype(np.float32) +min_val = np.float32(-1) +max_val = np.float32(1) +y = np.clip(x, min_val, max_val) # expected output [-1., 0., 1.] +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, min_val, max_val) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip') +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], +) + +min_val = np.float32(-5) +max_val = np.float32(5) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-1, 0, 1]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_inbounds') + +x = np.array([-6, 0, 6]).astype(np.float32) +y = np.array([-5, 0, 5]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_outbounds') + +x = np.array([-1, 0, 6]).astype(np.float32) +y = np.array([-1, 0, 5]).astype(np.float32) +expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_splitbounds') +``` + +
+
+clip_default + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], +) +min_val = np.float32(0) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, min_val, np.inf) +expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_min') + +no_min = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], +) +max_val = np.float32(0) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, -np.inf, max_val) +expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_max') + +no_max = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-1, 0, 1]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_clip_default_inbounds') +``` + +
+
+clip_default_int8 + +```python +node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], +) +min_val = np.int8(0) +x = np.random.randn(3, 4, 5).astype(np.int8) +y = np.clip(x, min_val, np.iinfo(np.int8).max) +expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_int8_min') + +no_min = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], +) +max_val = np.int8(0) +x = np.random.randn(3, 4, 5).astype(np.int8) +y = np.clip(x, np.iinfo(np.int8).min, max_val) +expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_int8_max') + +no_max = "" # optional input, not supplied +node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.int8) +y = np.array([-1, 0, 1]).astype(np.int8) +expect(node, inputs=[x], outputs=[y], + name='test_clip_default_int8_inbounds') +``` + +
+ + +### Compress +There are 4 test cases, listed as following: +
+compress_0 + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=0, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1, 1]) +output = np.compress(condition, input, axis=0) +#print(output) +#[[ 3. 4.] +# [ 5. 6.]] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_0') +``` + +
+
+compress_1 + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=1, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1]) +output = np.compress(condition, input, axis=1) +#print(output) +#[[ 2.] +# [ 4.] +# [ 6.]] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_1') +``` + +
+
+compress_default_axis + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1, 0, 0, 1]) +output = np.compress(condition, input) +#print(output) +#[ 2., 5.] + +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_default_axis') +``` + +
+
+compress_negative_axis + +```python +node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=-1, +) +input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) +condition = np.array([0, 1]) +output = np.compress(condition, input, axis=-1) +# print(output) +#[[ 2.] +# [ 4.] +# [ 6.]] +expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_negative_axis') +``` + +
+ + +### Concat +There are 1 test cases, listed as following: +
+concat + +```python +test_cases: Dict[Text, Sequence[Any]] = { + '1d': ([1, 2], + [3, 4]), + '2d': ([[1, 2], [3, 4]], + [[5, 6], [7, 8]]), + '3d': ([[[1, 2], [3, 4]], [[5, 6], [7, 8]]], + [[[9, 10], [11, 12]], [[13, 14], [15, 16]]]) +} + +for test_case, values_ in test_cases.items(): + values = [np.asarray(v, dtype=np.float32) for v in values_] + for i in range(len(values[0].shape)): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_' + str(i)) + + for i in range(-len(values[0].shape), 0): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_negative_' + str(abs(i))) +``` + +
+ + +### Constant +There are 1 test cases, listed as following: +
+constant + +```python +values = np.random.randn(5, 5).astype(np.float32) +node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['values'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=values.shape, + vals=values.flatten().astype(float), + ), +) + +expect(node, inputs=[], outputs=[values], + name='test_constant') +``` + +
+ + +### ConstantOfShape +There are 3 test cases, listed as following: +
+float_ones + +```python +x = np.array([4, 3, 2]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.FLOAT, + [1], [1]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) + +y = np.ones(x, dtype=np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_float_ones') +``` + +
+
+int32_shape_zero + +```python +x = np.array([0, ]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) +y = np.zeros(x, dtype=np.int32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_shape_zero') +``` + +
+
+int32_zeros + +```python +x = np.array([10, 6]).astype(np.int64) +tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) +node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, +) +y = np.zeros(x, dtype=np.int32) +expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_zeros') +``` + +
+ + +### Conv +There are 3 test cases, listed as following: +
+conv + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with padding +node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[1, 1, 1, 1], +) +y_with_padding = np.array([[[[12., 21., 27., 33., 24.], # (1, 1, 5, 5) output tensor + [33., 54., 63., 72., 51.], + [63., 99., 108., 117., 81.], + [93., 144., 153., 162., 111.], + [72., 111., 117., 123., 84.]]]]).astype(np.float32) +expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_basic_conv_with_padding') + +# Convolution without padding +node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[0, 0, 0, 0], +) +y_without_padding = np.array([[[[54., 63., 72.], # (1, 1, 3, 3) output tensor + [99., 108., 117.], + [144., 153., 162.]]]]).astype(np.float32) +expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_basic_conv_without_padding') +``` + +
+
+conv_with_autopad_same + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with auto_pad='SAME_LOWER' and strides=2 +node = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + auto_pad='SAME_LOWER', + kernel_shape=[3, 3], + strides=[2, 2], +) +y = np.array([[[[12., 27., 24.], + [63., 108., 81.], + [72., 117., 84.]]]]).astype(np.float32) +expect(node, inputs=[x, W], outputs=[y], + name='test_conv_with_autopad_same') +``` + +
+
+conv_with_strides + +```python + +x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 7, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.]]]]).astype(np.float32) +W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +# Convolution with strides=2 and padding +node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 1, 1, 1], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_with_padding = np.array([[[[12., 27., 24.], # (1, 1, 4, 3) output tensor + [63., 108., 81.], + [123., 198., 141.], + [112., 177., 124.]]]]).astype(np.float32) +expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_conv_with_strides_padding') + +# Convolution with strides=2 and no padding +node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[0, 0, 0, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_without_padding = np.array([[[[54., 72.], # (1, 1, 3, 2) output tensor + [144., 162.], + [234., 252.]]]]).astype(np.float32) +expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_conv_with_strides_no_padding') + +# Convolution with strides=2 and padding only along one dimension (the H dimension in NxCxHxW tensor) +node_with_asymmetric_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 0, 1, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 +) +y_with_asymmetric_padding = np.array([[[[21., 33.], # (1, 1, 4, 2) output tensor + [99., 117.], + [189., 207.], + [171., 183.]]]]).astype(np.float32) +expect(node_with_asymmetric_padding, inputs=[x, W], outputs=[y_with_asymmetric_padding], + name='test_conv_with_strides_and_asymmetric_padding') +``` + +
+ + +### ConvInteger +There are 2 test cases, listed as following: +
+with_padding + +```python + +x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) +x_zero_point = np.uint8(1) +w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + +y = np.array([1, 3, 5, 3, 5, 12, 16, 9, 11, 24, 28, 15, 7, 15, 17, 9]).astype(np.int32).reshape((1, 1, 4, 4)) + +# ConvInteger with padding +convinteger_node_with_padding = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y'], + pads=[1, 1, 1, 1],) + +expect(convinteger_node_with_padding, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_with_padding') +``` + +
+
+without_padding + +```python + +x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) +x_zero_point = np.uint8(1) +w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + +y = np.array([12, 16, 24, 28]).astype(np.int32).reshape(1, 1, 2, 2) + +# ConvInteger without padding +convinteger_node = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y']) + +expect(convinteger_node, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_without_padding') +``` + +
+ + +### ConvTranspose +There are 7 test cases, listed as following: +
+convtranspose + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[[0., 1., 3., 3., 2.], # (1, 2, 5, 5) + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]], + + [[0., 1., 3., 3., 2.], + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose') +``` + +
+
+convtranspose_1d + +```python +x = np.array([[[0., 1., 2.]]]).astype(np.float32) # (1, 1, 3) + +W = np.array([[[1., 1., 1.], # (1, 2, 3) + [1., 1., 1.]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[0., 1., 3., 3., 2.], # (1, 2, 5) + [0., 1., 3., 3., 2.]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_1d') +``` + +
+
+convtranspose_3d + +```python +x = np.array([[[[[0., 1., 2., 3., 4.], # (1, 1, 3, 4, 5) + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.]], + [[20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.], + [35., 36., 37., 38., 39.]], + [[40., 41., 42., 43., 44.], + [45., 46., 47., 48., 49.], + [50., 51., 52., 53., 54.], + [55., 56., 57., 58., 59.]]]]]).astype(np.float32) + +W = np.array([[[[[1., 1., 1.], # (1, 2, 3, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]], + [[[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + +y = np.array([[[[[0., 1., 3., 6., 9., 7., 4.], # (1, 2, 5, 6, 7) + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]], + + [[[0., 1., 3., 6., 9., 7., 4.], + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_3d') +``` + +
+
+convtranspose_attributes + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +y = np.array([[[[0., 0., 1., 1., 3., 2., 2., 0.], # (1, 2, 10, 8) + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]], + + [[0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_shape=[10, 8]) +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_output_shape') + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_padding=[1, 1]) +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pad') + +node = onnx.helper.make_node( + 'ConvTranspose', ['X', 'W'], ['Y'], + name='test', + strides=[3, 2], + output_shape=[10, 8], + kernel_shape=[3, 3], + output_padding=[1, 1] +) +expect(node, inputs=[x, W], outputs=[y], + name='test_convtranspose_kernel_shape') +``` + +
+
+convtranspose_autopad_same + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], auto_pad="SAME_UPPER", strides=[2, 2]) + +y = np.array([[[[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]], + + [[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_autopad_same') +``` + +
+
+convtranspose_dilations + +```python +x = np.array([[[[3., 8., 1.], # (1, 1, 3, 3) + [9., 5., 7.], + [3., 2., 6.]]]]).astype(np.float32) +W = np.array([[[[7., 2.], # (1, 1, 2, 2) + [1., 9.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], dilations=[2, 2]) + +y = np.array([[[[21., 56., 13., 16., 2.], # [1, 1, 5, 5] + [63., 35., 67., 10., 14.], + [24., 22., 76., 76., 21.], + [9., 5., 88., 45., 63.], + [3., 2., 33., 18., 54.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_dilations') +``` + +
+
+convtranspose_pads + +```python +x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + +W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + +node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + pads=[1, 2, 1, 2]) + +y = np.array([[[[1., 1., 3.], # (1, 2, 7, 3) + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]], + + [[1., 1., 3.], + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]]]]).astype(np.float32) + +expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pads') +``` + +
+ + +### Cos +There are 1 test cases, listed as following: +
+cos + +```python +node = onnx.helper.make_node( + 'Cos', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.cos(x) +expect(node, inputs=[x], outputs=[y], + name='test_cos_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.cos(x) +expect(node, inputs=[x], outputs=[y], + name='test_cos') +``` + +
+ + +### Cosh +There are 1 test cases, listed as following: +
+cosh + +```python +node = onnx.helper.make_node( + 'Cosh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.cosh(x) # expected output [1.54308069, 1., 1.54308069] +expect(node, inputs=[x], outputs=[y], + name='test_cosh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.cosh(x) +expect(node, inputs=[x], outputs=[y], + name='test_cosh') +``` + +
+ + +### CumSum +There are 7 test cases, listed as following: +
+cumsum_1d + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'] +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([1., 3., 6., 10., 15.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d') +``` + +
+
+cumsum_1d_exclusive + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + exclusive=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([0., 1., 3., 6., 10.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_exclusive') +``` + +
+
+cumsum_1d_reverse + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([15., 14., 12., 9., 5.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse') +``` + +
+
+cumsum_1d_reverse_exclusive + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1, + exclusive=1 +) +x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) +axis = np.int32(0) +y = np.array([14., 12., 9., 5., 0.]).astype(np.float64) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse_exclusive') +``` + +
+
+cumsum_2d_axis_0 + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(0) +y = np.array([1., 2., 3., 5., 7., 9.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_0') +``` + +
+
+cumsum_2d_axis_1 + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(1) +y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_1') +``` + +
+
+cumsum_2d_negative_axis + +```python +node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], +) +x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) +axis = np.int32(-1) +y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) +expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_negative_axis') +``` + +
+ + +### DepthToSpace +There are 2 test cases, listed as following: +
+crd_mode_example + +```python +node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='CRD' +) + +# (1, 8, 2, 3) input tensor +x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + +# (1, 2, 4, 6) output tensor +y = np.array([[[[0., 9., 1., 10., 2., 11.], + [18., 27., 19., 28., 20., 29.], + [3., 12., 4., 13., 5., 14.], + [21., 30., 22., 31., 23., 32.]], + [[36., 45., 37., 46., 38., 47.], + [54., 63., 55., 64., 56., 65.], + [39., 48., 40., 49., 41., 50.], + [57., 66., 58., 67., 59., 68.]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_crd_mode_example') +``` + +
+
+default_mode_example + +```python +node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='DCR' +) + +# (1, 8, 2, 3) input tensor +x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + +# (1, 2, 4, 6) output tensor +y = np.array([[[[0., 18., 1., 19., 2., 20.], + [36., 54., 37., 55., 38., 56.], + [3., 21., 4., 22., 5., 23.], + [39., 57., 40., 58., 41., 59.]], + [[9., 27., 10., 28., 11., 29.], + [45., 63., 46., 64., 47., 65.], + [12., 30., 13., 31., 14., 32.], + [48., 66., 49., 67., 50., 68.]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_example') +``` + +
+ + +### DequantizeLinear +There are 2 test cases, listed as following: +
+axis + +```python +node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + +# 1-D tensor zero point and scale of size equal to axis 1 of the input tensor +x = np.array([[[[3, 89], + [34, 200], + [74, 59]], + + [[5, 24], + [24, 87], + [32, 13]], + + [[245, 99], + [4, 142], + [121, 102]], ], ], dtype=np.uint8) +x_scale = np.array([2, 4, 5], dtype=np.float32) +x_zero_point = np.array([84, 24, 196], dtype=np.uint8) +y = (x.astype(np.float32) - x_zero_point.reshape(1, 3, 1, 1).astype(np.float32)) * x_scale.reshape(1, 3, 1, 1) + +expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear_axis') +``` + +
+
+dequantizelinear + +```python +node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + +# scalar zero point and scale +x = np.array([0, 3, 128, 255]).astype(np.uint8) +x_scale = np.float32(2) +x_zero_point = np.uint8(128) +y = np.array([-256, -250, 0, 254], dtype=np.float32) + +expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear') +``` + +
+ + +### Det +There are 2 test cases, listed as following: +
+2d + +```python +node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], +) + +x = np.arange(4).reshape(2, 2).astype(np.float32) +y = np.linalg.det(x) # expect -2 +expect(node, inputs=[x], outputs=[y], + name='test_det_2d') +``` + +
+
+nd + +```python +node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], +) + +x = np.array([[[1, 2], [3, 4]], [[1, 2], [2, 1]], [[1, 3], [3, 1]]]).astype(np.float32) +y = np.linalg.det(x) # expect array([-2., -3., -8.]) +expect(node, inputs=[x], outputs=[y], + name='test_det_nd') +``` + +
+ + +### Div +There are 2 test cases, listed as following: +
+div + +```python +node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([3, 4]).astype(np.float32) +y = np.array([1, 2]).astype(np.float32) +z = x / y # expected output [3., 2.] +expect(node, inputs=[x, y], outputs=[z], + name='test_div_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.rand(3, 4, 5).astype(np.float32) + 1.0 +z = x / y +expect(node, inputs=[x, y], outputs=[z], + name='test_div') + +x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + 1 +z = x // y +expect(node, inputs=[x, y], outputs=[z], + name='test_div_uint8') +``` + +
+
+div_broadcast + +```python +node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.rand(5).astype(np.float32) + 1.0 +z = x / y +expect(node, inputs=[x, y], outputs=[z], + name='test_div_bcast') +``` + +
+ + +### Dropout +There are 12 test cases, listed as following: +
+default + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = dropout(x) +expect(node, inputs=[x], outputs=[y], name='test_dropout_default') +``` + +
+
+default_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y, z = dropout(x, return_mask=True) +expect(node, inputs=[x], outputs=[y, z], name='test_dropout_default_mask') +``` + +
+
+default_mask_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y', 'z'], + seed=seed +) + +r = np.float32(0.1) +x = np.random.randn(3, 4, 5).astype(np.float32) +y, z = dropout(x, r, return_mask=True) +expect(node, inputs=[x, r], outputs=[y, z], name='test_dropout_default_mask_ratio') +``` + +
+
+default_old + +```python +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = x +expect(node, inputs=[x], outputs=[y], + name='test_dropout_default_old', opset_imports=[helper.make_opsetid("", 11)]) +``` + +
+
+default_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y'], + seed=seed +) + +r = np.float32(0.1) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = dropout(x, r) +expect(node, inputs=[x, r], outputs=[y], name='test_dropout_default_ratio') +``` + +
+
+random_old + +```python +node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + ratio=.2, +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = x +expect(node, inputs=[x], outputs=[y], + name='test_dropout_random_old', opset_imports=[helper.make_opsetid("", 11)]) +``` + +
+
+training + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.75) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout') +``` + +
+
+training_default + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.5) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_default') +``` + +
+
+training_default_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.5) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_default_mask') +``` + +
+
+training_default_zero_ratio + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.0) +t = np.bool_(True) +y = dropout(x, r, training_mode=t) +expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_zero_ratio') +``` + +
+
+training_default_zero_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.0) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_zero_ratio_mask') +``` + +
+
+training_ratio_mask + +```python +seed = np.int64(0) +node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +r = np.float32(0.75) +t = np.bool_(True) +y, z = dropout(x, r, training_mode=t, return_mask=True) +expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_mask') +``` + +
+ + +### DynamicQuantizeLinear +There are 1 test cases, listed as following: +
+dynamicquantizelinear + +```python +node = onnx.helper.make_node('DynamicQuantizeLinear', + inputs=['x'], + outputs=['y', 'y_scale', 'y_zero_point'], +) + +# expected scale 0.0196078438 and zero point 153 +X = np.array([0, 2, -3, -2.5, 1.34, 0.5]).astype(np.float32) +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear') + +# expected scale 0.0156862754 and zero point 255 +X = np.array([-1.0, -2.1, -1.3, -2.5, -3.34, -4.0]).astype(np.float32) +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_max_adjusted') + +X = np.array([1, 2.1, 1.3, 2.5, + 3.34, 4.0, 1.5, 2.6, + 3.9, 4.0, 3.0, 2.345]).astype(np.float32).reshape((3, 4)) + +# expected scale 0.0156862754 and zero point 0 +x_min = np.minimum(0, np.min(X)) +x_max = np.maximum(0, np.max(X)) +Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] +Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) +Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + +expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_min_adjusted') +``` + +
+ + +### Einsum +There are 5 test cases, listed as following: +
+einsum_batch_diagonal + +```python +Eqn = '...ii ->...i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 5, 5) +Z = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Z], name='test_einsum_batch_diagonal') +``` + +
+
+einsum_batch_matmul + +```python +Eqn = 'bij, bjk -> bik' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn +) + +X = np.random.randn(5, 2, 3) +Y = np.random.randn(5, 3, 4) +Z = einsum_reference_implementation(Eqn, (X, Y)) + +expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_batch_matmul') +``` + +
+
+einsum_inner_prod + +```python +Eqn = 'i,i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn +) + +X = np.random.randn(5) +Y = np.random.randn(5) +Z = einsum_reference_implementation(Eqn, (X, Y)) + +expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_inner_prod') +``` + +
+
+einsum_sum + +```python +Eqn = 'ij->i' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 4) +Z = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Z], name='test_einsum_sum') +``` + +
+
+einsum_transpose + +```python +Eqn = 'ij->ji' +node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn +) + +X = np.random.randn(3, 4) +Y = einsum_reference_implementation(Eqn, (X,)) + +expect(node, inputs=[X], outputs=[Y], name='test_einsum_transpose') +``` + +
+ + +### Elu +There are 2 test cases, listed as following: +
+elu + +```python +node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], + alpha=2.0 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-1.2642411, 0., 1.] +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 +expect(node, inputs=[x], outputs=[y], + name='test_elu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 +expect(node, inputs=[x], outputs=[y], + name='test_elu') +``` + +
+
+elu_default + +```python +default_alpha = 1.0 +node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha +expect(node, inputs=[x], outputs=[y], + name='test_elu_default') +``` + +
+ + +### Equal +There are 2 test cases, listed as following: +
+equal + +```python +node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], +) + +x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +y = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +z = np.equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_equal') +``` + +
+
+equal_broadcast + +```python +node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], +) + +x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) +y = (np.random.randn(5) * 10).astype(np.int32) +z = np.equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_equal_bcast') +``` + +
+ + +### Erf +There are 1 test cases, listed as following: +
+erf + +```python +node = onnx.helper.make_node( + 'Erf', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +y = np.vectorize(math.erf)(x).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_erf') +``` + +
+ + +### Exp +There are 1 test cases, listed as following: +
+exp + +```python +node = onnx.helper.make_node( + 'Exp', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.exp(x) # expected output [0.36787945, 1., 2.71828175] +expect(node, inputs=[x], outputs=[y], + name='test_exp_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.exp(x) +expect(node, inputs=[x], outputs=[y], + name='test_exp') +``` + +
+ + +### Expand +There are 2 test cases, listed as following: +
+dim_changed + +```python +node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], +) +shape = [3, 1] +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[1.], [2.], [3.]] +new_shape = [2, 1, 6] +expanded = data * np.ones(new_shape, dtype=np.float32) +#print(expanded) +#[[[1., 1., 1., 1., 1., 1.], +# [2., 2., 2., 2., 2., 2.], +# [3., 3., 3., 3., 3., 3.]], +# +# [[1., 1., 1., 1., 1., 1.], +# [2., 2., 2., 2., 2., 2.], +# [3., 3., 3., 3., 3., 3.]]] +new_shape = np.array(new_shape, dtype=np.int64) +expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_changed') +``` + +
+
+dim_unchanged + +```python +node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], +) +shape = [3, 1] +new_shape = [3, 4] +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[1.], [2.], [3.]] +expanded = np.tile(data, 4) +#print(expanded) +#[[1., 1., 1., 1.], +# [2., 2., 2., 2.], +# [3., 3., 3., 3.]] +new_shape = np.array(new_shape, dtype=np.int64) +expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_unchanged') +``` + +
+ + +### EyeLike +There are 3 test cases, listed as following: +
+populate_off_main_diagonal + +```python +shape = (4, 5) +off_diagonal_offset = 1 +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + k=off_diagonal_offset, + dtype=onnx.TensorProto.FLOAT, +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], k=off_diagonal_offset, dtype=np.float32) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_populate_off_main_diagonal') +``` + +
+
+with_dtype + +```python +shape = (3, 4) +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], dtype=np.float64) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_with_dtype') +``` + +
+
+without_dtype + +```python +shape = (4, 4) +node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(0, 100, size=shape, dtype=np.int32) +y = np.eye(shape[0], shape[1], dtype=np.int32) +expect(node, inputs=[x], outputs=[y], name='test_eyelike_without_dtype') +``` + +
+ + +### Flatten +There are 3 test cases, listed as following: +
+flatten + +```python +shape = (2, 3, 4, 5) +a = np.random.random_sample(shape).astype(np.float32) + +for i in range(len(shape)): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (1, -1) if i == 0 else (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_axis' + str(i)) +``` + +
+
+flatten_negative_axis + +```python +shape = (2, 3, 4, 5) +a = np.random.random_sample(shape).astype(np.float32) + +for i in range(-len(shape), 0): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_negative_axis' + str(abs(i))) +``` + +
+
+flatten_with_default_axis + +```python +node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], # Default value for axis: axis=1 +) + +shape = (5, 4, 3, 2) +a = np.random.random_sample(shape).astype(np.float32) +new_shape = (5, 24) +b = np.reshape(a, new_shape) +expect(node, inputs=[a], outputs=[b], + name='test_flatten_default_axis') +``` + +
+ + +### Floor +There are 1 test cases, listed as following: +
+floor + +```python +node = onnx.helper.make_node( + 'Floor', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1.5, 1.2, 2]).astype(np.float32) +y = np.floor(x) # expected output [-2., 1., 2.] +expect(node, inputs=[x], outputs=[y], + name='test_floor_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.floor(x) +expect(node, inputs=[x], outputs=[y], + name='test_floor') +``` + +
+ + +### GRU +There are 4 test cases, listed as following: +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 6 +number_of_gates = 3 +weight_scale = 0.2 +layout = 1 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +gru = GRU_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = gru.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_gru_batchwise') +``` + +
+
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 5 +weight_scale = 0.1 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +gru = GRU_Helper(X=input, W=W, R=R) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_gru_defaults') +``` + +
+
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 3 +weight_scale = 0.1 +custom_bias = 0.1 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) +R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +gru = GRU_Helper(X=input, W=W, R=R, B=B) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_with_initial_bias') +``` + +
+
+seq_length + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 +number_of_gates = 3 + +node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = np.random.randn(1, number_of_gates * hidden_size, input_size).astype(np.float32) +R = np.random.randn(1, number_of_gates * hidden_size, hidden_size).astype(np.float32) + +# Adding custom bias +W_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) +R_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +gru = GRU_Helper(X=input, W=W, R=R, B=B) +_, Y_h = gru.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_seq_length') +``` + +
+ + +### Gather +There are 4 test cases, listed as following: +
+gather_0 + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, +) +data = np.random.randn(5, 4, 3, 2).astype(np.float32) +indices = np.array([0, 1, 3]) +y = np.take(data, indices, axis=0) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_0') +``` + +
+
+gather_1 + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, +) +data = np.random.randn(5, 4, 3, 2).astype(np.float32) +indices = np.array([0, 1, 3]) +y = np.take(data, indices, axis=1) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_1') +``` + +
+
+gather_2d_indices + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, +) +data = np.random.randn(3, 3).astype(np.float32) +indices = np.array([[0, 2]]) +y = np.take(data, indices, axis=1) + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_2d_indices') +``` + +
+
+gather_negative_indices + +```python +node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, +) +data = np.arange(10).astype(np.float32) +indices = np.array([0, -9, -10]) +y = np.take(data, indices, axis=0) + +# print(y) +# [0. 1. 0.] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_negative_indices') +``` + +
+ + +### GatherElements +There are 3 test cases, listed as following: +
+gather_elements_0 + +```python +axis = 1 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2], + [3, 4]], dtype=np.float32) +indices = np.array([[0, 0], + [1, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[1, 1], +# [4, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_0') +``` + +
+
+gather_elements_1 + +```python +axis = 0 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) +indices = np.array([[1, 2, 0], + [2, 0, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[4, 8, 3], +# [7, 2, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_1') +``` + +
+
+gather_elements_negative_indices + +```python +axis = 0 +node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, +) +data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) +indices = np.array([[-1, -2, 0], + [-2, 0, 0]], dtype=np.int32) + +y = gather_elements(data, indices, axis) +# print(y) produces +# [[7, 5, 3], +# [4, 2, 3]] + +expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_negative_indices') +``` + +
+ + +### GatherND +There are 3 test cases, listed as following: +
+float32 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], +) + +data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.float32) +indices = np.array([[[0, 1]], [[1, 0]]], dtype=np.int64) +output = gather_nd_impl(data, indices, 0) +expected_output = np.array([[[2, 3]], [[4, 5]]], dtype=np.float32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_float32') +``` + +
+
+int32 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], +) + +data = np.array([[0, 1], [2, 3]], dtype=np.int32) +indices = np.array([[0, 0], [1, 1]], dtype=np.int64) +output = gather_nd_impl(data, indices, 0) +expected_output = np.array([0, 3], dtype=np.int32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32') +``` + +
+
+int32_batchdim_1 + +```python +node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], + batch_dims=1, +) + +data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.int32) +indices = np.array([[1], [0]], dtype=np.int64) +output = gather_nd_impl(data, indices, 1) +expected_output = np.array([[2, 3], [4, 5]], dtype=np.int32) +assert (np.array_equal(output, expected_output)) +expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32_batch_dim1') +``` + +
+ + +### Gemm +There are 11 test cases, listed as following: +
+all_attributes + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.25, + beta=0.35, + transA=1, + transB=1 +) +a = np.random.ranf([4, 3]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.random.ranf([1, 5]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transA=1, transB=1, alpha=0.25, beta=0.35) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_all_attributes') +``` + +
+
+alpha + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.5 +) +a = np.random.ranf([3, 5]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, alpha=0.5) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_alpha') +``` + +
+
+beta + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + beta=0.5 +) +a = np.random.ranf([2, 7]).astype(np.float32) +b = np.random.ranf([7, 4]).astype(np.float32) +c = np.random.ranf([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, beta=0.5) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_beta') +``` + +
+
+default_matrix_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 6]).astype(np.float32) +b = np.random.ranf([6, 4]).astype(np.float32) +c = np.random.ranf([3, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_matrix_bias') +``` + +
+
+default_no_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b'], + outputs=['y'] +) +a = np.random.ranf([2, 10]).astype(np.float32) +b = np.random.ranf([10, 3]).astype(np.float32) +y = gemm_reference_implementation(a, b) +expect(node, inputs=[a, b], outputs=[y], + name='test_gemm_default_no_bias') +``` + +
+
+default_scalar_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([2, 3]).astype(np.float32) +b = np.random.ranf([3, 4]).astype(np.float32) +c = np.array(3.14).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_scalar_bias') +``` + +
+
+default_single_elem_vector_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 7]).astype(np.float32) +b = np.random.ranf([7, 3]).astype(np.float32) +c = np.random.ranf([1]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_single_elem_vector_bias') +``` + +
+
+default_vector_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([2, 7]).astype(np.float32) +b = np.random.ranf([7, 4]).astype(np.float32) +c = np.random.ranf([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_vector_bias') +``` + +
+
+default_zero_bias + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] +) +a = np.random.ranf([3, 5]).astype(np.float32) +b = np.random.ranf([5, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_zero_bias') +``` + +
+
+transposeA + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transA=1 +) +a = np.random.ranf([6, 3]).astype(np.float32) +b = np.random.ranf([6, 4]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transA=1) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeA') +``` + +
+
+transposeB + +```python +node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transB=1 +) +a = np.random.ranf([3, 6]).astype(np.float32) +b = np.random.ranf([4, 6]).astype(np.float32) +c = np.zeros([1, 4]).astype(np.float32) +y = gemm_reference_implementation(a, b, c, transB=1) +expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeB') +``` + +
+ + +### GlobalAveragePool +There are 2 test cases, listed as following: +
+globalaveragepool + +```python +node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(1, 3, 5, 5).astype(np.float32) +y = np.mean(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) +expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool') +``` + +
+
+globalaveragepool_precomputed + +```python + +node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], +) +x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], +]]]).astype(np.float32) +y = np.array([[[[5]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool_precomputed') +``` + +
+ + +### GlobalMaxPool +There are 2 test cases, listed as following: +
+globalmaxpool + +```python + +node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(1, 3, 5, 5).astype(np.float32) +y = np.max(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) +expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool') +``` + +
+
+globalmaxpool_precomputed + +```python + +node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], +) +x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], +]]]).astype(np.float32) +y = np.array([[[[9]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool_precomputed') +``` + +
+ + +### Gradient +There are 2 test cases, listed as following: +
+gradient_scalar_add + +```python +add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') +gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dc_da', 'dc_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='c') + +a = np.array(1.0).astype(np.float32) +b = np.array(2.0).astype(np.float32) +c = a + b +# dc / da = d(a+b) / da = 1 +dc_da = np.array(1).astype(np.float32) +# db / db = d(a+b) / db = 1 +dc_db = np.array(1).astype(np.float32) + +graph = onnx.helper.make_graph( + nodes=[add_node, gradient_node], + name='GradientOfAdd', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('c', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dc_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dc_db', + onnx.TensorProto.FLOAT, [])]) +opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] +model = onnx.helper.make_model( + graph, + producer_name='backend-test', + opset_imports=opsets) +expect(model, inputs=[a, b], outputs=[c, dc_da, dc_db], + name='test_gradient_of_add') +``` + +
+
+gradient_scalar_add_and_mul + +```python +add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') +mul_node = onnx.helper.make_node('Mul', + ['c', 'a'], ['d'], name='my_mul') +gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dd_da', 'dd_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='d') + +a = np.array(1.0).astype(np.float32) +b = np.array(2.0).astype(np.float32) +c = a + b +# d = a * c = a * (a + b) +d = a * c +# dd / da = d(a*a+a*b) / da = 2 * a + b +dd_da = (2 * a + b).astype(np.float32) +# dd / db = d(a*a+a*b) / db = a +dd_db = a + +graph = onnx.helper.make_graph( + nodes=[add_node, mul_node, gradient_node], + name='GradientOfTwoOperators', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('d', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dd_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dd_db', + onnx.TensorProto.FLOAT, [])]) + +opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] +model = onnx.helper.make_model(graph, + producer_name='backend-test', + opset_imports=opsets) +expect(model, inputs=[a, b], outputs=[d, dd_da, dd_db], + name='test_gradient_of_add_and_mul') +``` + +
+ + +### Greater +There are 4 test cases, listed as following: +
+greater + +```python +node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.greater(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater') +``` + +
+
+greater + +```python +node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.greater_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal') +``` + +
+
+greater_broadcast + +```python +node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.greater(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_bcast') +``` + +
+
+greater_broadcast + +```python +node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.greater_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal_bcast') +``` + +
+ + +### GridSample +There are 3 test cases, listed as following: +
+gridsample + +```python +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + padding_mode='zeros', + align_corners=0, +) +# X shape, [N, C, H, W] - [1, 1, 4, 4] +X = np.array( + [ + [ + [ + [0., 1., 2., 3.], + [4., 5., 6., 7.], + [8., 9., 10., 11.], + [12., 13., 14., 15.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 6, 6, 2] +Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.6000, -1.0000], + [-0.2000, -1.0000], + [0.2000, -1.0000], + [0.6000, -1.0000], + [1.0000, -1.0000] + ], + [ + [-1.0000, -0.6000], + [-0.6000, -0.6000], + [-0.2000, -0.6000], + [0.2000, -0.6000], + [0.6000, -0.6000], + [1.0000, -0.6000] + ], + [ + [-1.0000, -0.2000], + [-0.6000, -0.2000], + [-0.2000, -0.2000], + [0.2000, -0.2000], + [0.6000, -0.2000], + [1.0000, -0.2000] + ], + [ + [-1.0000, 0.2000], + [-0.6000, 0.2000], + [-0.2000, 0.2000], + [0.2000, 0.2000], + [0.6000, 0.2000], + [1.0000, 0.2000] + ], + [ + [-1.0000, 0.6000], + [-0.6000, 0.6000], + [-0.2000, 0.6000], + [0.2000, 0.6000], + [0.6000, 0.6000], + [1.0000, 0.6000] + ], + [ + [-1.0000, 1.0000], + [-0.6000, 1.0000], + [-0.2000, 1.0000], + [0.2000, 1.0000], + [0.6000, 1.0000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 6, 6] +Y = np.array( + [ + [ + [ + [0.0000, 0.1500, 0.5500, 0.9500, 1.3500, 0.7500], + [0.6000, 1.5000, 2.3000, 3.1000, 3.9000, 2.1000], + [2.2000, 4.7000, 5.5000, 6.3000, 7.1000, 3.7000], + [3.8000, 7.9000, 8.7000, 9.5000, 10.3000, 5.3000], + [5.4000, 11.1000, 11.9000, 12.7000, 13.5000, 6.9000], + [3.0000, 6.1500, 6.5500, 6.9500, 7.3500, 3.7500] + ] + ] + ], + dtype=np.float32, +) +expect(node, inputs=[X, Grid], outputs=[Y], + name='test_gridsample') +``` + +
+
+gridsample_mode_aligncorners + +```python +# X shape, [N, C, H, W] - [1, 1, 3, 2] +X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] +Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.5000, -0.5000], + [-0.2000, -0.2000], + [0.0000, 0.0000] + ], + + [ + [0.0000, 0.0000], + [-0.2000, -0.2000], + [0.5000, 0.5000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, +) + +# setting mode = 'bilinear', default align_corners = 0 +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_bilinear = np.array( + [ + [ + [ + [0.0000, 0.5000, 1.7000, 2.5000], + [2.5000, 1.7000, 4.5000, 1.2500] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_bilinear], + name='test_gridsample_bilinear') + +# setting mode = 'bilinear', align_corners = 1 +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + align_corners=1, +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_align_corners = np.array( + [ + [ + [ + [0.0000, 1.2500, 2.0000, 2.5000], + [2.5000, 2.0000, 3.7500, 5.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_align_corners], + name='test_gridsample_aligncorners_true') + +# setting mode = 'nearest' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='nearest', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_nearest = np.array( + [ + [ + [ + [0., 0., 2., 2.], + [2., 2., 5., 0.] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_nearest], + name='test_gridsample_nearest') + +# setting mode = 'bicubic' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bicubic', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_bicubic = np.array( + [ + [ + [ + [-0.1406, 0.3828, 1.7556, 2.9688], + [2.9688, 1.7556, 5.1445, 1.3906] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_bicubic], + name='test_gridsample_bicubic') +``` + +
+
+gridsample_paddingmode + +```python +# X shape, [N, C, H, W] - [1, 1, 3, 2] +X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, +) +# Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] +Grid = np.array( + [ + [ + [ + [-10.0000, -10.0000], + [-5.0000, -5.0000], + [-0.2000, -0.2000], + [10.0000, 10.0000] + ], + + [ + [10.0000, 10.0000], + [-0.2000, -0.2000], + [5.0000, 5.0000], + [10.0000, 10.0000] + ] + ] + ], + dtype=np.float32, +) + +# setting padding_mode = 'zeros' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='zeros', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_zeros = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 0.0000], + [0.0000, 1.7000, 0.0000, 0.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_zeros], + name='test_gridsample_zeros_padding') + +# setting padding_mode = 'border' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='border', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_border = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 5.0000], + [5.0000, 1.7000, 5.0000, 5.0000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_border], + name='test_gridsample_border_padding') + +# setting padding_mode = 'reflection' +node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='reflection', +) +# Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] +Y_reflection = np.array( + [ + [ + [ + [2.5000, 0.0000, 1.7000, 2.5000], + [2.5000, 1.7000, 5.0000, 2.5000] + ] + ] + ], + dtype=np.float32, +) + +expect(node, inputs=[X, Grid], outputs=[Y_reflection], + name='test_gridsample_reflection_padding') +``` + +
+ + +### HardSigmoid +There are 2 test cases, listed as following: +
+hardsigmoid + +```python +node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], + alpha=0.5, + beta=0.6 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.clip(x * 0.5 + 0.6, 0, 1) # expected output [0.1, 0.6, 1.] +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x * 0.5 + 0.6, 0, 1) +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid') +``` + +
+
+hardsigmoid_default + +```python +default_alpha = 0.2 +default_beta = 0.5 +node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x * default_alpha + default_beta, 0, 1) +expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_default') +``` + +
+ + +### HardSwish +There are 1 test cases, listed as following: +
+hardswish + +```python +node = onnx.helper.make_node( + 'HardSwish', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = hardswish(x) + +expect(node, inputs=[x], outputs=[y], + name='test_hardswish') +``` + +
+ + +### Hardmax +There are 2 test cases, listed as following: +
+hardmax + +```python +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], +) + +x = np.array([[3, 0, 1, 2], [2, 5, 1, 0], [0, 1, 3, 2], + [0, 1, 2, 3]]).astype(np.float32) +# expect result: +# [[1. 0. 0. 0.] +# [0. 1. 0. 0.] +# [0. 0. 1. 0.] +# [0. 0. 0. 1.]] +y = hardmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_example') + +# For multiple occurrences of the maximal values, the first occurrence is selected for one-hot output +x = np.array([[3, 3, 3, 1]]).astype(np.float32) +# expect result: +# [[1, 0, 0, 0]] +y = hardmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_one_hot') +``` + +
+
+hardmax_axis + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = hardmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_0') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = hardmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_1') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = hardmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_2') + +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = hardmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_hardmax_default_axis') +``` + +
+ + +### Identity +There are 3 test cases, listed as following: +
+identity + +```python +node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +expect(node, inputs=[data], outputs=[data], + name='test_identity') +``` + +
+
+identity_opt + +```python +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) +opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['opt_in'], + outputs=['opt_out'] +) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] + +expect(identity_node, inputs=[x], outputs=[x], name='test_identity_opt', + opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[opt_in_tp], + output_type_protos=[opt_in_tp]) +``` + +
+
+sequence + +```python +node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], +) + +data = [ + np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32), + np.array([[[ + [2, 3], + [1, 5], + ]]], dtype=np.float32)] + +expect(node, inputs=[data], outputs=[data], name='test_identity_sequence') +``` + +
+ + +### If +There are 3 test cases, listed as following: +
+if + +```python +# Given a bool scalar input cond. +# return constant tensor x if cond is True, otherwise return constant tensor y. + +then_out = onnx.helper.make_tensor_value_info('then_out', onnx.TensorProto.FLOAT, [5]) +else_out = onnx.helper.make_tensor_value_info('else_out', onnx.TensorProto.FLOAT, [5]) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) +y = np.array([5, 4, 3, 2, 1]).astype(np.float32) + +then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['then_out'], + value=onnx.numpy_helper.from_array(x) +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['else_out'], + value=onnx.numpy_helper.from_array(y) +) + +then_body = onnx.helper.make_graph( + [then_const_node], + 'then_body', + [], + [then_out] +) + +else_body = onnx.helper.make_graph( + [else_const_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body +) + +cond = np.array(1).astype(bool) +res = x if cond else y +expect(if_node, inputs=[cond], outputs=[res], name='test_if', + opset_imports=[onnx.helper.make_opsetid("", 11)]) +``` + +
+
+if_optional + +```python +# Given a bool scalar input cond, return an empty optional sequence of +# tensor if True, return an optional sequence with value x +# (the input optional sequence) otherwise. + +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) + +then_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +then_out_seq_tp = onnx.helper.make_sequence_type_proto(then_out_tensor_tp) +then_out_opt_tp = onnx.helper.make_optional_type_proto(then_out_seq_tp) +then_out = onnx.helper.make_value_info('optional_empty', then_out_opt_tp) + +else_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) +else_out_seq_tp = onnx.helper.make_sequence_type_proto(else_out_tensor_tp) +else_out_opt_tp = onnx.helper.make_optional_type_proto(else_out_seq_tp) +else_out = onnx.helper.make_value_info('else_opt', else_out_opt_tp) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] +cond = np.array(0).astype(bool) +res = compute_if_outputs(x, cond) + +opt_empty_in = onnx.helper.make_node( + 'Optional', + inputs=[], + outputs=['optional_empty'], + type=seq_in_tp +) + +then_body = onnx.helper.make_graph( + [opt_empty_in], + 'then_body', + [], + [then_out] +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) +) + +else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['else_seq'] +) + +else_optional_seq_node = onnx.helper.make_node( + 'Optional', + inputs=['else_seq'], + outputs=['else_opt'] +) + +else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node, else_optional_seq_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body +) + +expect(if_node, inputs=[cond], outputs=[res], name='test_if_opt', + output_type_protos=[else_out_opt_tp], + opset_imports=[onnx.helper.make_opsetid("", 16)]) +``` + +
+
+if_seq + +```python +# Given a bool scalar input cond. +# return constant sequence x if cond is True, otherwise return constant sequence y. + +then_out = onnx.helper.make_tensor_sequence_value_info('then_out', onnx.TensorProto.FLOAT, shape=[5]) +else_out = onnx.helper.make_tensor_sequence_value_info('else_out', onnx.TensorProto.FLOAT, shape=[5]) + +x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] +y = [np.array([5, 4, 3, 2, 1]).astype(np.float32)] + +then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) +) + +then_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['then_out'] +) + +else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['y'], + value=onnx.numpy_helper.from_array(y[0]) +) + +else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['y'], + outputs=['else_out'] +) + +then_body = onnx.helper.make_graph( + [then_const_node, then_seq_node], + 'then_body', + [], + [then_out] +) + +else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node], + 'else_body', + [], + [else_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body +) + +cond = np.array(1).astype(bool) +res = x if cond else y +expect(if_node, inputs=[cond], outputs=[res], name='test_if_seq', + opset_imports=[onnx.helper.make_opsetid("", 13)]) +``` + +
+ + +### InstanceNormalization +There are 1 test cases, listed as following: +
+instancenormalization + +```python +def _instancenorm_test_mode(x, s, bias, epsilon=1e-5): # type: ignore + dims_x = len(x.shape) + axis = tuple(range(2, dims_x)) + mean = np.mean(x, axis=axis, keepdims=True) + var = np.var(x, axis=axis, keepdims=True) + dim_ones = (1,) * (dims_x - 2) + s = s.reshape(-1, *dim_ones) + bias = bias.reshape(-1, *dim_ones) + return s * (x - mean) / np.sqrt(var + epsilon) + bias + +# input size: (1, 2, 1, 3) +x = np.array([[[[-1, 0, 1]], [[2, 3, 4]]]]).astype(np.float32) +s = np.array([1.0, 1.5]).astype(np.float32) +bias = np.array([0, 1]).astype(np.float32) +y = _instancenorm_test_mode(x, s, bias).astype(np.float32) + +node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], +) + +# output size: (1, 2, 1, 3) +expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_example') + +# input size: (2, 3, 4, 5) +x = np.random.randn(2, 3, 4, 5).astype(np.float32) +s = np.random.randn(3).astype(np.float32) +bias = np.random.randn(3).astype(np.float32) +epsilon = 1e-2 +y = _instancenorm_test_mode(x, s, bias, epsilon).astype(np.float32) + +node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], + epsilon=epsilon, +) + +# output size: (2, 3, 4, 5) +expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_epsilon') +``` + +
+ + +### IsInf +There are 3 test cases, listed as following: +
+infinity + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + ) + +x = np.array([-1.2, np.nan, np.inf, 2.8, np.NINF, np.inf], + dtype=np.float32) +y = np.isinf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf') +``` + +
+
+negative_infinity_only + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_positive=0 + ) + +x = np.array([-1.7, np.nan, np.inf, -3.6, np.NINF, np.inf], + dtype=np.float32) +y = np.isneginf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf_negative') +``` + +
+
+positive_infinity_only + +```python +node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_negative=0 + ) + +x = np.array([-1.7, np.nan, np.inf, 3.6, np.NINF, np.inf], + dtype=np.float32) +y = np.isposinf(x) +expect(node, inputs=[x], outputs=[y], name='test_isinf_positive') +``` + +
+ + +### IsNaN +There are 1 test cases, listed as following: +
+isnan + +```python +node = onnx.helper.make_node( + 'IsNaN', + inputs=['x'], + outputs=['y'], +) + +x = np.array([3.0, np.nan, 4.0, np.nan], dtype=np.float32) +y = np.isnan(x) +expect(node, inputs=[x], outputs=[y], name='test_isnan') +``` + +
+ + +### LRN +There are 2 test cases, listed as following: +
+default + +```python +alpha = 0.0001 +beta = 0.75 +bias = 1.0 +nsize = 3 +node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + size=3 +) +x = np.random.randn(5, 5, 5, 5).astype(np.float32) +square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) +for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) +y = x / ((bias + (alpha / nsize) * square_sum) ** beta) +expect(node, inputs=[x], outputs=[y], + name='test_lrn_default') +``` + +
+
+lrn + +```python +alpha = 0.0002 +beta = 0.5 +bias = 2.0 +nsize = 3 +node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + alpha=alpha, + beta=beta, + bias=bias, + size=nsize +) +x = np.random.randn(5, 5, 5, 5).astype(np.float32) +square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) +for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) +y = x / ((bias + (alpha / nsize) * square_sum) ** beta) +expect(node, inputs=[x], outputs=[y], + name='test_lrn') +``` + +
+ + +### LSTM +There are 4 test cases, listed as following: +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 7 +weight_scale = 0.3 +number_of_gates = 4 +layout = 1 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = lstm.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_lstm_batchwise') +``` + +
+
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 3 +weight_scale = 0.1 +number_of_gates = 4 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_lstm_defaults') +``` + +
+
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 4 +weight_scale = 0.1 +custom_bias = 0.1 +number_of_gates = 4 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) +R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), 1) + +lstm = LSTM_Helper(X=input, W=W, R=R, B=B) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_lstm_with_initial_bias') +``` + +
+
+peepholes + +```python +input = np.array([[[1., 2., 3., 4.], [5., 6., 7., 8.]]]).astype(np.float32) + +input_size = 4 +hidden_size = 3 +weight_scale = 0.1 +number_of_gates = 4 +number_of_peepholes = 3 + +node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B', 'sequence_lens', 'initial_h', 'initial_c', 'P'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +# Initializing Inputs +W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) +B = np.zeros((1, 2 * number_of_gates * hidden_size)).astype(np.float32) +seq_lens = np.repeat(input.shape[0], input.shape[1]).astype(np.int32) +init_h = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) +init_c = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) +P = weight_scale * np.ones((1, number_of_peepholes * hidden_size)).astype(np.float32) + +lstm = LSTM_Helper(X=input, W=W, R=R, B=B, P=P, initial_c=init_c, initial_h=init_h) +_, Y_h = lstm.step() +expect(node, inputs=[input, W, R, B, seq_lens, init_h, init_c, P], outputs=[Y_h.astype(np.float32)], + name='test_lstm_with_peepholes') +``` + +
+ + +### LayerNormalization +There are 4 test cases, listed as following: +
+d + +```python +X = np.random.randn(3, 4).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis=axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_2d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_2d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+
+d_epsilon + +```python +X = np.random.randn(2, 3, 5).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + epsilon=1e-1 + ) + + if axis < 0: + name = f'test_layer_normalization_3d_axis_negative_{-axis}_epsilon' + else: + name = f'test_layer_normalization_3d_axis{axis}_epsilon' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+
+default_axis + +```python +X = np.random.randn(2, 3, 4, 5).astype(np.float32) + +# Default axis in LayerNormalization is -1. +normalized_shape = calculate_normalized_shape(X.shape, -1) +W = np.random.randn(*normalized_shape).astype(np.float32) +B = np.random.randn(*normalized_shape).astype(np.float32) +# Axis is default to -1 in the reference implementation. +Y, mean, inv_std_dev = _layer_normalization(X, W, B) + +# Not specifying axis attribute means -1. +node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'] +) + +expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name='test_layer_normalization_default_axis') +``` + +
+
+layernormalization + +```python +X = np.random.randn(2, 3, 4, 5).astype(np.float32) + +def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_4d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_4d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + +for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) +``` + +
+ + +### LeakyRelu +There are 2 test cases, listed as following: +
+leakyrelu + +```python +node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], + alpha=0.1 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-0.1, 0., 1.] +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu') +``` + +
+
+leakyrelu_default + +```python +default_alpha = 0.01 +node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * default_alpha +expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_default') +``` + +
+ + +### Less +There are 4 test cases, listed as following: +
+less + +```python +node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.less(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less') +``` + +
+
+less + +```python +node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = np.less_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal') +``` + +
+
+less_broadcast + +```python +node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.less(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_bcast') +``` + +
+
+less_broadcast + +```python +node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = np.less_equal(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal_bcast') +``` + +
+ + +### Log +There are 1 test cases, listed as following: +
+log + +```python +node = onnx.helper.make_node( + 'Log', + inputs=['x'], + outputs=['y'], +) + +x = np.array([1, 10]).astype(np.float32) +y = np.log(x) # expected output [0., 2.30258512] +expect(node, inputs=[x], outputs=[y], + name='test_log_example') + +x = np.exp(np.random.randn(3, 4, 5).astype(np.float32)) +y = np.log(x) +expect(node, inputs=[x], outputs=[y], + name='test_log') +``` + +
+ + +### LogSoftmax +There are 2 test cases, listed as following: +
+logsoftmax + +```python +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +x = np.array([[-1, 0, 1]]).astype(np.float32) +# expected output +# [[-2.4076061 -1.407606 -0.407606 ]] +y = logsoftmax(x) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_example_1') +``` + +
+
+logsoftmax_axis + +```python +x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) +# expected output +# [[-3.4401896 -2.4401896 -1.4401896 -0.44018966] +# [-3.4401896 -2.4401896 -1.4401896 -0.44018966]] +y = logsoftmax(x) + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_large_number') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = logsoftmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_0') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = logsoftmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_1') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = logsoftmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_2') + +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = logsoftmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_default_axis') +``` + +
+ + +### Loop +There are 3 test cases, listed as following: +
+loop_11 + +```python +# Given a tensor x of values [x1, ..., xN], and initial tensor y +# sum up its elements using a scan +# returning the final state (y+x1+x2+...+xN) as well the scan_output +# [y+x1, y+x1+x2, ..., y+x1+x2+...+xN] + +y_in = onnx.helper.make_tensor_value_info('y_in', onnx.TensorProto.FLOAT, [1]) +y_out = onnx.helper.make_tensor_value_info('y_out', onnx.TensorProto.FLOAT, [1]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [1]) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) +y = np.array([-2]).astype(np.float32) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +i_add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +start_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['iter_count'], + outputs=['slice_start'], + axes=[0] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end'], + outputs=['slice_end'], + axes=[0] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +y_add_node = onnx.helper.make_node( + 'Add', + inputs=['y_in', 'slice_out'], + outputs=['y_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +scan_identity_node = onnx.helper.make_node( + 'Identity', + inputs=['y_out'], + outputs=['scan_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, i_add_node, + start_unsqueeze_node, end_unsqueeze_node, slice_node, y_add_node, + scan_identity_node], + 'loop_body', + [iter_count, cond_in, y_in], + [cond_out, y_out, scan_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'y'], + outputs=['res_y', 'res_scan'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +res_y = np.array([13]).astype(np.float32) +cond = np.array(1).astype(bool) +res_scan = np.array([-1, 1, 4, 8, 13]).astype(np.float32).reshape((5, 1)) +expect(node, inputs=[trip_count, cond, y], outputs=[res_y, res_scan], + name='test_loop11', opset_imports=[onnx.helper.make_opsetid("", 11)]) +``` + +
+
+loop_13 + +```python +# Given a tensor x of values [x1, ..., xN], +# Return a sequence of tensors of +# [[x1], [x1, x2], ..., [x1, ..., xN]] + +seq_in = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, None) +seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, None) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) +) + +axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) +) + +add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['seq_in', 'slice_out'], + outputs=['seq_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, zero_const_node, add_node, + axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, seq_in], + [cond_out, seq_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'seq_empty'], + outputs=['seq_res'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +seq_empty: List[Any] = [] +seq_res = [x[:int(i)] for i in x] +cond = np.array(1).astype(bool) +expect(node, inputs=[trip_count, cond, seq_empty], outputs=[seq_res], + name='test_loop13_seq', opset_imports=[onnx.helper.make_opsetid("", 13)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []))]) +``` + +
+
+loop_16_none + +```python +# Given a tensor sequence of values [x1, ..., xN], and an initial optional sequence of tensors [x0], +# Return a concatenated sequence of tensors of +# [x0, [x1], [x1, x2], ..., [x1, ..., xN]] + +ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []) +seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) +opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) +opt_in = onnx.helper.make_value_info('opt_seq_in', opt_in_tp) +seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, []) +cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) +cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) +iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + +x0 = np.array(0).astype(np.float32) +x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + +optional_has_elem_node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['opt_seq_in'], + outputs=['optional_has_elem'] +) + +optional_is_none = onnx.helper.make_node( + 'Not', + inputs=['optional_has_elem'], + outputs=['optional_is_none'] +) + +optional_get_elem = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['opt_seq_in'], + outputs=['seq_in'] +) + +constant_in = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['constant_in'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=(), + vals=[0] + ) +) + +seq_const_in = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['constant_in'], + outputs=['init_seq_in'] +) + +then_seq_out = onnx.helper.make_tensor_sequence_value_info('init_seq_in', onnx.TensorProto.FLOAT, []) +then_body = onnx.helper.make_graph( + [constant_in, seq_const_in], + 'then_body', + [], + [then_seq_out] +) + +else_seq_out = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, []) +else_body = onnx.helper.make_graph( + [optional_get_elem], + 'else_body', + [], + [else_seq_out] +) + +if_node = onnx.helper.make_node( + 'If', + inputs=['optional_is_none'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body +) + +x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) +) + +one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) +) + +zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) +) + +axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) +) + +add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] +) + +end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] +) + +slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] +) + +insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'slice_out'], + outputs=['seq_out'] +) + +identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] +) + +loop_body = onnx.helper.make_graph( + [identity_node, optional_has_elem_node, optional_is_none, if_node, x_const_node, one_const_node, + zero_const_node, add_node, axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, opt_in], + [cond_out, seq_out] +) + +node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'opt_seq'], + outputs=['seq_res'], + body=loop_body +) + +trip_count = np.array(5).astype(np.int64) +cond = np.array(1).astype(bool) +seq_res = compute_loop_outputs(x, [x0], trip_count) +opt_seq_in: List[Any] = [x0] +expect(node, inputs=[trip_count, cond, opt_seq_in], outputs=[seq_res], + name='test_loop16_seq_none', opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + opt_in_tp]) +``` + +
+ + +### MatMul +There are 1 test cases, listed as following: +
+matmul + +```python +node = onnx.helper.make_node( + 'MatMul', + inputs=['a', 'b'], + outputs=['c'], +) + +# 2d +a = np.random.randn(3, 4).astype(np.float32) +b = np.random.randn(4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_2d') + +# 3d +a = np.random.randn(2, 3, 4).astype(np.float32) +b = np.random.randn(2, 4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_3d') + +# 4d +a = np.random.randn(1, 2, 3, 4).astype(np.float32) +b = np.random.randn(1, 2, 4, 3).astype(np.float32) +c = np.matmul(a, b) +expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_4d') +``` + +
+ + +### MatMulInteger +There are 1 test cases, listed as following: +
+matmulinteger + +```python +node = onnx.helper.make_node('MatMulInteger', + inputs=['A', 'B', 'a_zero_point', 'b_zero_point'], + outputs=['Y'],) + +A = np.array([[11, 7, 3], + [10, 6, 2], + [9, 5, 1], + [8, 4, 0], ], dtype=np.uint8) + +a_zero_point = np.array([12], dtype=np.uint8) + +B = np.array([[1, 4], + [2, 5], + [3, 6], ], dtype=np.uint8) + +b_zero_point = np.array([0], dtype=np.uint8) + +output = np.array([[-38, -83], + [-44, -98], + [-50, -113], + [-56, -128], ], dtype=np.int32) + +expect(node, inputs=[A, B, a_zero_point, b_zero_point], outputs=[output], + name='test_matmulinteger') +``` + +
+ + +### Max +There are 2 test cases, listed as following: +
+max + +```python +data_0 = np.array([3, 2, 1]).astype(np.float32) +data_1 = np.array([1, 4, 4]).astype(np.float32) +data_2 = np.array([2, 5, 3]).astype(np.float32) +result = np.array([3, 5, 4]).astype(np.float32) +node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_max_example') + +node = onnx.helper.make_node( + 'Max', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_max_one_input') + +result = np.maximum(data_0, data_1) +node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_two_inputs') +``` + +
+
+max_all_numeric_types + +```python +for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([3, 4, 4]).astype(op_dtype) + node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_{0}'.format(np.dtype(op_dtype).name)) +``` + +
+ + +### MaxPool +There are 15 test cases, listed as following: +
+maxpool_1d_default + +```python +""" +input_shape: [1, 3, 32] +output_shape: [1, 3, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], +) +x = np.random.randn(1, 3, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2] +strides = [1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_1d_default') +``` + +
+
+maxpool_2d_ceil + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_ceil') +``` + +
+
+maxpool_2d_default + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 31, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_default') +``` + +
+
+maxpool_2d_dilations + +```python +""" +input_shape: [1, 1, 4, 4] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[1, 1], + dilations=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]]).astype(np.float32) +y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_dilations') +``` + +
+
+maxpool_2d_pads + +```python +""" +input_shape: [1, 3, 28, 28] +output_shape: [1, 3, 30, 30] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] +) +x = np.random.randn(1, 3, 28, 28).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (3, 3) +strides = (1, 1) +pad_bottom = pad_top = pad_right = pad_left = 2 +pad_shape = [pad_top + pad_bottom, pad_left + pad_right] +out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_pads') +``` + +
+
+maxpool_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_pads') +``` + +
+
+maxpool_2d_precomputed_same_upper + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 3, 3] +pad_shape: [2, 2] -> [1, 1, 1, 1] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9, 10], + [17, 19, 20], + [22, 24, 25]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_same_upper') +``` + +
+
+maxpool_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_strides') +``` + +
+
+maxpool_2d_same_lower + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [1, 0, 1, 0] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) +pad_bottom = pad_shape[0] // 2 +pad_top = pad_shape[0] - pad_bottom +pad_right = pad_shape[1] // 2 +pad_left = pad_shape[1] - pad_right +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_lower') +``` + +
+
+maxpool_2d_same_upper + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 32, 32] +pad_shape: [1, 1] -> [0, 1, 0, 1] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (2, 2) +strides = (1, 1) +out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) +pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) +pad_top = pad_shape[0] // 2 +pad_bottom = pad_shape[0] - pad_top +pad_left = pad_shape[1] // 2 +pad_right = pad_shape[1] - pad_left +padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) +y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_upper') +``` + +
+
+maxpool_2d_strides + +```python +""" +input_shape: [1, 3, 32, 32] +output_shape: [1, 3, 10, 10] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] +) +x = np.random.randn(1, 3, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = (5, 5) +strides = (3, 3) +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_strides') +``` + +
+
+maxpool_2d_uint8 + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.uint8) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.uint8) + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_uint8') +``` + +
+
+maxpool_3d_default + +```python +""" +input_shape: [1, 3, 32, 32, 32] +output_shape: [1, 3, 31, 31, 31] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], +) +x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) +x_shape = np.shape(x) +kernel_shape = [2, 2, 2] +strides = [1, 1, 1] +out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) +padded = x +y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'MAX') + +expect(node, inputs=[x], outputs=[y], name='test_maxpool_3d_default') +``` + +
+
+maxpool_with_argmax_2d_precomputed_pads + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 5, 5] +pad_shape: [4, 4] -> [2, 2, 2, 2] by axis +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) +z = np.array([[[ + [12, 13, 14, 14, 14], + [17, 18, 19, 19, 19], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24]]]]).astype(np.int64) + +expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_pads') +``` + +
+
+maxpool_with_argmax_2d_precomputed_strides + +```python +""" +input_shape: [1, 1, 5, 5] +output_shape: [1, 1, 2, 2] +""" +node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[2, 2], + strides=[2, 2], + storage_order=1 +) +x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], +]]]).astype(np.float32) +y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) +z = np.array([[[[6, 16], + [8, 18]]]]).astype(np.int64) + +expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_strides') +``` + +
+ + +### MaxUnpool +There are 2 test cases, listed as following: +
+with_output_shape + +```python +node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI', 'output_shape'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +xT = np.array([[[[5, 6], + [7, 8]]]], dtype=np.float32) +xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) +output_shape = np.array((1, 1, 5, 5), dtype=np.int64) +y = np.array([[[[0, 0, 0, 0, 0], + [0, 5, 0, 6, 0], + [0, 0, 0, 0, 0], + [0, 7, 0, 8, 0], + [0, 0, 0, 0, 0]]]], dtype=np.float32) +expect(node, inputs=[xT, xI, output_shape], outputs=[y], name='test_maxunpool_export_with_output_shape') +``` + +
+
+without_output_shape + +```python +node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] +) +xT = np.array([[[[1, 2], + [3, 4]]]], dtype=np.float32) +xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) +y = np.array([[[[0, 0, 0, 0], + [0, 1, 0, 2], + [0, 0, 0, 0], + [0, 3, 0, 4]]]], dtype=np.float32) +expect(node, inputs=[xT, xI], outputs=[y], name='test_maxunpool_export_without_output_shape') +``` + +
+ + +### Mean +There are 1 test cases, listed as following: +
+mean + +```python +data_0 = np.array([3, 0, 2]).astype(np.float32) +data_1 = np.array([1, 3, 4]).astype(np.float32) +data_2 = np.array([2, 6, 6]).astype(np.float32) +result = np.array([2, 3, 4]).astype(np.float32) +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_mean_example') + +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_mean_one_input') + +result = np.divide(np.add(data_0, data_1), 2.) +node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_mean_two_inputs') +``` + +
+ + +### MeanVarianceNormalization +There are 1 test cases, listed as following: +
+meanvariancenormalization + +```python +node = onnx.helper.make_node( + 'MeanVarianceNormalization', + inputs=['X'], + outputs=['Y'] +) + +input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + +# Calculate expected output data +data_mean = np.mean(input_data, axis=(0, 2, 3), keepdims=1) +data_mean_squared = np.power(data_mean, 2) +data_squared = np.power(input_data, 2) +data_squared_mean = np.mean(data_squared, axis=(0, 2, 3), keepdims=1) +std = np.sqrt(data_squared_mean - data_mean_squared) +expected_output = (input_data - data_mean) / (std + 1e-9) + +expect(node, inputs=[input_data], outputs=[expected_output], + name='test_mvn') +``` + +
+ + +### Min +There are 2 test cases, listed as following: +
+min + +```python +data_0 = np.array([3, 2, 1]).astype(np.float32) +data_1 = np.array([1, 4, 4]).astype(np.float32) +data_2 = np.array([2, 5, 0]).astype(np.float32) +result = np.array([1, 2, 0]).astype(np.float32) +node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_min_example') + +node = onnx.helper.make_node( + 'Min', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_min_one_input') + +result = np.minimum(data_0, data_1) +node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_two_inputs') +``` + +
+
+min_all_numeric_types + +```python +for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([1, 2, 1]).astype(op_dtype) + node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_{0}'.format(np.dtype(op_dtype).name)) +``` + +
+ + +### Mod +There are 13 test cases, listed as following: +
+mod_broadcast + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.arange(0, 30).reshape([3, 2, 5]).astype(np.int32) +y = np.array([7]).astype(np.int32) +z = np.mod(x, y) +# array([[[0, 1, 2, 3, 4], +# [5, 6, 0, 1, 2]], + +# [[3, 4, 5, 6, 0], +# [1, 2, 3, 4, 5]], + +# [[6, 0, 1, 2, 3], +# [4, 5, 6, 0, 1]]], dtype=int32) +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_broadcast') +``` + +
+
+mod_int64_fmod + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) +z = np.fmod(x, y) # expected output [ 0, 1, 5, 0, -1, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_int64_fmod') +``` + +
+
+mod_mixed_sign_float16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float16) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float16) +z = np.fmod(x, y) # expected output [-0.10156, 0.3984 , 5. , 0.10156, -0.3984 , 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float16') +``` + +
+
+mod_mixed_sign_float32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float32) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float32) +z = np.fmod(x, y) # expected output [-0.10000038, 0.39999962, 5. , 0.10000038, -0.39999962, 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float32') +``` + +
+
+mod_mixed_sign_float64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 +) + +x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float64) +y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float64) +z = np.fmod(x, y) # expected output [-0.1, 0.4, 5. , 0.1, -0.4, 3.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float64') +``` + +
+
+mod_mixed_sign_int16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int16) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int16) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int16') +``` + +
+
+mod_mixed_sign_int32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int32) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int32) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int32') +``` + +
+
+mod_mixed_sign_int64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int64') +``` + +
+
+mod_mixed_sign_int8 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int8) +y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int8) +z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int8') +``` + +
+
+mod_uint16 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint16) +y = np.array([2, 3, 8]).astype(np.uint16) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint16') +``` + +
+
+mod_uint32 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint32) +y = np.array([2, 3, 8]).astype(np.uint32) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint32') +``` + +
+
+mod_uint64 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint64) +y = np.array([2, 3, 8]).astype(np.uint64) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint64') +``` + +
+
+mod_uint8 + +```python +node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([4, 7, 5]).astype(np.uint8) +y = np.array([2, 3, 8]).astype(np.uint8) +z = np.mod(x, y) # expected output [0, 1, 5] +expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint8') +``` + +
+ + +### Momentum +There are 3 test cases, listed as following: +
+momentum + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.1 + +# Create operator. +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) + +# Compute expected outputs of Momentum. +x_new, v_new = apply_momentum(r, t, x, g, v, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+
+momentum_multiple + +```python +# Define operator attributes. +norm_coefficient = 0.001 +alpha = 0.95 +beta = 0.85 + +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar + +x1 = np.array([1.0], dtype=np.float32) +g1 = np.array([-1.0], dtype=np.float32) +v1 = np.array([2.0], dtype=np.float32) + +x2 = np.array([1.0, 2.0], dtype=np.float32) +g2 = np.array([-1.0, -3.0], dtype=np.float32) +v2 = np.array([4.0, 1.0], dtype=np.float32) + +# Compute expected outputs of Momentum. +x1_new, v1_new = apply_momentum(r, t, x1, g1, v1, + norm_coefficient, alpha, beta) +x2_new, v2_new = apply_momentum(r, t, x2, g2, v2, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2], + outputs=[x1_new, x2_new, v1_new, v2_new], name='test_momentum_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+
+nesterov_momentum + +```python +# Define operator attributes. +norm_coefficient = 0.01 +alpha = 0.95 +beta = 1.0 + +# Create operator. +node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='nesterov', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + +# Define operator inputs. +r = np.array(0.1, dtype=np.float32) # scalar +t = np.array(0, dtype=np.int64) # scalar +x = np.array([1.2, 2.8], dtype=np.float32) +g = np.array([-0.94, -2.5], dtype=np.float32) +v = np.array([1.7, 3.6], dtype=np.float32) + +# Compute expected outputs of Momentum. +x_new, v_new = apply_nesterov(r, t, x, g, v, + norm_coefficient, alpha, beta) + +# Check results. +expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_nesterov_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) +``` + +
+ + +### Mul +There are 2 test cases, listed as following: +
+mul + +```python +node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.float32) +z = x * y # expected output [4., 10., 18.] +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul') + +x = np.random.randint(4, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_uint8') +``` + +
+
+mul_broadcast + +```python +node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = x * y +expect(node, inputs=[x, y], outputs=[z], + name='test_mul_bcast') +``` + +
+ + +### Neg +There are 1 test cases, listed as following: +
+neg + +```python +node = onnx.helper.make_node( + 'Neg', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-4, 2]).astype(np.float32) +y = np.negative(x) # expected output [4., -2.], +expect(node, inputs=[x], outputs=[y], + name='test_neg_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.negative(x) +expect(node, inputs=[x], outputs=[y], + name='test_neg') +``` + +
+ + +### NegativeLogLikelihoodLoss +There are 18 test cases, listed as following: +
+input_shape_is_NC + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C = 3, 5 +np.random.seed(0) +input = np.random.rand(N, C).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, )).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NC') +``` + +
+
+input_shape_is_NCd1 + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1') +``` + +
+
+input_shape_is_NCd1_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +target[0][0] = np.int64(1) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_ii') +``` + +
+
+input_shape_is_NCd1_mean_weight_negative_ii + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +target[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_mean_weight_negative_ii') +``` + +
+
+input_shape_is_NCd1_weight + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight') +``` + +
+
+input_shape_is_NCd1_weight_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, d1 = 3, 5, 2 +np.random.seed(0) +input = np.random.rand(N, C, d1).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) +target[0][0] = np.int64(1) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight_ii') +``` + +
+
+input_shape_is_NCd1d2 + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2') +``` + +
+
+input_shape_is_NCd1d2_no_weight_reduction_mean_ii + +```python +reduction = 'mean' +ignore_index = np.int64(1) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +target[0][0][0] = np.int64(1) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_no_weight_reduction_mean_ii') +``` + +
+
+input_shape_is_NCd1d2_reduction_mean + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_mean') +``` + +
+
+input_shape_is_NCd1d2_reduction_sum + +```python +reduction = 'sum' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_sum') +``` + +
+
+input_shape_is_NCd1d2_with_weight + +```python +reduction = 'none' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight') +``` + +
+
+input_shape_is_NCd1d2_with_weight_reduction_mean + +```python +reduction = 'mean' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_mean') +``` + +
+
+input_shape_is_NCd1d2_with_weight_reduction_sum + +```python +reduction = 'sum' +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum') +``` + +
+
+input_shape_is_NCd1d2_with_weight_reduction_sum_ii + +```python +reduction = 'sum' +ignore_index = np.int64(0) +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index +) + +N, C, dim1, dim2 = 3, 5, 6, 6 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) +target[0][0][0] = np.int64(0) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum_ii') +``` + +
+
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +target[0][0][0][0] = -5 + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_none_no_weight_negative_ii') +``` + +
+
+input_shape_is_NCd1d2d3_sum_weight_high_ii + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +input = np.random.rand(N, C).astype(np.float32) +target = np.random.randint(0, high=C, size=(N)) +target[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_sum_weight_high_ii') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_mean_weight + +```python +reduction = 'mean' + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction) + +expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_mean_weight') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_none_no_weight + +```python +reduction = 'none' + +node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction) + +expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_none_no_weight') +``` + +
+ + +### NonMaxSuppression +There are 9 test cases, listed as following: +
+nonmaxsuppression_center_point_box_format + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'], + center_point_box=1 +) +boxes = np.array([[ + [0.5, 0.5, 1.0, 1.0], + [0.5, 0.6, 1.0, 1.0], + [0.5, 0.4, 1.0, 1.0], + [0.5, 10.5, 1.0, 1.0], + [0.5, 10.6, 1.0, 1.0], + [0.5, 100.5, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_center_point_box_format') +``` + +
+
+nonmaxsuppression_flipped_coordinates + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [1.0, 1.0, 0.0, 0.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, 0.9, 1.0, -0.1], + [0.0, 10.0, 1.0, 11.0], + [1.0, 10.1, 0.0, 11.1], + [1.0, 101.0, 0.0, 100.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_flipped_coordinates') +``` + +
+
+nonmaxsuppression_identical_boxes + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_identical_boxes') +``` + +
+
+nonmaxsuppression_limit_output_size + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_limit_output_size') +``` + +
+
+nonmaxsuppression_single_box + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0] +]]).astype(np.float32) +scores = np.array([[[0.9]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_single_box') +``` + +
+
+nonmaxsuppression_suppress_by_IOU + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU') +``` + +
+
+nonmaxsuppression_suppress_by_IOU_and_scores + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([3]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.4]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU_and_scores') +``` + +
+
+nonmaxsuppression_two_batches + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]], + [[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]], + [[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [1, 0, 3], [1, 0, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_batches') +``` + +
+
+nonmaxsuppression_two_classes + +```python +node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] +) +boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] +]]).astype(np.float32) +scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3], + [0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) +max_output_boxes_per_class = np.array([2]).astype(np.int64) +iou_threshold = np.array([0.5]).astype(np.float32) +score_threshold = np.array([0.0]).astype(np.float32) +selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 1, 3], [0, 1, 0]]).astype(np.int64) + +expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_classes') +``` + +
+ + +### NonZero +There are 1 test cases, listed as following: +
+nonzero + +```python +node = onnx.helper.make_node( + 'NonZero', + inputs=['condition'], + outputs=['result'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +result = np.array(np.nonzero(condition), dtype=np.int64) # expected output [[0, 1, 1], [0, 0, 1]] +expect(node, inputs=[condition], outputs=[result], + name='test_nonzero_example') +``` + +
+ + +### Not +There are 1 test cases, listed as following: +
+not + +```python +node = onnx.helper.make_node( + 'Not', + inputs=['x'], + outputs=['not'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_4d') +``` + +
+ + +### OneHot +There are 4 test cases, listed as following: +
+with_axis + +```python +axisValue = 1 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_axis') +``` + +
+
+with_negative_axis + +```python +axisValue = -2 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_negative_axis') +``` + +
+
+with_negative_indices + +```python +axisValue = 1 +on_value = 3 +off_value = 1 +output_type = np.float32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue +) +indices = np.array([0, -7, -8], dtype=np.int64) + +# print(y) +# [[3. 1. 1. 1. 1. 1. 1. 1. 1. 1.] +# [1. 1. 1. 3. 1. 1. 1. 1. 1. 1.] +# [1. 1. 3. 1. 1. 1. 1. 1. 1. 1.]] + +depth = np.float32(10) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, axis=axisValue, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_negative_indices') +``` + +
+
+without_axis + +```python +on_value = 5 +off_value = 2 +output_type = np.int32 +node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'] +) +indices = np.array([0, 7, 8], dtype=np.int64) +depth = np.float32(12) +values = np.array([off_value, on_value], dtype=output_type) +y = one_hot(indices, depth, dtype=output_type) +y = y * (on_value - off_value) + off_value +expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_without_axis') +``` + +
+ + +### OptionalHasElement +There are 4 test cases, listed as following: +
+empty + +```python +optional = None +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) +node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_has_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element_empty') +``` + +
+
+get_element_sequence + +```python +optional = [np.array([1, 2, 3, 4]).astype(np.int32)] +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[4, ]) +seq_type_proto = onnx.helper.make_sequence_type_proto(tensor_type_proto) +input_type_proto = onnx.helper.make_optional_type_proto(seq_type_proto) + +node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_get_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element_sequence') +``` + +
+
+get_element_tensor + +```python +optional = np.array([1, 2, 3, 4]).astype(np.float32) +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) + +node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_get_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element') +``` + +
+
+optionalhaselement + +```python +optional = np.array([1, 2, 3, 4]).astype(np.float32) +tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) +input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) +node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] +) +output = optional_has_element_reference_implementation(optional) +expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element') +``` + +
+ + +### Or +There are 2 test cases, listed as following: +
+or + +```python +node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or4d') +``` + +
+
+or_broadcast + +```python +node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_or(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v4d') +``` + +
+ + +### PRelu +There are 2 test cases, listed as following: +
+prelu + +```python +node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +slope = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + +expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_example') +``` + +
+
+prelu_broadcast + +```python +node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +slope = np.random.randn(5).astype(np.float32) +y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + +expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_broadcast') +``` + +
+ + +### Pad +There are 2 test cases, listed as following: +
+constant_pad + +```python +node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads', 'value'], + outputs=['y'], + mode='constant' +) +x = np.random.randn(1, 3, 4, 5).astype(np.float32) +pads = np.array([0, 0, 1, 3, 0, 0, 2, 4]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] +value = np.float32(1.2) +y = pad_impl( + x, + pads, + 'constant', + 1.2 +) + +expect(node, inputs=[x, pads, value], outputs=[y], + name='test_constant_pad') +``` + +
+
+reflection_and_edge_pad + +```python +for mode in ['edge', 'reflect']: + node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads'], + outputs=['y'], + mode=mode + ) + x = np.random.randn(1, 3, 4, 5).astype(np.int32) + pads = np.array([0, 0, 1, 1, 0, 0, 1, 1]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] + y = pad_impl( + x, + pads, + mode + ) + + expect(node, inputs=[x, pads], outputs=[y], + name='test_{}_pad'.format(mode)) +``` + +
+ + +### Pow +There are 3 test cases, listed as following: +
+pow + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_example') + +x = np.arange(60).reshape(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = pow(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_pow') +``` + +
+
+pow_broadcast + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array(2).astype(np.float32) +z = pow(x, y) # expected output [1., 4., 9.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_scalar') + +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) +x = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32) +y = np.array([1, 2, 3]).astype(np.float32) +# expected output [[1, 4, 27], [4, 25, 216]] +z = pow(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_array') +``` + +
+
+types + +```python +node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.int64) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int64') + +x = np.array([1, 2, 3]).astype(np.int64) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_float32') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.int32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int32') + +x = np.array([1, 2, 3]).astype(np.int32) +y = np.array([4, 5, 6]).astype(np.float32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_float32') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.uint64) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint64') + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([4, 5, 6]).astype(np.uint32) +z = pow(x, y) # expected output [1., 32., 729.] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint32') + +x = np.array([1, 2, 3]).astype(np.int64) +y = np.array([4, 5, 6]).astype(np.int64) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_int64') + +x = np.array([1, 2, 3]).astype(np.int32) +y = np.array([4, 5, 6]).astype(np.int32) +z = pow(x, y) # expected output [1, 32, 729] +expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_int32') +``` + +
+ + +### QLinearConv +There are 1 test cases, listed as following: +
+qlinearconv + +```python +node = onnx.helper.make_node('QLinearConv', + inputs=['x', 'x_scale', 'x_zero_point', 'w', 'w_scale', 'w_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([[255, 174, 162, 25, 203, 168, 58], + [15, 59, 237, 95, 129, 0, 64], + [56, 242, 153, 221, 168, 12, 166], + [232, 178, 186, 195, 237, 162, 237], + [188, 39, 124, 77, 80, 102, 43], + [127, 230, 21, 83, 41, 40, 134], + [255, 154, 92, 141, 42, 148, 247], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + +x_scale = np.float32(0.00369204697) +x_zero_point = np.uint8(132) + +w = np.array([0], dtype=np.uint8).reshape((1, 1, 1, 1)) + +w_scale = np.array([0.00172794575], dtype=np.float32) +w_zero_point = np.array([255], dtype=np.uint8) + +y_scale = np.float32(0.00162681262) +y_zero_point = np.uint8(123) + +output = np.array([[0, 81, 93, 230, 52, 87, 197], + [240, 196, 18, 160, 126, 255, 191], + [199, 13, 102, 34, 87, 243, 89], + [23, 77, 69, 60, 18, 93, 18], + [67, 216, 131, 178, 175, 153, 212], + [128, 25, 234, 172, 214, 215, 121], + [0, 101, 163, 114, 213, 107, 8], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + +expect(node, inputs=[x, x_scale, x_zero_point, w, w_scale, w_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearconv') +``` + +
+ + +### QLinearMatMul +There are 1 test cases, listed as following: +
+qlinearmatmul + +```python +node = onnx.helper.make_node('QLinearMatMul', + inputs=['a', 'a_scale', 'a_zero_point', 'b', 'b_scale', 'b_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +#2D +a = np.array([[208, 236, 0, 238], + [3, 214, 255, 29], ], dtype=np.uint8) + +a_scale = np.array([0.0066], dtype=np.float32) +a_zero_point = np.array([113], dtype=np.uint8) + +b = np.array([[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], dtype=np.uint8) + +b_scale = np.array([0.00705], dtype=np.float32) +b_zero_point = np.array([114], dtype=np.uint8) + +y_scale = np.array([0.0107], dtype=np.float32) +y_zero_point = np.array([118], dtype=np.uint8) + +output = np.array([[168, 115, 255], + [1, 66, 151], ], dtype=np.uint8) + +expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_2D') + +#3D +a = np.array([[[208, 236, 0, 238], + [3, 214, 255, 29]], + [[208, 236, 0, 238], + [3, 214, 255, 29]]], dtype=np.uint8) + +a_scale = np.array([0.0066], dtype=np.float32) +a_zero_point = np.array([113], dtype=np.uint8) + +b = np.array([[[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], + [[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]]], dtype=np.uint8) + +b_scale = np.array([0.00705], dtype=np.float32) +b_zero_point = np.array([114], dtype=np.uint8) + +y_scale = np.array([0.0107], dtype=np.float32) +y_zero_point = np.array([118], dtype=np.uint8) + +output = np.array([[[168, 115, 255], + [1, 66, 151]], + [[168, 115, 255], + [1, 66, 151]]], dtype=np.uint8) + +expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_3D') +``` + +
+ + +### QuantizeLinear +There are 2 test cases, listed as following: +
+axis + +```python +node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([[[[-162, 10], + [-100, 232], + [-20, -50]], + + [[-76, 0], + [0, 252], + [32, -44]], + + [[245, -485], + [-960, -270], + [-375, -470]], ], ], dtype=np.float32) +y_scale = np.array([2, 4, 5], dtype=np.float32) +y_zero_point = np.array([84, 24, 196], dtype=np.uint8) +y = (x / y_scale.reshape(1, 3, 1, 1) + y_zero_point.reshape(1, 3, 1, 1)).astype(np.uint8) + +expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear_axis') +``` + +
+
+quantizelinear + +```python +node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + +x = np.array([0, 2, 3, 1000, -254, -1000]).astype(np.float32) +y_scale = np.float32(2) +y_zero_point = np.uint8(128) +y = np.array([128, 129, 130, 255, 1, 0]).astype(np.uint8) + +expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear') +``` + +
+ + +### RNN +There are 4 test cases, listed as following: +
+batchwise + +```python +input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 4 +weight_scale = 0.5 +layout = 1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +rnn = RNN_Helper(X=input, W=W, R=R, layout=layout) +Y, Y_h = rnn.step() +expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_simple_rnn_batchwise') +``` + +
+
+defaults + +```python +input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + +input_size = 2 +hidden_size = 4 +weight_scale = 0.1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +rnn = RNN_Helper(X=input, W=W, R=R) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_simple_rnn_defaults') +``` + +
+
+initial_bias + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 +custom_bias = 0.1 +weight_scale = 0.1 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) +R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + +# Adding custom bias +W_B = custom_bias * np.ones((1, hidden_size)).astype(np.float32) +R_B = np.zeros((1, hidden_size)).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +rnn = RNN_Helper(X=input, W=W, R=R, B=B) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], + name='test_simple_rnn_with_initial_bias') +``` + +
+
+seq_length + +```python +input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + +input_size = 3 +hidden_size = 5 + +node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size +) + +W = np.random.randn(1, hidden_size, input_size).astype(np.float32) +R = np.random.randn(1, hidden_size, hidden_size).astype(np.float32) + +# Adding custom bias +W_B = np.random.randn(1, hidden_size).astype(np.float32) +R_B = np.random.randn(1, hidden_size).astype(np.float32) +B = np.concatenate((W_B, R_B), axis=1) + +rnn = RNN_Helper(X=input, W=W, R=R, B=B) +_, Y_h = rnn.step() +expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_rnn_seq_length') +``` + +
+ + +### Range +There are 2 test cases, listed as following: +
+range_float_type_positive_delta + +```python +node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], +) + +start = np.float32(1) +limit = np.float32(5) +delta = np.float32(2) + +output = np.arange(start, limit, delta, dtype=np.float32) # expected output [1.0, 3.0] +expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_float_type_positive_delta') +``` + +
+
+range_int32_type_negative_delta + +```python +node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], +) + +start = np.int32(10) +limit = np.int32(6) +delta = np.int32(-3) + +output = np.arange(start, limit, delta, dtype=np.int32) # expected output [10, 7] +expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_int32_type_negative_delta') +``` + +
+ + +### Reciprocal +There are 1 test cases, listed as following: +
+reciprocal + +```python +node = onnx.helper.make_node( + 'Reciprocal', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-4, 2]).astype(np.float32) +y = np.reciprocal(x) # expected output [-0.25, 0.5], +expect(node, inputs=[x], outputs=[y], + name='test_reciprocal_example') + +x = np.random.rand(3, 4, 5).astype(np.float32) + 0.5 +y = np.reciprocal(x) +expect(node, inputs=[x], outputs=[y], + name='test_reciprocal') +``` + +
+ + +### ReduceL1 +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[78.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[3., 7.], [11., 15.], [19., 23.]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +# print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_random') +``` + +
+ + +### ReduceL2 +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) +#print(reduced) +#[[[25.49509757]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +#print(reduced) +#[[2.23606798, 5.], +# [7.81024968, 10.63014581], +# [13.45362405, 16.2788206]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +#print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +#print(reduced) +#[[[2.23606798], [5.]] +# [[7.81024968], [10.63014581]] +# [[13.45362405], [16.2788206 ]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_l2_keep_dims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) +# print(data) +#[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) +# print(reduced) +#[[[2.23606798], [5.]] +# [[7.81024968], [10.63014581]] +# [[13.45362405], [16.2788206 ]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_random') +``` + +
+ + +### ReduceLogSum +There are 3 test cases, listed as following: +
+keepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"] +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, keepdims=True)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_default') +``` + +
+
+negative_axes_keepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[-2] +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(-2), keepdims=True)) +# print(reduced) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_negative_axes') +``` + +
+
+nokeepdims + +```python +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[2, 1], + keepdims=0 +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(2, 1), keepdims=False)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_desc_axes') + +node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[0, 1], + keepdims=0 +) +data = np.random.ranf([3, 4, 5]).astype(np.float32) +reduced = np.log(np.sum(data, axis=(0, 1), keepdims=False)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_asc_axes') +``` + +
+ + +### ReduceLogSumExp +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) +# print(reduced) +# [[[60.00671387]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) +# print(reduced) +#[[20., 2.31326175] +# [40.00004578, 2.31326175] +# [60.00671387, 2.31326175]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) +# print(reduced) +# [[[20., 2.31326175]] +# [[40.00004578, 2.31326175]] +# [[60.00671387, 2.31326175]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims +) + +data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) +# print(reduced) +# [[[20., 2.31326175]] +# [[40.00004578, 2.31326175]] +# [[60.00671387, 2.31326175]]] + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.double) +reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + +expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_random') +``` + +
+ + +### ReduceMax +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +[[[60.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdim_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[20., 2.] +# [40., 2.] +# [60., 2.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[20., 2.]] +# [[40., 2.]] +# [[60., 2.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[20., 2.]] +# [[40., 2.]] +# [[60., 2.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_random') +``` + +
+ + +### ReduceMean +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[18.25]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[12.5, 1.5] +# [35., 1.5] +# [57.5, 1.5]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[12.5, 1.5]] +# [[35., 1.5]] +# [[57.5, 1.5]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +# [[[12.5, 1.5]] +# [[35., 1.5]] +# [[57.5, 1.5]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_random') +``` + +
+ + +### ReduceMin +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[5., 1.] +# [30., 1.] +# [55., 1.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[5., 1.]] +# [[30., 1.]] +# [[55., 1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[5., 1.]] +# [[30., 1.]] +# [[55., 1.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_random') +``` + +
+ + +### ReduceProd +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[4.790016e+08]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[3., 8.] +# [35., 48.] +# [99., 120.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[3., 8.]] +# [[35., 48.]] +# [[99., 120.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[3., 8.]] +# [[35., 48.]] +# [[99., 120.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_random') +``` + +
+ + +### ReduceSum +There are 5 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=None, keepdims=keepdims == 1) +#print(reduced) +#[[[78.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=None, keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([1], dtype=np.int64) +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +#print(reduced) +#[[4., 6.] +# [12., 14.] +# [20., 22.]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_random') +``` + +
+
+empty_axes_input_noop + +```python +shape = [3, 2, 2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims, + noop_with_empty_axes=True) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +axes = np.array([], dtype=np.int64) +reduced = np.array(data) +#print(reduced) +#[[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]] + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_empty_axes_input_noop_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.array(data) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_negative_axes_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = np.array([1], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +#print(reduced) +#[[[4., 6.]] +# [[12., 14.]] +# [[20., 22.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = np.array([-2], dtype=np.int64) +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) +# print(reduced) +#[[[4., 6.]] +# [[12., 14.]] +# [[20., 22.]]] + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(data, axis=tuple( + axes.tolist()), keepdims=keepdims == 1) + +expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_random') +``` + +
+ + +### ReduceSumSquare +There are 4 test cases, listed as following: +
+default_axes_keepdims + +```python +shape = [3, 2, 2] +axes = None +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) +#print(reduced) +#[[[650.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_random') +``` + +
+
+do_not_keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 0 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[10., 20.] +# [74., 100.] +# [202., 244.]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_random') +``` + +
+
+keepdims + +```python +shape = [3, 2, 2] +axes = [1] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +#print(reduced) +#[[[10., 20.]] +# [[74., 100.]] +# [[202., 244.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_random') +``` + +
+
+negative_axes_keepdims + +```python +shape = [3, 2, 2] +axes = [-2] +keepdims = 1 + +node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + +data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) +# print(reduced) +#[[[10., 20.s]] +# [[74., 100.]] +# [[202., 244.]]] + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_example') + +np.random.seed(0) +data = np.random.uniform(-10, 10, shape).astype(np.float32) +reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + +expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_random') +``` + +
+ + +### Relu +There are 1 test cases, listed as following: +
+relu + +```python +node = onnx.helper.make_node( + 'Relu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) + +expect(node, inputs=[x], outputs=[y], + name='test_relu') +``` + +
+ + +### Reshape +There are 2 test cases, listed as following: +
+allowzero + +```python +original_shape = [0, 3, 4] +test_cases = { + 'allowzero_reordered': np.array([3, 4, 0], dtype=np.int64), +} +data = np.random.random_sample(original_shape).astype(np.float32) + +for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + allowzero=1, # if allowzero=1, final shape = (3, 4, 0) + # if allowzero=0, final shape = (3, 4, 4) + ) + + reshaped = reshape_reference_implementation(data, shape, allowzero=1) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) +``` + +
+
+reshape + +```python +original_shape = [2, 3, 4] +test_cases = { + 'reordered_all_dims': np.array([4, 2, 3], dtype=np.int64), + 'reordered_last_dims': np.array([2, 4, 3], dtype=np.int64), + 'reduced_dims': np.array([2, 12], dtype=np.int64), + 'extended_dims': np.array([2, 3, 2, 2], dtype=np.int64), + 'one_dim': np.array([24], dtype=np.int64), + 'negative_dim': np.array([2, -1, 2], dtype=np.int64), + 'negative_extended_dims': np.array([-1, 2, 3, 4], dtype=np.int64), + 'zero_dim': np.array([2, 0, 4, 1], dtype=np.int64), + 'zero_and_negative_dim': np.array([2, 0, 1, -1], dtype=np.int64), +} +data = np.random.random_sample(original_shape).astype(np.float32) + +for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + ) + + reshaped = reshape_reference_implementation(data, shape) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) +``` + +
+ + +### Resize +There are 23 test cases, listed as following: +
+resize_downsample_scales_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1.47119141 2.78125 4.08251953] +# [ 6.71142578 8.02148438 9.32275391] +# [11.91650391 13.2265625 14.52783203]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic') +``` + +
+
+resize_downsample_scales_cubic_A_n0p5_exclude_outside + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1.36812675 2.6695014 4.0133367 ] +# [ 6.57362535 7.875 9.2188353 ] +# [11.94896657 13.25034122 14.59417652]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_A_n0p5_exclude_outside') +``` + +
+
+resize_downsample_scales_cubic_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + +# [[[[ 1. 2.39519159 3.79038317] +# [ 6.58076634 7.97595793 9.37114951] +# [12.16153268 13.55672427 14.95191585]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_align_corners') +``` + +
+
+resize_downsample_scales_linear + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[2.6666665 4.3333331]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear') +``` + +
+
+resize_downsample_scales_linear_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[1. 3.142857]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear_align_corners') +``` + +
+
+resize_downsample_scales_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + +# [[[[1. 3.]]]] +output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_nearest') +``` + +
+
+resize_downsample_sizes_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 1.63078704 3.00462963 4.37847222] +# [ 7.12615741 8.5 9.87384259] +# [12.62152778 13.99537037 15.36921296]]]] +output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_cubic') +``` + +
+
+resize_downsample_sizes_linear_pytorch_half_pixel + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='pytorch_half_pixel' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 3, 1], dtype=np.int64) + +# [[[[ 1.6666666] +# [ 7. ] +# [12.333333 ]]]] +output = interpolate_nd( + data, linear_coeffs, output_size=sizes, coordinate_transformation_mode='pytorch_half_pixel').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_linear_pytorch_half_pixel') +``` + +
+
+resize_downsample_sizes_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 1, 3], dtype=np.int64) + +# [[[[1. 3.]]]] +output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_nearest') +``` + +
+
+resize_tf_crop_and_resize + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +# Note: for some rois, the result may be different with that of TF for inaccurate floating point +roi = np.array([0, 0, 0.4, 0.6, 1, 1, 0.6, 0.8], dtype=np.float32) +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 7.6000004 7.9 8.2 ] +# [ 8.8 9.1 9.400001 ] +# [10. 10.3 10.6 ]]]] +output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize').astype(np.float32) + +expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') +``` + +
+
+resize_tf_crop_and_resize_extrapolation_value + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize', + extrapolation_value=10.0 +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +# Note: for some rois, the result may be different with that of TF for inaccurate floating point +roi = np.array([0, 0, 0.4, 0.6, 1, 1, 1.2, 1.7], dtype=np.float32) +sizes = np.array([1, 1, 3, 3], dtype=np.int64) + +# [[[[ 7.6000004 10. 10. ] +# [12.400001 10. 10. ] +# [10. 10. 10. ]]]] +output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize', extrapolation_value=10.0).astype(np.float32) + +expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') +``` + +
+
+resize_upsample_scales_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 0.47265625 0.76953125 1.24609375 1.875 2.28125 +# 2.91015625 3.38671875 3.68359375] +# [ 1.66015625 1.95703125 2.43359375 3.0625 3.46875 +# 4.09765625 4.57421875 4.87109375] +# [ 3.56640625 3.86328125 4.33984375 4.96875 5.375 +# 6.00390625 6.48046875 6.77734375] +# [ 6.08203125 6.37890625 6.85546875 7.484375 7.890625 +# 8.51953125 8.99609375 9.29296875] +# [ 7.70703125 8.00390625 8.48046875 9.109375 9.515625 +# 10.14453125 10.62109375 10.91796875] +# [10.22265625 10.51953125 10.99609375 11.625 12.03125 +# 12.66015625 13.13671875 13.43359375] +# [12.12890625 12.42578125 12.90234375 13.53125 13.9375 +# 14.56640625 15.04296875 15.33984375] +# [13.31640625 13.61328125 14.08984375 14.71875 15.125 +# 15.75390625 16.23046875 16.52734375]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic') +``` + +
+
+resize_upsample_scales_cubic_A_n0p5_exclude_outside + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 0.55882353 0.81494204 1.35698249 1.89705882 2.39705882 +# 2.93713516 3.47917561 3.73529412] +# [ 1.58329755 1.83941606 2.38145651 2.92153285 3.42153285 +# 3.96160918 4.50364964 4.75976814] +# [ 3.75145936 4.00757787 4.54961832 5.08969466 5.58969466 +# 6.12977099 6.67181144 6.92792995] +# [ 5.91176471 6.16788321 6.70992366 7.25 7.75 +# 8.29007634 8.83211679 9.08823529] +# [ 7.91176471 8.16788321 8.70992366 9.25 9.75 +# 10.29007634 10.83211679 11.08823529] +# [10.07207005 10.32818856 10.87022901 11.41030534 11.91030534 +# 12.45038168 12.99242213 13.24854064] +# [12.24023186 12.49635036 13.03839082 13.57846715 14.07846715 +# 14.61854349 15.16058394 15.41670245] +# [13.26470588 13.52082439 14.06286484 14.60294118 15.10294118 +# 15.64301751 16.18505796 16.44117647]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_A_n0p5_exclude_outside') +``` + +
+
+resize_upsample_scales_cubic_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 1. 1.34110787 1.80029155 2.32944606 2.67055394 +# 3.19970845 3.65889213 4. ] +# [ 2.36443149 2.70553936 3.16472303 3.69387755 4.03498542 +# 4.56413994 5.02332362 5.36443149] +# [ 4.20116618 4.54227405 5.00145773 5.53061224 5.87172012 +# 6.40087464 6.86005831 7.20116618] +# [ 6.31778426 6.65889213 7.1180758 7.64723032 7.98833819 +# 8.51749271 8.97667638 9.31778426] +# [ 7.68221574 8.02332362 8.48250729 9.01166181 9.35276968 +# 9.8819242 10.34110787 10.68221574] +# [ 9.79883382 10.13994169 10.59912536 11.12827988 11.46938776 +# 11.99854227 12.45772595 12.79883382] +# [11.63556851 11.97667638 12.43586006 12.96501458 13.30612245 +# 13.83527697 14.29446064 14.63556851] +# [13. 13.34110787 13.80029155 14.32944606 14.67055394 +# 15.19970845 15.65889213 16. ]]]] +output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_align_corners') +``` + +
+
+resize_upsample_scales_cubic_asymmetric + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='asymmetric' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[ 1. 1.40625 2. 2.5 3. 3.59375 4. +# 4.09375] +# [ 2.625 3.03125 3.625 4.125 4.625 5.21875 5.625 +# 5.71875] +# [ 5. 5.40625 6. 6.5 7. 7.59375 8. +# 8.09375] +# [ 7. 7.40625 8. 8.5 9. 9.59375 10. +# 10.09375] +# [ 9. 9.40625 10. 10.5 11. 11.59375 12. +# 12.09375] +# [11.375 11.78125 12.375 12.875 13.375 13.96875 14.375 +# 14.46875] +# [13. 13.40625 14. 14.5 15. 15.59375 16. +# 16.09375] +# [13.375 13.78125 14.375 14.875 15.375 15.96875 16.375 +# 16.46875]]]] +output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.75), scale_factors=scales, + coordinate_transformation_mode='asymmetric').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_asymmetric') +``` + +
+
+resize_upsample_scales_linear + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[1. 1.25 1.75 2. ] +# [1.5 1.75 2.25 2.5 ] +# [2.5 2.75 3.25 3.5 ] +# [3. 3.25 3.75 4. ]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear') +``` + +
+
+resize_upsample_scales_linear_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + +# [[[[1. 1.33333333 1.66666667 2. ] +# [1.66666667 2. 2.33333333 2.66666667] +# [2.33333333 2.66666667 3. 3.33333333] +# [3. 3.33333333 3.66666667 4. ]]]] +output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear_align_corners') +``` + +
+
+resize_upsample_scales_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + +# [[[[1. 1. 1. 2. 2. 2.] +# [1. 1. 1. 2. 2. 2.] +# [3. 3. 3. 4. 4. 4.] +# [3. 3. 3. 4. 4. 4.]]]] +output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_nearest') +``` + +
+
+resize_upsample_sizes_cubic + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 9, 10], dtype=np.int64) + +# [[[[ 0.45507922 0.64057922 0.97157922 1.42257922 1.90732922 +# 2.22332922 2.70807922 3.15907922 3.49007922 3.67557922] +# [ 1.39437963 1.57987963 1.91087963 2.36187963 2.84662963 +# 3.16262963 3.64737963 4.09837963 4.42937963 4.61487963] +# [ 2.95130693 3.13680693 3.46780693 3.91880693 4.40355693 +# 4.71955693 5.20430693 5.65530693 5.98630693 6.17180693] +# [ 5.20525069 5.39075069 5.72175069 6.17275069 6.65750069 +# 6.97350069 7.45825069 7.90925069 8.24025069 8.42575069] +# [ 6.88975 7.07525 7.40625 7.85725 8.342 +# 8.658 9.14275 9.59375 9.92475 10.11025 ] +# [ 8.57424931 8.75974931 9.09074931 9.54174931 10.02649931 +# 10.34249931 10.82724931 11.27824931 11.60924931 11.79474931] +# [10.82819307 11.01369307 11.34469307 11.79569307 12.28044307 +# 12.59644307 13.08119307 13.53219307 13.86319307 14.04869307] +# [12.38512037 12.57062037 12.90162037 13.35262037 13.83737037 +# 14.15337037 14.63812037 15.08912037 15.42012037 15.60562037] +# [13.32442078 13.50992078 13.84092078 14.29192078 14.77667078 +# 15.09267078 15.57742078 16.02842078 16.35942078 16.54492078]]]] +output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_cubic') +``` + +
+
+resize_upsample_sizes_nearest + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 7, 8], dtype=np.int64) + +# [[[[1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [1. 1. 1. 1. 2. 2. 2. 2.] +# [3. 3. 3. 3. 4. 4. 4. 4.] +# [3. 3. 3. 3. 4. 4. 4. 4.] +# [3. 3. 3. 3. 4. 4. 4. 4.]]]] +output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest') +``` + +
+
+resize_upsample_sizes_nearest_ceil_half_pixel + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='half_pixel', + nearest_mode='ceil' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='ceil'), output_size=sizes).astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_ceil_half_pixel') +``` + +
+
+resize_upsample_sizes_nearest_floor_align_corners + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='align_corners', + nearest_mode='floor' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 1. 1. 1. 2. 2. 3. 3. 4.] +# [ 5. 5. 5. 6. 6. 7. 7. 8.] +# [ 5. 5. 5. 6. 6. 7. 7. 8.] +# [ 9. 9. 9. 10. 10. 11. 11. 12.] +# [ 9. 9. 9. 10. 10. 11. 11. 12.] +# [13. 13. 13. 14. 14. 15. 15. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='floor'), output_size=sizes, coordinate_transformation_mode='align_corners').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_floor_align_corners') +``` + +
+
+resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric + +```python +node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='asymmetric', + nearest_mode='round_prefer_ceil' +) + +data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], +]]], dtype=np.float32) + +sizes = np.array([1, 1, 8, 8], dtype=np.int64) + +# [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 5. 6. 6. 7. 7. 8. 8. 8.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [ 9. 10. 10. 11. 11. 12. 12. 12.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.] +# [13. 14. 14. 15. 15. 16. 16. 16.]]]] +output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='round_prefer_ceil'), + output_size=sizes, coordinate_transformation_mode='asymmetric').astype(np.float32) + +expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric') +``` + +
+ + +### ReverseSequence +There are 2 test cases, listed as following: +
+reversesequence_batch + +```python +node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=1, + batch_axis=0, +) +x = np.array([[0.0, 1.0, 2.0, 3.0], + [4.0, 5.0, 6.0, 7.0], + [8.0, 9.0, 10.0, 11.0], + [12.0, 13.0, 14.0, 15.0]], dtype=np.float32) +sequence_lens = np.array([1, 2, 3, 4], dtype=np.int64) + +y = np.array([[0.0, 1.0, 2.0, 3.0], + [5.0, 4.0, 6.0, 7.0], + [10.0, 9.0, 8.0, 11.0], + [15.0, 14.0, 13.0, 12.0]], dtype=np.float32) + +expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_batch') +``` + +
+
+reversesequence_time + +```python +node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=0, + batch_axis=1, +) +x = np.array([[0.0, 4.0, 8.0, 12.0], + [1.0, 5.0, 9.0, 13.0], + [2.0, 6.0, 10.0, 14.0], + [3.0, 7.0, 11.0, 15.0]], dtype=np.float32) +sequence_lens = np.array([4, 3, 2, 1], dtype=np.int64) + +y = np.array([[3.0, 6.0, 9.0, 12.0], + [2.0, 5.0, 8.0, 13.0], + [1.0, 4.0, 10.0, 14.0], + [0.0, 7.0, 11.0, 15.0]], dtype=np.float32) + +expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_time') +``` + +
+ + +### RoiAlign +There are 2 test cases, listed as following: +
+roialign_aligned_false + +```python +node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="output_half_pixel", +) + +X, batch_indices, rois = get_roi_align_input_values() +# (num_rois, C, output_height, output_width) +Y = np.array( + [ + [ + [ + [0.4664, 0.4466, 0.3405, 0.5688, 0.6068], + [0.3714, 0.4296, 0.3835, 0.5562, 0.3510], + [0.2768, 0.4883, 0.5222, 0.5528, 0.4171], + [0.4713, 0.4844, 0.6904, 0.4920, 0.8774], + [0.6239, 0.7125, 0.6289, 0.3355, 0.3495], + ] + ], + [ + [ + [0.3022, 0.4305, 0.4696, 0.3978, 0.5423], + [0.3656, 0.7050, 0.5165, 0.3172, 0.7015], + [0.2912, 0.5059, 0.6476, 0.6235, 0.8299], + [0.5916, 0.7389, 0.7048, 0.8372, 0.8893], + [0.6227, 0.6153, 0.7097, 0.6154, 0.4585], + ] + ], + [ + [ + [0.2384, 0.3379, 0.3717, 0.6100, 0.7601], + [0.3767, 0.3785, 0.7147, 0.9243, 0.9727], + [0.5749, 0.5826, 0.5709, 0.7619, 0.8770], + [0.5355, 0.2566, 0.2141, 0.2796, 0.3600], + [0.4365, 0.3504, 0.2887, 0.3661, 0.2349], + ] + ], + ], + dtype=np.float32, +) + +expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_false") +``` + +
+
+roialign_aligned_true + +```python +node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="half_pixel", +) + +X, batch_indices, rois = get_roi_align_input_values() +# (num_rois, C, output_height, output_width) +Y = np.array( + [ + [ + [ + [0.5178, 0.3434, 0.3229, 0.4474, 0.6344], + [0.4031, 0.5366, 0.4428, 0.4861, 0.4023], + [0.2512, 0.4002, 0.5155, 0.6954, 0.3465], + [0.3350, 0.4601, 0.5881, 0.3439, 0.6849], + [0.4932, 0.7141, 0.8217, 0.4719, 0.4039], + ] + ], + [ + [ + [0.3070, 0.2187, 0.3337, 0.4880, 0.4870], + [0.1871, 0.4914, 0.5561, 0.4192, 0.3686], + [0.1433, 0.4608, 0.5971, 0.5310, 0.4982], + [0.2788, 0.4386, 0.6022, 0.7000, 0.7524], + [0.5774, 0.7024, 0.7251, 0.7338, 0.8163], + ] + ], + [ + [ + [0.2393, 0.4075, 0.3379, 0.2525, 0.4743], + [0.3671, 0.2702, 0.4105, 0.6419, 0.8308], + [0.5556, 0.4543, 0.5564, 0.7502, 0.9300], + [0.6626, 0.5617, 0.4813, 0.4954, 0.6663], + [0.6636, 0.3721, 0.2056, 0.1928, 0.2478], + ] + ], + ], + dtype=np.float32, +) + +expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_true") +``` + +
+ + +### Round +There are 1 test cases, listed as following: +
+round + +```python +node = onnx.helper.make_node( + 'Round', + inputs=['x'], + outputs=['y'], +) + +x = np.array([0.1, 0.5, 0.9, 1.2, 1.5, + 1.8, 2.3, 2.5, 2.7, -1.1, + -1.5, -1.9, -2.2, -2.5, -2.8]).astype(np.float32) +y = np.array([0., 0., 1., 1., 2., + 2., 2., 2., 3., -1., + -2., -2., -2., -2., -3.]).astype(np.float32) # expected output +expect(node, inputs=[x], outputs=[y], + name='test_round') +``` + +
+ + +### Scan +There are 2 test cases, listed as following: +
+scan_8 + +```python +# Given an input sequence [x1, ..., xN], sum up its elements using a scan +# returning the final state (x1+x2+...+xN) as well the scan_output +# [x1, x1+x2, ..., x1+x2+...+xN] +# +# create graph to represent scan body +sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) +next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) +sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) +add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] +) +id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] +) +scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] +) +# create scan op node +no_sequence_lens = '' # optional input, not supplied +node = onnx.helper.make_node( + 'Scan', + inputs=[no_sequence_lens, 'initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body +) +# create inputs for batch-size 1, sequence-length 3, inner dimension 2 +initial = np.array([0, 0]).astype(np.float32).reshape((1, 2)) +x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((1, 3, 2)) +# final state computed = [1 + 3 + 5, 2 + 4 + 6] +y = np.array([9, 12]).astype(np.float32).reshape((1, 2)) +# scan-output computed +z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((1, 3, 2)) + +expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan_sum', opset_imports=[onnx.helper.make_opsetid("", 8)]) +``` + +
+
+scan_9 + +```python +# Given an input sequence [x1, ..., xN], sum up its elements using a scan +# returning the final state (x1+x2+...+xN) as well the scan_output +# [x1, x1+x2, ..., x1+x2+...+xN] +# +# create graph to represent scan body +sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) +next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) +sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) +scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) +add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] +) +id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] +) +scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] +) +# create scan op node +node = onnx.helper.make_node( + 'Scan', + inputs=['initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body +) +# create inputs for sequence-length 3, inner dimension 2 +initial = np.array([0, 0]).astype(np.float32).reshape((2,)) +x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((3, 2)) +# final state computed = [1 + 3 + 5, 2 + 4 + 6] +y = np.array([9, 12]).astype(np.float32).reshape((2,)) +# scan-output computed +z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((3, 2)) + +expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan9_sum', opset_imports=[onnx.helper.make_opsetid("", 9)]) +``` + +
+ + +### Scatter +There are 2 test cases, listed as following: +
+scatter_with_axis + +```python +axis = 1 +node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter(data, indices, updates, axis=axis) +# print(y) produces +# [[1.0, 1.1, 3.0, 2.1, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_with_axis', opset_imports=[helper.make_opsetid("", 10)]) +``` + +
+
+scatter_without_axis + +```python +node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.zeros((3, 3), dtype=np.float32) +indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) +updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + +y = scatter(data, indices, updates) +# print(y) produces +# [[2.0, 1.1, 0.0], +# [1.0, 0.0, 2.2], +# [0.0, 2.1, 1.2]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_without_axis', opset_imports=[helper.make_opsetid("", 10)]) +``` + +
+ + +### ScatterElements +There are 4 test cases, listed as following: +
+scatter_elements_with_axis + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis) +# print(y) produces +# [[1.0, 1.1, 3.0, 2.1, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_axis') +``` + +
+
+scatter_elements_with_duplicate_indices + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + reduction='add', +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, 1]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis, reduction='add') +# print(y) produces +# [[1.0, 5.2, 3.0, 4.0, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_duplicate_indices') +``` + +
+
+scatter_elements_with_negative_indices + +```python +axis = 1 +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, +) +data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) +indices = np.array([[1, -3]], dtype=np.int64) +updates = np.array([[1.1, 2.1]], dtype=np.float32) + +y = scatter_elements(data, indices, updates, axis) +# print(y) produces +# [[1.0, 1.1, 2.1, 4.0, 5.0]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_negative_indices') +``` + +
+
+scatter_elements_without_axis + +```python +node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.zeros((3, 3), dtype=np.float32) +indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) +updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + +y = scatter_elements(data, indices, updates) +# print(y) produces +# [[2.0, 1.1, 0.0], +# [1.0, 0.0, 2.2], +# [0.0, 2.1, 1.2]] + +expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_without_axis') +``` + +
+ + +### ScatterND +There are 3 test cases, listed as following: +
+scatternd + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [2]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates) +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd') +``` + +
+
+scatternd_add + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='add', +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [0]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[7, 8, 9, 10], [13, 14, 15, 16], [18, 17, 16, 15], [16, 15, 14, 13]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates, reduction='add') +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_add') +``` + +
+
+scatternd_multiply + +```python +node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='mul', +) +data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +indices = np.array([[0], [0]], dtype=np.int64) +updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) +# Expecting output as np.array( +# [[[5, 10, 15, 20], [60, 72, 84, 96], [168, 147, 126, 105], [128, 96, 64, 32]], +# [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], +# [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], +# [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) +output = scatter_nd_impl(data, indices, updates, reduction='mul') +expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_multiply') +``` + +
+ + +### Selu +There are 2 test cases, listed as following: +
+selu + +```python +node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], + alpha=2.0, + gamma=3.0 +) + +x = np.array([-1, 0, 1]).astype(np.float32) +# expected output [-3.79272318, 0., 3.] +y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 +expect(node, inputs=[x], outputs=[y], + name='test_selu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 +expect(node, inputs=[x], outputs=[y], + name='test_selu') +``` + +
+
+selu_default + +```python +default_alpha = 1.67326319217681884765625 +default_gamma = 1.05070102214813232421875 +node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, 0, np.inf) * default_gamma + \ + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha * default_gamma +expect(node, inputs=[x], outputs=[y], + name='test_selu_default') +``` + +
+ + +### SequenceInsert +There are 1 test cases, listed as following: +
+sequenceinsert + +```python +test_cases = { + 'at_back': [np.array([10, 11, 12]).astype(np.int64)], + 'at_front': [np.array([-2, -1, 0]), np.array([0]).astype(np.int64)] +} +sequence = [np.array([1, 2, 3, 4]).astype(np.int64), np.array([5, 6, 7]).astype(np.int64), np.array([8, 9]).astype(np.int64)] + +for test_name, test_inputs in test_cases.items(): + tensor = test_inputs[0].astype(np.int64) + + if len(test_inputs) > 1: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor', 'position'], + outputs=['output_sequence'] + ) + position = test_inputs[1] + inserted = sequence_insert_reference_implementation(sequence, tensor, position) + expect(node, inputs=[sequence, tensor, position], outputs=[inserted], + name='test_sequence_insert_' + test_name) + else: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor'], + outputs=['output_sequence'] + ) + inserted = sequence_insert_reference_implementation(sequence, tensor) + expect(node, inputs=[sequence, tensor], outputs=[inserted], + name='test_sequence_insert_' + test_name) +``` + +
+ + +### SequenceMap +There are 6 test cases, listed as following: +
+sequence_map_add_1_sequence_1_tensor + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) for k in range(3)] +x1 = np.random.uniform(0.0, 1.0, 10).astype(np.float32) +y0 = [x0[i] + x1 for i in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N']), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_1_sequence_1_tensor') +``` + +
+
+sequence_map_add_2_sequences + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body +) + +N = [np.random.randint(1, 10) for _ in range(3)] +x0 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] +x1 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] +y0 = [x0[k] + x1[k] for k in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_2_sequences') +``` + +
+
+sequence_map_extract_shapes + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Shape', ['x'], ['shape'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('x', onnx.TensorProto.FLOAT, ['H', 'W', 'C'])], + [onnx.helper.make_tensor_value_info('shape', onnx.TensorProto.INT64, [3])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['in_seq'], + outputs=['shapes'], + body=body +) + +shapes = [ + np.array([40, 30, 3], dtype=np.int64), + np.array([20, 10, 3], dtype=np.int64), + np.array([10, 5, 3], dtype=np.int64), +] +x0 = [np.zeros(shape, dtype=np.float32) for shape in shapes] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['H', 'W', 'C'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, [3])), +] +expect(node, inputs=[x0], outputs=[shapes], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_extract_shapes') +``` + +
+
+sequence_map_identity_1_sequence + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info( + 'in0', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x'], + outputs=['y'], + body=body +) + +x = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) + for _ in range(3)] +y = x +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), +] +expect(node, inputs=[x], outputs=[y], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence') +``` + +
+
+sequence_map_identity_1_sequence_1_tensor + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info( + 'out1', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +x1 = np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) +y0 = x0 +y1 = [x1 for _ in range(3)] +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M']), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence_1_tensor') +``` + +
+
+sequence_map_identity_2_sequences + +```python +body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info('out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('out1', onnx.TensorProto.FLOAT, ['M'])] +) + +node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body +) + +x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +x1 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] +y0 = x0 +y1 = x1 +input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), +] +expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_2_sequences') +``` + +
+ + +### Shape +There are 1 test cases, listed as following: +
+shape + +```python +x = np.array([ + [1, 2, 3], + [4, 5, 6], +]).astype(np.float32) +test_shape('_example', x) # preserve names of original test cases + +x = np.random.randn(3, 4, 5).astype(np.float32) + +test_shape('', x) # preserve names of original test cases + +test_shape('_start_1', x, start=1) + +test_shape('_end_1', x, end=1) + +test_shape('_start_negative_1', x, start=-1) + +test_shape('_end_negative_1', x, end=-1) + +test_shape('_start_1_end_negative_1', x, start=1, end=-1) + +test_shape('_start_1_end_2', x, start=1, end=2) + +test_shape('_clip_start', x, start=-10) + +test_shape('_clip_end', x, end=10) +``` + +
+ + +### Shrink +There are 2 test cases, listed as following: +
+hard_shrink + +```python +node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, +) +X = np.arange(-2.0, 2.1, dtype=np.float32) +Y = np.array([-2, 0, 0, 0, 2], dtype=np.float32) +expect(node, inputs=[X], outputs=[Y], + name='test_shrink_hard') +``` + +
+
+soft_shrink + +```python +node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, + bias=1.5, +) +X = np.arange(-2.0, 2.1, dtype=np.float32) +Y = np.array([-0.5, 0, 0, 0, 0.5], dtype=np.float32) +expect(node, inputs=[X], outputs=[Y], + name='test_shrink_soft') +``` + +
+ + +### Sigmoid +There are 1 test cases, listed as following: +
+sigmoid + +```python +node = onnx.helper.make_node( + 'Sigmoid', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = 1.0 / (1.0 + np.exp(np.negative(x))) # expected output [0.26894143, 0.5, 0.7310586] +expect(node, inputs=[x], outputs=[y], + name='test_sigmoid_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = 1.0 / (1.0 + np.exp(np.negative(x))) +expect(node, inputs=[x], outputs=[y], + name='test_sigmoid') +``` + +
+ + +### Sign +There are 1 test cases, listed as following: +
+sign + +```python +node = onnx.helper.make_node( + 'Sign', + inputs=['x'], + outputs=['y'], +) + +x = np.array(range(-5, 6)).astype(np.float32) +y = np.sign(x) +expect(node, inputs=[x], outputs=[y], + name='test_sign') +``` + +
+ + +### Sin +There are 1 test cases, listed as following: +
+sin + +```python +node = onnx.helper.make_node( + 'Sin', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.sin(x) +expect(node, inputs=[x], outputs=[y], + name='test_sin_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.sin(x) +expect(node, inputs=[x], outputs=[y], + name='test_sin') +``` + +
+ + +### Sinh +There are 1 test cases, listed as following: +
+sinh + +```python +node = onnx.helper.make_node( + 'Sinh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.sinh(x) # expected output [-1.17520118, 0., 1.17520118] +expect(node, inputs=[x], outputs=[y], + name='test_sinh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.sinh(x) +expect(node, inputs=[x], outputs=[y], + name='test_sinh') +``` + +
+ + +### Size +There are 1 test cases, listed as following: +
+size + +```python +node = onnx.helper.make_node( + 'Size', + inputs=['x'], + outputs=['y'], +) + +x = np.array([ + [1, 2, 3], + [4, 5, 6], +]).astype(np.float32) +y = np.array(6).astype(np.int64) + +expect(node, inputs=[x], outputs=[y], + name='test_size_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.array(x.size).astype(np.int64) + +expect(node, inputs=[x], outputs=[y], + name='test_size') +``` + +
+ + +### Slice +There are 8 test cases, listed as following: +
+slice + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +y = x[0:3, 0:10] +starts = np.array([0, 0], dtype=np.int64) +ends = np.array([3, 10], dtype=np.int64) +axes = np.array([0, 1], dtype=np.int64) +steps = np.array([1, 1], dtype=np.int64) + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice') +``` + +
+
+slice_default_axes + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends], outputs=[y], + name='test_slice_default_axes') +``` + +
+
+slice_default_steps + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +axes = np.array([0, 1, 2], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_default_steps') +``` + +
+
+slice_end_out_of_bounds + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([1], dtype=np.int64) +ends = np.array([1000], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 1:1000] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_end_out_of_bounds') +``` + +
+
+slice_neg + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0], dtype=np.int64) +ends = np.array([-1], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 0:-1] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg') +``` + +
+
+slice_neg_steps + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([20, 10, 4], dtype=np.int64) +ends = np.array([0, 0, 1], dtype=np.int64) +axes = np.array([0, 1, 2], dtype=np.int64) +steps = np.array([-1, -3, -2]).astype(np.int64) +y = x[20:0:-1, 10:0:-3, 4:1:-2] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg_steps') +``` + +
+
+slice_negative_axes + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([0, 0, 3], dtype=np.int64) +ends = np.array([20, 10, 4], dtype=np.int64) +axes = np.array([0, -2, -1], dtype=np.int64) +y = x[:, :, 3:4] + +expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_negative_axes') +``` + +
+
+slice_start_out_of_bounds + +```python +node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], +) + +x = np.random.randn(20, 10, 5).astype(np.float32) +starts = np.array([1000], dtype=np.int64) +ends = np.array([1000], dtype=np.int64) +axes = np.array([1], dtype=np.int64) +steps = np.array([1], dtype=np.int64) +y = x[:, 1000:1000] + +expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_start_out_of_bounds') +``` + +
+ + +### Softmax +There are 2 test cases, listed as following: +
+softmax + +```python +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +x = np.array([[-1, 0, 1]]).astype(np.float32) +# expected output [[0.09003058, 0.24472848, 0.66524094]] +y = softmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_example') +``` + +
+
+softmax_axis + +```python +x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) +# expected output +# [[0.032058604 0.08714432 0.23688284 0.6439143 ] +# [0.032058604 0.08714432 0.23688284 0.6439143 ]] +y = softmax(x) + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_large_number') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=0, +) +y = softmax(x, axis=0) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_0') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=1, +) +y = softmax(x, axis=1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_1') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=2, +) +y = softmax(x, axis=2) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_2') + +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=-1, +) +y = softmax(x, axis=-1) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_negative_axis') + +# default axis is -1 +node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], +) +expect(node, inputs=[x], outputs=[y], + name='test_softmax_default_axis') +``` + +
+ + +### SoftmaxCrossEntropyLoss +There are 34 test cases, listed as following: +
+input_shape_is_NCd1_mean_weight_negative_ii + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +x = np.random.rand(N, C, dim1).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +labels[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1_mean_weight_negative_ii') +``` + +
+
+input_shape_is_NCd1_mean_weight_negative_ii_log_prob + +```python +reduction = 'mean' +ignore_index = np.int64(-1) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1 = 3, 5, 6 +np.random.seed(0) +x = np.random.rand(N, C, dim1).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) +labels[0][0] = -1 +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1_mean_weight_negative_ii_log_prob') +``` + +
+
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +labels[0][0][0][0] = -5 + +sce = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3_none_no_weight_negative_ii') +``` + +
+
+input_shape_is_NCd1d2d3_none_no_weight_negative_ii_log_prob + +```python +reduction = 'none' +ignore_index = np.int64(-5) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) +labels[0][0][0][0] = -5 + +loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob') +``` + +
+
+input_shape_is_NCd1d2d3_sum_weight_high_ii + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +x = np.random.rand(N, C).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) +labels[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3_sum_weight_high_ii') +``` + +
+
+input_shape_is_NCd1d2d3_sum_weight_high_ii_log_prob + +```python +reduction = 'sum' +ignore_index = np.int64(10) + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +N, C = 3, 5 +np.random.seed(0) +x = np.random.rand(N, C).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) +labels[0] = 10 +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_sum_weight_high_ii_log_prob') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_mean_weight + +```python +reduction = 'mean' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction) + +expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3d4d5_mean_weight') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_mean_weight_log_prob + +```python +reduction = 'mean' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) +weight = np.random.rand(C).astype(np.float32) + +loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + get_log_prob=True) + +expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_mean_weight_log_prob') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_none_no_weight + +```python +reduction = 'none' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +sce = softmaxcrossentropy(x, + labels, + reduction=reduction) + +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3d4d5_none_no_weight') +``` + +
+
+input_shape_is_NCd1d2d3d4d5_none_no_weight_log_prob + +```python +reduction = 'none' + +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 +np.random.seed(0) +x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) +labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + +loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + get_log_prob=True) + +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_none_no_weight_log_prob') +``` + +
+
+softmaxcrossentropy_mean + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean') +``` + +
+
+softmaxcrossentropy_mean_3d + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, y) + +# Check results +expect(node, inputs=[x, y], outputs=[sce], name='test_sce_mean_3d') +``` + +
+
+softmaxcrossentropy_mean_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, y, get_log_prob=True) + +# Check results +expect(node, inputs=[x, y], outputs=[loss, log_prob], name='test_sce_mean_3d_log_prob') +``` + +
+
+softmaxcrossentropy_mean_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_log_prob') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii_3d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_3d') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_3d_log_prob') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii_4d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_4d') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii_4d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_4d_log_prob') +``` + +
+
+softmaxcrossentropy_mean_no_weights_ii_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(2) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_log_prob') +``` + +
+
+softmaxcrossentropy_mean_weights + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight') +``` + +
+
+softmaxcrossentropy_mean_weights_ii + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(0) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(0) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii') +``` + +
+
+softmaxcrossentropy_mean_weights_ii_3d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(1) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(1) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_3d') +``` + +
+
+softmaxcrossentropy_mean_weights_ii_3d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(1) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) +labels[0][0] = np.int64(1) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_3d_log_prob') +``` + +
+
+softmaxcrossentropy_mean_weights_ii_4d + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_4d') +``` + +
+
+softmaxcrossentropy_mean_weights_ii_4d_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(2) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5, 2, 7).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) +labels[0][0][0] = np.int64(2) +weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_4d_log_prob') +``` + +
+
+softmaxcrossentropy_mean_weights_ii_log_prob + +```python +# Define operator attributes. +reduction = 'mean' +ignore_index = np.int64(0) + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +labels[0] = np.int64(0) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_log_prob') +``` + +
+
+softmaxcrossentropy_mean_weights_log_prob + +```python +# Define operator attributes. +reduction = 'mean' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_log_prob') +``` + +
+
+softmaxcrossentropy_none + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction='none') + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_none') +``` + +
+
+softmaxcrossentropy_none_log_prob + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction='none', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_none_log_prob') +``` + +
+
+softmaxcrossentropy_none_weights + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, weight=weights, reduction='none') + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_none_weights') +``` + +
+
+softmaxcrossentropy_none_weights_log_prob + +```python +# Define operator attributes. +reduction = 'none' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) +weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, reduction='none', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_none_weights_log_prob') +``` + +
+
+softmaxcrossentropy_sum + +```python +# Define operator attributes. +reduction = 'sum' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +sce = softmaxcrossentropy(x, labels, reduction='sum') + +# Check results +expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_sum') +``` + +
+
+softmaxcrossentropy_sum_log_prob + +```python +# Define operator attributes. +reduction = 'sum' + +# Create operator. +node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + +# Define operator inputs. +np.random.seed(0) +x = np.random.rand(3, 5).astype(np.float32) +labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + +# Compute SoftmaxCrossEntropyLoss +loss, log_prob = softmaxcrossentropy(x, labels, reduction='sum', get_log_prob=True) + +# Check results +expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_sum_log_prob') +``` + +
+ + +### Softplus +There are 1 test cases, listed as following: +
+softplus + +```python +node = onnx.helper.make_node( + 'Softplus', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.log(np.exp(x) + 1) # expected output [0.31326166, 0.69314718, 1.31326163] +expect(node, inputs=[x], outputs=[y], + name='test_softplus_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.log(np.exp(x) + 1) +expect(node, inputs=[x], outputs=[y], + name='test_softplus') +``` + +
+ + +### Softsign +There are 1 test cases, listed as following: +
+softsign + +```python +node = onnx.helper.make_node( + 'Softsign', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.array([-0.5, 0, 0.5]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_softsign_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = x / (1 + np.abs(x)) +expect(node, inputs=[x], outputs=[y], + name='test_softsign') +``` + +
+ + +### SpaceToDepth +There are 2 test cases, listed as following: +
+example + +```python +node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=2, +) + +# (1, 1, 4, 6) input tensor +x = np.array([[[[0, 6, 1, 7, 2, 8], + [12, 18, 13, 19, 14, 20], + [3, 9, 4, 10, 5, 11], + [15, 21, 16, 22, 17, 23]]]]).astype(np.float32) + +# (1, 4, 2, 3) output tensor +y = np.array([[[[0, 1, 2], + [3, 4, 5]], + [[6, 7, 8], + [9, 10, 11]], + [[12, 13, 14], + [15, 16, 17]], + [[18, 19, 20], + [21, 22, 23]]]]).astype(np.float32) +expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth_example') +``` + +
+
+spacetodepth + +```python +b, c, h, w = shape = (2, 2, 6, 6) +blocksize = 2 +node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=blocksize, +) +x = np.random.random_sample(shape).astype(np.float32) +tmp = np.reshape(x, [b, c, + h // blocksize, blocksize, + w // blocksize, blocksize]) +tmp = np.transpose(tmp, [0, 3, 5, 1, 2, 4]) +y = np.reshape(tmp, [b, c * (blocksize**2), + h // blocksize, + w // blocksize]) +expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth') +``` + +
+ + +### Split +There are 4 test cases, listed as following: +
+1d + +```python +input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'], + axis=0 +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_1d') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=0, +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_1d') +``` + +
+
+2d + +```python +input = np.array([[1., 2., 3., 4., 5., 6.], + [7., 8., 9., 10., 11., 12.]]).astype(np.float32) + +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2'], + axis=1 +) + +expected_outputs = [np.array([[1., 2., 3.], [7., 8., 9.]]).astype(np.float32), + np.array([[4., 5., 6.], [10., 11., 12.]]).astype(np.float32)] + +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_2d') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=1, +) + +expected_outputs = [np.array([[1., 2.], [7., 8.]]).astype(np.float32), + np.array([[3., 4., 5., 6.], [9., 10., 11., 12.]]).astype(np.float32)] + +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_2d') +``` + +
+
+default_values + +```python +input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + +# If axis is not specified, split is applied on default axis 0 +node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'] +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] +expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_default_axis') + +split = np.array([2, 4]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'] +) + +expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_default_axis') +``` + +
+
+zero_size_splits + +```python +input = np.array([]).astype(np.float32) + +# Split emtpy tensor to tensors of size zero +split = np.array([0, 0, 0]).astype(np.int64) +node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2', 'output_3'] +) + +expected_outputs = [np.array([]).astype(np.float32), np.array([]).astype(np.float32), np.array([]).astype(np.float32)] +expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_zero_size_splits') +``` + +
+ + +### Sqrt +There are 1 test cases, listed as following: +
+sqrt + +```python +node = onnx.helper.make_node( + 'Sqrt', + inputs=['x'], + outputs=['y'], +) + +x = np.array([1, 4, 9]).astype(np.float32) +y = np.sqrt(x) # expected output [1., 2., 3.] +expect(node, inputs=[x], outputs=[y], + name='test_sqrt_example') + +x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) +y = np.sqrt(x) +expect(node, inputs=[x], outputs=[y], + name='test_sqrt') +``` + +
+ + +### Squeeze +There are 2 test cases, listed as following: +
+squeeze + +```python +node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 4, 5).astype(np.float32) +axes = np.array([0], dtype=np.int64) +y = np.squeeze(x, axis=0) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze') +``` + +
+
+squeeze_negative_axes + +```python +node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 1, 5).astype(np.float32) +axes = np.array([-2], dtype=np.int64) +y = np.squeeze(x, axis=-2) +expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze_negative_axes') +``` + +
+ + +### StringNormalizer +There are 6 test cases, listed as following: +
+monday_casesensintive_lower + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='LOWER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_lower') +``` + +
+
+monday_casesensintive_nochangecase + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_nochangecase') +``` + +
+
+monday_casesensintive_upper + +```python +input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) +output = np.array([u'TUESDAY', u'WEDNESDAY', u'THURSDAY']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_upper') +``` + +
+
+monday_empty_output + +```python +input = np.array([u'monday', u'monday']).astype(object) +output = np.array([u'']).astype(object) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_empty_output') +``` + +
+
+monday_insensintive_upper_twodim + +```python +input = np.array([u'Monday', u'tuesday', u'wednesday', u'Monday', u'tuesday', u'wednesday']).astype(object).reshape([1, 6]) + +# It does upper case cecedille, accented E +# and german umlaut but fails +# with german eszett +output = np.array([u'TUESDAY', u'WEDNESDAY', u'TUESDAY', u'WEDNESDAY']).astype(object).reshape([1, 4]) +stopwords = [u'monday'] + +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + stopwords=stopwords +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_insensintive_upper_twodim') +``` + +
+
+nostopwords_nochangecase + +```python +input = np.array([u'monday', u'tuesday']).astype(object) +output = input + +# No stopwords. This is a NOOP +node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, +) +expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_nostopwords_nochangecase') +``` + +
+ + +### Sub +There are 2 test cases, listed as following: +
+sub + +```python +node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.array([1, 2, 3]).astype(np.float32) +y = np.array([3, 2, 1]).astype(np.float32) +z = x - y # expected output [-2., 0., 2.] +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(3, 4, 5).astype(np.float32) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub') + +x = np.random.randint(12, 24, size=(3, 4, 5), dtype=np.uint8) +y = np.random.randint(12, size=(3, 4, 5), dtype=np.uint8) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_uint8') +``` + +
+
+sub_broadcast + +```python +node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], +) + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.random.randn(5).astype(np.float32) +z = x - y +expect(node, inputs=[x, y], outputs=[z], + name='test_sub_bcast') +``` + +
+ + +### Sum +There are 1 test cases, listed as following: +
+sum + +```python +data_0 = np.array([3, 0, 2]).astype(np.float32) +data_1 = np.array([1, 3, 4]).astype(np.float32) +data_2 = np.array([2, 6, 6]).astype(np.float32) +result = np.array([6, 9, 12]).astype(np.float32) +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_sum_example') + +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0'], + outputs=['result'], +) +expect(node, inputs=[data_0], outputs=[data_0], + name='test_sum_one_input') + +result = np.add(data_0, data_1) +node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1'], + outputs=['result'], +) +expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_sum_two_inputs') +``` + +
+ + +### Tan +There are 1 test cases, listed as following: +
+tan + +```python +node = onnx.helper.make_node( + 'Tan', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.tan(x) +expect(node, inputs=[x], outputs=[y], + name='test_tan_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.tan(x) +expect(node, inputs=[x], outputs=[y], + name='test_tan') +``` + +
+ + +### Tanh +There are 1 test cases, listed as following: +
+tanh + +```python +node = onnx.helper.make_node( + 'Tanh', + inputs=['x'], + outputs=['y'], +) + +x = np.array([-1, 0, 1]).astype(np.float32) +y = np.tanh(x) # expected output [-0.76159418, 0., 0.76159418] +expect(node, inputs=[x], outputs=[y], + name='test_tanh_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.tanh(x) +expect(node, inputs=[x], outputs=[y], + name='test_tanh') +``` + +
+ + +### TfIdfVectorizer +There are 7 test cases, listed as following: +
+tf_batch_onlybigrams_skip0 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 0., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip0') +``` + +
+
+tf_batch_onlybigrams_skip5 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 1., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip5') +``` + +
+
+tf_batch_uniandbigrams_skip5 + +```python +input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) +output = np.array([[0., 3., 0., 0., 0., 0., 0.], [0., 0., 1., 0., 1., 1., 1.]]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_uniandbigrams_skip5') +``` + +
+
+tf_only_bigrams_skip0 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 0., 0., 0., 1., 1., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_only_bigrams_skip0') +``` + +
+
+tf_onlybigrams_levelempty + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([1., 1., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 0]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2]).astype(np.int64) +pool_int64s = np.array([ # unigrams none + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_levelempty') +``` + +
+
+tf_onlybigrams_skip5 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 0., 0., 0., 1., 3., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_skip5') +``` + +
+
+tf_uniandbigrams_skip5 + +```python +input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) +output = np.array([0., 3., 1., 0., 1., 3., 1.]).astype(np.float32) + +ngram_counts = np.array([0, 4]).astype(np.int64) +ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) +pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + +helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s +) +node = helper.make_node_noweights() +expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_uniandbigrams_skip5') +``` + +
+ + +### ThresholdedRelu +There are 2 test cases, listed as following: +
+default + +```python +default_alpha = 1.0 +node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'] +) +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, default_alpha, np.inf) +y[y == default_alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_default') +``` + +
+
+thresholdedrelu + +```python +alpha = 2.0 +node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'], + alpha=alpha +) + +x = np.array([-1.5, 0., 1.2, 2.0, 2.2]).astype(np.float32) +y = np.clip(x, alpha, np.inf) # expected output [0., 0., 0., 0., 2.2] +y[y == alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_example') + +x = np.random.randn(3, 4, 5).astype(np.float32) +y = np.clip(x, alpha, np.inf) +y[y == alpha] = 0 + +expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu') +``` + +
+ + +### Tile +There are 2 test cases, listed as following: +
+tile + +```python +node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] +) + +x = np.random.rand(2, 3, 4, 5).astype(np.float32) + +repeats = np.random.randint(low=1, high=10, size=(np.ndim(x),)).astype(np.int64) + +z = np.tile(x, repeats) + +expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile') +``` + +
+
+tile_precomputed + +```python +node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] +) + +x = np.array([ + [0, 1], + [2, 3] +], dtype=np.float32) + +repeats = np.array([2, 2], dtype=np.int64) + +z = np.array([ + [0, 1, 0, 1], + [2, 3, 2, 3], + [0, 1, 0, 1], + [2, 3, 2, 3] +], dtype=np.float32) + +expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile_precomputed') +``` + +
+ + +### TopK +There are 3 test cases, listed as following: +
+top_k + +```python +axis = 1 +largest = 1 + +k = 3 +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis +) +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +#print(values_ref) +#[[ 3. 2. 1.] +# [ 7. 6. 5.] +# [11. 10. 9.]] +#print(indices_ref) +#[[3 2 1] +# [3 2 1] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k') +``` + +
+
+top_k_negative_axis + +```python +axis = -1 +largest = 1 + +k = 3 +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis +) +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +# print(values_ref) +#[[ 3. 2. 1.] +# [ 7. 6. 5.] +# [11. 10. 9.]] +# print(indices_ref) +#[[3 2 1] +# [3 2 1] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_negative_axis') +``` + +
+
+top_k_smallest + +```python +axis = 1 +largest = 0 +sorted = 1 +k = 3 + +node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis, + largest=largest, + sorted=sorted +) + +X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [11, 10, 9, 8], +], dtype=np.float32) +K = np.array([k], dtype=np.int64) +values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + +#print(values_ref) +#[[ 0. 1. 2.] +# [ 4. 5. 6.] +# [ 8. 9. 10.]] +#print(indices_ref) +#[[0 1 2] +# [0 1 2] +# [3 2 1]] + +expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_smallest') +``` + +
+ + +### Transpose +There are 2 test cases, listed as following: +
+all_permutations + +```python +shape = (2, 3, 4) +data = np.random.random_sample(shape).astype(np.float32) +permutations = list(itertools.permutations(np.arange(len(shape)))) + +for i in range(len(permutations)): + node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'], + perm=permutations[i] + ) + transposed = np.transpose(data, permutations[i]) + expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_all_permutations_' + str(i)) +``` + +
+
+default + +```python +shape = (2, 3, 4) +data = np.random.random_sample(shape).astype(np.float32) + +node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'] +) + +transposed = np.transpose(data) +expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_default') +``` + +
+ + +### Trilu +There are 18 test cases, listed as following: +
+tril + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 0, 0, 0, 0], +# [1, 2, 0, 0, 0], +# [9, 4, 1, 0, 0], +# [4, 3, 4, 2, 0]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril') +``` + +
+
+tril_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [1, 0, 0, 0, 0], +# [9, 4, 0, 0, 0], +# [4, 3, 4, 0, 0]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_neg') +``` + +
+
+tril_one_row + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) +# X: +# [[[6, 2, 4, 1, 6]], +# +# [[8, 3, 8, 7, 0]], +# +# [[2, 2, 9, 5, 9]]] +# expect result: +# [[[6, 0, 0, 0, 0]], +# +# [[8, 0, 0, 0, 0]], +# +# [[2, 0, 0, 0, 0]]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril_one_row_neg') +``` + +
+
+tril_out_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-7).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_neg') +``` + +
+
+tril_out_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_pos') +``` + +
+
+tril_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(2).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 0, 0], +# [1, 2, 8, 6, 0], +# [9, 4, 1, 8, 7], +# [4, 3, 4, 2, 4]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_pos') +``` + +
+
+tril_square + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +# X: +# [[[0, 4, 3], +# [2, 0, 9], +# [8, 2, 5]], +# +# [[2, 7, 2], +# [2, 6, 0], +# [2, 6, 5]]] +# expect result: +# [[[0, 0, 0], +# [2, 0, 0], +# [8, 2, 5]], +# +# [[2, 0, 0], +# [2, 6, 0], +# [2, 6, 5]]] +y = tril_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_tril_square') +``` + +
+
+tril_square_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[[0, 4, 3], +# [2, 0, 9], +# [8, 2, 5]], +# +# [[2, 7, 2], +# [2, 6, 0], +# [2, 6, 5]]] +# expect result: +# [[[0, 0, 0], +# [2, 0, 0], +# [8, 2, 0]], +# +# [[0, 0, 0], +# [2, 0, 0], +# [2, 6, 0]]] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_square_neg') +``` + +
+
+tril_zero + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, +) + +x = np.random.randint(10, size=(3, 0, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [] +# expect result: +# [] +y = tril_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_tril_zero') +``` + +
+
+triu + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [0, 2, 8, 6, 9], +# [0, 0, 0, 8, 7], +# [0, 0, 0, 2, 4]] +y = triu_reference_implementation(x) +expect(node, inputs=[x], outputs=[y], name='test_triu') +``` + +
+
+triu_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [0, 4, 0, 8, 7], +# [0, 0, 4, 2, 4]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_neg') +``` + +
+
+triu_one_row + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) +k = np.array(1).astype(np.int64) +# X: +# [[[1, 4, 9, 7, 1]], +# +# [[9, 2, 8, 8, 4]], +# +# [[3, 9, 7, 4, 2]]] +# expect result: +# [[[0, 4, 9, 7, 1]], +# +# [[0, 2, 8, 8, 4]], +# +# [[0, 9, 7, 4, 2]]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_one_row') +``` + +
+
+triu_out_neg_out + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(-7).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_neg_out') +``` + +
+
+triu_out_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0], +# [0, 0, 0, 0, 0]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_pos') +``` + +
+
+triu_pos + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(4, 5)).astype(np.int64) +k = np.array(2).astype(np.int64) +# X: +# [[4, 7, 3, 7, 9], +# [1, 2, 8, 6, 9], +# [9, 4, 0, 8, 7], +# [4, 3, 4, 2, 4]] +# expect result: +# [[0, 0, 3, 7, 9], +# [0, 0, 0, 6, 9], +# [0, 0, 0, 0, 7], +# [0, 0, 0, 0, 0]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_pos') +``` + +
+
+triu_square + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +y = triu_reference_implementation(x) +# X: +# [[[4, 6, 9], +# [7, 5, 4], +# [8, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [8, 9, 8]]] +# expect result: +# [[[4, 6, 9], +# [0, 5, 4], +# [0, 0, 2]], +# +# [[1, 4, 9], +# [0, 6, 3], +# [0, 0, 8]]] +expect(node, inputs=[x], outputs=[y], name='test_triu_square') +``` + +
+
+triu_square_neg + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) +k = np.array(-1).astype(np.int64) +# X: +# [[[4, 6, 9], +# [7, 5, 4], +# [8, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [8, 9, 8]]] +# expect result: +# [[[4, 6, 9], +# [7, 5, 4], +# [0, 1, 2]], +# +# [[1, 4, 9], +# [9, 6, 3], +# [0, 9, 8]]] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_square_neg') +``` + +
+
+triu_zero + +```python +node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], +) + +x = np.random.randint(10, size=(0, 5)).astype(np.int64) +k = np.array(6).astype(np.int64) +# X: +# [] +# expect result: +# [] +y = triu_reference_implementation(x, int(k)) +expect(node, inputs=[x, k], outputs=[y], name='test_triu_zero') +``` + +
+ + +### Unique +There are 5 test cases, listed as following: +
+not_sorted_without_axis + +```python +node_not_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=0 +) +# numpy unique does not retain original order (it sorts the output unique values) +# https://github.com/numpy/numpy/issues/8621 +# we need to recover unsorted output and indices +x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True) + +# prepare index mapping from sorted to unsorted +argsorted_indices = np.argsort(indices) +inverse_indices_map = {i: si for i, si in zip(argsorted_indices, np.arange(len(argsorted_indices)))} + +indices = indices[argsorted_indices] +y = np.take(x, indices, axis=0) +inverse_indices = np.asarray([inverse_indices_map[i] for i in inverse_indices], dtype=np.int64) +counts = counts[argsorted_indices] +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [2.0, 1.0, 3.0, 4.0] +# print(indices) +# [0 1 3 4] +# print(inverse_indices) +# [0, 1, 1, 2, 3, 2] +# print(counts) +# [1, 2, 2, 1] + +expect(node_not_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_not_sorted_without_axis') +``` + +
+
+sorted_with_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=0 +) + +x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=0) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[1. 0. 0.] +# [2. 3. 4.]] +# print(indices) +# [0 2] +# print(inverse_indices) +# [0 0 1] +# print(counts) +# [2 1] + +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis') +``` + +
+
+sorted_with_axis_3d + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=1 +) + +x = np.array([[[1., 1.], [0., 1.], [2., 1.], [0., 1.]], + [[1., 1.], [0., 1.], [2., 1.], [0., 1.]]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=1) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[[0. 1.] +# [1. 1.] +# [2. 1.]] +# [[0. 1.] +# [1. 1.] +# [2. 1.]]] +# print(indices) +# [1 0 2] +# print(inverse_indices) +# [1 0 2 0] +# print(counts) +# [2 1 1] +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis_3d') +``` + +
+
+sorted_with_negative_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=-1 +) + +x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 3]], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=-1) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +# print(y) +# [[0. 1.] +# [0. 1.] +# [3. 2.]] +# print(indices) +# [1 0] +# print(inverse_indices) +# [1 0 0] +# print(counts) +# [2 1] + +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_negative_axis') +``` + +
+
+sorted_without_axis + +```python +node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'] +) + +x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) +y, indices, inverse_indices, counts = np.unique(x, True, True, True) +indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) +expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_without_axis') +``` + +
+ + +### Unsqueeze +There are 5 test cases, listed as following: +
+unsqueeze_negative_axes + +```python +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +x = np.random.randn(1, 3, 1, 5).astype(np.float32) +axes = np.array([-2]).astype(np.int64) +y = np.expand_dims(x, axis=-2) +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_negative_axes') +``` + +
+
+unsqueeze_one_axis + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) + +for i in range(x.ndim): + axes = np.array([i]).astype(np.int64) + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=i) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_axis_' + str(i)) +``` + +
+
+unsqueeze_three_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([2, 4, 5]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=2) +y = np.expand_dims(y, axis=4) +y = np.expand_dims(y, axis=5) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_three_axes') +``` + +
+
+unsqueeze_two_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([1, 4]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=1) +y = np.expand_dims(y, axis=4) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_two_axes') +``` + +
+
+unsqueeze_unsorted_axes + +```python +x = np.random.randn(3, 4, 5).astype(np.float32) +axes = np.array([5, 4, 2]).astype(np.int64) + +node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], +) +y = np.expand_dims(x, axis=2) +y = np.expand_dims(y, axis=4) +y = np.expand_dims(y, axis=5) + +expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_unsorted_axes') +``` + +
+ + +### Upsample +There are 1 test cases, listed as following: +
+nearest + +```python +node = onnx.helper.make_node( + 'Upsample', + inputs=['X', 'scales'], + outputs=['Y'], + mode='nearest', +) + +data = np.array([[[ + [1, 2], + [3, 4], +]]], dtype=np.float32) + +scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + +output = np.array([[[ + [1, 1, 1, 2, 2, 2], + [1, 1, 1, 2, 2, 2], + [3, 3, 3, 4, 4, 4], + [3, 3, 3, 4, 4, 4], +]]], dtype=np.float32) + +expect(node, inputs=[data, scales], outputs=[output], + name='test_upsample_nearest', opset_imports=[helper.make_opsetid("", 9)]) +``` + +
+ + +### Where +There are 2 test cases, listed as following: +
+long + +```python +node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +x = np.array([[1, 2], [3, 4]], dtype=np.int64) +y = np.array([[9, 8], [7, 6]], dtype=np.int64) +z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] +expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_long_example') +``` + +
+
+where + +```python +node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], +) + +condition = np.array([[1, 0], [1, 1]], dtype=bool) +x = np.array([[1, 2], [3, 4]], dtype=np.float32) +y = np.array([[9, 8], [7, 6]], dtype=np.float32) +z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] +expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_example') +``` + +
+ + +### Xor +There are 2 test cases, listed as following: +
+xor + +```python +node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], +) + +# 2d +x = (np.random.randn(3, 4) > 0).astype(bool) +y = (np.random.randn(3, 4) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor2d') + +# 3d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(3, 4, 5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor3d') + +# 4d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor4d') +``` + +
+
+xor_broadcast + +```python +node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], +) + +# 3d vs 1d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v1d') + +# 3d vs 2d +x = (np.random.randn(3, 4, 5) > 0).astype(bool) +y = (np.random.randn(4, 5) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v2d') + +# 4d vs 2d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v2d') + +# 4d vs 3d +x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) +y = (np.random.randn(4, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v3d') + +# 4d vs 4d +x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) +y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) +z = np.logical_xor(x, y) +expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v4d') +``` + +
+ + +
+ +## 💔No Cover Common Operators +### ConcatFromSequence (call for test cases) + + +### GlobalLpPool (call for test cases) + + +### GreaterOrEqual (call for test cases) + + +### LessOrEqual (call for test cases) + + +### LpNormalization (call for test cases) + + +### LpPool (call for test cases) + + +### MaxRoiPool (call for test cases) + + +### Multinomial (random generator operator) + + +### Optional (call for test cases) + + +### OptionalGetElement (call for test cases) + + +### RandomNormal (random generator operator) + + +### RandomNormalLike (random generator operator) + + +### RandomUniform (random generator operator) + + +### RandomUniformLike (random generator operator) + + +### SequenceAt (call for test cases) + + +### SequenceConstruct (call for test cases) + + +### SequenceEmpty (call for test cases) + + +### SequenceErase (call for test cases) + + +### SequenceLength (call for test cases) + + +### SplitToSequence (call for test cases) + + +
+ +## 💚Covered Experimental Operators +
+ +## 💔No Cover Experimental Operators +
+ +# Model Test Coverage +## bvlc_alexnet + +bvlc_alexnet has 24 nodes. Of these, 24 are covered by node tests (100.0%) + + +
+nodes + +
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 1 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 2 +storage_order: 0 +strides: 1 +
+
+ + +## densenet121 + +densenet121 has 910 nodes. Of these, 910 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 1 +pads: 1 +strides: 1 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 1 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 1 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 1 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## inception_v1 + +inception_v1 has 144 nodes. Of these, 144 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 2 +pads: 2 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 1 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 1 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## inception_v2 + +inception_v2 has 509 nodes. Of these, 509 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 1 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 1 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## resnet50 + +resnet50 has 176 nodes. Of these, 176 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 2 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 1 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## shufflenet + +shufflenet has 203 nodes. Of these, 203 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 2 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 6 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Transpose: 1 out of 1 attributes covered + +perm: 1 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## squeezenet_old + +squeezenet_old has 66 nodes. Of these, 66 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 2 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 6 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 1 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Transpose: 1 out of 1 attributes covered + +perm: 1 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## vgg19 + +vgg19 has 46 nodes. Of these, 46 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 2 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 6 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 1 +beta: 1 +bias: 1 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 2 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Transpose: 1 out of 1 attributes covered + +perm: 1 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +## zfnet512 + +zfnet512 has 22 nodes. Of these, 22 are covered by node tests (100.0%) + + +
+nodes + +
+AveragePool: 3 out of 6 attributes covered + +auto_pad: 0 +ceil_mode: 0 +count_include_pad: 0 +kernel_shape: 3 +pads: 3 +strides: 2 +
+
+BatchNormalization: 1 out of 3 attributes covered + +epsilon: 2 +momentum: 0 +training_mode: 0 +
+
+Concat: 1 out of 1 attributes covered + +axis: 1 +
+
+Conv: 4 out of 6 attributes covered + +auto_pad: 0 +dilations: 0 +group: 6 +kernel_shape: 5 +pads: 4 +strides: 3 +
+
+Dropout: 1 out of 1 attributes covered + +seed: 0 +
+
+Gemm: 1 out of 4 attributes covered + +alpha: 0 +beta: 0 +transA: 0 +transB: 1 +
+
+LRN: 4 out of 4 attributes covered + +alpha: 2 +beta: 1 +bias: 2 +size: 1 +
+
+MaxPool: 3 out of 7 attributes covered + +auto_pad: 0 +ceil_mode: 0 +dilations: 0 +kernel_shape: 2 +pads: 3 +storage_order: 0 +strides: 2 +
+
+Transpose: 1 out of 1 attributes covered + +perm: 1 +
+
+Unsqueeze: 1 out of 0 attributes covered + +
+
+ + +# Overall Test Coverage +## To be filled. diff --git a/third_party/onnx/docs/TypeAnnotations.md b/third_party/onnx/docs/TypeAnnotations.md new file mode 100644 index 0000000000..27102ffc81 --- /dev/null +++ b/third_party/onnx/docs/TypeAnnotations.md @@ -0,0 +1,65 @@ + + +# Type annotations for ONNX + +At Facebook, we work with community best practices to ensure high code quality, readability and reliability. In line with this, we just added type annotations to our python code to help ONNX developers more easily contribute to the project. + +These type annotations are used by [mypy](https://github.com/python/mypy) within the ONNX CI systems to ensure a continuously high code quality standard. +We also have type annotations for our APIs, which means your tools built on top of the ONNX APIs can use static analysis tools like mypy to ensure they are using the APIs correctly. + +We expect this to have a positive impact on the reliability of ONNX and dependent projects like ONNX converters - we've also found and fixed a few bugs thanks to the addition of type annotations. + +## What is mypy? +Mypy is an opt-in type checker. Annotations are optional and, if present, will be used for static type checking. While it is not advisable to rely too much on mypy to find all errors (for programmers used to a static type system like in C++, it's often confusing that mypy doesn't find some very obvious typing errors), it is still very helpful given the errors it does find. + +## Using the type annotations in dependent projects +Say, for example, you're building a converter for ONNX, which converts between ONNX models and the models of some machine learning framework. If you use mypy for your project, it will automatically detect the type hints in the ONNX code and use them to check that you read from and wrote to the ONNX model correctly. Doing this will notify you about identifier typos or wrong data types when accessing attributes of the ONNX protocol buffer or other ONNX features. + +## For ONNX contributors +If you're contributing to the ONNX repository, you need to add type annotations to your project or CI will fail. Here is how to install it: + +#### Python 3 +If you're using Python 3, you can simply install mypy as an extra dependency of onnx. + +Call from the top level directory of your onnx repository: + + ~/onnx $ pip install -e .[lint] + +And then run the type checks: + + ~/onnx $ python setup.py typecheck + +#### Python 2 +The mypy type checker needs python 3 to run (even though it can check python 2 code), so if your onnx development environment is set up with python 2, you need to install mypy into your system python 3 packages (i.e. not into your python 2 virtualenv): + + $ pip3 install mypy + +Running then works as it does above for python 3. + + ~/onnx $ python setup.py typecheck + +Since you've installed mypy manually, you won't get updates for it when we change the version of the mypy dependency in setup.py, so if you're seeing a CI error and can't reproduce it locally, check your mypy version. + +### What should I annotate? + +Type annotations are (usually) only needed for function arguments and return types, mypy will infer local variable types automatically. "Usually" means there are a few exceptions, but mypy will report these if you hit them. + +### What do type annotations look like? +We can't use PEP484 annotations, because we have to support python 2. So we're writing our type annotations in comments. Typed code looks like this: + + def myfunc(arg): # type: (int) -> bool + return arg == 2 + + class MyClass(object): + def __init__(self): # type: () -> None + pass + + def myfunc(self, arg): # type: (int) -> bool + return arg == 2 + + # Alternative notation for many parameters + def myfunc( + arg1, # type: int + arg2, # type: int + ): # type: (...) -> bool + return arg1 == arg2 diff --git a/third_party/onnx/docs/TypeDenotation.md b/third_party/onnx/docs/TypeDenotation.md new file mode 100644 index 0000000000..0929b4f549 --- /dev/null +++ b/third_party/onnx/docs/TypeDenotation.md @@ -0,0 +1,56 @@ + + +# Type Denotation + +Type Denotation is used to describe semantic information around what the inputs and outputs are. It is stored on the TypeProto message. + +## Motivation + +The motivation of such a mechanism can be illustrated via a simple example. In the the neural network SqueezeNet, it takes in an NCHW image input float[1,3,244,244] and produces a output float[1,1000,1,1]: + +``` +input_in_NCHW -> data_0 -> SqueezeNet() -> output_softmaxout_1 +``` + +In order to run this model the user needs a lot of information. In this case the user needs to know: +* the input is an image +* the image is in the format of NCHW +* the color channels are in the order of bgr +* the pixel data is 8 bit +* the pixel data is normalized as values 0-255 + +This proposal consists of three key components to provide all of this information: +* Type Denotation, +* [Dimension Denotation](DimensionDenotation.md), +* [Model Metadata](MetadataProps.md). + +## Type Denotation Definition + +To begin with, we define a set of semantic types that define what models generally consume as inputs and produce as outputs. + +Specifically, in our first proposal we define the following set of standard denotations: + +0. `TENSOR` describes that a type holds a generic tensor using the standard TypeProto message. +1. `IMAGE` describes that a type holds an image. You can use dimension denotation to learn more about the layout of the image, and also the optional model metadata_props. +2. `AUDIO` describes that a type holds an audio clip. +3. `TEXT` describes that a type holds a block of text. + +Model authors SHOULD add type denotation to inputs and outputs for the model as appropriate. + +## An Example with input IMAGE + +Let's use the same SqueezeNet example from above and show everything to properly annotate the model: + +* First set the TypeProto.denotation =`IMAGE` for the ValueInfoProto `data_0` +* Because it's an image, the model consumer now knows to go look for image metadata on the model +* Then include 3 metadata strings on ModelProto.metadata_props + * `Image.BitmapPixelFormat` = `Bgr8` + * `Image.ColorSpaceGamma` = `SRGB` + * `Image.NominalPixelRange` = `NominalRange_0_255` +* For that same ValueInfoProto, make sure to also use Dimension Denotations to denote NCHW + * TensorShapeProto.Dimension[0].denotation = `DATA_BATCH` + * TensorShapeProto.Dimension[1].denotation = `DATA_CHANNEL` + * TensorShapeProto.Dimension[2].denotation = `DATA_FEATURE` + * TensorShapeProto.Dimension[3].denotation = `DATA_FEATURE` + +Now there is enough information in the model to know everything about how to pass a correct image into the model. diff --git a/third_party/onnx/docs/VersionConverter.md b/third_party/onnx/docs/VersionConverter.md new file mode 100644 index 0000000000..4bb6acd772 --- /dev/null +++ b/third_party/onnx/docs/VersionConverter.md @@ -0,0 +1,51 @@ + + +# ONNX Version Converter + +ONNX provides a library for converting ONNX models between different +opset versions. The primary motivation is to improve backwards compatibility of ONNX +models without having to strengthen the spec for ONNX backends. This +allows backend developers to offer support for a particular opset version +and for users to write or export models to a particular opset version but +run in an environment with a different opset version. Implementation wise, the library leverages the in-memory representation that is much more convenient to manipulate than the raw protobuf structs, and converters to and from the protobuf format which were developed for the ONNX Optimizer. + +You may be interested in invoking the provided op-specific adapters, or in +implementing new ones (or both). Default adapters only work in the default +domain, but can be generalized to work cross-domain or utilizing new +conversion methods, dependent on the nature of relevant breaking changes. + +## Invoking The Version Converter + +The version converter may be invoked either via C++ or Python. + +The Python API +is described, with example, +[here](PythonAPIOverview.md#converting-version-of-an-onnx-model-within-default-domain-aionnx). + +The C++ API consists of a single function + +``` +ModelProto ConvertVersion( + const ModelProto& mp_in, + const OpSetID& initial_version, + const OpSetID& target_version); +``` + +which accepts an input `ModelProto`, the initial opset version of the model, +and the target opset version, and which returns a new `ModelProto` which +is the result of apply all relevant adapters between initial_version and +target_version. For a list of available passes, see +[convert.h](/onnx/version_converter/convert.h). + +## Implementing Adapters + +You can implement a new adapter by subclassing `Adapter`, and registering +your new adapter with `VersionConverter::registerAdapter()`. Adapters operate +on an in-memory graph representation defined in [ir.h](/onnx/common/ir.h). +There are a number of examples in the [adapters](/onnx/version_converter/adapters) +directory. Please ensure that all adapters convert from opset version i to i + 1 +or i - 1, i.e. from Version 6 to Version 5 or vice versa, even if the 2 versions +being converted between are Version 1 and Version 6. + +If your adapter applies in the default domain, please consider adding it +to the core ONNX repository diff --git a/third_party/onnx/docs/Versioning.md b/third_party/onnx/docs/Versioning.md new file mode 100644 index 0000000000..4be57480db --- /dev/null +++ b/third_party/onnx/docs/Versioning.md @@ -0,0 +1,185 @@ + + +# ONNX Versioning + +This document describes the rules for versioning ONNX. MUST, SHOULD et al are used consistent with [RFC2119](https://tools.ietf.org/html/rfc2119). + +## Versioning Principles + +ONNX defines the versioning policy and mechanism for three classes of entities: + +* The [intermediate representation (IR) specification](IR.md), which is the abstract model for graphs and operators and the concrete format that represents them. These are always versioned atomically and are referred to as the *IR version*. +* Operator specifications that may be referenced by a given ONNX graph. We refer to this as the *operator version*. +* A defined/trained model that defines a specific graph in terms of specific operators. We refer to this as the *model version*. + +The versioning of all three of these entity types is distinct and largely independent. The IR specification evolves at a different (generally slower) rate than the operator specifications. Model versions are entirely independent of the other two versions. + +Specific policies for version management are mandated only for IR version and operator version. For model versioning, they are merely recommendations. For model versioning, ONNX users and systems MAY follow whichever local customs make sense; however, to facilitate easily managing shared collections of ONNX models, they SHOULD adhere to the policies described under model versioning. + +New IR and operator versions are released as part of ONNX _releases_, which have their own versioning scheme. The release versioning scheme is not described as part of the standard itself. It is discussed in the [ONNX release management document](../RELEASE-MANAGEMENT.md). + +### Semantic Versioning or Simple Numbers? + +The ONNX versioning system allows for simple monotonically increasing numbers or [semantic versioning (SemVer)](https://semver.org/). For IR and operator sets, versioning is based on simple numbers. For models, ONNX does not require any scheme, but recommends a set of shared conventions. + +Which versioning scheme is in use by a model is made clear by inspecting the most significant four bytes, which MUST be non-zero when using semantic versioning and MUST be zero when using simple numbers. In other words, when using SemVer, at least one of the MAJOR or MINOR numbers must be non-zero. + +### SemVer, Files and Consumers + +For model and release versioning, ONNX builds on the principles and syntax defined by [SemVer 2.0.0](http://semver.org/spec/v2.0.0.html). Throughout this document, we use the terms *breaking change*, *non-breaking change*, and *patch* consistent with SemVer 2.0.0. + +Because ONNX models are serialized files (not APIs), it's worth making clear the relationship between a serialized model and a piece of software that consumes that model. As a rough approximation, the serialized model plays the role of an API's *callee*, while the consumer of the serialized model plays the role of the API's *caller*. + +The ONNX versioning principles are based on the [robustness principle](https://en.wikipedia.org/wiki/Robustness_principle): "be conservative in what you do, be liberal in what you accept from others". + +1. A producer of a given ONNX model (and the ONNX specification itself) MUST strictly adhere to the rules for breaking vs. non-breaking changes defined in this specification. +2. A consumer of a given ONNX model SHOULD consume an updated ONNX file, provided there are no breaking changes in the new ONNX file's IR version, referenced operator versions, or model version (meaning the MAJOR version numbers have not changed between the two ONNX files). +3. A consumer of a given ONNX model MAY consume an updated ONNX file, provided there are one or more breaking changes in the new ONNX file's IR version, referenced operator versions, or model version. + +### Serializing SemVer version numbers in protobuf + +For efficiency, ONNX serializes the MAJOR, MINOR, and PATCH values as a bit-packed 64-bit integer; the two most significant bytes are the MAJOR component, the next two most significant bytes are the MINOR component, and the least significant four bytes are the PATCH component. + +For example, *1.2.345* is represented as *0x0001000200000159*. + +Pre-release and build metadata are not stored in the model. + +## IR versioning + +The IR format is versioned using simple numbers, which MUST be monotonically increasing. Breaking changes to the format or semantics of the ONNX specification require an increment of the version. Non-breaking changes to the IR format do not require changing the version number. + +NOTE: breaking changes include those that do not alter the serialized binary format, but still break software using libraries that write or read it. For example, changing the spelling of a message property will cause code accessing the property break. + +The IR format adheres to the versioning guidelines defined in the [Updating a Message Type](https://developers.google.com/protocol-buffers/docs/proto3#updating) section of the proto3 specification. + +As a general principle, implementations SHOULD be robust in the face of missing fields. However, to ensure basic interoperation, a subset of message fields will be marked as required for a given IR version and all producers MUST set these fields correctly. Required fields MUST always be marked with the comment: + + // This field MUST be present for this version of the IR. + +For example, the `ModelProto.ir_version` property MUST be present in every model. The ONNX checker (`onnx/checker.py`) will enforce these rules. + +Because the protocol buffer message definitions (.proto / .proto3 files) are expected to be consumed by multiple independent developers, changes to those definitions SHOULD NOT break code that depends on generated language bindings (e.g., changing the type of an existing field). + +## Operator versioning + +The IR can evolve independently from the set of operators. Operators represent both the signature and semantics of a given operation. Operators are abstract interfaces in that they do not imply a specific implementation; rather, they are simply the contract between a model author and the implementations that model may execute on. + +A given operator is identified by a three-tuple: `(domain, op_type, since_version)`, written as `domain.op_type:since_version` in prose (e.g., `com.acme.FastConv:3`). `since_version` is the version of the operator set that introduced the operator. Breaking operator changes include: + +* Adding/removing/renaming an attribute. This even includes the case of adding a new optional attribute, where omitting the attribute would imply a default value yielding semantics identical to the previous operator version. + +* Adding/removing/reordering inputs or outputs. + +* Adding/removing types supported by inputs and outputs, and changing types used by attributes. + +* Supporting new behavior even when the existing parameter signature is otherwise identical (e.g. implicitly supporting tensor broadcasting in the Mean operator). + +The following are not breaking: + +* Clarifications of specification ambiguities to match prevailing + implementation practice. + +Changes to the semantics of an operator or function MUST be introduced in a new operator, which MUST be introduced in a new [operator set](#operator-sets). + +> In practice, this means that BC-breaking changes in the ONNX +> repository require contributors to follow these steps: +> +> 1. Increment the maximum version in `DomainToVersionRange`. +> 2. Copy the old operator schema to an `old.cc` file. +> 3. Update the `SinceVersion` signifier to the new max version from +> step (1). +> 4. Register the new operator in the corresponding `operator_sets` +> header file. +> 5. Add a version adapter to `convert.h` so that the version +> converter can upgrade the old version of the operator to the new +> one. This can be a `CompatibleAdapter` in case operators following +> the old schema are still valid under the new one (which is usually +> true). +> 6. A version adapter to downgrade the new operator to the older version +> can also be added to `convert.h` but it's not mandatory. + +How nodes bind to operator declarations is strictly defined, and are designed to increase model compatibility across ONNX implementations, in the spirit of the conservative clause of the robustness principle. + +How ONNX implementations bind an operator declaration to a specific implementation is outside the scope of this specification. Implementations of ONNX MAY elect to introduce more sophisticated operator declaration/implementation binding modes, in the spirit of the liberal clause of the robustness principle. + +### Operator sets + +ONNX uses operator sets to group together immutable operator specifications. An operator set represents a specific version of a domain, indicated by a pair (domain, version). This represents the set of all operators belonging to the specified domain with the specified version (referred to as the `opset_version`). When the inventory of a given operator set changes either by addition, removal, or a change in semantics of a contained operator, its version MUST increase. + +Models declare which operator sets they require as a list of `(domain, opset_version)` pairs in `ModelProto.opset_import`. The empty string ("") domain indicates the operators defined as part of the ONNX specification; other domains correspond to operator sets of other vendors (meaning they can be used to provide vendor-specific extensions to ONNX). The union of the operator sets specified by a given model MUST have a compatible operator declaration for each node in the model's graph. + +### Example + +This section is not normative and informational only. + +Given the following operator sets: + +OpSet|Operators|Comments +-|-|- +1|{A} | A introduced +2|{A, B} | B introduced +3|{A', B, C} | A updated (to A'), C introduced +4|{B, C'} | A removed, C updated (to C') + +The operators for a given operator set will have the following `since_version` values: + +Operator|OpSet 1|OpSet 2|OpSet 3|OpSet 4 +-|-|-|-|- +A|**1** |1 |**3** |**-** +B|- |**2** |2 |2 +C|- |- |**3** |**4** + +Notes: +- Values that are new or updated from a previous OpSet version are in **bold**. + +## Model versioning + +This section of the specification is not normative. It simply outlines a set of recommended practices. + +Model authors and applications/systems MAY elect to ignore the model versioning mechanism and policy rules. For models that will be shared across developers, teams, or organizations, model authors and applications/systems SHOULD adhere to the following version policies: + +### Signature Changes + +1. Breaking changes to the ModelProto.graph.GraphProto.input or .output MUST increment the MAJOR version of `ModelProto.model_version`. Breaking changes include: + + * Breaking changes to the semantics of an input or output (e.g., changing the required contents of an input tensor from a color image to a black and white image). + * Changing the declared type of an input or output to an incompatible type (e.g., `tensor(int)->tensor(string)`). + * Adding a new input for which there is no meaningful or specified default value. Recall that default values for inputs are specified in the initializer list. + * Removing an existing output for which there is no meaningful or specified default value. + +2. Non-breaking changes to the ModelProto.graph.GraphProto.input or .output MUST increment the MINOR version of `ModelProto.model_version`. Non-breaking changes include: + + * Changing the declared type of an input or output to a compatible/widening type (e.g., `tensor(int32)->tensor(int64)`, `tensor(float16)->tensor(float32)`). + * Adding a new input for which there is a meaningful or specified default value. + * Adding new behavior that is only triggered in the presence of inputs that were not + possible in prior versions of the graph (typically by the presence of a new input + or allowing a previously invalid input value). + +### Accuracy or performance changes + +Changes that impact accuracy or performance significantly but do not change the model's inputs or outputs SHOULD increment the PATCH version of `ModelProto.model_version`. + +## Released Versions + +ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset version ai.onnx.training +------------|-------------------|---------------------|------------------------|------------------------------ +1.0|3|1|1|- +1.1|3|5|1|- +1.1.2|3|6|1|- +1.2|3|7|1|- +1.3|3|8|1|- +1.4.1|4|9|1|- +1.5.0|5|10|1|- +1.6.0|6|11|2|- +1.7.0|7|12|2|1 +1.8.0|7|13|2|1 +1.8.1|7|13|2|1 +1.9.0|7|14|2|1 +1.10.0|8|15|2|1 +1.10.1|8|15|2|1 +1.10.2|8|15|2|1 +1.11.0|8|16|3|1 + +A programmatically accessible version of the above table is available [here](../onnx/helper.py). Limited version number +information is also maintained in [version.h](../onnx/common/version.h) and [schema.h](../onnx/defs/schema.h). +Please update all whenever a new version of ONNX is released. diff --git a/third_party/onnx/docs/images/onnx_hub_arch.svg b/third_party/onnx/docs/images/onnx_hub_arch.svg new file mode 100644 index 0000000000..e79453afe3 --- /dev/null +++ b/third_party/onnx/docs/images/onnx_hub_arch.svg @@ -0,0 +1 @@ +Git LFS StorageONNX Hub ArchitectureM1 v2M2 v3MN v1M1 v1M1 v2M1 v2…onnx/models RepoMANIFEST.jsonM1 v2 PointerM2 v3 PointerMN v1 Pointeronnx/onnxRepoONNX Hub Python ClientLocal MachineLocal Processimport onnxmodel = onnx.hub.load(‘modelN’)Model CacheMN v1 \ No newline at end of file diff --git a/third_party/onnx/docs/proposals/ArchiveFileFormatProposal.md b/third_party/onnx/docs/proposals/ArchiveFileFormatProposal.md new file mode 100644 index 0000000000..1a731b85d2 --- /dev/null +++ b/third_party/onnx/docs/proposals/ArchiveFileFormatProposal.md @@ -0,0 +1,45 @@ + + +# ONNX File Format Proposal + +## Summary + +We propose a new file format for ONNX models that is a specific application of the [zip](https://en.wikipedia.org/wiki/Zip_(file_format)) file format. We would like to address issues with capacity limits as well as (de)serialization inefficiencies[0][1]. We aim to design a file format that is simple, widely applicable, and efficient. By storing Tensor values (i.e. values typically contained in `TensorProto` messages) as files within a zip archive, we avoid these size limitations and—with special constraints—allow for direct memory-mapping of an ONNX file such that weights can be used directly from the memory-mapped region. Using zip as our base file format allows us to create a design that is conceptually simple as well as well-supported on various platforms. + +## Design + +We propose to treat a .zip file as a key-value store, mapping string keys (filenames) to binary data files. For ONNX model serialization, we will have the following entries: + + +* Data files - Files mapping a unique string identifier to a raw binary data file. These files shall be referenced from the appropriate fields within the base `ModelProto` +* `__MODEL_PROTO` - File that contains the `ModelProto` describing the file + + +Note that the order is significant here. We place the model definition file at the end of the archive to allow for the common case of net manipulations while keeping the weights invariant. This way, tools that manipulate the archive do not need to repack or realign all weights when only touching the model file. + +Within the ONNX protobuf definition, we propose the following changes: + + +* Add `optional string external_data` to `TensorProto`. This can be treated as a data field similar to `float_data`, `int_data`, etc in that there must be exactly one of those fields specified. If a `TensorProto` specifies `external_data`, the implementation shall resolve this reference by string key in the containing zip archive. All values of `external_data` must be unique (under down-casing) and conform to the C identifier specification. + + +Raw data files referenced by `TensorProto`s shall conform to the following specification: + + +* The data shall be equivalent to that stored within the `raw_data` field in `TensorProto`. +* Raw data files within the zip archive shall reside on an alignment boundary of 64 bytes. That is, the byte offset within the file of the first byte of a raw data tensor must be divisible by 64. This requirement can be fulfilled by packing bytes into the `extra` field of each local file record in the zip archive. (example: [2]). This constraint facilitates the direct memory-mapping of data files within the archive, and allows for architectures with both strict alignment requirements (e.g. SIMD instructions on aligned data) to operate and give architectures that operate more efficiently on cache line-aligned data to take full advantage. + +## File Extension + +In keeping with other domain-specific zip applications, we propose to use a custom file extension rather than the `.zip` extension. A custom file extension makes it clear to the user that this is not a general zip file, but rather a file that should be emitted by ONNX tools to conform to the spec. + + +## Future-Proofing Considerations + +This file format represents a generic key-value store that is scalable to many entries as well as large values. Further improvements to the format may come in the form of supporting different or multiple model definitions within the same model, or modifying the way in which weight files are stored. Building off of a proven archival format allows us the reliability as well as flexibility of zip. + + + +[0] https://github.com/onnx/onnx/issues/251 +[1] https://stackoverflow.com/questions/34128872/google-protobuf-maximum-size +[2] https://developer.android.com/studio/command-line/zipalign.html implementation https://github.com/aosp-mirror/platform_build/blob/master/tools/zipalign/ZipAlign.cpp diff --git a/third_party/onnx/docs/proposals/FunctionsProposal.md b/third_party/onnx/docs/proposals/FunctionsProposal.md new file mode 100644 index 0000000000..0556565090 --- /dev/null +++ b/third_party/onnx/docs/proposals/FunctionsProposal.md @@ -0,0 +1,21 @@ + + +## Proposal Adding Function into ONNX + +Motivation: +1. Reduce number of primitive operators in ONNX +To make it easier for hardware vendors to follow ONNX, we want to make it possible to define composite operators in terms of more primitive operators, reducing the number of kernels which must be directly implemented. For example, FC should be declared to be a composition MatMul and Add. + +2. Expose customize function capability for graph optimization. +To provide a mechanism of doing graph optimization, say, kernel fusion (merge a subgraph into one node with generated efficient kernel codes). This will in turn help HW acceleration, since common-patterns of kernel fusion may be pre-defined as common functions in ONNX and no sub-graph (function) finding needed for kernel fusion anymore. For example, subgraph having "Add", "Sigmoid", "Tanh", "Mul" nodes could be merged into one fusion node with generated cuda kernel containing "+", "sigmoidf", "tanhf", "*". + +3. Provide a flexible RNN implementation. +To define a library of RNN cells and allow the user to write a custom one. + +MAJOR CHANGES: +1. FunctionProto added to represent a function. +2. FunctionSetProto added to represent a function set. +3. AttributeProto updated to support function attribute type and allow attribute reference. +4. ModelProto updated to contain customized function set. + +Prototype details can be found [here](https://github.com/linkerzhang/onnx/blob/kezhan/add_function_private/onnx/onnx.in.proto) diff --git a/third_party/onnx/docs/proposals/NLPinONNXproposal.md b/third_party/onnx/docs/proposals/NLPinONNXproposal.md new file mode 100644 index 0000000000..663aa5a96d --- /dev/null +++ b/third_party/onnx/docs/proposals/NLPinONNXproposal.md @@ -0,0 +1,69 @@ + + +## Background + +Modern NLP (Natural Language Processing) is an important domain in which deep learning is applied. In addition, modern NLP networks are often non-trivial to implement and even more difficult to transfer between frameworks. These networks are handled fairly non-uniformly across the landscape of frameworks. The ability for ONNX to interchange these networks can be a very compelling feature. + +NLP networks, including recurrent networks, are often built on dynamic control structures. Standardizing the handling of these structures can lead to better collaboration with backends to expose network semantics and achieve better performance. A tradition has developed within the Computer Vision field for optimizing hardware backends for canonical vision models, such as ResNet-50. There is not really such as tradition in the NLP field, however. Through standardizing the representation of NLP networks, we can give vendors a common representation and push forward the performance of NLP models. + +## Ultimate Goal and Challenges + +We should work toward being able to represent major classes of NLP model architectures. One example of such an architecture is the seq2seq with attention model (e.g. https://arxiv.org/abs/1409.0473). This architecture is used for many use cases, including neural machine translation, speech processing, summarization, dialog systems, image captioning, and syntax parsing, among many others. At the same time, seq2seq with attention is sufficiently complex that supporting it will push forward the state of the art in ONNX, but not so complex that we'd need to define a full programming language. + +seq2seq with attention can roughly be broken down into these constituent parts: + +* An Encoder network + * This network takes a sequence of tokens and yields a sequence of embeddings representing the context found at each time-step + * Major classes of encoders: recurrent network (e.g. LSTM[1]), convolutional[2], attention[3]. + * Requirements from an ONNX representation + * Recurrent network - general recurrent network structures preserving outputs at every timestep. Handling of padding and hidden states for batches with different sequence lengths). + * Convolutional - 1d convolution, position embeddings + * Attention - sinusoid position encodings, layer normalization +* A Decoder network + * This network generates a sequence token by token, parameterized by the context provided from the encoder. + * Yields a probability distribution over possible tokens given previous context and encoder context. + * Major classes of decoders: recurrent network (e.g. LSTM), convolutional (causal, temporal for generation), attention. + * Generation requires dynamic control flow. Often, this is done as a beam search, so this is distinct from regular recurrent networks. + * Model-specific requirements + * Recurrent network - Recurrent network cell that can be used within the context of beam search + * Convolutional - 1d causal convolution (only see previous timesteps) + * Attention - sinusoid position encodings, masking along diagonal +* An Attention mechanism + * This network weights the Encoder contexts based on the Decoder's generation state, and provides a focused Encoder context to the decoder. The Decoder “focuses†on a certain part of the input sequence at each timestep via this mechanism. + * Many classes of attention mechanism: some examples are here https://arxiv.org/pdf/1508.04025.pdf + + +Vanilla seq2seq with attention and non-backtracking beam search does NOT include things such as auxiliary data-structures (e.g. stacks), thus it does not require us to implement the full semantics of a programming language. It is an architecture that we can break down into incremental improvements to ONNX without compromising ONNX's fundamental goal. + +[1] https://arxiv.org/abs/1409.0473 +[2] https://arxiv.org/abs/1705.03122 +[3] https://arxiv.org/abs/1706.03762 + +## Standard Recurrent Network Constructs + +Standard recurrent network architectures such as LSTM or GRU are very common, and we can get very far supporting these. We already have the [LSTM](/docs/Operators.md#LSTM) and [GRU](/docs/Operators.md#GRU) operators, which execute the standard LSTM and GRU[4] operations over a sequence of inputs. These high-level operators are great, since they give backends a semantic view of the computation to be performed, and thus backends can make informed decisions about optimization. Many NLP use cases can get away with using just these operators. + +[4] http://colah.github.io/posts/2015-08-Understanding-LSTMs/ + +## Generic Control Flow + +Once we move beyond the domain of standard LSTM and GRU operations, we need a more generic abstraction onto which we can map NLP architectures. A simple example is how one can implement Multiplicative Integration LSTM (https://arxiv.org/pdf/1606.06630.pdf) in ONNX. We can expose a standard LSTMCell via the proposed Function abstraction (https://github.com/onnx/onnx/issues/481). Building on top of this, we can construct a MI-LSTM by applying the required second-order transformations to the inputs to the LSTMCell. Once we have this aggregated implementation, we can use the generic control flow operators (https://github.com/onnx/onnx/pull/436) to apply this “composite†MI-LSTM cell over a sequence. + +Of course, the dynamic control flow constructs can be used for more general use cases. For example, consider the [beam search](https://en.wikipedia.org/wiki/Beam_search) used often in NLP for sequence generation. This algorithm has several tricky aspects: a (potentially) dynamic stopping condition, a desired maximum trip count (so we don't fall into an infinite loop), loop-carried dependencies, and the desire to preserve the outputs at every time-step, not just the final time-step. Inherently, this is an imperative algorithm that operates on mutable state. The proposed control flow operators in ONNX, however, fulfill all of these requirements, and thus we can represent many instances of sequence generation in ONNX graphs. + +Note that there are more general forms of beam search, such as those including backtracking, but we are not considering these forms for this focused proposal. + + +## End-to-end Example : seq2seq with attention + +We should endeavor to have full support for seq2seq with attention models in ONNX. Facebook is currently working on this internally and creating a pytorch→ONNX→caffe2 pathway. An example of such a model we'd like to represent in ONNX is [fairseq-py](https://github.com/facebookresearch/fairseq-py). We would love to engage with the community and collaborate on anything that will help make this a reality. Additionally, if the community has any other suggestions for prominent NLP models we should be able to represent, we would love to hear your ideas. + +## Further Challenges + +Beyond the constructs used in seq2seq with attention, there are NLP models that exist today that contain more non-trivial features, such as mutable data structures that are manipulated at runtime. Examples of this include back-tracking beam search and parser models such as RNNG (https://arxiv.org/abs/1602.07776). These will present further challenges for ONNX, and the representation of these models will likely remain tied to application code for the time being. We may want to revisit this class of models in the future. + +Another thing we should consider is how to handle preprocessing and postprocessing routines for NLP models. For example, do we defer tokenization, normalization, and index lookup to application code? And how do we, for example, distribute dictionaries that map tokens to indices. Initially this will probably remain out of the scope of ONNX unless there is a good story for standardizing text processing. + +## Conclusion + +We have presented a proposal for a strategy for representing NLP models in ONNX, using seq2seq with attention as a canonical example that covers many use cases. We would like to hear your thoughts about this proposal and to explore opportunities for collaboration with the ONNX community for making ONNX a pleasure to use for NLP. Please feel free to voice your opinions! diff --git a/third_party/onnx/docs/proposals/ONNXIFIproposal.md b/third_party/onnx/docs/proposals/ONNXIFIproposal.md new file mode 100644 index 0000000000..6980f854e2 --- /dev/null +++ b/third_party/onnx/docs/proposals/ONNXIFIproposal.md @@ -0,0 +1,116 @@ + + +# ONNX Interface for Framework Integration: API Proposal + +## Background + +Leading hardware and systems vendors offer highly optimized software to run neural network graphs. These software can deliver order-of-magnitude speedups compared to generic implementations, but their integration with deep learning frameworks and applications is complicated by large variety in vendor-specific interfaces, and subtle incompatibilities with the software stack of high-level applications. + +So far, ONNX format targets the problem of offline conversion of neural network models between different high-level frameworks and vendor-specific libraries through offline translation. In this proposal, we suggest that ONNX ecosystem could be enriched to enable runtime discovery and selection of high-performance graph execution backends, and online (in runtime) conversion of ONNX graph to internal representations of these implementations. + +## Ultimate Goal + +We should strive for consensus on a library API to interface with optimized backends and offload parts of ONNX graphs to these high-performance hardware and software implementation. The API should enable wide interoperability between high-level deep learning frameworks, software implementations of optimized graph runtimes, and existing and upcoming neural network acceleration hardware. + +The standardized API should reduce friction in deploying neural network models for all involved parties: +- Applications would be able to ship only one version of a neural network model (either in ONNX format, or in the format of their deep learning framework, and convert it on the fly to ONNX). +- Deep learning frameworks would be able to integrate with many hardware vendors by using only a single interface. +- Hardware vendors would be able to implement only one interface and get integration with many deep learning frameworks. + +## Design Choices + +- Interface must use only highly portable aspects of C ABI. +- Neural network graphs are passed as serialized ONNX ModelProto messages. To avoid serialization overhead, weights can be passed as raw memory blobs. +- Input and output tensors are allocated by the caller and use NCHW layout. +- Intermediate tensors are allocated by the vendor implementation, and can use any layout. +- Backends (software implementations and hardware accelerators) are discovered, selected, and initialized on-demand in run-time. Multiple backends can be used in the same application simultaneously. +- There is no minimal set of ONNX operators to implement. The implementer and the user (a deep learning framework) of the API decide which operators can and will be offloaded in runtime. +- The proposal includes the minimal functionality to let deep learning frameworks and vendor libraries work together. Several extension mechanisms can be used for more efficient vendor- or platform-specific functionality. + +## Proposed Interface + +We propose a small C-based API, which includes the following functionality: + +* Discover (`onnxGetNumBackends`) and query information (`onnxGetBackendInfo`) about high-performance backends +* Initialize (`onnxInitBackend`) and deinitialize (`onnxReleaseBackend`) high-performance backends +* Query if a backend supports an ONNX operator with particular parameters and input shapes (`onnxGetBackendCompatibility`) +* Convert an ONNX graph to opaque vendor-specific representation of a backend (`onnxInitGraph`) +* Specify memory locations and metadata about graph inputs and outputs (`onnxSetGraphIO`) +* Run an ONNX graph, converted to vendor-specific representation (`onnxRunGraph`) +* Release the vendor-specific representation of a graph and associated resources (`onnxReleaseGraph`) + +## General Use Pattern for Deep Learning Frameworks + +1. The user (deep learning framework) iterates operators in a model graph one-by-one, convert them to ONNX, and calls `onnxGetBackendCompatibility` to check which of the operators can be offloaded to the backend. +2. The user constructs connected subgraphs of operators that can be offloaded to the backend. +3. (Optional) For each subgraph, the user estimates if it is beneficial to offload it to the optimized backend: + + a. The user queries the backend about it high-level performance characteristics using `ONNX_BACKEND_MACS_*` and `ONNX_BACKEND_MEMORY_BANDWIDTH` information queries. These data let the user build a simple roofline model of backend performance. + + b. For every subgraph the user estimates time to do inference using the roofline model. + + c. The user additionally estimates time to transfer subgraph inputs to the backend using `ONNX_BACKEND_CPU_MEMORY_READ_BANDWIDTH` information query and to transfer subgraph outputs from the backend using `ONNX_BACKEND_CPU_MEMORY_WRITE_BANDWIDTH`. + + d. If predicted time to transfer inputs to the backend, do inference, and transfer outputs from the backend exceeds predicted time to do the inference on default engine (e.g. CPU), the user falls back to a different ONNX backend, or to the default engine. + + +4. The user initialized the backend, and offloads the subgraph execution to the ONNX backend by calling `onnxInitGraph`, `onnxSetGraphIO` and `onnxRunGraph` + +## Implementation Notes + +### Backend object + +Backend is a combination of software library and hardware device. The same device (e.g. "NVIDIA Tesla P100 on CUDA index #0" accessed though different software libraries would be seen as different backends. A single software library can expose multiple backends, one per device (e.g. each CUDA GPU in a system is exposed as a separate backend, or CPU, GPU, and DSP on a mobile chipset are exposed as three different backends). + +We recommend that vendors make the backend object reference-counted, and use `uint32_t magic` as the first data field of the object: + +```c +struct MyBackend { + uint32_t magic; + uint64_t referenceCount; + ... +}; + +/* This line won't compile, but gives you an idea of relation between MyBackend structure and onnxBackend type. */ +typedef MyBackend* onnxBackend; +``` + +Magic is an arbitrary 32-bit integer unique for a library implementing the API. It should be used to verify that the backend object passed to `onnxInitGraph` was created by `onnxInitBackend` in the same library. + +### Graph object + +Graph object is a vendor-specific representation of ONNX ModelProto message. Graph is logically related to the backend used to create it, and a typical implementation of a graph object would hold a reference to its backend object. + +We recommend that vendors use `uint32_t magic` as the first data field of the graph object: + +```c +struct MyGraph { + uint32_t magic; + struct MyBackend* backend; + ... +}; + +/* This line won't compile, but gives you an idea of relation between MyGraph structure and onnxGraph type. */ +typedef MyGraph* onnxGraph; +``` + +Magic is an arbitrary 32-bit integer unique for a library implementing the API. It should be used to verify that the backend object passed to `onnxInitGraph` was created by `onnxInitBackend` in the same library. Magic for a graph object should be different from magic of a backend object of the same library. + +### Library initialization + +During one-time library initialization, the implementation of the API would detect `n` supported devices and map them to backend indices in `0...(n-1)` range. The implementation of device discovery and checking required device characteristics is highly vendor- and platform-specific, e.g.: +- A CPU implementation may always expose 1 device. +- A CUDA-based implementation may call `cudaGetDeviceCount` to get the number of CUDA-enabled devices, then + call `cudaGetDeviceProperties` for each device, and map CUDA devices which satisfy the minimum required functionality, such as compute capability, to backend indices. +- An OpenCL-based implementation for a mobile GPU would try to load OpenCL library, call `clGetPlatformIDs` and `clGetPlatformInfo` to find a supported platform, then call `clGetDeviceIDs` and `clGetDeviceInfo` to find a supported GPU device, and map it to the only exposed backend if such device exists, or expose 0 devices otherwise. +- An implementation for hardware neural network accelerators would call vendor-specific driver API to discover accelerator devices installed in the system and map them to backend indices. + +We recommend that library initialization is triggered on the first call to `onnxGetNumBackends`, `onnxGetBackendInfo`, or `onnxInitBackend`. Using a global static C++ object for initialization may hurt portability if library initialization involves loading other shared libraries (DLLs): on Windows `LoadLibrary` function can't be used in initializers of global static objects. + +### onnxGetNumBackends + +Implementation would [initialize the library](#library-initialization), if it wasn't initialized already, and return the number `n` of available backends. + +### onnxGetBackendInfo + +Implementation would [initialize the library](#library-initialization), if it wasn't initialized already, and query information about the backend using vendor- or platform-specific API (e.g. `cudaGetDeviceProperties`, `clGetDeviceInfo`, CPUID instruction). Implementation can cache this information when it is first queried or during initialization, and return the cached value. diff --git a/third_party/onnx/docs/proposals/SymbolicShapeInfProposal.md b/third_party/onnx/docs/proposals/SymbolicShapeInfProposal.md new file mode 100644 index 0000000000..b669cd6fb9 --- /dev/null +++ b/third_party/onnx/docs/proposals/SymbolicShapeInfProposal.md @@ -0,0 +1,163 @@ +# Proposal - Symbolic Shape Inference And Partial Data Propagation + +*Note: This proposal was accepted and implemented in ONNX 1.10. Following PRs implemented this proposal: 3518, 3551, 3593, 3580* + +## Introduction +ONNX provides an implementation of shape inference on ONNX graphs. Shape inference is computed using the operator level shape inference functions. The inferred shape of an operator is used to get the shape information without having to launch the model in a session. Such static shape inference can be used to catch obvious errors before runtime, eliminate run-time checks which are otherwise guaranteed to pass, improve static memory planning and improve model visualization experience. For pytorch exporter and compiler-based execution providers like Nuphar, shape inference is required (rank inference is minimum requirement), and they cannot work with unknown shapes. + +This document explains the limitations of shape inference and lays out a proposal for addressing these limitations. + +## Current onnx shape inference limitations (Pre ONNX 1.10) +Today, ONNX shape inference is not guaranteed to be complete. Wherever possible we fall back to rank inference however, there are scenarios when rank inference is not possible either. Here are the various limitations which block the completion of shape inference: + +1. Some dynamic behaviors block the flow of shape inference, and the shape inference stops. For example, reshape to a dynamically computed shape. + +2. Shape inference works only with constants and simple variables. It does not support arithmetic expressions containing variables nor does it support symbol generation. For example, concatenation on tensors of shapes (5, 2) and (7, 2) can be inferred to produce a result of shape (12, 2), but concatenation on tensors of shapes (5, 2) and (N, 2) will simply produce (?, 2), where “?†represents a dimension with neither dim value nor dim param, rather than containing a representation of N+5 or generating a new symbol (M, 2). In such scenarios shape propagation stops. + +3. All operators are not required to have a shape inference implementation. When such an op is encountered the shape inference stops. There are also cases when rank inference is not done as a fallback mechanism. (Note: We are working on an ongoing basis to identify and fix such issues. The current document does not focus on this limitation) + + +## Goals and Non-Goals +Our **goal** is to fix the shape inference gap in scenarios where: + +* Shape computations are done in branches (refer to limitation 1) + +* Symbolic dimensions are present (refer to limitation 2) + +By fixing these gaps we aim to: + +* Unblock pytorch exporter from exporting models when exporting stops because of absence of shape information. + +* Improve static memory planning in the runtimes. + +* Enable pre-allocating output buffers outside of the runtimes so that its lifetime can be managed by the caller itself. + + +### Non-goals +* Add symbolic expressions to ONNX standard: This is not necessary for accomplishing our goals. There are advantages to having this capability, for example this can significantly reduce the number of symbols introduced and it can also provide more deterministic shape calculations in certain special cases. However, the tradeoff is the added complexity. So, at this point we are not considering it. This can be considered in future iterations. + +* Enable data computation and propagation for older operator sets. (details in the proposal section) + +Note: This work will benefit Nuphar as well but right now there is no plan to move Nuphar to use this solution. + + +## Terminology +Shape inference can be broken into 2 parts: + +* Node level shape inference: This refers to operator specific shape inference functions. They are defined with the operator schema itself. + +* Graph-level shape inference: This refers to the higher-level logic which walks through the entire graph, gets the inferred shape from node level shape inference functions and then makes decisions on merging these inferred shapes with existing shapes so that they are available for downstream nodes. + + +## Proposal +Extend current shape inference to allow: +* Symbol generation and propagation + +* Partial data computation and propagation + +* Extend shape op to generate slice of the shape to facilitate simplifying shape computations. + + +## Extend shape inference + +### Symbol generation and propagation +Extend graph level shape inference to maintain a graph level view of symbols and generate new symbols where necessary. This will enable us to continue the shape inference of the downstream nodes. + +Example: + +For an op like “Concat†if its inputs have shapes “[M]†and “[N]†current shape-inference returns “[?]†where “?†is to indicate a dimension with neither dim-value nor dim-param set. Now, suppose the output X of “Concat†is input to a unary-op Op1() whose output Y is then input to another unary-op Op2() whose output is Z, etc. The shape “[?]†is propagated further. We infer that Y and Z have shape “[?]â€. However, we do not infer that X, Y, and Z have the same shape because two “?†cannot be considered equal. + +Per the current proposal, “[?]†in inferred shapes will be replaced by a new unique symbol by the graph level shape inference so the downstream nodes can use the symbolic shapes to carry out shape inference. In the current example, “Concat†will produce “[?]†as the shape which will then be replaced by “[K]â€, then subsequent shape inference will infer that X, Y, and Z all have the same shape “[K]â€. Runtimes can use this information to reuse memory for these tensors. + + +### Partial data computation and propagation +When shape inputs are computed dynamically, shape inference post a reshape node stops. This can be prevented by making this data available to the reshape node during shape inference. We propose computation and propagation of data for operators which are used in shape computation. + +It is called “partial†data computation and propagation because this will only be done for shape computations. It is not meant to be a full-fledged kernel for the operator. For the same reasons data computations will be implemented for a limited set of operators. While we will increase the coverage in the future iterations it is important to note that for some operators like LSTM, convolution ops, pooling ops etc. data propagation function will never be added because such ops are not used in shape computations. + +The following operators will be picked in the first phase. (These operators are generally used for shape computations.) + +| Ops | +| --------| +| Add | +| Sub | +| Mul | +| Cast | +| Concat | +| Gather | +| Reshape | +| Shape | +| Slice | +| Size | +| Squeeze | +| UnSqueeze | + +The OpSchema class will be extended to include an optional “PartialDataPropagationFunction†like the existing TypeAndShapeInferenceFunction. This function will provide data computation for the operators which will then be propagated to the downstream operators by the graph level shape inference. PartialDataPropagationFunction will be called by the graph level shape inference after TypeAndShapeInference runs for the node because the output shape is required for partial data computation. + +A new interface "DataPropagationContext†will be added to allow PartialDataPropagationFunction to access all the information required to propagate shape data for the given node and allow writing of the computed data. + +Example: + +``` +using DataPropagationFunction = std::function + +class OpSchema final { + + public: + . + . + . + + OpSchema& PartialDataPropagationFunction(DataPropagationFunction dataPropagationFunction)  { +   partial_data_propagation_function_ = std::move(dataPropagationFunction); +   return *this; + } + + DataPropagationFunction GetDataPropagationFunction() const { +    return partial_data_propagation_function_ ? partial_data_propagation_function_ : dummyDataPropogator; + } +} + +// Operator schema example +ONNX_OPERATOR_SET_SCHEMA( +    Shape, +    13, +    OpSchema() +        .SetDoc(“â€) +        .Input(0, "data", "An input tensor.", "T", . . .) +        .Output(0, "shape", "Shape of the input tensor", "T1", . . .) +        .TypeConstraint("T", OpSchema::all_tensor_types()) +        .TypeConstraint("T1", {"tensor(int64)"}) +        .TypeAndShapeInferenceFunction([](InferenceContext& ctx) { + . . . +        }) + +        .PartialDataPropagationFunction([](DataPropagationContext& ctx) { + TensorShapeProto tp; + // compute output data for shape operator + // add computed data to DataPropagationContext for propagating it downstream +          ctx.addOutputData(0, std::move(tp)); +        })); +``` + +The symbol generation will happen at the graph level shape inference, therefore all the models (older opsets as well as the latest opset versions) can benefit from this enhancement. However, the data computation and propagation are tied to the OpScehma and will happen at node level. To begin with these functions will only be added to the latest op schemas. Older schemas can be extended to support data computation later, on a case by case basis to support some high priority scenarios. What this means is that older opset models will not benefit from shape inference improvements because of this enhancement. + + +## Special Cases +This section considers some edge cases and proposes a solution to handle them. + + +### Broadcasting with symbolic dims +If we have a broadcast between two unknown dimensions “M†and “N†we cannot infer that both M and N should have the same value. The runtime semantics allows for one of the two symbols to have the value 1 and the other to have a value different from 1. So, merging M and N and treating them as the same value is potentially unsound. In this case, a new symbol will be generated for the output shape and the shape inference will continue. + + +### Inferred shape does not match output shape +Inferred and existing shapes can be mismatched. Although failing shape inference in such cases seems like the correct approach it may not always be practical. By default, shape inference will fail when such a case is encountered however callers will have an option to override existing types with inferred types. When this option is enabled, shape inference will continue with the inferred type. + + +### Handling symbolic dimensions with data propagation +When the shape contains symbolic dimensions, we try and propagate them downstream, however in cases where some arithmetic operations are performed on these symbolic dims we create new symbols and propagate them instead. + + +### Output shape is dependent on input data +There are certain nodes like NonZero where the output shape depends on the input data. In this case it is not possible to infer the shape completely hence a new symbolic shape will be created using the inferred rank and shape inference will continue. diff --git a/third_party/onnx/onnx/__init__.py b/third_party/onnx/onnx/__init__.py new file mode 100644 index 0000000000..0dea1afa8a --- /dev/null +++ b/third_party/onnx/onnx/__init__.py @@ -0,0 +1,217 @@ +# SPDX-License-Identifier: Apache-2.0 + +import os + +from .onnx_cpp2py_export import ONNX_ML +from onnx.external_data_helper import load_external_data_for_model, write_external_data_tensors, convert_model_to_external_data +from .onnx_pb import * # noqa +from .onnx_operators_pb import * # noqa +from .onnx_data_pb import * # noqa +from .version import version as __version__ # noqa + +# Import common subpackages so they're available when you 'import onnx' +import onnx.checker # noqa +import onnx.defs # noqa +import onnx.helper # noqa +import onnx.utils # noqa +import onnx.compose # noqa + +import google.protobuf.message + +from typing import Union, Text, IO, Optional, cast, TypeVar, Any + + +# f should be either readable or a file path +def _load_bytes(f: Union[IO[bytes], Text]) -> bytes: + if hasattr(f, 'read') and callable(cast(IO[bytes], f).read): + s = cast(IO[bytes], f).read() + else: + with open(cast(Text, f), 'rb') as readable: + s = readable.read() + return s + + +# str should be bytes, +# f should be either writable or a file path +def _save_bytes(str: bytes, f: Union[IO[bytes], Text]) -> None: + if hasattr(f, 'write') and callable(cast(IO[bytes], f).write): + cast(IO[bytes], f).write(str) + else: + with open(cast(Text, f), 'wb') as writable: + writable.write(str) + + +# f should be either a readable file or a file path +def _get_file_path(f: Union[IO[bytes], Text]) -> Optional[Text]: + if isinstance(f, str): + return os.path.abspath(f) + if hasattr(f, 'name'): + return os.path.abspath(f.name) + return None + + +def _serialize(proto: Union[bytes, google.protobuf.message.Message]) -> bytes: + ''' + Serialize a in-memory proto to bytes + + Arguments: + proto: a in-memory proto, such as a ModelProto, TensorProto, etc + + Returns: + Serialized proto in bytes + ''' + if isinstance(proto, bytes): + return proto + elif hasattr(proto, 'SerializeToString') and callable(proto.SerializeToString): + result = proto.SerializeToString() + return result + else: + raise TypeError('No SerializeToString method is detected. ' + 'neither proto is a str.\ntype is {}'.format(type(proto))) + + +_Proto = TypeVar('_Proto', bound=google.protobuf.message.Message) + + +def _deserialize(s: bytes, proto: _Proto) -> _Proto: + ''' + Parse bytes into a in-memory proto + + Arguments: + s: bytes containing serialized proto + proto: a in-memory proto object + + Returns: + The proto instance filled in by s + ''' + if not isinstance(s, bytes): + raise ValueError('Parameter s must be bytes, but got type: {}'.format(type(s))) + + if not (hasattr(proto, 'ParseFromString') and callable(proto.ParseFromString)): + raise ValueError('No ParseFromString method is detected. ' + '\ntype is {}'.format(type(proto))) + + decoded = cast(Optional[int], proto.ParseFromString(s)) + if decoded is not None and decoded != len(s): + raise google.protobuf.message.DecodeError( + "Protobuf decoding consumed too few bytes: {} out of {}".format( + decoded, len(s))) + return proto + + +def load_model(f: Union[IO[bytes], Text], format: Optional[Any] = None, load_external_data: bool = True) -> ModelProto: + ''' + Loads a serialized ModelProto into memory + load_external_data is true if the external data under the same directory of the model and load the external data + If not, users need to call load_external_data_for_model with directory to load + + Arguments: + f: can be a file-like object (has "read" function) or a string containing a file name + format: for future use + + Returns: + Loaded in-memory ModelProto + ''' + s = _load_bytes(f) + model = load_model_from_string(s, format=format) + + if load_external_data: + model_filepath = _get_file_path(f) + if model_filepath: + base_dir = os.path.dirname(model_filepath) + load_external_data_for_model(model, base_dir) + + return model + + +def load_tensor(f: Union[IO[bytes], Text], format: Optional[Any] = None) -> TensorProto: + ''' + Loads a serialized TensorProto into memory + + Arguments: + f: can be a file-like object (has "read" function) or a string containing a file name + format: for future use + + Returns: + Loaded in-memory TensorProto + ''' + s = _load_bytes(f) + return load_tensor_from_string(s, format=format) + + +def load_model_from_string(s: bytes, format: Optional[Any] = None) -> ModelProto: + ''' + Loads a binary string (bytes) that contains serialized ModelProto + + Arguments: + s: a string, which contains serialized ModelProto + format: for future use + + Returns: + Loaded in-memory ModelProto + ''' + return _deserialize(s, ModelProto()) + + +def load_tensor_from_string(s: bytes, format: Optional[Any] = None) -> TensorProto: + ''' + Loads a binary string (bytes) that contains serialized TensorProto + + Arguments: + s: a string, which contains serialized TensorProto + format: for future use + + Returns: + Loaded in-memory TensorProto + ''' + return _deserialize(s, TensorProto()) + + +def save_model(proto: Union[ModelProto, bytes], f: Union[IO[bytes], Text], format: Optional[Any] = None, save_as_external_data: bool = False, all_tensors_to_one_file: bool = True, location: Optional[Text] = None, size_threshold: int = 1024, convert_attribute: bool = False) -> None: + ''' + Saves the ModelProto to the specified path and optionally, serialize tensors with raw data as external data before saving. + + Arguments: + proto: should be a in-memory ModelProto + f: can be a file-like object (has "write" function) or a string containing a file name format for future use + all_tensors_to_one_file: If true, save all tensors to one external file specified by location. + If false, save each tensor to a file named with the tensor name. + location: specify the external file that all tensors to save to. + If not specified, will use the model name. + size_threshold: Threshold for size of data. Only when tensor's data is >= the size_threshold it will be converted + to external data. To convert every tensor with raw data to external data set size_threshold=0. + convert_attribute: If true, convert all tensors to external data + If false, convert only non-attribute tensors to external data + ''' + if isinstance(proto, bytes): + proto = _deserialize(proto, ModelProto()) + + if save_as_external_data: + convert_model_to_external_data(proto, all_tensors_to_one_file, location, size_threshold, convert_attribute) + + model_filepath = _get_file_path(f) + if model_filepath: + basepath = os.path.dirname(model_filepath) + proto = write_external_data_tensors(proto, basepath) + + s = _serialize(proto) + _save_bytes(s, f) + + +def save_tensor(proto: TensorProto, f: Union[IO[bytes], Text]) -> None: + ''' + Saves the TensorProto to the specified path. + + Arguments: + proto: should be a in-memory TensorProto + f: can be a file-like object (has "write" function) or a string containing a file name + format: for future use + ''' + s = _serialize(proto) + _save_bytes(s, f) + + +# For backward compatibility +load = load_model +load_from_string = load_model_from_string +save = save_model diff --git a/third_party/onnx/onnx/backend/__init__.py b/third_party/onnx/onnx/backend/__init__.py new file mode 100644 index 0000000000..9881313609 --- /dev/null +++ b/third_party/onnx/onnx/backend/__init__.py @@ -0,0 +1 @@ +# SPDX-License-Identifier: Apache-2.0 diff --git a/third_party/onnx/onnx/backend/base.py b/third_party/onnx/onnx/backend/base.py new file mode 100644 index 0000000000..af1fd41479 --- /dev/null +++ b/third_party/onnx/onnx/backend/base.py @@ -0,0 +1,115 @@ +# SPDX-License-Identifier: Apache-2.0 + +from collections import namedtuple +from typing import Text, Sequence, Any, Type, Tuple, NewType, Optional, Dict + +import numpy # type: ignore + +import onnx.checker +import onnx.onnx_cpp2py_export.checker as c_checker +from onnx import ModelProto, NodeProto, IR_VERSION + + +class DeviceType(object): + _Type = NewType('_Type', int) + CPU: _Type = _Type(0) + CUDA: _Type = _Type(1) + + +class Device(object): + ''' + Describes device type and device id + syntax: device_type:device_id(optional) + example: 'CPU', 'CUDA', 'CUDA:1' + ''' + + def __init__(self, device: Text) -> None: + options = device.split(':') + self.type = getattr(DeviceType, options[0]) + self.device_id = 0 + if len(options) > 1: + self.device_id = int(options[1]) + + +def namedtupledict(typename: Text, field_names: Sequence[Text], *args: Any, **kwargs: Any) -> Type[Tuple[Any, ...]]: + field_names_map = {n: i for i, n in enumerate(field_names)} + # Some output names are invalid python identifier, e.g. "0" + kwargs.setdefault(str('rename'), True) + data = namedtuple(typename, field_names, *args, **kwargs) # type: ignore + + def getitem(self: Any, key: Any) -> Any: + if isinstance(key, str): + key = field_names_map[key] + return super(type(self), self).__getitem__(key) # type: ignore + setattr(data, "__getitem__", getitem) + return data + + +class BackendRep(object): + def run(self, inputs: Any, **kwargs: Any) -> Tuple[Any, ...]: + pass + + +class Backend(object): + @classmethod + def is_compatible(cls, + model: ModelProto, + device: Text = 'CPU', + **kwargs: Any + ) -> bool: + # Return whether the model is compatible with the backend. + return True + + @classmethod + def prepare(cls, + model: ModelProto, + device: Text = 'CPU', + **kwargs: Any + ) -> Optional[BackendRep]: + # TODO Remove Optional from return type + onnx.checker.check_model(model) + return None + + @classmethod + def run_model(cls, + model: ModelProto, + inputs: Any, + device: Text = 'CPU', + **kwargs: Any + ) -> Tuple[Any, ...]: + backend = cls.prepare(model, device, **kwargs) + assert backend is not None + return backend.run(inputs) + + @classmethod + def run_node(cls, + node: NodeProto, + inputs: Any, + device: Text = 'CPU', + outputs_info: Optional[Sequence[Tuple[numpy.dtype, Tuple[int, ...]]]] = None, + **kwargs: Dict[Text, Any] + ) -> Optional[Tuple[Any, ...]]: + '''Simple run one operator and return the results. + Args: + outputs_info: a list of tuples, which contains the element type and + shape of each output. First element of the tuple is the dtype, and + the second element is the shape. More use case can be found in + https://github.com/onnx/onnx/blob/main/onnx/backend/test/runner/__init__.py + ''' + # TODO Remove Optional from return type + if 'opset_version' in kwargs: + special_context = c_checker.CheckerContext() + special_context.ir_version = IR_VERSION + special_context.opset_imports = {'': kwargs['opset_version']} # type: ignore + onnx.checker.check_node(node, special_context) + else: + onnx.checker.check_node(node) + return None + + @classmethod + def supports_device(cls, device: Text) -> bool: + """ + Checks whether the backend is compiled with particular device support. + In particular it's used in the testing suite. + """ + return True diff --git a/third_party/onnx/onnx/backend/sample/__init__.py b/third_party/onnx/onnx/backend/sample/__init__.py new file mode 100644 index 0000000000..9881313609 --- /dev/null +++ b/third_party/onnx/onnx/backend/sample/__init__.py @@ -0,0 +1 @@ +# SPDX-License-Identifier: Apache-2.0 diff --git a/third_party/onnx/onnx/backend/sample/ops/__init__.py b/third_party/onnx/onnx/backend/sample/ops/__init__.py new file mode 100644 index 0000000000..55e70e7b7b --- /dev/null +++ b/third_party/onnx/onnx/backend/sample/ops/__init__.py @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: Apache-2.0 + +import importlib +import inspect +import sys +import pkgutil +from typing import Dict, Text +from types import ModuleType + + +def collect_sample_implementations() -> Dict[Text, Text]: + dict: Dict[Text, Text] = {} + _recursive_scan(sys.modules[__name__], dict) + return dict + + +def _recursive_scan(package: ModuleType, dict: Dict[Text, Text]) -> None: + pkg_dir = package.__path__ # type: ignore + module_location = package.__name__ + for _module_loader, name, ispkg in pkgutil.iter_modules(pkg_dir): # type: ignore + module_name = "{}.{}".format(module_location, name) # Module/package + module = importlib.import_module(module_name) + dict[name] = inspect.getsource(module) + if ispkg: + _recursive_scan(module, dict) diff --git a/third_party/onnx/onnx/backend/sample/ops/abs.py b/third_party/onnx/onnx/backend/sample/ops/abs.py new file mode 100644 index 0000000000..89fe75b792 --- /dev/null +++ b/third_party/onnx/onnx/backend/sample/ops/abs.py @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + + +def abs(input: np.ndarray) -> np.ndarray: + return np.abs(input) diff --git a/third_party/onnx/onnx/backend/test/__init__.py b/third_party/onnx/onnx/backend/test/__init__.py new file mode 100644 index 0000000000..4110663c22 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/__init__.py @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 + +# for backward compatibility +from .runner import Runner as BackendTest # noqa diff --git a/third_party/onnx/onnx/backend/test/case/__init__.py b/third_party/onnx/onnx/backend/test/case/__init__.py new file mode 100644 index 0000000000..0286825087 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/__init__.py @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: Apache-2.0 + +import sys + +from .base import Snippets +from .utils import import_recursive +from typing import Dict, Text, List, Tuple + + +def collect_snippets() -> Dict[Text, List[Tuple[Text, Text]]]: + import_recursive(sys.modules[__name__]) + return Snippets diff --git a/third_party/onnx/onnx/backend/test/case/base.py b/third_party/onnx/onnx/backend/test/case/base.py new file mode 100644 index 0000000000..79cb180337 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/base.py @@ -0,0 +1,43 @@ +# SPDX-License-Identifier: Apache-2.0 + +from collections import defaultdict +import inspect +from textwrap import dedent +from typing import Dict, Text, List, Tuple, Type, Sequence, Any + +import numpy as np # type: ignore + + +def process_snippet(op_name: Text, name: Text, export: Any) -> Tuple[Text, Text]: + snippet_name = name[len('export_'):] or op_name.lower() + source_code = dedent(inspect.getsource(export)) + # remove the function signature line + lines = source_code.splitlines() + assert lines[0] == '@staticmethod' + assert lines[1].startswith('def export') + return snippet_name, dedent("\n".join(lines[2:])) + + +Snippets: Dict[Text, List[Tuple[Text, Text]]] = defaultdict(list) + + +class _Exporter(type): + exports: Dict[Text, List[Tuple[Text, Text]]] = defaultdict(list) + + def __init__(cls, name: str, bases: Tuple[Type[Any], ...], dct: Dict[str, Any]) -> None: + for k, v in dct.items(): + if k.startswith('export'): + if not isinstance(v, staticmethod): + raise ValueError( + 'Only staticmethods could be named as export.*') + export = getattr(cls, k) + Snippets[name].append(process_snippet(name, k, export)) + # export functions should call expect and so populate + # TestCases + np.random.seed(seed=0) + export() + super(_Exporter, cls).__init__(name, bases, dct) + + +class Base(object, metaclass=_Exporter): + pass diff --git a/third_party/onnx/onnx/backend/test/case/model/__init__.py b/third_party/onnx/onnx/backend/test/case/model/__init__.py new file mode 100644 index 0000000000..c5978f804e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/__init__.py @@ -0,0 +1,74 @@ +# SPDX-License-Identifier: Apache-2.0 + +import sys + +import onnx.defs +import numpy as np # type: ignore +from onnx import ModelProto +from typing import List, Optional, Text, Sequence +from ..utils import import_recursive +from ..test_case import TestCase + +_SimpleModelTestCases = [] + + +def expect(model: ModelProto, + inputs: Sequence[np.ndarray], + outputs: Sequence[np.ndarray], + name: Optional[Text] = None, + ) -> None: + name = name or model.graph.name + _SimpleModelTestCases.append( + TestCase( + name=name, + model_name=model.graph.name, + url=None, + model_dir=None, + model=model, + data_sets=[(inputs, outputs)], + kind='simple', + rtol=1e-3, + atol=1e-7, + )) + + +base_model_opset_version = 10 +BASE_URL = 'https://s3.amazonaws.com/download.onnx/models/opset_{}'.format( + base_model_opset_version) + + +def collect_testcases() -> List[TestCase]: + '''Collect model test cases defined in python/numpy code and in model zoo. + ''' + + real_model_testcases = [] + + model_tests = [ + ('test_bvlc_alexnet', 'bvlc_alexnet', 1e-3, 1e-7), + ('test_densenet121', 'densenet121', 2e-3, 1e-7), + ('test_inception_v1', 'inception_v1', 1e-3, 1e-7), + ('test_inception_v2', 'inception_v2', 1e-3, 1e-7), + ('test_resnet50', 'resnet50', 1e-3, 1e-7), + ('test_shufflenet', 'shufflenet', 1e-3, 1e-7), + ('test_squeezenet', 'squeezenet', 1e-3, 1e-7), + ('test_vgg19', 'vgg19', 1e-3, 1e-7), + ('test_zfnet512', 'zfnet512', 1e-3, 1e-7), + ] + + for test_name, model_name, rtol, atol in model_tests: + url = '{}/{}.tar.gz'.format(BASE_URL, model_name) + real_model_testcases.append(TestCase( + name=test_name, + model_name=model_name, + url=url, + model_dir=None, + model=None, + data_sets=None, + kind='real', + rtol=rtol, + atol=atol, + )) + + import_recursive(sys.modules[__name__]) + + return real_model_testcases + _SimpleModelTestCases diff --git a/third_party/onnx/onnx/backend/test/case/model/expand.py b/third_party/onnx/onnx/backend/test/case/model/expand.py new file mode 100644 index 0000000000..8333ce82b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/expand.py @@ -0,0 +1,62 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Sequence + + +class ExpandDynamicShape(Base): + + @staticmethod + def export() -> None: + + def make_graph(node: onnx.helper.NodeProto, input_shape: Sequence[int], shape_shape: Sequence[int], output_shape: Sequence[int]) -> onnx.helper.GraphProto: + graph = onnx.helper.make_graph( + nodes=[node], + name='Expand', + inputs=[onnx.helper.make_tensor_value_info('X', + onnx.TensorProto.FLOAT, + input_shape), + onnx.helper.make_tensor_value_info('shape', + onnx.TensorProto.INT64, + shape_shape)], + outputs=[onnx.helper.make_tensor_value_info('Y', + onnx.TensorProto.FLOAT, + output_shape)]) + return graph + + node = onnx.helper.make_node( + 'Expand', ['X', 'shape'], ['Y'], name='test') + input_shape = [1, 3, 1] + x = np.ones(input_shape, dtype=np.float32) + + #1st testcase + shape = np.array([3, 1], dtype=np.int64) + y = x * np.ones(shape, dtype=np.float32) + graph = make_graph(node, input_shape, shape.shape, y.shape) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, shape], outputs=[y], name="test_expand_shape_model1") + + #2nd testcase + shape = np.array([1, 3], dtype=np.int64) + y = x * np.ones(shape, dtype=np.float32) + graph = make_graph(node, input_shape, shape.shape, y.shape) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, shape], outputs=[y], name="test_expand_shape_model2") + + #3rd testcase + shape = np.array([3, 1, 3], dtype=np.int64) + y = x * np.ones(shape, dtype=np.float32) + graph = make_graph(node, input_shape, shape.shape, y.shape) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, shape], outputs=[y], name="test_expand_shape_model3") + + #4th testcase + shape = np.array([3, 3, 1, 3], dtype=np.int64) + y = x * np.ones(shape, dtype=np.float32) + graph = make_graph(node, input_shape, shape.shape, y.shape) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, shape], outputs=[y], name="test_expand_shape_model4") diff --git a/third_party/onnx/onnx/backend/test/case/model/gradient.py b/third_party/onnx/onnx/backend/test/case/model/gradient.py new file mode 100644 index 0000000000..e083faaec3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/gradient.py @@ -0,0 +1,101 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx.defs import ONNX_DOMAIN, AI_ONNX_PREVIEW_TRAINING_DOMAIN +from ..base import Base +from . import expect + + +class Gradient(Base): + + @staticmethod + def export_gradient_scalar_add() -> None: + add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') + gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dc_da', 'dc_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='c') + + a = np.array(1.0).astype(np.float32) + b = np.array(2.0).astype(np.float32) + c = a + b + # dc / da = d(a+b) / da = 1 + dc_da = np.array(1).astype(np.float32) + # db / db = d(a+b) / db = 1 + dc_db = np.array(1).astype(np.float32) + + graph = onnx.helper.make_graph( + nodes=[add_node, gradient_node], + name='GradientOfAdd', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('c', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dc_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dc_db', + onnx.TensorProto.FLOAT, [])]) + opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] + model = onnx.helper.make_model( + graph, + producer_name='backend-test', + opset_imports=opsets) + expect(model, inputs=[a, b], outputs=[c, dc_da, dc_db], + name='test_gradient_of_add') + + @staticmethod + def export_gradient_scalar_add_and_mul() -> None: + add_node = onnx.helper.make_node('Add', + ['a', 'b'], ['c'], name='my_add') + mul_node = onnx.helper.make_node('Mul', + ['c', 'a'], ['d'], name='my_mul') + gradient_node = onnx.helper.make_node( + 'Gradient', ['a', 'b'], + ['dd_da', 'dd_db'], name='my_gradient', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN, + xs=['a', 'b'], y='d') + + a = np.array(1.0).astype(np.float32) + b = np.array(2.0).astype(np.float32) + c = a + b + # d = a * c = a * (a + b) + d = a * c + # dd / da = d(a*a+a*b) / da = 2 * a + b + dd_da = (2 * a + b).astype(np.float32) + # dd / db = d(a*a+a*b) / db = a + dd_db = a + + graph = onnx.helper.make_graph( + nodes=[add_node, mul_node, gradient_node], + name='GradientOfTwoOperators', + inputs=[ + onnx.helper.make_tensor_value_info('a', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('b', onnx.TensorProto.FLOAT, + [])], + outputs=[ + onnx.helper.make_tensor_value_info('d', onnx.TensorProto.FLOAT, + []), + onnx.helper.make_tensor_value_info('dd_da', + onnx.TensorProto.FLOAT, []), + onnx.helper.make_tensor_value_info('dd_db', + onnx.TensorProto.FLOAT, [])]) + + opsets = [ + onnx.helper.make_operatorsetid(ONNX_DOMAIN, 12), + onnx.helper.make_operatorsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)] + model = onnx.helper.make_model(graph, + producer_name='backend-test', + opset_imports=opsets) + expect(model, inputs=[a, b], outputs=[d, dd_da, dd_db], + name='test_gradient_of_add_and_mul') diff --git a/third_party/onnx/onnx/backend/test/case/model/sequence.py b/third_party/onnx/onnx/backend/test/case/model/sequence.py new file mode 100644 index 0000000000..8def139ee1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/sequence.py @@ -0,0 +1,355 @@ +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import annotations + +import numpy as np # type: ignore + +import onnx +import typing +from ..base import Base +from . import expect +from onnx import TensorProto +from typing import List, Optional, Text, Union + + +def SequenceEmptyImpl() -> List[Optional[np.ndarray]]: + return [] + + +def SequenceConstructImpl(*tensors: np.ndarray) -> List[np.ndarray]: + return list(tensors) + + +def SequenceInsertImpl(sequence: List[np.ndarray], tensor: np.ndarray, position: Optional[int] = None) -> List[np.ndarray]: + if position is None: + position = len(sequence) + sequence.insert(position, tensor) + return sequence + + +def SequenceAtImpl(sequence: List[np.ndarray], position: int) -> np.ndarray: + return sequence[position] + + +def SequenceEraseImpl(sequence: List[np.ndarray], position: Optional[int] = None) -> List[Optional[np.ndarray]]: + if position is None: + position = -1 + del sequence[position] + return sequence + + +def SequenceLengthImpl(sequence: List[np.ndarray]) -> np.int64: + return np.int64(len(sequence)) + + +def SplitToSequenceImpl(tensor: np.ndarray, split: Optional[Union[int, List[int]]] = None, axis: int = 0, keepdims: int = 1) -> List[np.ndarray]: + dim_size = tensor.shape[axis] + if split is None: + split = 1 + split_indices = [i * split + 1 for i in range(dim_size) if i * split + 1 < dim_size] + if not keepdims: + results = np.array_split(tensor, split_indices, axis) + return [np.squeeze(res, axis) for res in results] + if np.isscalar(split): + split_indices = [i * split + 1 for i in range(dim_size) if i * split + 1 < dim_size] # type: ignore + else: + split_indices = np.cumsum(split) + 1 + return np.array_split(tensor, split_indices, axis) # type: ignore + + +def ConcatFromSequenceImpl(sequence: List[np.ndarray], axis: int, new_axis: Optional[int] = 0) -> np.ndarray: + if not new_axis: + return np.concatenate(sequence, axis) + else: + return np.stack(sequence, axis) + + +class Sequence(Base): + + @staticmethod + def export() -> None: + + def make_graph( + nodes: List[onnx.helper.NodeProto], + input_shapes: List[Optional[typing.Sequence[Union[Text, int]]]], + output_shapes: List[Optional[typing.Sequence[Union[Text, int]]]], + input_names: List[Text], + output_names: List[Text], + input_types: List[TensorProto.DataType], + output_types: List[TensorProto.DataType], + initializers: Optional[List[TensorProto]] = None + ) -> onnx.helper.GraphProto: + graph = onnx.helper.make_graph( + nodes=nodes, + name='Sequence', + inputs=[ + onnx.helper.make_tensor_value_info( + name, + input_type, + input_shape) + for name, input_type, input_shape in zip(input_names, input_types, input_shapes)], + outputs=[ + onnx.helper.make_tensor_value_info( + name, + output_type, + output_shape) + for name, output_type, output_shape in zip(output_names, output_types, output_shapes)], + initializer=initializers) + return graph + + #1st testcase - insert and at. + # 1. SequenceEmpty: -> [] + # 2. SequenceInsert(x): -> [x] + # 3. SequenceInsert(y): -> [x, y] + # 4. SequenceInsert(z, 1): -> [x, z, y] + # 5. SequenceAt(2): -> y + seq_empty_node = onnx.helper.make_node('SequenceEmpty', [], ['Seq_empty']) + seq_insert_node = onnx.helper.make_node('SequenceInsert', ['Seq_empty', 'X'], ['Seq_1']) + seq_insert_node2 = onnx.helper.make_node('SequenceInsert', ['Seq_1', 'Y'], ['Seq_2']) + seq_insert_node3 = onnx.helper.make_node('SequenceInsert', ['Seq_2', 'Z', 'pos'], ['Seq_3']) + seq_at_node = onnx.helper.make_node('SequenceAt', ['Seq_3', 'pos_at'], ['out']) + + x_shape = [2, 3, 4] + y_shape = [1, 3, 4] + z_shape = [3, 3, 4] + out_shape = [None, 3, 4] + + x = np.ones(x_shape, dtype=np.float32) + y = np.zeros(y_shape, dtype=np.float32) + z = np.ones(z_shape, dtype=np.float32) * 2 + pos_val = 1 + pos_at_val = 2 + + out = SequenceEmptyImpl() + out = SequenceInsertImpl(out, x) + out = SequenceInsertImpl(out, y) + out = SequenceInsertImpl(out, z, pos_val) + out = SequenceAtImpl(out, pos_at_val) + assert np.array_equal(out, y) + + pos = onnx.helper.make_tensor('pos', TensorProto.INT64, (), (pos_val, )) + pos_at = onnx.helper.make_tensor('pos_at', TensorProto.INT64, (), (pos_at_val, )) + + graph = make_graph( + [seq_empty_node, seq_insert_node, seq_insert_node2, seq_insert_node3, seq_at_node], + [x_shape, y_shape, z_shape, [], []], # type: ignore + [out_shape], # type: ignore + ['X', 'Y', 'Z', 'pos', 'pos_at'], + ['out'], + [onnx.TensorProto.FLOAT] * 3 + [onnx.TensorProto.INT64] * 2, # type: ignore + [onnx.TensorProto.FLOAT], + [pos, pos_at]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, y, z], outputs=[out], name="test_sequence_model1") + + #2nd testcase - erase and at. + # 1. SequenceConstruct(x, y, z): -> [x, y, z] + # 2. SequenceErase(1): -> [x, z] + # 3. SequenceAt(1): -> z + seq_construct_node = onnx.helper.make_node('SequenceConstruct', ['X', 'Y', 'Z'], ['seq_1']) + seq_erase_node = onnx.helper.make_node('SequenceErase', ['seq_1', 'pos_erase'], ['seq_2']) + seq_at_node = onnx.helper.make_node('SequenceAt', ['seq_2', 'pos_at'], ['out']) + + tensor_shape = [2, 3, 4] + + x = np.ones(tensor_shape, dtype=np.float32) + y = np.zeros(tensor_shape, dtype=np.float32) + z = np.ones(tensor_shape, dtype=np.float32) * 2 + pos_erase_val = 1 + pos_at_val = 1 + + out = SequenceConstructImpl(x, y, z) + out = SequenceEraseImpl(out, pos_erase_val) + out = SequenceAtImpl(out, pos_at_val) + assert np.array_equal(out, z) + + pos_erase = onnx.helper.make_tensor('pos_erase', TensorProto.INT64, (), (pos_erase_val, )) + pos_at = onnx.helper.make_tensor('pos_at', TensorProto.INT64, (), (pos_at_val, )) + + graph = make_graph( + [seq_construct_node, seq_erase_node, seq_at_node], + [tensor_shape, tensor_shape, tensor_shape, [], []], # type: ignore + [tensor_shape], # type: ignore + ['X', 'Y', 'Z', 'pos_erase', 'pos_at'], + ['out'], + [onnx.TensorProto.FLOAT] * 3 + [onnx.TensorProto.INT64] * 2, # type: ignore + [onnx.TensorProto.FLOAT], + [pos_erase, pos_at]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, y, z], outputs=[out], name="test_sequence_model2") + + #3rd testcase - erase, insert and at, with negative index value. + # 1. SequenceConstruct(x, y, z): -> [x, y, z] + # 2. SequenceErase(-3): -> [y, z] + # 3. SequenceInsert(x, -1): -> [y, x, z] + # 4. SequenceAt(-1): -> z + seq_construct_node = onnx.helper.make_node('SequenceConstruct', ['X', 'Y', 'Z'], ['seq_1']) + seq_erase_node = onnx.helper.make_node('SequenceErase', ['seq_1', 'pos_erase'], ['seq_2']) + seq_insert_node = onnx.helper.make_node('SequenceInsert', ['seq_2', 'X', 'pos_insert'], ['seq_3']) + seq_at_node = onnx.helper.make_node('SequenceAt', ['seq_3', 'pos_at'], ['out']) + + tensor_shape = [2, 3, 4] + + x = np.ones(tensor_shape, dtype=np.float32) + y = np.zeros(tensor_shape, dtype=np.float32) + z = np.ones(tensor_shape, dtype=np.float32) * 2 + pos_erase_val = -3 + pos_insert_val = -1 + pos_at_val = -1 + out = SequenceConstructImpl(x, y, z) + out = SequenceEraseImpl(out, pos_erase_val) + out = SequenceInsertImpl(out, x, pos_insert_val) + out = SequenceAtImpl(out, pos_at_val) + assert np.array_equal(out, z) + + pos_erase = onnx.helper.make_tensor('pos_erase', TensorProto.INT64, (), (pos_erase_val, )) + pos_insert = onnx.helper.make_tensor('pos_insert', TensorProto.INT64, (), (pos_insert_val, )) + pos_at = onnx.helper.make_tensor('pos_at', TensorProto.INT64, (), (pos_at_val, )) + + graph = make_graph( + [seq_construct_node, seq_erase_node, seq_insert_node, seq_at_node], + [tensor_shape, tensor_shape, tensor_shape, [], [], []], # type: ignore + [tensor_shape], # type: ignore + ['X', 'Y', 'Z', 'pos_erase', 'pos_insert', 'pos_at'], + ['out'], + [onnx.TensorProto.FLOAT] * 3 + [onnx.TensorProto.INT64] * 3, # type: ignore + [onnx.TensorProto.FLOAT], + [pos_erase, pos_insert, pos_at]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, y, z], outputs=[out], name="test_sequence_model3") + + #4th testcase - concat + seq_construct_node = onnx.helper.make_node('SequenceConstruct', ['X', 'Y', 'Z'], ['seq_1']) + seq_concat_node = onnx.helper.make_node('ConcatFromSequence', ['seq_1'], ['out'], axis=1) + + tensor_shape = [2, 3, 4] + concat_out_shape = [2, None, 4] + + x = np.ones(tensor_shape, dtype=np.float32) + y = np.zeros(tensor_shape, dtype=np.float32) + z = np.ones(tensor_shape, dtype=np.float32) * 2 + out = SequenceConstructImpl(x, y, z) + concat_out = ConcatFromSequenceImpl(out, 1) + + graph = make_graph( + [seq_construct_node, seq_concat_node], + [tensor_shape] * 3, # type: ignore + [concat_out_shape], # type: ignore + ['X', 'Y', 'Z'], + ['out'], + [onnx.TensorProto.FLOAT] * 3, # type: ignore + [onnx.TensorProto.FLOAT]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, y, z], outputs=[concat_out], name="test_sequence_model4") + + #5th testcase - concat with new_axis = 1 + seq_construct_node = onnx.helper.make_node('SequenceConstruct', ['X', 'Y', 'Z'], ['seq_1']) + seq_concat_node = onnx.helper.make_node('ConcatFromSequence', ['seq_1'], ['out'], axis=-1, new_axis=1) + + tensor_shape = [2, 3, 4] + concat_out_shape = [2, 3, 4, 3] + + x = np.ones(tensor_shape, dtype=np.float32) + y = np.zeros(tensor_shape, dtype=np.float32) + z = np.ones(tensor_shape, dtype=np.float32) * 2 + out = SequenceConstructImpl(x, y, z) + concat_out = ConcatFromSequenceImpl(out, -1, 1) + + graph = make_graph( + [seq_construct_node, seq_concat_node], + [tensor_shape] * 3, # type: ignore + [concat_out_shape], # type: ignore + ['X', 'Y', 'Z'], + ['out'], + [onnx.TensorProto.FLOAT] * 3, # type: ignore + [onnx.TensorProto.FLOAT],) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, y, z], outputs=[concat_out], name="test_sequence_model5") + + #6th testcase - split and len + seq_split_node = onnx.helper.make_node('SplitToSequence', ['X'], ['seq_1'], axis=-1) + seq_len_node = onnx.helper.make_node('SequenceLength', ['seq_1'], ['len']) + + tensor_shape = [2, 3, 4] + len_shape = [] # type: ignore + + x = np.ones(tensor_shape, dtype=np.float32) + out = SplitToSequenceImpl(x, axis=-1) + out = SequenceLengthImpl(out) + assert np.array_equal(out, np.int64(4)) + + graph = onnx.helper.make_graph( + nodes=[seq_split_node, seq_len_node], + name='Sequence', + inputs=[ + onnx.helper.make_tensor_value_info( + 'X', + onnx.TensorProto.FLOAT, + tensor_shape)], + outputs=[ + onnx.helper.make_tensor_value_info( + 'len', + onnx.TensorProto.INT64, + len_shape)]) # type: ignore + + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[out], name="test_sequence_model6") + + #7th testcase - split with keepdims=0, and SequenceAt + seq_split_node = onnx.helper.make_node('SplitToSequence', ['X'], ['seq_1'], axis=0, keepdims=0) + seq_at_node = onnx.helper.make_node('SequenceAt', ['seq_1', 'pos_at'], ['out']) + + tensor_shape = [2, 3, 4] + out_shape = [3, 4] + + x = np.random.rand(*tensor_shape) + pos_at_val = 1 + out = SplitToSequenceImpl(x, axis=0, keepdims=0) + out = SequenceAtImpl(out, pos_at_val) + assert np.array_equal(out, x[pos_at_val]) + + pos_at = onnx.helper.make_tensor('pos_at', TensorProto.INT64, (), (pos_at_val, )) + + graph = make_graph( + [seq_split_node, seq_at_node], + [tensor_shape, []], # type: ignore + [out_shape], # type: ignore + ['X', 'pos_at'], + ['out'], + [onnx.TensorProto.DOUBLE, onnx.TensorProto.INT64], + [onnx.TensorProto.DOUBLE], + [pos_at]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[out], name="test_sequence_model7") + + #8th testcase - split zero length + seq_split_node = onnx.helper.make_node('SplitToSequence', ['X', 'Splits'], ['seq_1']) + seq_len_node = onnx.helper.make_node('SequenceLength', ['seq_1'], ['len']) + + tensor_shape = ['n'] # type: ignore + splits_shape = [3] # type: ignore + + x = np.array([]).astype(np.float32) + splits = np.array([0, 0, 0]).astype(np.int64) + out_len = np.int64(3) + + graph = onnx.helper.make_graph( + nodes=[seq_split_node, seq_len_node], + name='Sequence', + inputs=[ + onnx.helper.make_tensor_value_info( + 'X', + onnx.TensorProto.FLOAT, + tensor_shape), # type: ignore + onnx.helper.make_tensor_value_info( + 'Splits', + onnx.TensorProto.INT64, + splits_shape)], # type: ignore + outputs=[ + onnx.helper.make_tensor_value_info( + 'len', + onnx.TensorProto.INT64, + len_shape)]) # type: ignore + + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x, splits], outputs=[out_len], name="test_sequence_model8") diff --git a/third_party/onnx/onnx/backend/test/case/model/shrink.py b/third_party/onnx/onnx/backend/test/case/model/shrink.py new file mode 100644 index 0000000000..0fbd25e177 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/shrink.py @@ -0,0 +1,31 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ShrinkTest(Base): + + @staticmethod + def export() -> None: + + node = onnx.helper.make_node( + 'Shrink', ['x'], ['y'], lambd=1.5, bias=1.5,) + graph = onnx.helper.make_graph( + nodes=[node], + name='Shrink', + inputs=[onnx.helper.make_tensor_value_info( + 'x', onnx.TensorProto.FLOAT, [5])], + outputs=[onnx.helper.make_tensor_value_info( + 'y', onnx.TensorProto.FLOAT, [5])]) + model = onnx.helper.make_model(graph, + producer_name='backend-test') + + x = np.array([-2.0, -1.0, 0.0, 1.0, 2.0], dtype=np.float32) + y = np.array([-0.5, 0.0, 0.0, 0.0, 0.5], dtype=np.float32) + + expect(model, inputs=[x], outputs=[y], + name='test_shrink') diff --git a/third_party/onnx/onnx/backend/test/case/model/sign.py b/third_party/onnx/onnx/backend/test/case/model/sign.py new file mode 100644 index 0000000000..c3265f3043 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/sign.py @@ -0,0 +1,32 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Sequence + + +class SingleSign(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sign', ['x'], ['y'], name='test') + + x = np.array([-1.0, 4.5, -4.5, 3.1, 0.0, 2.4, -5.5]).astype(np.float32) + y = np.array([-1.0, 1.0, -1.0, 1.0, 0.0, 1.0, -1.0]).astype(np.float32) + + graph = onnx.helper.make_graph( + nodes=[node], + name='SingleSign', + inputs=[onnx.helper.make_tensor_value_info('x', + onnx.TensorProto.FLOAT, + [7])], + outputs=[onnx.helper.make_tensor_value_info('y', + onnx.TensorProto.FLOAT, + [7])]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], + name='test_sign_model') diff --git a/third_party/onnx/onnx/backend/test/case/model/single-relu.py b/third_party/onnx/onnx/backend/test/case/model/single-relu.py new file mode 100644 index 0000000000..73c981c2e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/single-relu.py @@ -0,0 +1,30 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class SingleRelu(Base): + + @staticmethod + def export() -> None: + + node = onnx.helper.make_node( + 'Relu', ['x'], ['y'], name='test') + graph = onnx.helper.make_graph( + nodes=[node], + name='SingleRelu', + inputs=[onnx.helper.make_tensor_value_info( + 'x', onnx.TensorProto.FLOAT, [1, 2])], + outputs=[onnx.helper.make_tensor_value_info( + 'y', onnx.TensorProto.FLOAT, [1, 2])]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + + x = np.random.randn(1, 2).astype(np.float32) + y = np.maximum(x, 0) + + expect(model, inputs=[x], outputs=[y], + name='test_single_relu_model') diff --git a/third_party/onnx/onnx/backend/test/case/model/stringnormalizer.py b/third_party/onnx/onnx/backend/test/case/model/stringnormalizer.py new file mode 100644 index 0000000000..27be340a1b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/model/stringnormalizer.py @@ -0,0 +1,132 @@ +# SPDX-License-Identifier: Apache-2.0 +# coding: utf-8 + + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Sequence + + +class NormalizeStrings(Base): + + @staticmethod + def export() -> None: + def make_graph(node: onnx.helper.NodeProto, input_shape: Sequence[int], output_shape: Sequence[int]) -> onnx.helper.GraphProto: + graph = onnx.helper.make_graph( + nodes=[node], + name='StringNormalizer', + inputs=[onnx.helper.make_tensor_value_info('x', + onnx.TensorProto.STRING, + input_shape)], + outputs=[onnx.helper.make_tensor_value_info('y', + onnx.TensorProto.STRING, + output_shape)]) + return graph + + #1st model_monday_casesensintive_nochangecase + stopwords = [u'monday'] + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, + stopwords=stopwords + ) + + x = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + y = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) + + graph = make_graph(node, [4], [3]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_monday_casesensintive_nochangecase") + + #2nd model_nostopwords_nochangecase + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1 + ) + + x = np.array([u'monday', u'tuesday']).astype(object) + y = x + + graph = make_graph(node, [2], [2]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_nostopwords_nochangecase") + + # 3rd model_monday_casesensintive_lower + stopwords = [u'monday'] + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='LOWER', + is_case_sensitive=1, + stopwords=stopwords + ) + + x = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + y = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) + + graph = make_graph(node, [4], [3]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_monday_casesensintive_lower") + + #4 model_monday_casesensintive_upper + stopwords = [u'monday'] + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords + ) + + x = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + y = np.array([u'TUESDAY', u'WEDNESDAY', u'THURSDAY']).astype(object) + + graph = make_graph(node, [4], [3]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_monday_casesensintive_upper") + + #5 monday_insensintive_upper_twodim + stopwords = [u'monday'] + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + stopwords=stopwords + ) + + input_shape = [1, 6] + output_shape = [1, 4] + x = np.array([u'Monday', u'tuesday', u'wednesday', u'Monday', u'tuesday', u'wednesday']).astype(object).reshape(input_shape) + y = np.array([u'TUESDAY', u'WEDNESDAY', u'TUESDAY', u'WEDNESDAY']).astype(object).reshape(output_shape) + + graph = make_graph(node, input_shape, output_shape) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_monday_insensintive_upper_twodim") + + #6 monday_empty_output + stopwords = [u'monday'] + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=0, + stopwords=stopwords + ) + + x = np.array([u'monday', u'monday']).astype(object) + y = np.array([u'']).astype(object) + + graph = make_graph(node, [2], [1]) + model = onnx.helper.make_model(graph, producer_name='backend-test') + expect(model, inputs=[x], outputs=[y], name="test_strnorm_model_monday_empty_output") diff --git a/third_party/onnx/onnx/backend/test/case/node/__init__.py b/third_party/onnx/onnx/backend/test/case/node/__init__.py new file mode 100644 index 0000000000..363dedaeec --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/__init__.py @@ -0,0 +1,252 @@ +# SPDX-License-Identifier: Apache-2.0 + +import sys +import re + +from typing import Callable, List, Text, Sequence, Any, Union, Optional, Dict +import numpy as np # type: ignore + +import onnx +import onnx.mapping +import onnx.helper + +from ..utils import import_recursive +from ..test_case import TestCase + + +_NodeTestCases = [] +_TargetOpType = "" + +from onnx.onnx_pb import NodeProto, AttributeProto, TypeProto, FunctionProto, GraphProto + + +def _rename_edges_helper(internal_node: NodeProto, + rename_helper: Callable[[Text], Text], + attribute_map: Dict[Text, AttributeProto], + prefix: Text) -> NodeProto: + new_node = NodeProto() + new_node.CopyFrom(internal_node) + new_node.ClearField("input") + new_node.ClearField("output") + new_node.ClearField("attribute") + for internal_name in internal_node.input: + new_node.input.append(rename_helper(internal_name)) + for internal_name in internal_node.output: + new_node.output.append(rename_helper(internal_name)) + for attr in internal_node.attribute: + if attr.HasField("ref_attr_name"): + if attr.ref_attr_name in attribute_map: + new_attr = AttributeProto() + new_attr.CopyFrom(attribute_map[attr.ref_attr_name]) # type: ignore + new_attr.name = attr.name + new_node.attribute.extend([new_attr]) + else: + new_attr = AttributeProto() + new_attr.CopyFrom(attr) + if attr.type == AttributeProto.GRAPH: + new_graph = new_attr.g + sg_rename = {} + for in_desc in new_graph.input: + sg_rename[in_desc.name] = in_desc.name = prefix + in_desc.name + for out_desc in new_graph.output: + sg_rename[out_desc.name] = out_desc.name = prefix + out_desc.name + for init_desc in new_graph.initializer: + sg_rename[init_desc.name] = init_desc.name = prefix + init_desc.name + for sparse_init_desc in new_graph.sparse_initializer: + sg_rename[sparse_init_desc.values.name] = sparse_init_desc.values.name = prefix + \ + sparse_init_desc.values.name + for sparse_init_desc in new_graph.sparse_initializer: + sg_rename[sparse_init_desc.indices.name] = sparse_init_desc.indices.name = prefix + \ + sparse_init_desc.indices.name + + def subgraph_rename_helper(name: Text) -> Any: + if name in sg_rename: + return sg_rename[name] + else: + return rename_helper(name) + new_nodes = [ + _rename_edges_helper(node_desc, subgraph_rename_helper, attribute_map, prefix) + for node_desc in new_graph.node + ] + new_graph.ClearField("node") + new_graph.node.extend(new_nodes) + new_node.attribute.extend([new_attr]) + return new_node + + +# FIXME(TMVector): Any reason we can't get rid of this and use the C++ helper directly? +def function_expand_helper(node: NodeProto, + function_proto: FunctionProto, + op_prefix: Text + ) -> List[NodeProto]: + io_names_map = dict() + attribute_map = dict((a.name, a) for a in node.attribute) + + for idx in range(len(function_proto.input)): + io_names_map[function_proto.input[idx]] = node.input[idx] \ + if idx in range(len(node.input)) else "" + + for idx in range(len(function_proto.output)): + # Even if the node has been created with optional outputs missing, we + # can't assume that the function body handles this correctly, such as in + # the case that output is also an intermediate value. + # So we only add a name mapping if the output is present. An internal + # name will be generated if the missing output is used, the same as any + # other internal tensor. + if idx in range(len(node.output)) and node.output[idx] != "": + io_names_map[function_proto.output[idx]] = node.output[idx] + + def rename_helper(internal_name: Text) -> Any: + if internal_name in io_names_map: + return io_names_map[internal_name] + elif internal_name == '': + return '' + else: + return op_prefix + internal_name + + new_node_list = [ + _rename_edges_helper(internal_node, rename_helper, attribute_map, op_prefix) + for internal_node in function_proto.node + ] + return new_node_list + + +def function_testcase_helper(node: NodeProto, input_types: List[TypeProto], name: Text) -> List[NodeProto]: + test_op = node.op_type + op_prefix = test_op + "_" + name + "_expanded_function_" + schema = onnx.defs.get_schema(test_op, node.domain) + + if schema.has_function: # type: ignore + function_proto = schema.function_body # type: ignore + elif schema.has_context_dependent_function: # type: ignore + function_proto_str = schema.get_context_dependent_function(node.SerializeToString(), [t.SerializeToString() for t in input_types]) # type: ignore + function_proto = FunctionProto() + function_proto.ParseFromString(function_proto_str) + else: + return [] + + for attr in schema.attributes: + if attr in [a.name for a in node.attribute]: + continue + if schema.attributes[attr].default_value: + node.attribute.extend([schema.attributes[attr].default_value]) + + # function_proto.attributes + node_list = function_expand_helper(node, function_proto, op_prefix) + return node_list + + +def _extract_value_info(input: Union[List[Any], np.ndarray, None], name: Text, type_proto: Optional[TypeProto] = None) -> onnx.ValueInfoProto: + if type_proto is None: + if input is None: + raise NotImplementedError("_extract_value_info: both input and type_proto arguments cannot be None.") + elif isinstance(input, list): + elem_type = onnx.mapping.NP_TYPE_TO_TENSOR_TYPE[input[0].dtype] + shape = None + tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type, shape) + type_proto = onnx.helper.make_sequence_type_proto(tensor_type_proto) + else: + elem_type = onnx.mapping.NP_TYPE_TO_TENSOR_TYPE[input.dtype] + shape = input.shape + type_proto = onnx.helper.make_tensor_type_proto(elem_type, shape) + + return onnx.helper.make_value_info(name, type_proto) + + +# In the case of ops with optional inputs and outputs, node.input and node.output indicate +# which inputs/outputs are present and which are omitted. However, the parameter inputs +# and outputs of this function include values only for inputs/outputs that are present. +# E.g., for an op with 3 inputs, if the second parameter is optional and we wish to omit it, +# node.inputs would look like ["Param1", "", "Param3"], while inputs would look like +# [input-1-value, input-3-value] +def expect(node: onnx.NodeProto, + inputs: Sequence[np.ndarray], + outputs: Sequence[np.ndarray], + name: Text, + **kwargs: Any + ) -> None: + # skip if the node's op_type is not same as the given one + if _TargetOpType and node.op_type != _TargetOpType: + return + present_inputs = [x for x in node.input if (x != '')] + present_outputs = [x for x in node.output if (x != '')] + input_type_protos = [None] * len(inputs) + if 'input_type_protos' in kwargs: + input_type_protos = kwargs[str('input_type_protos')] + del kwargs[str('input_type_protos')] + output_type_protos = [None] * len(outputs) + if 'output_type_protos' in kwargs: + output_type_protos = kwargs[str('output_type_protos')] + del kwargs[str('output_type_protos')] + inputs_vi = [_extract_value_info(arr, arr_name, input_type) + for arr, arr_name, input_type in zip(inputs, present_inputs, input_type_protos)] + outputs_vi = [_extract_value_info(arr, arr_name, output_type) + for arr, arr_name, output_type in zip(outputs, present_outputs, output_type_protos)] + graph = onnx.helper.make_graph( + nodes=[node], + name=name, + inputs=inputs_vi, + outputs=outputs_vi) + kwargs[str('producer_name')] = 'backend-test' + model = onnx.helper.make_model(graph, **kwargs) + + _NodeTestCases.append(TestCase( + name=name, + model_name=name, + url=None, + model_dir=None, + model=model, + data_sets=[(inputs, outputs)], + kind='node', + rtol=1e-3, + atol=1e-7, + )) + + # Create list of types for node.input, filling a default TypeProto for missing inputs: + # E.g. merge(["x", "", "y"], [x-value-info, y-value-info]) will return [x-type, default-type, y-type] + def merge(node_inputs: List[Text], present_value_info: List[onnx.ValueInfoProto]) -> List[TypeProto]: + if (node_inputs): + if (node_inputs[0] != ''): + return [present_value_info[0].type] + merge(node_inputs[1:], present_value_info[1:]) + else: + return [TypeProto()] + merge(node_inputs[1:], present_value_info) + return [] + merged_types = merge(list(node.input), inputs_vi) + expanded_function_nodes = function_testcase_helper(node, merged_types, name) + if expanded_function_nodes: + function_test_name = name + '_expanded' + graph = onnx.helper.make_graph( + nodes=expanded_function_nodes, + name=function_test_name, + inputs=inputs_vi, + outputs=outputs_vi) + kwargs[str('producer_name')] = 'backend-test' + model = onnx.helper.make_model(graph, **kwargs) + _NodeTestCases.append(TestCase( + name=function_test_name, + model_name=function_test_name, + url=None, + model_dir=None, + model=model, + data_sets=[(inputs, outputs)], + kind='node', + rtol=1e-3, + atol=1e-7, + )) + + +def collect_testcases() -> List[TestCase]: + '''Collect node test cases defined in python/numpy code. + ''' + import_recursive(sys.modules[__name__]) + return _NodeTestCases + + +def collect_testcases_by_operator(op_type: Text) -> List[TestCase]: + '''Collect node test cases which include specific operator + ''' + # only keep those tests related to this operator + global _TargetOpType + _TargetOpType = op_type + import_recursive(sys.modules[__name__]) + return _NodeTestCases diff --git a/third_party/onnx/onnx/backend/test/case/node/abs.py b/third_party/onnx/onnx/backend/test/case/node/abs.py new file mode 100644 index 0000000000..5f00283a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/abs.py @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + +from onnx.backend.sample.ops.abs import abs + + +class Abs(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Abs', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = abs(x) + + expect(node, inputs=[x], outputs=[y], + name='test_abs') diff --git a/third_party/onnx/onnx/backend/test/case/node/acos.py b/third_party/onnx/onnx/backend/test/case/node/acos.py new file mode 100644 index 0000000000..6dd4af8015 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/acos.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Acos(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Acos', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-0.5, 0, 0.5]).astype(np.float32) + y = np.arccos(x) + expect(node, inputs=[x], outputs=[y], + name='test_acos_example') + + x = np.random.rand(3, 4, 5).astype(np.float32) + y = np.arccos(x) + expect(node, inputs=[x], outputs=[y], + name='test_acos') diff --git a/third_party/onnx/onnx/backend/test/case/node/acosh.py b/third_party/onnx/onnx/backend/test/case/node/acosh.py new file mode 100644 index 0000000000..820ebd18ad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/acosh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Acosh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Acosh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([10, np.e, 1]).astype(np.float32) + y = np.arccosh(x) # expected output [2.99322295, 1.65745449, 0.] + expect(node, inputs=[x], outputs=[y], + name='test_acosh_example') + + x = np.random.uniform(1.0, 10.0, (3, 4, 5)).astype(np.float32) + y = np.arccosh(x) + expect(node, inputs=[x], outputs=[y], + name='test_acosh') diff --git a/third_party/onnx/onnx/backend/test/case/node/adagrad.py b/third_party/onnx/onnx/backend/test/case/node/adagrad.py new file mode 100644 index 0000000000..c98eb85793 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/adagrad.py @@ -0,0 +1,99 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx.defs import ONNX_DOMAIN, AI_ONNX_PREVIEW_TRAINING_DOMAIN +from ..base import Base +from . import expect + + +def apply_adagrad(r, t, x, g, h, norm_coefficient, epsilon, decay_factor): # type: ignore + # Compute adjusted learning-rate. + r_ = r / (1 + t * decay_factor) + # Add gradient of regularization term. + g_regularized = norm_coefficient * x + g + # Update squared accumulated gradient. + h_new = h + g_regularized * g_regularized + # Compute ADAGRAD's gradient scaling factors + h_sqrt = np.sqrt(h_new) + epsilon + # Apply ADAGRAD update rule. + x_new = x - r_ * g_regularized / h_sqrt + return (x_new, h_new) + + +class Adagrad(Base): + + @staticmethod + def export_adagrad() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + epsilon = 1e-5 + decay_factor = 0.1 + + # Create operator. + node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X', 'G', 'H'], + outputs=['X_new', 'H_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + x = np.array([1.0], dtype=np.float32) + g = np.array([-1.0], dtype=np.float32) + h = np.array([2.0], dtype=np.float32) + + # Compute expected outputs of Adagrad. + x_new, h_new = apply_adagrad(r, t, x, g, h, + norm_coefficient, epsilon, decay_factor) + + # Check results. + expect(node, inputs=[r, t, x, g, h], + outputs=[x_new, h_new], name='test_adagrad', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) + + @staticmethod + def export_adagrad_multiple() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + epsilon = 1e-5 + decay_factor = 0.1 + + node = onnx.helper.make_node('Adagrad', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + epsilon=epsilon, + decay_factor=decay_factor, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + + x1 = np.array([1.0], dtype=np.float32) + g1 = np.array([-1.0], dtype=np.float32) + h1 = np.array([2.0], dtype=np.float32) + + x2 = np.array([1.0, 2.0], dtype=np.float32) + g2 = np.array([-1.0, -3.0], dtype=np.float32) + h2 = np.array([4.0, 1.0], dtype=np.float32) + + # Compute expected outputs of Adagrad. + x1_new, h1_new = apply_adagrad(r, t, x1, g1, h1, + norm_coefficient, epsilon, decay_factor) + x2_new, h2_new = apply_adagrad(r, t, x2, g2, h2, + norm_coefficient, epsilon, decay_factor) + + # Check results. + expect(node, inputs=[r, t, x1, x2, g1, g2, h1, h2], + outputs=[x1_new, x2_new, h1_new, h2_new], name='test_adagrad_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/adam.py b/third_party/onnx/onnx/backend/test/case/node/adam.py new file mode 100644 index 0000000000..ed947bf48e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/adam.py @@ -0,0 +1,121 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx.defs import ONNX_DOMAIN, AI_ONNX_PREVIEW_TRAINING_DOMAIN +from ..base import Base +from . import expect + + +def apply_adam(r, t, x, g, v, h, norm_coefficient, norm_coefficient_post, alpha, beta, epsilon): # type: ignore + # Add gradient of regularization term. + g_regularized = norm_coefficient * x + g + # Update momentum. + v_new = alpha * v + (1 - alpha) * g_regularized + # Update second-order momentum. + h_new = beta * h + (1 - beta) * (g_regularized * g_regularized) + # Compute element-wise square root. + h_sqrt = np.sqrt(h_new) + epsilon + # Adjust learning rate. + r_adjusted = None + if t > 0: + # Consider bias correction on momentums. + r_adjusted = r * np.sqrt(1 - beta**t) / (1 - alpha**t) + else: + # No bias correction on momentums. + r_adjusted = r + # Apply Adam update rule. + x_new = x - r_adjusted * (v_new / h_sqrt) + # It's possible to apply regularization in the end. + x_final = (1 - norm_coefficient_post) * x_new + return x_final, v_new, h_new + + +class Adam(Base): + + @staticmethod + def export_adam() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + alpha = 0.95 + beta = 0.1 + epsilon = 1e-7 + + # Create operator. + node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X', 'G', 'V', 'H'], + outputs=['X_new', 'V_new', 'H_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + epsilon=epsilon, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + x = np.array([1.2, 2.8], dtype=np.float32) + g = np.array([-0.94, -2.5], dtype=np.float32) + v = np.array([1.7, 3.6], dtype=np.float32) + h = np.array([0.1, 0.1], dtype=np.float32) + + # Compute expected outputs of Adam. + x_new, v_new, h_new = apply_adam(r, t, x, g, v, h, + norm_coefficient, 0.0, alpha, beta, + epsilon) + + # Check results. + expect(node, inputs=[r, t, x, g, v, h], + outputs=[x_new, v_new, h_new], name='test_adam', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) + + @staticmethod + def export_adam_multiple() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + alpha = 0.95 + beta = 0.85 + epsilon = 1e-2 + + node = onnx.helper.make_node('Adam', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'V1', 'V2', + 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new', + 'H1_new', 'H2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + + x1 = np.array([1.0], dtype=np.float32) + g1 = np.array([-1.0], dtype=np.float32) + v1 = np.array([2.0], dtype=np.float32) + h1 = np.array([0.5], dtype=np.float32) + + x2 = np.array([1.0, 2.0], dtype=np.float32) + g2 = np.array([-1.0, -3.0], dtype=np.float32) + v2 = np.array([4.0, 1.0], dtype=np.float32) + h2 = np.array([1.0, 10.0], dtype=np.float32) + + # Compute expected outputs of Adam. + x1_new, v1_new, h1_new = apply_adam(r, t, x1, g1, v1, h1, + norm_coefficient, 0.0, alpha, beta, + epsilon) + x2_new, v2_new, h2_new = apply_adam(r, t, x2, g2, v2, h2, + norm_coefficient, 0.0, alpha, beta, + epsilon) + + # Check results. + expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2, h1, h2], + outputs=[x1_new, x2_new, v1_new, v2_new, h1_new, h2_new], + name='test_adam_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/add.py b/third_party/onnx/onnx/backend/test/case/node/add.py new file mode 100644 index 0000000000..40c072d4de --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/add.py @@ -0,0 +1,49 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Add(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + expect(node, inputs=[x, y], outputs=[x + y], + name='test_add') + + @staticmethod + def export_add_uint8() -> None: + node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], + ) + + x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_uint8') + + @staticmethod + def export_add_broadcast() -> None: + node = onnx.helper.make_node( + 'Add', + inputs=['x', 'y'], + outputs=['sum'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + expect(node, inputs=[x, y], outputs=[x + y], + name='test_add_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/and.py b/third_party/onnx/onnx/backend/test/case/node/and.py new file mode 100644 index 0000000000..993132b196 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/and.py @@ -0,0 +1,82 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class And(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], + ) + + # 2d + x = (np.random.randn(3, 4) > 0).astype(bool) + y = (np.random.randn(3, 4) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and2d') + + # 3d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(3, 4, 5) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and3d') + + # 4d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and4d') + + @staticmethod + def export_and_broadcast() -> None: + node = onnx.helper.make_node( + 'And', + inputs=['x', 'y'], + outputs=['and'], + ) + + # 3d vs 1d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(5) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v1d') + + # 3d vs 2d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(4, 5) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast3v2d') + + # 4d vs 2d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(5, 6) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v2d') + + # 4d vs 3d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(4, 5, 6) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v3d') + + # 4d vs 4d + x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) + y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) + z = np.logical_and(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_and_bcast4v4d') diff --git a/third_party/onnx/onnx/backend/test/case/node/argmax.py b/third_party/onnx/onnx/backend/test/case/node/argmax.py new file mode 100644 index 0000000000..2876636add --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/argmax.py @@ -0,0 +1,188 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def argmax_use_numpy(data: np.ndarray, axis: int = 0, keepdims: int = 1) -> (np.ndarray): + result = np.argmax(data, axis=axis) + if (keepdims == 1): + result = np.expand_dims(result, axis) + return result.astype(np.int64) + + +def argmax_use_numpy_select_last_index(data: np.ndarray, axis: int = 0, keepdims: int = True) -> (np.ndarray): + data = np.flip(data, axis) + result = np.argmax(data, axis=axis) + result = data.shape[axis] - result - 1 + if keepdims: + result = np.expand_dims(result, axis) + return result.astype(np.int64) + + +class ArgMax(Base): + + @staticmethod + def export_no_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 0 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # result: [0, 1] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 4] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # result: [[0], [1]] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 1, 4] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + + # result: [[1, 1]] + result = argmax_use_numpy(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [1, 3, 4] + result = argmax_use_numpy(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random') + + @staticmethod + def export_negative_axis_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = -1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # result: [[0], [1]] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 3, 1] + result = argmax_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random') + + @staticmethod + def export_no_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 0 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [1, 1] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 4] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_no_keepdims_random_select_last_index') + + @staticmethod + def export_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [[1], [1]] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 1, 4] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_keepdims_random_select_last_index') + + @staticmethod + def export_default_axes_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + + # result: [[1, 1]] + result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [1, 3, 4] + result = argmax_use_numpy_select_last_index(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_default_axis_random_select_last_index') + + @staticmethod + def export_negative_axis_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = -1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMax', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [[1], [1]] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 3, 1] + result = argmax_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmax_negative_axis_keepdims_random_select_last_index') diff --git a/third_party/onnx/onnx/backend/test/case/node/argmin.py b/third_party/onnx/onnx/backend/test/case/node/argmin.py new file mode 100644 index 0000000000..b537a3b301 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/argmin.py @@ -0,0 +1,188 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def argmin_use_numpy(data: np.ndarray, axis: int = 0, keepdims: int = 1) -> (np.ndarray): + result = np.argmin(data, axis=axis) + if (keepdims == 1): + result = np.expand_dims(result, axis) + return result.astype(np.int64) + + +def argmin_use_numpy_select_last_index(data: np.ndarray, axis: int = 0, keepdims: int = True) -> (np.ndarray): + data = np.flip(data, axis) + result = np.argmin(data, axis=axis) + result = data.shape[axis] - result - 1 + if keepdims: + result = np.expand_dims(result, axis) + return result.astype(np.int64) + + +class ArgMin(Base): + + @staticmethod + def export_no_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 0 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # The content of result is : [[1, 0]] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 4] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # The content of result is : [[1], [0]] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 1, 4] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims) + + # The content of result is : [[0], [0]] + result = argmin_use_numpy(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [1, 3, 4] + result = argmin_use_numpy(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random') + + @staticmethod + def export_negative_axis_keepdims() -> None: + data = np.array([[2, 1], [3, 10]], dtype=np.float32) + axis = -1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims) + # The content of result is : [[1], [0]] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 3, 1] + result = argmin_use_numpy(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random') + + @staticmethod + def export_no_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 0 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [[1, 0]] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 4] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_no_keepdims_random_select_last_index') + + @staticmethod + def export_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = 1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [[1], [0]] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 1, 4] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_keepdims_random_select_last_index') + + @staticmethod + def export_default_axes_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + keepdims=keepdims, + select_last_index=True) + + # result: [[0, 0]] + result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [1, 3, 4] + result = argmin_use_numpy_select_last_index(data, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_default_axis_random_select_last_index') + + @staticmethod + def export_negative_axis_keepdims_select_last_index() -> None: + data = np.array([[2, 2], [3, 10]], dtype=np.float32) + axis = -1 + keepdims = 1 + node = onnx.helper.make_node( + 'ArgMin', + inputs=['data'], + outputs=['result'], + axis=axis, + keepdims=keepdims, + select_last_index=True) + # result: [[1], [0]] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_example_select_last_index') + + data = np.random.uniform(-10, 10, [2, 3, 4]).astype(np.float32) + # result's shape: [2, 3, 1] + result = argmin_use_numpy_select_last_index(data, axis=axis, keepdims=keepdims) + expect(node, inputs=[data], outputs=[result], name='test_argmin_negative_axis_keepdims_random_select_last_index') diff --git a/third_party/onnx/onnx/backend/test/case/node/asin.py b/third_party/onnx/onnx/backend/test/case/node/asin.py new file mode 100644 index 0000000000..307952c136 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/asin.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Asin(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Asin', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-0.5, 0, 0.5]).astype(np.float32) + y = np.arcsin(x) + expect(node, inputs=[x], outputs=[y], + name='test_asin_example') + + x = np.random.rand(3, 4, 5).astype(np.float32) + y = np.arcsin(x) + expect(node, inputs=[x], outputs=[y], + name='test_asin') diff --git a/third_party/onnx/onnx/backend/test/case/node/asinh.py b/third_party/onnx/onnx/backend/test/case/node/asinh.py new file mode 100644 index 0000000000..27e6056866 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/asinh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Asinh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Asinh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.arcsinh(x) # expected output [-0.88137358, 0., 0.88137358] + expect(node, inputs=[x], outputs=[y], + name='test_asinh_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.arcsinh(x) + expect(node, inputs=[x], outputs=[y], + name='test_asinh') diff --git a/third_party/onnx/onnx/backend/test/case/node/atan.py b/third_party/onnx/onnx/backend/test/case/node/atan.py new file mode 100644 index 0000000000..f6b6b4b71d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/atan.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Atan(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Atan', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.arctan(x) + expect(node, inputs=[x], outputs=[y], + name='test_atan_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.arctan(x) + expect(node, inputs=[x], outputs=[y], + name='test_atan') diff --git a/third_party/onnx/onnx/backend/test/case/node/atanh.py b/third_party/onnx/onnx/backend/test/case/node/atanh.py new file mode 100644 index 0000000000..d9531b2788 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/atanh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Atanh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Atanh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-0.5, 0, 0.5]).astype(np.float32) + y = np.arctanh(x) # expected output [-0.54930615, 0., 0.54930615] + expect(node, inputs=[x], outputs=[y], + name='test_atanh_example') + + x = np.random.uniform(0.0, 1.0, (3, 4, 5)).astype(np.float32) + y = np.arctanh(x) + expect(node, inputs=[x], outputs=[y], + name='test_atanh') diff --git a/third_party/onnx/onnx/backend/test/case/node/averagepool.py b/third_party/onnx/onnx/backend/test/case/node/averagepool.py new file mode 100644 index 0000000000..1b8066768c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/averagepool.py @@ -0,0 +1,360 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from .pool_op_common import get_pad_shape, get_output_shape, pool + + +class AveragePool(Base): + + @staticmethod + def export_averagepool_2d_precomputed_pads() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 5, 5] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[7, 7.5, 8, 8.5, 9], + [9.5, 10, 10.5, 11, 11.5], + [12, 12.5, 13, 13.5, 14], + [14.5, 15, 15.5, 16, 16.5], + [17, 17.5, 18, 18.5, 19]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads') + + @staticmethod + def export_averagepool_2d_precomputed_pads_count_include_pad() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 5, 5] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2], + count_include_pad=1 + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[2.5200, 3.6000, 4.8000, 4.0800, 3.2400], + [4.5600, 6.4000, 8.4000, 7.0400, 5.5200], + [7.2000, 10.0000, 13.0000, 10.8000, 8.4000], + [6.9600, 9.6000, 12.4000, 10.2400, 7.9200], + [6.1200, 8.4000, 10.8000, 8.8800, 6.8400]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_pads_count_include_pad') + + @staticmethod + def export_averagepool_2d_precomputed_strides() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[4, 6], + [14, 16]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_strides') + + @staticmethod + def export_averagepool_2d_precomputed_same_upper() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 3, 3] + pad_shape: [2, 2] -> [1, 1, 1, 1] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[4, 5.5, 7], + [11.5, 13, 14.5], + [19, 20.5, 22]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_precomputed_same_upper') + + @staticmethod + def export_averagepool_1d_default() -> None: + """ + input_shape: [1, 3, 32] + output_shape: [1, 3, 31] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], + ) + x = np.random.randn(1, 3, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = [2] + strides = [1] + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_1d_default') + + @staticmethod + def export_averagepool_2d_default() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 31, 31] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_default') + + @staticmethod + def export_averagepool_3d_default() -> None: + """ + input_shape: [1, 3, 32, 32, 32] + output_shape: [1, 3, 31, 31, 31] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], + ) + x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = [2, 2, 2] + strides = [1, 1, 1] + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_3d_default') + + @staticmethod + def export_averagepool_2d_same_upper() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 32, 32] + pad_shape: [1, 1] -> [0, 1, 0, 1] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) + pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) + pad_top = pad_shape[0] // 2 + pad_bottom = pad_shape[0] - pad_top + pad_left = pad_shape[1] // 2 + pad_right = pad_shape[1] - pad_left + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_upper') + + @staticmethod + def export_averagepool_2d_same_lower() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 32, 32] + pad_shape: [1, 1] -> [1, 0, 1, 0] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) + pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) + pad_bottom = pad_shape[0] // 2 + pad_top = pad_shape[0] - pad_bottom + pad_right = pad_shape[1] // 2 + pad_left = pad_shape[1] - pad_right + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_same_lower') + + @staticmethod + def export_averagepool_2d_pads() -> None: + """ + input_shape: [1, 3, 28, 28] + output_shape: [1, 3, 30, 30] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] + ) + x = np.random.randn(1, 3, 28, 28).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (3, 3) + strides = (1, 1) + pad_bottom = 2 + pad_top = 2 + pad_right = 2 + pad_left = 2 + pad_shape = [pad_top + pad_bottom, pad_left + pad_right] + out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads') + + @staticmethod + def export_averagepool_2d_pads_count_include_pad() -> None: + """ + input_shape: [1, 3, 28, 28] + output_shape: [1, 3, 30, 30] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2], + count_include_pad=1, + ) + x = np.random.randn(1, 3, 28, 28).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (3, 3) + strides = (1, 1) + pad_bottom = 2 + pad_top = 2 + pad_right = 2 + pad_left = 2 + pad_shape = [pad_top + pad_bottom, pad_left + pad_right] + out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=0) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'AVG', count_include_pad=1) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_pads_count_include_pad') + + @staticmethod + def export_averagepool_2d_strides() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 10, 10] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (5, 5) + strides = (3, 3) + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'AVG') + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_strides') + + @staticmethod + def export_averagepool_2d_ceil() -> None: + """ + input_shape: [1, 1, 4, 4] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'AveragePool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True + ) + x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]]).astype(np.float32) + y = np.array([[[ + [6, 7.5], + [12, 13.5]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_averagepool_2d_ceil') diff --git a/third_party/onnx/onnx/backend/test/case/node/batchnorm.py b/third_party/onnx/onnx/backend/test/case/node/batchnorm.py new file mode 100644 index 0000000000..a6831e7548 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/batchnorm.py @@ -0,0 +1,119 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def _batchnorm_test_mode(x, s, bias, mean, var, epsilon=1e-5): # type: ignore + dims_x = len(x.shape) + dim_ones = (1,) * (dims_x - 2) + s = s.reshape(-1, *dim_ones) + bias = bias.reshape(-1, *dim_ones) + mean = mean.reshape(-1, *dim_ones) + var = var.reshape(-1, *dim_ones) + return s * (x - mean) / np.sqrt(var + epsilon) + bias + + +def _batchnorm_training_mode(x, s, bias, mean, var, momentum=0.9, epsilon=1e-5): # type: ignore + axis = tuple(np.delete(np.arange(len(x.shape)), 1)) + saved_mean = x.mean(axis=axis) + saved_var = x.var(axis=axis) + output_mean = mean * momentum + saved_mean * (1 - momentum) + output_var = var * momentum + saved_var * (1 - momentum) + y = _batchnorm_test_mode(x, s, bias, saved_mean, saved_var, epsilon=epsilon) + return y.astype(np.float32), output_mean, output_var + + +class BatchNormalization(Base): + @staticmethod + def export() -> None: + # input size: (2, 3, 4, 5) + x = np.random.randn(2, 3, 4, 5).astype(np.float32) + s = np.random.randn(3).astype(np.float32) + bias = np.random.randn(3).astype(np.float32) + mean = np.random.randn(3).astype(np.float32) + var = np.random.rand(3).astype(np.float32) + y = _batchnorm_test_mode(x, s, bias, mean, var).astype(np.float32) + + node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], + ) + + # output size: (2, 3, 4, 5) + expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_example') + + # input size: (2, 3, 4, 5) + x = np.random.randn(2, 3, 4, 5).astype(np.float32) + s = np.random.randn(3).astype(np.float32) + bias = np.random.randn(3).astype(np.float32) + mean = np.random.randn(3).astype(np.float32) + var = np.random.rand(3).astype(np.float32) + epsilon = 1e-2 + y = _batchnorm_test_mode(x, s, bias, mean, var, epsilon).astype(np.float32) + + node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y'], + epsilon=epsilon, + ) + + # output size: (2, 3, 4, 5) + expect(node, inputs=[x, s, bias, mean, var], outputs=[y], + name='test_batchnorm_epsilon') + + @staticmethod + def export_train() -> None: + # input size: (2, 3, 4, 5) + x = np.random.randn(2, 3, 4, 5).astype(np.float32) + s = np.random.randn(3).astype(np.float32) + bias = np.random.randn(3).astype(np.float32) + mean = np.random.randn(3).astype(np.float32) + var = np.random.rand(3).astype(np.float32) + # using np.bool(1) while generating test data with "'bool' object has no attribute 'dtype'" + # working around by using np.byte(1).astype(bool) + training_mode = 1 + y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var) + + node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + training_mode=training_mode + ) + + # output size: (2, 3, 4, 5) + expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_example_training_mode') + + # input size: (2, 3, 4, 5) + x = np.random.randn(2, 3, 4, 5).astype(np.float32) + s = np.random.randn(3).astype(np.float32) + bias = np.random.randn(3).astype(np.float32) + mean = np.random.randn(3).astype(np.float32) + var = np.random.rand(3).astype(np.float32) + training_mode = 1 + momentum = 0.9 + epsilon = 1e-2 + y, output_mean, output_var = _batchnorm_training_mode(x, s, bias, mean, var, momentum, + epsilon) + + node = onnx.helper.make_node( + 'BatchNormalization', + inputs=['x', 's', 'bias', 'mean', 'var'], + outputs=['y', 'output_mean', 'output_var'], + epsilon=epsilon, + training_mode=training_mode + ) + + # output size: (2, 3, 4, 5) + expect(node, inputs=[x, s, bias, mean, var], + outputs=[y, output_mean, output_var], + name='test_batchnorm_epsilon_training_mode') diff --git a/third_party/onnx/onnx/backend/test/case/node/bernoulli.py b/third_party/onnx/onnx/backend/test/case/node/bernoulli.py new file mode 100755 index 0000000000..a61195c70f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/bernoulli.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def bernoulli_reference_implementation(x, dtype): # type: ignore + # binomial n = 1 equal bernoulli + # This example and test-case is for informational purpose. The generator operator is + # non-deterministic and may not produce the same values in different implementations + # even if a seed is specified. + return np.random.binomial(1, p=x).astype(dtype) + + +class Bernoulli(Base): + @staticmethod + def export_bernoulli_without_dtype() -> None: + node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + ) + + x = np.random.uniform(0.0, 1.0, 10).astype(np.float) + y = bernoulli_reference_implementation(x, np.float) + expect(node, inputs=[x], outputs=[y], name='test_bernoulli') + + @staticmethod + def export_bernoulli_with_dtype() -> None: + node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, + ) + + x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) + y = bernoulli_reference_implementation(x, np.float64) + expect(node, inputs=[x], outputs=[y], name='test_bernoulli_double') + + @staticmethod + def export_bernoulli_with_seed() -> None: + seed = np.float(0) + node = onnx.helper.make_node( + 'Bernoulli', + inputs=['x'], + outputs=['y'], + seed=seed, + ) + + x = np.random.uniform(0.0, 1.0, 10).astype(np.float32) + y = bernoulli_reference_implementation(x, np.float32) + expect(node, inputs=[x], outputs=[y], name='test_bernoulli_seed') diff --git a/third_party/onnx/onnx/backend/test/case/node/bitshift.py b/third_party/onnx/onnx/backend/test/case/node/bitshift.py new file mode 100644 index 0000000000..b8dea55e17 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/bitshift.py @@ -0,0 +1,130 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class BitShift(Base): + + @staticmethod + def export_right_unit8() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" + ) + + x = np.array([16, 4, 1]).astype(np.uint8) + y = np.array([1, 2, 3]).astype(np.uint8) + z = x >> y # expected output [8, 1, 0] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint8') + + @staticmethod + def export_right_unit16() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" + ) + + x = np.array([16, 4, 1]).astype(np.uint16) + y = np.array([1, 2, 3]).astype(np.uint16) + z = x >> y # expected output [8, 1, 0] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint16') + + @staticmethod + def export_right_unit32() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" + ) + + x = np.array([16, 4, 1]).astype(np.uint32) + y = np.array([1, 2, 3]).astype(np.uint32) + z = x >> y # expected output [8, 1, 0] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint32') + + @staticmethod + def export_right_unit64() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="RIGHT" + ) + + x = np.array([16, 4, 1]).astype(np.uint64) + y = np.array([1, 2, 3]).astype(np.uint64) + z = x >> y # expected output [8, 1, 0] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_right_uint64') + + @staticmethod + def export_left_unit8() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" + ) + + x = np.array([16, 4, 1]).astype(np.uint8) + y = np.array([1, 2, 3]).astype(np.uint8) + z = x << y # expected output [32, 16, 8] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint8') + + @staticmethod + def export_left_unit16() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" + ) + + x = np.array([16, 4, 1]).astype(np.uint16) + y = np.array([1, 2, 3]).astype(np.uint16) + z = x << y # expected output [32, 16, 8] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint16') + + @staticmethod + def export_left_unit32() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" + ) + + x = np.array([16, 4, 1]).astype(np.uint32) + y = np.array([1, 2, 3]).astype(np.uint32) + z = x << y # expected output [32, 16, 8] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint32') + + @staticmethod + def export_left_unit64() -> None: + node = onnx.helper.make_node( + 'BitShift', + inputs=['x', 'y'], + outputs=['z'], + direction="LEFT" + ) + + x = np.array([16, 4, 1]).astype(np.uint64) + y = np.array([1, 2, 3]).astype(np.uint64) + z = x << y # expected output [32, 16, 8] + expect(node, inputs=[x, y], outputs=[z], + name='test_bitshift_left_uint64') diff --git a/third_party/onnx/onnx/backend/test/case/node/cast.py b/third_party/onnx/onnx/backend/test/case/node/cast.py new file mode 100644 index 0000000000..d3fb7c5d3d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/cast.py @@ -0,0 +1,95 @@ +# SPDX-License-Identifier: Apache-2.0 +# coding: utf-8 + + +import numpy as np # type: ignore + +import onnx +from onnx import TensorProto +from onnx.mapping import TENSOR_TYPE_TO_NP_TYPE + +from ..base import Base +from . import expect +import sys + + +class Cast(Base): + + @staticmethod + def export() -> None: + shape = (3, 4) + test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), + ] + + for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + node = onnx.helper.make_node( + 'Cast', + inputs=['input'], + outputs=['output'], + to=getattr(TensorProto, to_type), + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input], outputs=[output], + name='test_cast_' + from_type + '_to_' + to_type) diff --git a/third_party/onnx/onnx/backend/test/case/node/castlike.py b/third_party/onnx/onnx/backend/test/case/node/castlike.py new file mode 100644 index 0000000000..ddd058691f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/castlike.py @@ -0,0 +1,95 @@ +# SPDX-License-Identifier: Apache-2.0 +# coding: utf-8 + + +import numpy as np # type: ignore + +import onnx +from onnx import TensorProto +from onnx.mapping import TENSOR_TYPE_TO_NP_TYPE + +from ..base import Base +from . import expect +import sys + + +class CastLike(Base): + + @staticmethod + def export() -> None: + shape = (3, 4) + test_cases = [ + ('FLOAT', 'FLOAT16'), + ('FLOAT', 'DOUBLE'), + ('FLOAT16', 'FLOAT'), + ('FLOAT16', 'DOUBLE'), + ('DOUBLE', 'FLOAT'), + ('DOUBLE', 'FLOAT16'), + ('FLOAT', 'STRING'), + ('STRING', 'FLOAT'), + ('FLOAT', 'BFLOAT16'), + ('BFLOAT16', 'FLOAT'), + ] + + for from_type, to_type in test_cases: + input_type_proto = None + output_type_proto = None + if 'BFLOAT16' == from_type or 'BFLOAT16' == to_type: + np_fp32 = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.float32) + little_endisan = sys.byteorder == 'little' + np_uint16_view = np_fp32.view(dtype=np.uint16) + np_bfp16 = np_uint16_view[1::2] if little_endisan else np_uint16_view[0::2] + if 'BFLOAT16' == to_type: + assert from_type == 'FLOAT' + input = np_fp32.reshape([3, 4]) + output = np_bfp16.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), output.shape) + else: + assert to_type == 'FLOAT' + input = np_bfp16.reshape([3, 4]) + #convert bfloat to FLOAT + np_fp32_zeros = np.zeros((len(np_bfp16) * 2,), dtype=np.uint16) + if little_endisan: + np_fp32_zeros[1::2] = np_bfp16 + else: + np_fp32_zeros[0::2] = np_bfp16 + np_fp32_from_bfloat = np_fp32_zeros.view(dtype=np.float32) + output = np_fp32_from_bfloat.reshape([3, 4]) + input_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.BFLOAT16), input.shape) + output_type_proto = onnx.helper.make_tensor_type_proto(int(TensorProto.FLOAT), output.shape) + elif 'STRING' != from_type: + input = np.random.random_sample(shape).astype( + TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, from_type)]) + if ('STRING' == to_type): + # Converting input to str, then give it np.object dtype for generating script + ss = [] + for i in input.flatten(): + s = str(i).encode('utf-8') + su = s.decode('utf-8') + ss.append(su) + + output = np.array(ss).astype(np.object).reshape([3, 4]) + else: + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + else: + input = np.array([u'0.47892547', u'0.48033667', u'0.49968487', u'0.81910545', + u'0.47031248', u'0.816468', u'0.21087195', u'0.7229038', + u'NaN', u'INF', u'+INF', u'-INF'], dtype=np.dtype(np.object)).reshape([3, 4]) + output = input.astype(TENSOR_TYPE_TO_NP_TYPE[getattr(TensorProto, to_type)]) + like = output.flatten()[0:1] + node = onnx.helper.make_node( + 'CastLike', + inputs=['input', 'like'], + outputs=['output'], + ) + if input_type_proto and output_type_proto: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type, + input_type_protos=[input_type_proto, output_type_proto], + output_type_protos=[output_type_proto]) + else: + expect(node, inputs=[input, like], outputs=[output], + name='test_castlike_' + from_type + '_to_' + to_type) diff --git a/third_party/onnx/onnx/backend/test/case/node/ceil.py b/third_party/onnx/onnx/backend/test/case/node/ceil.py new file mode 100644 index 0000000000..3e77d83a8f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/ceil.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Ceil(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Ceil', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1.5, 1.2]).astype(np.float32) + y = np.ceil(x) # expected output [-1., 2.] + expect(node, inputs=[x], outputs=[y], + name='test_ceil_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.ceil(x) + expect(node, inputs=[x], outputs=[y], + name='test_ceil') diff --git a/third_party/onnx/onnx/backend/test/case/node/celu.py b/third_party/onnx/onnx/backend/test/case/node/celu.py new file mode 100644 index 0000000000..c64f15a40b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/celu.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Celu(Base): + + @staticmethod + def export() -> None: + alpha = 2.0 + node = onnx.helper.make_node( + 'Celu', + inputs=['X'], + outputs=['Y'], + alpha=alpha, + ) + + input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + + # Calculate expected output data + positive_input = np.maximum(0, input_data) + negative_input = np.minimum(0, alpha * (np.exp(input_data / alpha) - 1)) + expected_output = positive_input + negative_input + + expect(node, inputs=[input_data], outputs=[expected_output], + name='test_celu') diff --git a/third_party/onnx/onnx/backend/test/case/node/clip.py b/third_party/onnx/onnx/backend/test/case/node/clip.py new file mode 100644 index 0000000000..41abc4f9e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/clip.py @@ -0,0 +1,127 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Clip(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], + ) + + x = np.array([-2, 0, 2]).astype(np.float32) + min_val = np.float32(-1) + max_val = np.float32(1) + y = np.clip(x, min_val, max_val) # expected output [-1., 0., 1.] + expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, min_val, max_val) + expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip') + node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min', 'max'], + outputs=['y'], + ) + + min_val = np.float32(-5) + max_val = np.float32(5) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.array([-1, 0, 1]).astype(np.float32) + expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_inbounds') + + x = np.array([-6, 0, 6]).astype(np.float32) + y = np.array([-5, 0, 5]).astype(np.float32) + expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_outbounds') + + x = np.array([-1, 0, 6]).astype(np.float32) + y = np.array([-1, 0, 5]).astype(np.float32) + expect(node, inputs=[x, min_val, max_val], outputs=[y], + name='test_clip_splitbounds') + + @staticmethod + def export_clip_default() -> None: + node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], + ) + min_val = np.float32(0) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, min_val, np.inf) + expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_min') + + no_min = "" # optional input, not supplied + node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], + ) + max_val = np.float32(0) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, -np.inf, max_val) + expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_max') + + no_max = "" # optional input, not supplied + node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.array([-1, 0, 1]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_clip_default_inbounds') + + @staticmethod + def export_clip_default_int8() -> None: + node = onnx.helper.make_node( + 'Clip', + inputs=['x', 'min'], + outputs=['y'], + ) + min_val = np.int8(0) + x = np.random.randn(3, 4, 5).astype(np.int8) + y = np.clip(x, min_val, np.iinfo(np.int8).max) + expect(node, inputs=[x, min_val], outputs=[y], + name='test_clip_default_int8_min') + + no_min = "" # optional input, not supplied + node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, 'max'], + outputs=['y'], + ) + max_val = np.int8(0) + x = np.random.randn(3, 4, 5).astype(np.int8) + y = np.clip(x, np.iinfo(np.int8).min, max_val) + expect(node, inputs=[x, max_val], outputs=[y], + name='test_clip_default_int8_max') + + no_max = "" # optional input, not supplied + node = onnx.helper.make_node( + 'Clip', + inputs=['x', no_min, no_max], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.int8) + y = np.array([-1, 0, 1]).astype(np.int8) + expect(node, inputs=[x], outputs=[y], + name='test_clip_default_int8_inbounds') diff --git a/third_party/onnx/onnx/backend/test/case/node/compress.py b/third_party/onnx/onnx/backend/test/case/node/compress.py new file mode 100644 index 0000000000..e951a13474 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/compress.py @@ -0,0 +1,81 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Compress(Base): + + @staticmethod + def export_compress_0() -> None: + node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=0, + ) + input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) + condition = np.array([0, 1, 1]) + output = np.compress(condition, input, axis=0) + #print(output) + #[[ 3. 4.] + # [ 5. 6.]] + + expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_0') + + @staticmethod + def export_compress_1() -> None: + node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=1, + ) + input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) + condition = np.array([0, 1]) + output = np.compress(condition, input, axis=1) + #print(output) + #[[ 2.] + # [ 4.] + # [ 6.]] + + expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_1') + + @staticmethod + def export_compress_default_axis() -> None: + node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + ) + input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) + condition = np.array([0, 1, 0, 0, 1]) + output = np.compress(condition, input) + #print(output) + #[ 2., 5.] + + expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_default_axis') + + @staticmethod + def export_compress_negative_axis() -> None: + node = onnx.helper.make_node( + 'Compress', + inputs=['input', 'condition'], + outputs=['output'], + axis=-1, + ) + input = np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32) + condition = np.array([0, 1]) + output = np.compress(condition, input, axis=-1) + # print(output) + #[[ 2.] + # [ 4.] + # [ 6.]] + expect(node, inputs=[input, condition.astype(bool)], outputs=[output], + name='test_compress_negative_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/concat.py b/third_party/onnx/onnx/backend/test/case/node/concat.py new file mode 100644 index 0000000000..1705cd2f0a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/concat.py @@ -0,0 +1,48 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Dict, Sequence, Text, Any + + +class Concat(Base): + + @staticmethod + def export() -> None: + test_cases: Dict[Text, Sequence[Any]] = { + '1d': ([1, 2], + [3, 4]), + '2d': ([[1, 2], [3, 4]], + [[5, 6], [7, 8]]), + '3d': ([[[1, 2], [3, 4]], [[5, 6], [7, 8]]], + [[[9, 10], [11, 12]], [[13, 14], [15, 16]]]) + } + + for test_case, values_ in test_cases.items(): + values = [np.asarray(v, dtype=np.float32) for v in values_] + for i in range(len(values[0].shape)): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_' + str(i)) + + for i in range(-len(values[0].shape), 0): + in_args = ['value' + str(k) for k in range(len(values))] + node = onnx.helper.make_node( + 'Concat', + inputs=[s for s in in_args], + outputs=['output'], + axis=i + ) + output = np.concatenate(values, i) + expect(node, inputs=[v for v in values], outputs=[output], + name='test_concat_' + test_case + '_axis_negative_' + str(abs(i))) diff --git a/third_party/onnx/onnx/backend/test/case/node/constant.py b/third_party/onnx/onnx/backend/test/case/node/constant.py new file mode 100644 index 0000000000..f69ac4bc94 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/constant.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Constant(Base): + + @staticmethod + def export() -> None: + values = np.random.randn(5, 5).astype(np.float32) + node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['values'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=values.shape, + vals=values.flatten().astype(float), + ), + ) + + expect(node, inputs=[], outputs=[values], + name='test_constant') diff --git a/third_party/onnx/onnx/backend/test/case/node/constantofshape.py b/third_party/onnx/onnx/backend/test/case/node/constantofshape.py new file mode 100644 index 0000000000..ca0d725307 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/constantofshape.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ConstantOfShape(Base): + + @staticmethod + def export_float_ones() -> None: + x = np.array([4, 3, 2]).astype(np.int64) + tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.FLOAT, + [1], [1]) + node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, + ) + + y = np.ones(x, dtype=np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_float_ones') + + @staticmethod + def export_int32_zeros() -> None: + x = np.array([10, 6]).astype(np.int64) + tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) + node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, + ) + y = np.zeros(x, dtype=np.int32) + expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_zeros') + + @staticmethod + def export_int32_shape_zero() -> None: + x = np.array([0, ]).astype(np.int64) + tensor_value = onnx.helper.make_tensor("value", onnx.TensorProto.INT32, + [1], [0]) + node = onnx.helper.make_node( + 'ConstantOfShape', + inputs=['x'], + outputs=['y'], + value=tensor_value, + ) + y = np.zeros(x, dtype=np.int32) + expect(node, inputs=[x], outputs=[y], + name='test_constantofshape_int_shape_zero') diff --git a/third_party/onnx/onnx/backend/test/case/node/conv.py b/third_party/onnx/onnx/backend/test/case/node/conv.py new file mode 100644 index 0000000000..e406cb9b2f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/conv.py @@ -0,0 +1,142 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Conv(Base): + + @staticmethod + def export() -> None: + + x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) + W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + # Convolution with padding + node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[1, 1, 1, 1], + ) + y_with_padding = np.array([[[[12., 21., 27., 33., 24.], # (1, 1, 5, 5) output tensor + [33., 54., 63., 72., 51.], + [63., 99., 108., 117., 81.], + [93., 144., 153., 162., 111.], + [72., 111., 117., 123., 84.]]]]).astype(np.float32) + expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_basic_conv_with_padding') + + # Convolution without padding + node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + # Default values for other attributes: strides=[1, 1], dilations=[1, 1], groups=1 + pads=[0, 0, 0, 0], + ) + y_without_padding = np.array([[[[54., 63., 72.], # (1, 1, 3, 3) output tensor + [99., 108., 117.], + [144., 153., 162.]]]]).astype(np.float32) + expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_basic_conv_without_padding') + + @staticmethod + def export_conv_with_strides() -> None: + + x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 7, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.]]]]).astype(np.float32) + W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + # Convolution with strides=2 and padding + node_with_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 1, 1, 1], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 + ) + y_with_padding = np.array([[[[12., 27., 24.], # (1, 1, 4, 3) output tensor + [63., 108., 81.], + [123., 198., 141.], + [112., 177., 124.]]]]).astype(np.float32) + expect(node_with_padding, inputs=[x, W], outputs=[y_with_padding], + name='test_conv_with_strides_padding') + + # Convolution with strides=2 and no padding + node_without_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[0, 0, 0, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 + ) + y_without_padding = np.array([[[[54., 72.], # (1, 1, 3, 2) output tensor + [144., 162.], + [234., 252.]]]]).astype(np.float32) + expect(node_without_padding, inputs=[x, W], outputs=[y_without_padding], + name='test_conv_with_strides_no_padding') + + # Convolution with strides=2 and padding only along one dimension (the H dimension in NxCxHxW tensor) + node_with_asymmetric_padding = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[1, 0, 1, 0], + strides=[2, 2], # Default values for other attributes: dilations=[1, 1], groups=1 + ) + y_with_asymmetric_padding = np.array([[[[21., 33.], # (1, 1, 4, 2) output tensor + [99., 117.], + [189., 207.], + [171., 183.]]]]).astype(np.float32) + expect(node_with_asymmetric_padding, inputs=[x, W], outputs=[y_with_asymmetric_padding], + name='test_conv_with_strides_and_asymmetric_padding') + + @staticmethod + def export_conv_with_autopad_same() -> None: + + x = np.array([[[[0., 1., 2., 3., 4.], # (1, 1, 5, 5) input tensor + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.], + [20., 21., 22., 23., 24.]]]]).astype(np.float32) + W = np.array([[[[1., 1., 1.], # (1, 1, 3, 3) tensor for convolution weights + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + # Convolution with auto_pad='SAME_LOWER' and strides=2 + node = onnx.helper.make_node( + 'Conv', + inputs=['x', 'W'], + outputs=['y'], + auto_pad='SAME_LOWER', + kernel_shape=[3, 3], + strides=[2, 2], + ) + y = np.array([[[[12., 27., 24.], + [63., 108., 81.], + [72., 117., 84.]]]]).astype(np.float32) + expect(node, inputs=[x, W], outputs=[y], + name='test_conv_with_autopad_same') diff --git a/third_party/onnx/onnx/backend/test/case/node/convinteger.py b/third_party/onnx/onnx/backend/test/case/node/convinteger.py new file mode 100644 index 0000000000..c8b8a56013 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/convinteger.py @@ -0,0 +1,44 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class ConvInteger(Base): + + @staticmethod + def export_without_padding() -> None: + + x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) + x_zero_point = np.uint8(1) + w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + + y = np.array([12, 16, 24, 28]).astype(np.int32).reshape(1, 1, 2, 2) + + # ConvInteger without padding + convinteger_node = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y']) + + expect(convinteger_node, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_without_padding') + + @staticmethod + def export_with_padding() -> None: + + x = np.array([2, 3, 4, 5, 6, 7, 8, 9, 10]).astype(np.uint8).reshape((1, 1, 3, 3)) + x_zero_point = np.uint8(1) + w = np.array([1, 1, 1, 1]).astype(np.uint8).reshape((1, 1, 2, 2)) + + y = np.array([1, 3, 5, 3, 5, 12, 16, 9, 11, 24, 28, 15, 7, 15, 17, 9]).astype(np.int32).reshape((1, 1, 4, 4)) + + # ConvInteger with padding + convinteger_node_with_padding = onnx.helper.make_node('ConvInteger', + inputs=['x', 'w', 'x_zero_point'], + outputs=['y'], + pads=[1, 1, 1, 1],) + + expect(convinteger_node_with_padding, inputs=[x, w, x_zero_point], outputs=[y], + name='test_convinteger_with_padding') diff --git a/third_party/onnx/onnx/backend/test/case/node/convtranspose.py b/third_party/onnx/onnx/backend/test/case/node/convtranspose.py new file mode 100644 index 0000000000..a77ef1d3fb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/convtranspose.py @@ -0,0 +1,301 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ConvTranspose(Base): + + @staticmethod + def export() -> None: + x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + + W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + + y = np.array([[[[0., 1., 3., 3., 2.], # (1, 2, 5, 5) + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]], + + [[0., 1., 3., 3., 2.], + [3., 8., 15., 12., 7.], + [9., 21., 36., 27., 15.], + [9., 20., 33., 24., 13.], + [6., 13., 21., 15., 8.]]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose') + + @staticmethod + def export_convtranspose_1d() -> None: + x = np.array([[[0., 1., 2.]]]).astype(np.float32) # (1, 1, 3) + + W = np.array([[[1., 1., 1.], # (1, 2, 3) + [1., 1., 1.]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + + y = np.array([[[0., 1., 3., 3., 2.], # (1, 2, 5) + [0., 1., 3., 3., 2.]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_1d') + + @staticmethod + def export_convtranspose_3d() -> None: + x = np.array([[[[[0., 1., 2., 3., 4.], # (1, 1, 3, 4, 5) + [5., 6., 7., 8., 9.], + [10., 11., 12., 13., 14.], + [15., 16., 17., 18., 19.]], + [[20., 21., 22., 23., 24.], + [25., 26., 27., 28., 29.], + [30., 31., 32., 33., 34.], + [35., 36., 37., 38., 39.]], + [[40., 41., 42., 43., 44.], + [45., 46., 47., 48., 49.], + [50., 51., 52., 53., 54.], + [55., 56., 57., 58., 59.]]]]]).astype(np.float32) + + W = np.array([[[[[1., 1., 1.], # (1, 2, 3, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]], + [[[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"]) + + y = np.array([[[[[0., 1., 3., 6., 9., 7., 4.], # (1, 2, 5, 6, 7) + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]], + + [[[0., 1., 3., 6., 9., 7., 4.], + [5., 12., 21., 27., 33., 24., 13.], + [15., 33., 54., 63., 72., 51., 27.], + [30., 63., 99., 108., 117., 81., 42.], + [25., 52., 81., 87., 93., 64., 33.], + [15., 31., 48., 51., 54., 37., 19.]], + + [[20., 42., 66., 72., 78., 54., 28.], + [50., 104., 162., 174., 186., 128., 66.], + [90., 186., 288., 306., 324., 222., 114.], + [120., 246., 378., 396., 414., 282., 144.], + [90., 184., 282., 294., 306., 208., 106.], + [50., 102., 156., 162., 168., 114., 58.]], + + [[60., 123., 189., 198., 207., 141., 72.], + [135., 276., 423., 441., 459., 312., 159.], + [225., 459., 702., 729., 756., 513., 261.], + [270., 549., 837., 864., 891., 603., 306.], + [195., 396., 603., 621., 639., 432., 219.], + [105., 213., 324., 333., 342., 231., 117.]], + + [[60., 122., 186., 192., 198., 134., 68.], + [130., 264., 402., 414., 426., 288., 146.], + [210., 426., 648., 666., 684., 462., 234.], + [240., 486., 738., 756., 774., 522., 264.], + [170., 344., 522., 534., 546., 368., 186.], + [90., 182., 276., 282., 288., 194., 98.]], + + [[40., 81., 123., 126., 129., 87., 44.], + [85., 172., 261., 267., 273., 184., 93.], + [135., 273., 414., 423., 432., 291., 147.], + [150., 303., 459., 468., 477., 321., 162.], + [105., 212., 321., 327., 333., 224., 113.], + [55., 111., 168., 171., 174., 117., 59.]]]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_3d') + + @staticmethod + def export_convtranspose_attributes() -> None: + x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + + W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + y = np.array([[[[0., 0., 1., 1., 3., 2., 2., 0.], # (1, 2, 10, 8) + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]], + + [[0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [0., 0., 1., 1., 3., 2., 2., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [3., 3., 7., 4., 9., 5., 5., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [6., 6., 13., 7., 15., 8., 8., 0.], + [0., 0., 0., 0., 0., 0., 0., 0.]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_shape=[10, 8]) + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_output_shape') + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + output_padding=[1, 1]) + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pad') + + node = onnx.helper.make_node( + 'ConvTranspose', ['X', 'W'], ['Y'], + name='test', + strides=[3, 2], + output_shape=[10, 8], + kernel_shape=[3, 3], + output_padding=[1, 1] + ) + expect(node, inputs=[x, W], outputs=[y], + name='test_convtranspose_kernel_shape') + + @staticmethod + def export_convtranspose_pads() -> None: + x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + + W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], + strides=[3, 2], + pads=[1, 2, 1, 2]) + + y = np.array([[[[1., 1., 3.], # (1, 2, 7, 3) + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]], + + [[1., 1., 3.], + [1., 1., 3.], + [7., 4., 9.], + [7., 4., 9.], + [7., 4., 9.], + [13., 7., 15.], + [13., 7., 15.]]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_pads') + + @staticmethod + def export_convtranspose_dilations() -> None: + x = np.array([[[[3., 8., 1.], # (1, 1, 3, 3) + [9., 5., 7.], + [3., 2., 6.]]]]).astype(np.float32) + W = np.array([[[[7., 2.], # (1, 1, 2, 2) + [1., 9.]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], dilations=[2, 2]) + + y = np.array([[[[21., 56., 13., 16., 2.], # [1, 1, 5, 5] + [63., 35., 67., 10., 14.], + [24., 22., 76., 76., 21.], + [9., 5., 88., 45., 63.], + [3., 2., 33., 18., 54.]]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_dilations') + + @staticmethod + def export_convtranspose_autopad_same() -> None: + x = np.array([[[[0., 1., 2.], # (1, 1, 3, 3) + [3., 4., 5.], + [6., 7., 8.]]]]).astype(np.float32) + + W = np.array([[[[1., 1., 1.], # (1, 2, 3, 3) + [1., 1., 1.], + [1., 1., 1.]], + [[1., 1., 1.], + [1., 1., 1.], + [1., 1., 1.]]]]).astype(np.float32) + + node = onnx.helper.make_node("ConvTranspose", ["X", "W"], ["Y"], auto_pad="SAME_UPPER", strides=[2, 2]) + + y = np.array([[[[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]], + + [[0., 0., 1., 1., 3., 2.], + [0., 0., 1., 1., 3., 2.], + [3., 3., 8., 5., 12., 7.], + [3., 3., 7., 4., 9., 5.], + [9., 9., 20., 11., 24., 13.], + [6., 6., 13., 7., 15., 8.]]]]).astype(np.float32) + + expect(node, inputs=[x, W], outputs=[y], name='test_convtranspose_autopad_same') diff --git a/third_party/onnx/onnx/backend/test/case/node/cos.py b/third_party/onnx/onnx/backend/test/case/node/cos.py new file mode 100644 index 0000000000..ca46614fd0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/cos.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Cos(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Cos', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.cos(x) + expect(node, inputs=[x], outputs=[y], + name='test_cos_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.cos(x) + expect(node, inputs=[x], outputs=[y], + name='test_cos') diff --git a/third_party/onnx/onnx/backend/test/case/node/cosh.py b/third_party/onnx/onnx/backend/test/case/node/cosh.py new file mode 100644 index 0000000000..9a855251fb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/cosh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Cosh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Cosh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.cosh(x) # expected output [1.54308069, 1., 1.54308069] + expect(node, inputs=[x], outputs=[y], + name='test_cosh_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.cosh(x) + expect(node, inputs=[x], outputs=[y], + name='test_cosh') diff --git a/third_party/onnx/onnx/backend/test/case/node/cumsum.py b/third_party/onnx/onnx/backend/test/case/node/cumsum.py new file mode 100644 index 0000000000..3abad2a6cb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/cumsum.py @@ -0,0 +1,105 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class CumSum(Base): + + @staticmethod + def export_cumsum_1d() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'] + ) + x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) + axis = np.int32(0) + y = np.array([1., 3., 6., 10., 15.]).astype(np.float64) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d') + + @staticmethod + def export_cumsum_1d_exclusive() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + exclusive=1 + ) + x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) + axis = np.int32(0) + y = np.array([0., 1., 3., 6., 10.]).astype(np.float64) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_exclusive') + + @staticmethod + def export_cumsum_1d_reverse() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1 + ) + x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) + axis = np.int32(0) + y = np.array([15., 14., 12., 9., 5.]).astype(np.float64) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse') + + @staticmethod + def export_cumsum_1d_reverse_exclusive() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + reverse=1, + exclusive=1 + ) + x = np.array([1., 2., 3., 4., 5.]).astype(np.float64) + axis = np.int32(0) + y = np.array([14., 12., 9., 5., 0.]).astype(np.float64) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_1d_reverse_exclusive') + + @staticmethod + def export_cumsum_2d_axis_0() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + ) + x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) + axis = np.int32(0) + y = np.array([1., 2., 3., 5., 7., 9.]).astype(np.float64).reshape((2, 3)) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_0') + + @staticmethod + def export_cumsum_2d_axis_1() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + ) + x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) + axis = np.int32(1) + y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_axis_1') + + @staticmethod + def export_cumsum_2d_negative_axis() -> None: + node = onnx.helper.make_node( + 'CumSum', + inputs=['x', 'axis'], + outputs=['y'], + ) + x = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float64).reshape((2, 3)) + axis = np.int32(-1) + y = np.array([1., 3., 6., 4., 9., 15.]).astype(np.float64).reshape((2, 3)) + expect(node, inputs=[x, axis], outputs=[y], + name='test_cumsum_2d_negative_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/depthtospace.py b/third_party/onnx/onnx/backend/test/case/node/depthtospace.py new file mode 100755 index 0000000000..798f744237 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/depthtospace.py @@ -0,0 +1,90 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class DepthToSpace(Base): + + @staticmethod + def export_default_mode_example() -> None: + node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='DCR' + ) + + # (1, 8, 2, 3) input tensor + x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + + # (1, 2, 4, 6) output tensor + y = np.array([[[[0., 18., 1., 19., 2., 20.], + [36., 54., 37., 55., 38., 56.], + [3., 21., 4., 22., 5., 23.], + [39., 57., 40., 58., 41., 59.]], + [[9., 27., 10., 28., 11., 29.], + [45., 63., 46., 64., 47., 65.], + [12., 30., 13., 31., 14., 32.], + [48., 66., 49., 67., 50., 68.]]]]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_example') + + @staticmethod + def export_crd_mode_example() -> None: + node = onnx.helper.make_node( + 'DepthToSpace', + inputs=['x'], + outputs=['y'], + blocksize=2, + mode='CRD' + ) + + # (1, 8, 2, 3) input tensor + x = np.array([[[[0., 1., 2.], + [3., 4., 5.]], + [[9., 10., 11.], + [12., 13., 14.]], + [[18., 19., 20.], + [21., 22., 23.]], + [[27., 28., 29.], + [30., 31., 32.]], + [[36., 37., 38.], + [39., 40., 41.]], + [[45., 46., 47.], + [48., 49., 50.]], + [[54., 55., 56.], + [57., 58., 59.]], + [[63., 64., 65.], + [66., 67., 68.]]]]).astype(np.float32) + + # (1, 2, 4, 6) output tensor + y = np.array([[[[0., 9., 1., 10., 2., 11.], + [18., 27., 19., 28., 20., 29.], + [3., 12., 4., 13., 5., 14.], + [21., 30., 22., 31., 23., 32.]], + [[36., 45., 37., 46., 38., 47.], + [54., 63., 55., 64., 56., 65.], + [39., 48., 40., 49., 41., 50.], + [57., 66., 58., 67., 59., 68.]]]]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_depthtospace_crd_mode_example') diff --git a/third_party/onnx/onnx/backend/test/case/node/dequantizelinear.py b/third_party/onnx/onnx/backend/test/case/node/dequantizelinear.py new file mode 100644 index 0000000000..3a9cbc79ca --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/dequantizelinear.py @@ -0,0 +1,49 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class DequantizeLinear(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + + # scalar zero point and scale + x = np.array([0, 3, 128, 255]).astype(np.uint8) + x_scale = np.float32(2) + x_zero_point = np.uint8(128) + y = np.array([-256, -250, 0, 254], dtype=np.float32) + + expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear') + + @staticmethod + def export_axis() -> None: + node = onnx.helper.make_node('DequantizeLinear', + inputs=['x', 'x_scale', 'x_zero_point'], + outputs=['y'],) + + # 1-D tensor zero point and scale of size equal to axis 1 of the input tensor + x = np.array([[[[3, 89], + [34, 200], + [74, 59]], + + [[5, 24], + [24, 87], + [32, 13]], + + [[245, 99], + [4, 142], + [121, 102]], ], ], dtype=np.uint8) + x_scale = np.array([2, 4, 5], dtype=np.float32) + x_zero_point = np.array([84, 24, 196], dtype=np.uint8) + y = (x.astype(np.float32) - x_zero_point.reshape(1, 3, 1, 1).astype(np.float32)) * x_scale.reshape(1, 3, 1, 1) + + expect(node, inputs=[x, x_scale, x_zero_point], outputs=[y], + name='test_dequantizelinear_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/det.py b/third_party/onnx/onnx/backend/test/case/node/det.py new file mode 100644 index 0000000000..2f52fe14c6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/det.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import math + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Det(Base): + + @staticmethod + def export_2d() -> None: + node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], + ) + + x = np.arange(4).reshape(2, 2).astype(np.float32) + y = np.linalg.det(x) # expect -2 + expect(node, inputs=[x], outputs=[y], + name='test_det_2d') + + @staticmethod + def export_nd() -> None: + node = onnx.helper.make_node( + 'Det', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([[[1, 2], [3, 4]], [[1, 2], [2, 1]], [[1, 3], [3, 1]]]).astype(np.float32) + y = np.linalg.det(x) # expect array([-2., -3., -8.]) + expect(node, inputs=[x], outputs=[y], + name='test_det_nd') diff --git a/third_party/onnx/onnx/backend/test/case/node/div.py b/third_party/onnx/onnx/backend/test/case/node/div.py new file mode 100644 index 0000000000..d20734ee2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/div.py @@ -0,0 +1,50 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Div(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([3, 4]).astype(np.float32) + y = np.array([1, 2]).astype(np.float32) + z = x / y # expected output [3., 2.] + expect(node, inputs=[x, y], outputs=[z], + name='test_div_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.rand(3, 4, 5).astype(np.float32) + 1.0 + z = x / y + expect(node, inputs=[x, y], outputs=[z], + name='test_div') + + x = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + 1 + z = x // y + expect(node, inputs=[x, y], outputs=[z], + name='test_div_uint8') + + @staticmethod + def export_div_broadcast() -> None: + node = onnx.helper.make_node( + 'Div', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.rand(5).astype(np.float32) + 1.0 + z = x / y + expect(node, inputs=[x, y], outputs=[z], + name='test_div_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/dropout.py b/third_party/onnx/onnx/backend/test/case/node/dropout.py new file mode 100644 index 0000000000..4331423762 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/dropout.py @@ -0,0 +1,214 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import random + +import onnx +from ..base import Base +from . import expect +from onnx import helper + + +def dropout(X, drop_probability=0.5, seed=0, training_mode=False, return_mask=False): # type: ignore + if drop_probability == 0 or training_mode is False: + if return_mask is True: + return X, np.ones(X.shape, dtype=bool) + else: + return X + + np.random.seed(seed) + mask = np.random.uniform(0, 1.0, X.shape) >= drop_probability + scale = (1 / (1 - drop_probability)) + if return_mask is True: + return mask * X * scale, mask.astype(bool) + else: + return mask * X * scale + + +class Dropout(Base): + + # Inferencing tests. + @staticmethod + def export_default() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = dropout(x) + expect(node, inputs=[x], outputs=[y], name='test_dropout_default') + + @staticmethod + def export_default_ratio() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y'], + seed=seed + ) + + r = np.float32(0.1) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = dropout(x, r) + expect(node, inputs=[x, r], outputs=[y], name='test_dropout_default_ratio') + + @staticmethod + def export_default_mask() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y', 'z'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y, z = dropout(x, return_mask=True) + expect(node, inputs=[x], outputs=[y, z], name='test_dropout_default_mask') + + @staticmethod + def export_default_mask_ratio() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r'], + outputs=['y', 'z'], + seed=seed + ) + + r = np.float32(0.1) + x = np.random.randn(3, 4, 5).astype(np.float32) + y, z = dropout(x, r, return_mask=True) + expect(node, inputs=[x, r], outputs=[y, z], name='test_dropout_default_mask_ratio') + + # Training tests. + + @staticmethod + def export_training_default() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.5) + t = np.bool_(True) + y = dropout(x, r, training_mode=t) + expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_default') + + @staticmethod + def export_training_default_ratio_mask() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.5) + t = np.bool_(True) + y, z = dropout(x, r, training_mode=t, return_mask=True) + expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_default_mask') + + @staticmethod + def export_training() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.75) + t = np.bool_(True) + y = dropout(x, r, training_mode=t) + expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout') + + @staticmethod + def export_training_ratio_mask() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.75) + t = np.bool_(True) + y, z = dropout(x, r, training_mode=t, return_mask=True) + expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_mask') + + @staticmethod + def export_training_default_zero_ratio() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.0) + t = np.bool_(True) + y = dropout(x, r, training_mode=t) + expect(node, inputs=[x, r, t], outputs=[y], name='test_training_dropout_zero_ratio') + + @staticmethod + def export_training_default_zero_ratio_mask() -> None: + seed = np.int64(0) + node = onnx.helper.make_node( + 'Dropout', + inputs=['x', 'r', 't'], + outputs=['y', 'z'], + seed=seed + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + r = np.float32(0.0) + t = np.bool_(True) + y, z = dropout(x, r, training_mode=t, return_mask=True) + expect(node, inputs=[x, r, t], outputs=[y, z], name='test_training_dropout_zero_ratio_mask') + + # Old dropout tests + + @staticmethod + def export_default_old() -> None: + node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = x + expect(node, inputs=[x], outputs=[y], + name='test_dropout_default_old', opset_imports=[helper.make_opsetid("", 11)]) + + @staticmethod + def export_random_old() -> None: + node = onnx.helper.make_node( + 'Dropout', + inputs=['x'], + outputs=['y'], + ratio=.2, + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = x + expect(node, inputs=[x], outputs=[y], + name='test_dropout_random_old', opset_imports=[helper.make_opsetid("", 11)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/dynamicquantizelinear.py b/third_party/onnx/onnx/backend/test/case/node/dynamicquantizelinear.py new file mode 100644 index 0000000000..bfa472e071 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/dynamicquantizelinear.py @@ -0,0 +1,54 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx import TensorProto +from ..base import Base +from . import expect + + +class DynamicQuantizeLinear(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('DynamicQuantizeLinear', + inputs=['x'], + outputs=['y', 'y_scale', 'y_zero_point'], + ) + + # expected scale 0.0196078438 and zero point 153 + X = np.array([0, 2, -3, -2.5, 1.34, 0.5]).astype(np.float32) + x_min = np.minimum(0, np.min(X)) + x_max = np.maximum(0, np.max(X)) + Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] + Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) + Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + + expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear') + + # expected scale 0.0156862754 and zero point 255 + X = np.array([-1.0, -2.1, -1.3, -2.5, -3.34, -4.0]).astype(np.float32) + x_min = np.minimum(0, np.min(X)) + x_max = np.maximum(0, np.max(X)) + Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] + Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) + Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + + expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_max_adjusted') + + X = np.array([1, 2.1, 1.3, 2.5, + 3.34, 4.0, 1.5, 2.6, + 3.9, 4.0, 3.0, 2.345]).astype(np.float32).reshape((3, 4)) + + # expected scale 0.0156862754 and zero point 0 + x_min = np.minimum(0, np.min(X)) + x_max = np.maximum(0, np.max(X)) + Y_Scale = np.float32((x_max - x_min) / (255 - 0)) # uint8 -> [0, 255] + Y_ZeroPoint = np.clip(round((0 - x_min) / Y_Scale), 0, 255).astype(np.uint8) + Y = np.clip(np.round(X / Y_Scale) + Y_ZeroPoint, 0, 255).astype(np.uint8) + + expect(node, inputs=[X], outputs=[Y, Y_Scale, Y_ZeroPoint], + name='test_dynamicquantizelinear_min_adjusted') diff --git a/third_party/onnx/onnx/backend/test/case/node/einsum.py b/third_party/onnx/onnx/backend/test/case/node/einsum.py new file mode 100644 index 0000000000..d5d915c6d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/einsum.py @@ -0,0 +1,94 @@ +# SPDX-License-Identifier: Apache-2.0 + + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Tuple, Text + + +def einsum_reference_implementation(Eqn: Text, Operands: Tuple[np.ndarray, ...]) -> np.ndarray: + Z = np.einsum(Eqn, *Operands) + return Z + + +class Einsum(Base): + + @staticmethod + def export_einsum_transpose() -> None: + Eqn = 'ij->ji' + node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn + ) + + X = np.random.randn(3, 4) + Y = einsum_reference_implementation(Eqn, (X,)) + + expect(node, inputs=[X], outputs=[Y], name='test_einsum_transpose') + + @staticmethod + def export_einsum_sum() -> None: + Eqn = 'ij->i' + node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn + ) + + X = np.random.randn(3, 4) + Z = einsum_reference_implementation(Eqn, (X,)) + + expect(node, inputs=[X], outputs=[Z], name='test_einsum_sum') + + @staticmethod + def export_einsum_batch_diagonal() -> None: + Eqn = '...ii ->...i' + node = onnx.helper.make_node( + 'Einsum', + inputs=['x'], + outputs=['y'], + equation=Eqn + ) + + X = np.random.randn(3, 5, 5) + Z = einsum_reference_implementation(Eqn, (X,)) + + expect(node, inputs=[X], outputs=[Z], name='test_einsum_batch_diagonal') + + @staticmethod + def export_einsum_inner_prod() -> None: + Eqn = 'i,i' + node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn + ) + + X = np.random.randn(5) + Y = np.random.randn(5) + Z = einsum_reference_implementation(Eqn, (X, Y)) + + expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_inner_prod') + + @staticmethod + def export_einsum_batch_matmul() -> None: + Eqn = 'bij, bjk -> bik' + node = onnx.helper.make_node( + 'Einsum', + inputs=['x', 'y'], + outputs=['z'], + equation=Eqn + ) + + X = np.random.randn(5, 2, 3) + Y = np.random.randn(5, 3, 4) + Z = einsum_reference_implementation(Eqn, (X, Y)) + + expect(node, inputs=[X, Y], outputs=[Z], name='test_einsum_batch_matmul') diff --git a/third_party/onnx/onnx/backend/test/case/node/elu.py b/third_party/onnx/onnx/backend/test/case/node/elu.py new file mode 100644 index 0000000000..a06871c5cd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/elu.py @@ -0,0 +1,43 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Elu(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], + alpha=2.0 + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + # expected output [-1.2642411, 0., 1.] + y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 + expect(node, inputs=[x], outputs=[y], + name='test_elu_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 + expect(node, inputs=[x], outputs=[y], + name='test_elu') + + @staticmethod + def export_elu_default() -> None: + default_alpha = 1.0 + node = onnx.helper.make_node( + 'Elu', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha + expect(node, inputs=[x], outputs=[y], + name='test_elu_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/equal.py b/third_party/onnx/onnx/backend/test/case/node/equal.py new file mode 100644 index 0000000000..37be9de848 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/equal.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Equal(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) + y = (np.random.randn(3, 4, 5) * 10).astype(np.int32) + z = np.equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_equal') + + @staticmethod + def export_equal_broadcast() -> None: + node = onnx.helper.make_node( + 'Equal', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = (np.random.randn(3, 4, 5) * 10).astype(np.int32) + y = (np.random.randn(5) * 10).astype(np.int32) + z = np.equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_equal_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/erf.py b/third_party/onnx/onnx/backend/test/case/node/erf.py new file mode 100644 index 0000000000..29432e89e6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/erf.py @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: Apache-2.0 + +import math + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Erf(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Erf', + inputs=['x'], + outputs=['y'], + ) + + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + y = np.vectorize(math.erf)(x).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_erf') diff --git a/third_party/onnx/onnx/backend/test/case/node/exp.py b/third_party/onnx/onnx/backend/test/case/node/exp.py new file mode 100644 index 0000000000..0fd3a3205e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/exp.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Exp(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Exp', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.exp(x) # expected output [0.36787945, 1., 2.71828175] + expect(node, inputs=[x], outputs=[y], + name='test_exp_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.exp(x) + expect(node, inputs=[x], outputs=[y], + name='test_exp') diff --git a/third_party/onnx/onnx/backend/test/case/node/expand.py b/third_party/onnx/onnx/backend/test/case/node/expand.py new file mode 100644 index 0000000000..341f059379 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/expand.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Expand(Base): + + @staticmethod + def export_dim_changed() -> None: + node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], + ) + shape = [3, 1] + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[1.], [2.], [3.]] + new_shape = [2, 1, 6] + expanded = data * np.ones(new_shape, dtype=np.float32) + #print(expanded) + #[[[1., 1., 1., 1., 1., 1.], + # [2., 2., 2., 2., 2., 2.], + # [3., 3., 3., 3., 3., 3.]], + # + # [[1., 1., 1., 1., 1., 1.], + # [2., 2., 2., 2., 2., 2.], + # [3., 3., 3., 3., 3., 3.]]] + new_shape = np.array(new_shape, dtype=np.int64) + expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_changed') + + @staticmethod + def export_dim_unchanged() -> None: + node = onnx.helper.make_node( + 'Expand', + inputs=['data', 'new_shape'], + outputs=['expanded'], + ) + shape = [3, 1] + new_shape = [3, 4] + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[1.], [2.], [3.]] + expanded = np.tile(data, 4) + #print(expanded) + #[[1., 1., 1., 1.], + # [2., 2., 2., 2.], + # [3., 3., 3., 3.]] + new_shape = np.array(new_shape, dtype=np.int64) + expect(node, inputs=[data, new_shape], outputs=[expanded], + name='test_expand_dim_unchanged') diff --git a/third_party/onnx/onnx/backend/test/case/node/eyelike.py b/third_party/onnx/onnx/backend/test/case/node/eyelike.py new file mode 100644 index 0000000000..c9ef58c325 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/eyelike.py @@ -0,0 +1,53 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class EyeLike(Base): + + @staticmethod + def export_without_dtype() -> None: + shape = (4, 4) + node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + ) + + x = np.random.randint(0, 100, size=shape, dtype=np.int32) + y = np.eye(shape[0], shape[1], dtype=np.int32) + expect(node, inputs=[x], outputs=[y], name='test_eyelike_without_dtype') + + @staticmethod + def export_with_dtype() -> None: + shape = (3, 4) + node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + dtype=onnx.TensorProto.DOUBLE, + ) + + x = np.random.randint(0, 100, size=shape, dtype=np.int32) + y = np.eye(shape[0], shape[1], dtype=np.float64) + expect(node, inputs=[x], outputs=[y], name='test_eyelike_with_dtype') + + @staticmethod + def export_populate_off_main_diagonal() -> None: + shape = (4, 5) + off_diagonal_offset = 1 + node = onnx.helper.make_node( + 'EyeLike', + inputs=['x'], + outputs=['y'], + k=off_diagonal_offset, + dtype=onnx.TensorProto.FLOAT, + ) + + x = np.random.randint(0, 100, size=shape, dtype=np.int32) + y = np.eye(shape[0], shape[1], k=off_diagonal_offset, dtype=np.float32) + expect(node, inputs=[x], outputs=[y], name='test_eyelike_populate_off_main_diagonal') diff --git a/third_party/onnx/onnx/backend/test/case/node/flatten.py b/third_party/onnx/onnx/backend/test/case/node/flatten.py new file mode 100644 index 0000000000..0da7cc9eae --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/flatten.py @@ -0,0 +1,61 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Flatten(Base): + + @staticmethod + def export() -> None: + shape = (2, 3, 4, 5) + a = np.random.random_sample(shape).astype(np.float32) + + for i in range(len(shape)): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (1, -1) if i == 0 else (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_axis' + str(i)) + + @staticmethod + def export_flatten_with_default_axis() -> None: + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], # Default value for axis: axis=1 + ) + + shape = (5, 4, 3, 2) + a = np.random.random_sample(shape).astype(np.float32) + new_shape = (5, 24) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_default_axis') + + @staticmethod + def export_flatten_negative_axis() -> None: + shape = (2, 3, 4, 5) + a = np.random.random_sample(shape).astype(np.float32) + + for i in range(-len(shape), 0): + node = onnx.helper.make_node( + 'Flatten', + inputs=['a'], + outputs=['b'], + axis=i, + ) + + new_shape = (np.prod(shape[0:i]).astype(int), -1) + b = np.reshape(a, new_shape) + expect(node, inputs=[a], outputs=[b], + name='test_flatten_negative_axis' + str(abs(i))) diff --git a/third_party/onnx/onnx/backend/test/case/node/floor.py b/third_party/onnx/onnx/backend/test/case/node/floor.py new file mode 100644 index 0000000000..2b922c5c68 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/floor.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Floor(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Floor', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1.5, 1.2, 2]).astype(np.float32) + y = np.floor(x) # expected output [-2., 1., 2.] + expect(node, inputs=[x], outputs=[y], + name='test_floor_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.floor(x) + expect(node, inputs=[x], outputs=[y], + name='test_floor') diff --git a/third_party/onnx/onnx/backend/test/case/node/gather.py b/third_party/onnx/onnx/backend/test/case/node/gather.py new file mode 100644 index 0000000000..a5150ab0d0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gather.py @@ -0,0 +1,73 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Gather(Base): + + @staticmethod + def export_gather_0() -> None: + node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, + ) + data = np.random.randn(5, 4, 3, 2).astype(np.float32) + indices = np.array([0, 1, 3]) + y = np.take(data, indices, axis=0) + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_0') + + @staticmethod + def export_gather_1() -> None: + node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, + ) + data = np.random.randn(5, 4, 3, 2).astype(np.float32) + indices = np.array([0, 1, 3]) + y = np.take(data, indices, axis=1) + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_1') + + @staticmethod + def export_gather_2d_indices() -> None: + node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=1, + ) + data = np.random.randn(3, 3).astype(np.float32) + indices = np.array([[0, 2]]) + y = np.take(data, indices, axis=1) + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_2d_indices') + + @staticmethod + def export_gather_negative_indices() -> None: + node = onnx.helper.make_node( + 'Gather', + inputs=['data', 'indices'], + outputs=['y'], + axis=0, + ) + data = np.arange(10).astype(np.float32) + indices = np.array([0, -9, -10]) + y = np.take(data, indices, axis=0) + + # print(y) + # [0. 1. 0.] + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_negative_indices') diff --git a/third_party/onnx/onnx/backend/test/case/node/gatherelements.py b/third_party/onnx/onnx/backend/test/case/node/gatherelements.py new file mode 100644 index 0000000000..ce313fbf13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gatherelements.py @@ -0,0 +1,87 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +# The below GatherElements' numpy implementation is from https://stackoverflow.com/a/46204790/11767360 +def gather_elements(data, indices, axis=0): # type: ignore + data_swaped = np.swapaxes(data, 0, axis) + index_swaped = np.swapaxes(indices, 0, axis) + gathered = np.choose(index_swaped, data_swaped, mode='wrap') + y = np.swapaxes(gathered, 0, axis) + return y + + +class GatherElements(Base): + + @staticmethod + def export_gather_elements_0() -> None: + axis = 1 + node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1, 2], + [3, 4]], dtype=np.float32) + indices = np.array([[0, 0], + [1, 0]], dtype=np.int32) + + y = gather_elements(data, indices, axis) + # print(y) produces + # [[1, 1], + # [4, 3]] + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_0') + + @staticmethod + def export_gather_elements_1() -> None: + axis = 0 + node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) + indices = np.array([[1, 2, 0], + [2, 0, 0]], dtype=np.int32) + + y = gather_elements(data, indices, axis) + # print(y) produces + # [[4, 8, 3], + # [7, 2, 3]] + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_1') + + @staticmethod + def export_gather_elements_negative_indices() -> None: + axis = 0 + node = onnx.helper.make_node( + 'GatherElements', + inputs=['data', 'indices'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1, 2, 3], + [4, 5, 6], + [7, 8, 9]], dtype=np.float32) + indices = np.array([[-1, -2, 0], + [-2, 0, 0]], dtype=np.int32) + + y = gather_elements(data, indices, axis) + # print(y) produces + # [[7, 5, 3], + # [4, 2, 3]] + + expect(node, inputs=[data, indices.astype(np.int64)], outputs=[y], + name='test_gather_elements_negative_indices') diff --git a/third_party/onnx/onnx/backend/test/case/node/gathernd.py b/third_party/onnx/onnx/backend/test/case/node/gathernd.py new file mode 100644 index 0000000000..e81aeee188 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gathernd.py @@ -0,0 +1,100 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def gather_nd_impl(data: np.ndarray, indices: np.ndarray, batch_dims: int) -> np.ndarray: + # Note the data rank - will be reused multiple times later + data_rank = len(data.shape) + + # Check input tensors' shape/rank condition + assert indices.shape[-1] <= data_rank + + #The list of data/indice shape of batch_dims + batch_dims_shape = [] + + #The number of elements in the batch_dims for data/indice array + batch_dims_size = 1 + + # Check the shape of indice and data are identicial for batch dims. + for i in range(batch_dims): + batch_dims_shape.append(indices.shape[i]) + batch_dims_size *= indices.shape[i] + + # Compute output of the op as below + + # Compute shape of output array + output_shape = batch_dims_shape + list(indices.shape)[batch_dims:-1] if (indices.shape[-1] == data_rank - batch_dims) \ + else batch_dims_shape + list(indices.shape)[batch_dims:-1] + list(data.shape)[batch_dims + indices.shape[-1]:] + + # Placeholder for output data + output_data_buffer = [] + + # Flatten 'indices' to 2D array + reshaped_indices = indices.reshape(batch_dims_size, -1, indices.shape[-1]) + + # Flatten 'data' to array of shape (batch_dim_size, data.shape[batch_dimes:]) + reshaped_data = data.reshape((batch_dims_size, ) + data.shape[batch_dims:]) + + # gather each scalar value from 'data' + for batch_dim in range(reshaped_indices.shape[0]): + for outer_dim in range(reshaped_indices.shape[1]): + gather_index = tuple(reshaped_indices[batch_dim][outer_dim]) + output_data_buffer.append(reshaped_data[(batch_dim,) + gather_index]) + return np.asarray(output_data_buffer, dtype=data.dtype).reshape(output_shape) + + +class GatherND(Base): + + @staticmethod + def export_int32() -> None: + node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], + ) + + data = np.array([[0, 1], [2, 3]], dtype=np.int32) + indices = np.array([[0, 0], [1, 1]], dtype=np.int64) + output = gather_nd_impl(data, indices, 0) + expected_output = np.array([0, 3], dtype=np.int32) + assert (np.array_equal(output, expected_output)) + expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32') + + @staticmethod + def export_float32() -> None: + node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], + ) + + data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.float32) + indices = np.array([[[0, 1]], [[1, 0]]], dtype=np.int64) + output = gather_nd_impl(data, indices, 0) + expected_output = np.array([[[2, 3]], [[4, 5]]], dtype=np.float32) + assert (np.array_equal(output, expected_output)) + expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_float32') + + @staticmethod + def export_int32_batchdim_1() -> None: + node = onnx.helper.make_node( + 'GatherND', + inputs=['data', 'indices'], + outputs=['output'], + batch_dims=1, + ) + + data = np.array([[[0, 1], [2, 3]], [[4, 5], [6, 7]]], dtype=np.int32) + indices = np.array([[1], [0]], dtype=np.int64) + output = gather_nd_impl(data, indices, 1) + expected_output = np.array([[2, 3], [4, 5]], dtype=np.int32) + assert (np.array_equal(output, expected_output)) + expect(node, inputs=[data, indices], outputs=[output], + name='test_gathernd_example_int32_batch_dim1') diff --git a/third_party/onnx/onnx/backend/test/case/node/gemm.py b/third_party/onnx/onnx/backend/test/case/node/gemm.py new file mode 100644 index 0000000000..2f025fa0b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gemm.py @@ -0,0 +1,183 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Optional + +import onnx +from ..base import Base +from . import expect + + +def gemm_reference_implementation(A: np.ndarray, B: np.ndarray, C: Optional[np.ndarray] = None, alpha: float = 1., beta: float = 1., transA: int = 0, + transB: int = 0) -> np.ndarray: + A = A if transA == 0 else A.T + B = B if transB == 0 else B.T + C = C if C is not None else np.array(0) + + Y = alpha * np.dot(A, B) + beta * C + + return Y + + +class Gemm(Base): + + @staticmethod + def export_default_zero_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] + ) + a = np.random.ranf([3, 5]).astype(np.float32) + b = np.random.ranf([5, 4]).astype(np.float32) + c = np.zeros([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_zero_bias') + + @staticmethod + def export_default_no_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b'], + outputs=['y'] + ) + a = np.random.ranf([2, 10]).astype(np.float32) + b = np.random.ranf([10, 3]).astype(np.float32) + y = gemm_reference_implementation(a, b) + expect(node, inputs=[a, b], outputs=[y], + name='test_gemm_default_no_bias') + + @staticmethod + def export_default_scalar_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] + ) + a = np.random.ranf([2, 3]).astype(np.float32) + b = np.random.ranf([3, 4]).astype(np.float32) + c = np.array(3.14).astype(np.float32) + y = gemm_reference_implementation(a, b, c) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_scalar_bias') + + @staticmethod + def export_default_single_elem_vector_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] + ) + a = np.random.ranf([3, 7]).astype(np.float32) + b = np.random.ranf([7, 3]).astype(np.float32) + c = np.random.ranf([1]).astype(np.float32) + y = gemm_reference_implementation(a, b, c) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_single_elem_vector_bias') + + @staticmethod + def export_default_vector_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] + ) + a = np.random.ranf([2, 7]).astype(np.float32) + b = np.random.ranf([7, 4]).astype(np.float32) + c = np.random.ranf([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_vector_bias') + + @staticmethod + def export_default_matrix_bias() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'] + ) + a = np.random.ranf([3, 6]).astype(np.float32) + b = np.random.ranf([6, 4]).astype(np.float32) + c = np.random.ranf([3, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_default_matrix_bias') + + @staticmethod + def export_transposeA() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transA=1 + ) + a = np.random.ranf([6, 3]).astype(np.float32) + b = np.random.ranf([6, 4]).astype(np.float32) + c = np.zeros([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c, transA=1) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeA') + + @staticmethod + def export_transposeB() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + transB=1 + ) + a = np.random.ranf([3, 6]).astype(np.float32) + b = np.random.ranf([4, 6]).astype(np.float32) + c = np.zeros([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c, transB=1) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_transposeB') + + @staticmethod + def export_alpha() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.5 + ) + a = np.random.ranf([3, 5]).astype(np.float32) + b = np.random.ranf([5, 4]).astype(np.float32) + c = np.zeros([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c, alpha=0.5) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_alpha') + + @staticmethod + def export_beta() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + beta=0.5 + ) + a = np.random.ranf([2, 7]).astype(np.float32) + b = np.random.ranf([7, 4]).astype(np.float32) + c = np.random.ranf([1, 4]).astype(np.float32) + y = gemm_reference_implementation(a, b, c, beta=0.5) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_beta') + + @staticmethod + def export_all_attributes() -> None: + node = onnx.helper.make_node( + 'Gemm', + inputs=['a', 'b', 'c'], + outputs=['y'], + alpha=0.25, + beta=0.35, + transA=1, + transB=1 + ) + a = np.random.ranf([4, 3]).astype(np.float32) + b = np.random.ranf([5, 4]).astype(np.float32) + c = np.random.ranf([1, 5]).astype(np.float32) + y = gemm_reference_implementation(a, b, c, transA=1, transB=1, alpha=0.25, beta=0.35) + expect(node, inputs=[a, b, c], outputs=[y], + name='test_gemm_all_attributes') diff --git a/third_party/onnx/onnx/backend/test/case/node/globalaveragepool.py b/third_party/onnx/onnx/backend/test/case/node/globalaveragepool.py new file mode 100644 index 0000000000..b15407c2b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/globalaveragepool.py @@ -0,0 +1,37 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class GlobalAveragePool(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(1, 3, 5, 5).astype(np.float32) + y = np.mean(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) + expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool') + + @staticmethod + def export_globalaveragepool_precomputed() -> None: + + node = onnx.helper.make_node( + 'GlobalAveragePool', + inputs=['x'], + outputs=['y'], + ) + x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ]]]).astype(np.float32) + y = np.array([[[[5]]]]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], name='test_globalaveragepool_precomputed') diff --git a/third_party/onnx/onnx/backend/test/case/node/globalmaxpool.py b/third_party/onnx/onnx/backend/test/case/node/globalmaxpool.py new file mode 100644 index 0000000000..888fdba96f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/globalmaxpool.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class GlobalMaxPool(Base): + + @staticmethod + def export() -> None: + + node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(1, 3, 5, 5).astype(np.float32) + y = np.max(x, axis=tuple(range(2, np.ndim(x))), keepdims=True) + expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool') + + @staticmethod + def export_globalmaxpool_precomputed() -> None: + + node = onnx.helper.make_node( + 'GlobalMaxPool', + inputs=['x'], + outputs=['y'], + ) + x = np.array([[[ + [1, 2, 3], + [4, 5, 6], + [7, 8, 9], + ]]]).astype(np.float32) + y = np.array([[[[9]]]]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], name='test_globalmaxpool_precomputed') diff --git a/third_party/onnx/onnx/backend/test/case/node/greater.py b/third_party/onnx/onnx/backend/test/case/node/greater.py new file mode 100644 index 0000000000..2a282efbab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/greater.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Greater(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = np.greater(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_greater') + + @staticmethod + def export_greater_broadcast() -> None: + node = onnx.helper.make_node( + 'Greater', + inputs=['x', 'y'], + outputs=['greater'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = np.greater(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_greater_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/greater_equal.py b/third_party/onnx/onnx/backend/test/case/node/greater_equal.py new file mode 100644 index 0000000000..25133430f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/greater_equal.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Greater(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = np.greater_equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal') + + @staticmethod + def export_greater_broadcast() -> None: + node = onnx.helper.make_node( + 'GreaterOrEqual', + inputs=['x', 'y'], + outputs=['greater_equal'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = np.greater_equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_greater_equal_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/gridsample.py b/third_party/onnx/onnx/backend/test/case/node/gridsample.py new file mode 100644 index 0000000000..18e8785166 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gridsample.py @@ -0,0 +1,374 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class GridSample(Base): + + @staticmethod + def export_gridsample() -> None: + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + padding_mode='zeros', + align_corners=0, + ) + # X shape, [N, C, H, W] - [1, 1, 4, 4] + X = np.array( + [ + [ + [ + [0., 1., 2., 3.], + [4., 5., 6., 7.], + [8., 9., 10., 11.], + [12., 13., 14., 15.] + ] + ] + ], + dtype=np.float32, + ) + # Grid shape, [N, H_out, W_out, 2] - [1, 6, 6, 2] + Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.6000, -1.0000], + [-0.2000, -1.0000], + [0.2000, -1.0000], + [0.6000, -1.0000], + [1.0000, -1.0000] + ], + [ + [-1.0000, -0.6000], + [-0.6000, -0.6000], + [-0.2000, -0.6000], + [0.2000, -0.6000], + [0.6000, -0.6000], + [1.0000, -0.6000] + ], + [ + [-1.0000, -0.2000], + [-0.6000, -0.2000], + [-0.2000, -0.2000], + [0.2000, -0.2000], + [0.6000, -0.2000], + [1.0000, -0.2000] + ], + [ + [-1.0000, 0.2000], + [-0.6000, 0.2000], + [-0.2000, 0.2000], + [0.2000, 0.2000], + [0.6000, 0.2000], + [1.0000, 0.2000] + ], + [ + [-1.0000, 0.6000], + [-0.6000, 0.6000], + [-0.2000, 0.6000], + [0.2000, 0.6000], + [0.6000, 0.6000], + [1.0000, 0.6000] + ], + [ + [-1.0000, 1.0000], + [-0.6000, 1.0000], + [-0.2000, 1.0000], + [0.2000, 1.0000], + [0.6000, 1.0000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 6, 6] + Y = np.array( + [ + [ + [ + [0.0000, 0.1500, 0.5500, 0.9500, 1.3500, 0.7500], + [0.6000, 1.5000, 2.3000, 3.1000, 3.9000, 2.1000], + [2.2000, 4.7000, 5.5000, 6.3000, 7.1000, 3.7000], + [3.8000, 7.9000, 8.7000, 9.5000, 10.3000, 5.3000], + [5.4000, 11.1000, 11.9000, 12.7000, 13.5000, 6.9000], + [3.0000, 6.1500, 6.5500, 6.9500, 7.3500, 3.7500] + ] + ] + ], + dtype=np.float32, + ) + expect(node, inputs=[X, Grid], outputs=[Y], + name='test_gridsample') + + @staticmethod + def export_gridsample_paddingmode() -> None: + # X shape, [N, C, H, W] - [1, 1, 3, 2] + X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, + ) + # Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] + Grid = np.array( + [ + [ + [ + [-10.0000, -10.0000], + [-5.0000, -5.0000], + [-0.2000, -0.2000], + [10.0000, 10.0000] + ], + + [ + [10.0000, 10.0000], + [-0.2000, -0.2000], + [5.0000, 5.0000], + [10.0000, 10.0000] + ] + ] + ], + dtype=np.float32, + ) + + # setting padding_mode = 'zeros' + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='zeros', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_zeros = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 0.0000], + [0.0000, 1.7000, 0.0000, 0.0000] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_zeros], + name='test_gridsample_zeros_padding') + + # setting padding_mode = 'border' + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='border', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_border = np.array( + [ + [ + [ + [0.0000, 0.0000, 1.7000, 5.0000], + [5.0000, 1.7000, 5.0000, 5.0000] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_border], + name='test_gridsample_border_padding') + + # setting padding_mode = 'reflection' + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + padding_mode='reflection', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_reflection = np.array( + [ + [ + [ + [2.5000, 0.0000, 1.7000, 2.5000], + [2.5000, 1.7000, 5.0000, 2.5000] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_reflection], + name='test_gridsample_reflection_padding') + + @staticmethod + def export_gridsample_mode_aligncorners() -> None: + # X shape, [N, C, H, W] - [1, 1, 3, 2] + X = np.array( + [ + [ + [ + [0., 1.], + [2., 3.], + [4., 5.] + ] + ] + ], + dtype=np.float32, + ) + # Grid shape, [N, H_out, W_out, 2] - [1, 2, 4, 2] + Grid = np.array( + [ + [ + [ + [-1.0000, -1.0000], + [-0.5000, -0.5000], + [-0.2000, -0.2000], + [0.0000, 0.0000] + ], + + [ + [0.0000, 0.0000], + [-0.2000, -0.2000], + [0.5000, 0.5000], + [1.0000, 1.0000] + ] + ] + ], + dtype=np.float32, + ) + + # setting mode = 'bilinear', default align_corners = 0 + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_bilinear = np.array( + [ + [ + [ + [0.0000, 0.5000, 1.7000, 2.5000], + [2.5000, 1.7000, 4.5000, 1.2500] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_bilinear], + name='test_gridsample_bilinear') + + # setting mode = 'bilinear', align_corners = 1 + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + align_corners=1, + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_align_corners = np.array( + [ + [ + [ + [0.0000, 1.2500, 2.0000, 2.5000], + [2.5000, 2.0000, 3.7500, 5.0000] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_align_corners], + name='test_gridsample_aligncorners_true') + + # setting mode = 'nearest' + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='nearest', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_nearest = np.array( + [ + [ + [ + [0., 0., 2., 2.], + [2., 2., 5., 0.] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_nearest], + name='test_gridsample_nearest') + + # setting mode = 'bicubic' + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bicubic', + ) + # Y shape, [N, C, H_out, W_out] - [1, 1, 2, 4] + Y_bicubic = np.array( + [ + [ + [ + [-0.1406, 0.3828, 1.7556, 2.9688], + [2.9688, 1.7556, 5.1445, 1.3906] + ] + ] + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, Grid], outputs=[Y_bicubic], + name='test_gridsample_bicubic') + + ''' + For someone who want to test by script. Comment it cause github ONNX CI + do not have the torch python package. + @staticmethod + def export_gridsample_torch(): # type: () -> None + node = onnx.helper.make_node( + 'GridSample', + inputs=['X', 'Grid'], + outputs=['Y'], + mode='bilinear', + padding_mode='zeros', + align_corners=0, + ) + + # X shape, [N, C, H, W] - [1, 1, 4, 4] + # Grid shape, [N, H_out, W_out, 2] - [1, 6, 6, 2] + # Y shape, [N, C, H_out, W_out] - [1, 1, 6, 6] + import torch + X = torch.arange(3 * 3).view(1, 1, 3, 3).float() + d = torch.linspace(-1, 1, 6) + meshx, meshy = torch.meshgrid((d, d)) + grid = torch.stack((meshy, meshx), 2) + Grid = grid.unsqueeze(0) + Y = torch.nn.functional.grid_sample(X, Grid, mode='bilinear', + padding_mode='zeros', align_corners=False) + expect(node, inputs=[X.numpy(), Grid.numpy()], outputs=[Y.numpy()], + name='test_gridsample_torch') + ''' diff --git a/third_party/onnx/onnx/backend/test/case/node/gru.py b/third_party/onnx/onnx/backend/test/case/node/gru.py new file mode 100644 index 0000000000..feafc1cd4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/gru.py @@ -0,0 +1,207 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Any, Tuple + +import onnx +from ..base import Base +from . import expect + + +class GRU_Helper(): + def __init__(self, **params: Any) -> None: + # GRU Input Names + X = str('X') + W = str('W') + R = str('R') + B = str('B') + H_0 = str('initial_h') + LBR = str('linear_before_reset') + LAYOUT = str('layout') + number_of_gates = 3 + + required_inputs = [X, W, R] + for i in required_inputs: + assert i in params, "Missing Required Input: {0}".format(i) + + self.num_directions = params[W].shape[0] + + if self.num_directions == 1: + for k in params.keys(): + if k != X: + params[k] = np.squeeze(params[k], axis=0) + + hidden_size = params[R].shape[-1] + batch_size = params[X].shape[1] + + layout = params[LAYOUT] if LAYOUT in params else 0 + x = params[X] + x = x if layout == 0 else np.swapaxes(x, 0, 1) + b = params[B] if B in params else np.zeros(2 * number_of_gates * hidden_size) + h_0 = params[H_0] if H_0 in params else np.zeros((batch_size, hidden_size)) + lbr = params[LBR] if LBR in params else 0 + + self.X = x + self.W = params[W] + self.R = params[R] + self.B = b + self.H_0 = h_0 + self.LBR = lbr + self.LAYOUT = layout + + else: + raise NotImplementedError() + + def f(self, x: np.ndarray) -> np.ndarray: + return 1 / (1 + np.exp(-x)) + + def g(self, x: np.ndarray) -> np.ndarray: + return np.tanh(x) + + def step(self) -> Tuple[np.ndarray, np.ndarray]: + seq_length = self.X.shape[0] + hidden_size = self.H_0.shape[-1] + batch_size = self.X.shape[1] + + Y = np.empty([seq_length, self.num_directions, batch_size, hidden_size]) + h_list = [] + + [w_z, w_r, w_h] = np.split(self.W, 3) + [r_z, r_r, r_h] = np.split(self.R, 3) + [w_bz, w_br, w_bh, r_bz, r_br, r_bh] = np.split(self.B, 6) + gates_w = np.transpose(np.concatenate((w_z, w_r))) + gates_r = np.transpose(np.concatenate((r_z, r_r))) + gates_b = np.add(np.concatenate((w_bz, w_br)), np.concatenate((r_bz, r_br))) + + H_t = self.H_0 + for x in np.split(self.X, self.X.shape[0], axis=0): + gates = np.dot(x, gates_w) + np.dot(H_t, gates_r) + gates_b + z, r = np.split(gates, 2, -1) + z = self.f(z) + r = self.f(r) + h_default = self.g(np.dot(x, np.transpose(w_h)) + np.dot(r * H_t, np.transpose(r_h)) + w_bh + r_bh) + h_linear = self.g(np.dot(x, np.transpose(w_h)) + r * (np.dot(H_t, np.transpose(r_h)) + r_bh) + w_bh) + h = h_linear if self.LBR else h_default + H = (1 - z) * h + z * H_t + h_list.append(H) + H_t = H + + concatenated = np.concatenate(h_list) + if self.num_directions == 1: + Y[:, 0, :, :] = concatenated + + if self.LAYOUT == 0: + Y_h = Y[-1] + else: + Y = np.transpose(Y, [2, 0, 1, 3]) + Y_h = Y[:, :, -1, :] + + return Y, Y_h + + +class GRU(Base): + + @staticmethod + def export_defaults() -> None: + input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 5 + weight_scale = 0.1 + number_of_gates = 3 + + node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + gru = GRU_Helper(X=input, W=W, R=R) + _, Y_h = gru.step() + expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_gru_defaults') + + @staticmethod + def export_initial_bias() -> None: + input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + + input_size = 3 + hidden_size = 3 + weight_scale = 0.1 + custom_bias = 0.1 + number_of_gates = 3 + + node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + # Adding custom bias + W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) + R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) + B = np.concatenate((W_B, R_B), axis=1) + + gru = GRU_Helper(X=input, W=W, R=R, B=B) + _, Y_h = gru.step() + expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_with_initial_bias') + + @staticmethod + def export_seq_length() -> None: + input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + + input_size = 3 + hidden_size = 5 + number_of_gates = 3 + + node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = np.random.randn(1, number_of_gates * hidden_size, input_size).astype(np.float32) + R = np.random.randn(1, number_of_gates * hidden_size, hidden_size).astype(np.float32) + + # Adding custom bias + W_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) + R_B = np.random.randn(1, number_of_gates * hidden_size).astype(np.float32) + B = np.concatenate((W_B, R_B), axis=1) + + gru = GRU_Helper(X=input, W=W, R=R, B=B) + _, Y_h = gru.step() + expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_gru_seq_length') + + @staticmethod + def export_batchwise() -> None: + input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 6 + number_of_gates = 3 + weight_scale = 0.2 + layout = 1 + + node = onnx.helper.make_node( + 'GRU', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + gru = GRU_Helper(X=input, W=W, R=R, layout=layout) + Y, Y_h = gru.step() + expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_gru_batchwise') diff --git a/third_party/onnx/onnx/backend/test/case/node/hardmax.py b/third_party/onnx/onnx/backend/test/case/node/hardmax.py new file mode 100644 index 0000000000..8f60376a12 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/hardmax.py @@ -0,0 +1,95 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def hardmax(x: np.ndarray, axis: int = -1) -> np.ndarray: + x_argmax = np.argmax(x, axis=axis) + y = np.zeros_like(x) + np.put_along_axis(y, np.expand_dims(x_argmax, axis=axis), 1, axis=axis) + return y + + +class Hardmax(Base): + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([[3, 0, 1, 2], [2, 5, 1, 0], [0, 1, 3, 2], + [0, 1, 2, 3]]).astype(np.float32) + # expect result: + # [[1. 0. 0. 0.] + # [0. 1. 0. 0.] + # [0. 0. 1. 0.] + # [0. 0. 0. 1.]] + y = hardmax(x) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_example') + + # For multiple occurrences of the maximal values, the first occurrence is selected for one-hot output + x = np.array([[3, 3, 3, 1]]).astype(np.float32) + # expect result: + # [[1, 0, 0, 0]] + y = hardmax(x) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_one_hot') + + @staticmethod + def export_hardmax_axis() -> None: + x = np.random.randn(3, 4, 5).astype(np.float32) + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=0, + ) + y = hardmax(x, axis=0) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_0') + + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=1, + ) + y = hardmax(x, axis=1) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_1') + + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=2, + ) + y = hardmax(x, axis=2) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_axis_2') + + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + axis=-1, + ) + y = hardmax(x, axis=-1) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_negative_axis') + + # default axis is -1 + node = onnx.helper.make_node( + 'Hardmax', + inputs=['x'], + outputs=['y'], + ) + expect(node, inputs=[x], outputs=[y], + name='test_hardmax_default_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/hardsigmoid.py b/third_party/onnx/onnx/backend/test/case/node/hardsigmoid.py new file mode 100644 index 0000000000..13dd637a46 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/hardsigmoid.py @@ -0,0 +1,44 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class HardSigmoid(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], + alpha=0.5, + beta=0.6 + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.clip(x * 0.5 + 0.6, 0, 1) # expected output [0.1, 0.6, 1.] + expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x * 0.5 + 0.6, 0, 1) + expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid') + + @staticmethod + def export_hardsigmoid_default() -> None: + default_alpha = 0.2 + default_beta = 0.5 + node = onnx.helper.make_node( + 'HardSigmoid', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x * default_alpha + default_beta, 0, 1) + expect(node, inputs=[x], outputs=[y], + name='test_hardsigmoid_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/hardswish.py b/third_party/onnx/onnx/backend/test/case/node/hardswish.py new file mode 100644 index 0000000000..c13b7e27af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/hardswish.py @@ -0,0 +1,29 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def hardswish(x: np.ndarray) -> np.ndarray: + alfa = float(1 / 6) + beta = 0.5 + return x * np.maximum(0, np.minimum(1, alfa * x + beta)) + + +class HardSwish(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'HardSwish', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = hardswish(x) + + expect(node, inputs=[x], outputs=[y], + name='test_hardswish') diff --git a/third_party/onnx/onnx/backend/test/case/node/identity.py b/third_party/onnx/onnx/backend/test/case/node/identity.py new file mode 100644 index 0000000000..81277224c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/identity.py @@ -0,0 +1,65 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Identity(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + expect(node, inputs=[data], outputs=[data], + name='test_identity') + + @staticmethod + def export_sequence() -> None: + node = onnx.helper.make_node( + 'Identity', + inputs=['x'], + outputs=['y'], + ) + + data = [ + np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32), + np.array([[[ + [2, 3], + [1, 5], + ]]], dtype=np.float32)] + + expect(node, inputs=[data], outputs=[data], name='test_identity_sequence') + + @staticmethod + def export_identity_opt() -> None: + ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) + seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) + opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) + + identity_node = onnx.helper.make_node( + 'Identity', + inputs=['opt_in'], + outputs=['opt_out'] + ) + + x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] + + expect(identity_node, inputs=[x], outputs=[x], name='test_identity_opt', + opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[opt_in_tp], + output_type_protos=[opt_in_tp]) diff --git a/third_party/onnx/onnx/backend/test/case/node/if.py b/third_party/onnx/onnx/backend/test/case/node/if.py new file mode 100644 index 0000000000..61610f0700 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/if.py @@ -0,0 +1,207 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def compute_if_outputs(x, cond): # type: ignore + if cond: + return [] + else: + return x + + +class If(Base): + @staticmethod + def export_if() -> None: + # Given a bool scalar input cond. + # return constant tensor x if cond is True, otherwise return constant tensor y. + + then_out = onnx.helper.make_tensor_value_info('then_out', onnx.TensorProto.FLOAT, [5]) + else_out = onnx.helper.make_tensor_value_info('else_out', onnx.TensorProto.FLOAT, [5]) + + x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + y = np.array([5, 4, 3, 2, 1]).astype(np.float32) + + then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['then_out'], + value=onnx.numpy_helper.from_array(x) + ) + + else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['else_out'], + value=onnx.numpy_helper.from_array(y) + ) + + then_body = onnx.helper.make_graph( + [then_const_node], + 'then_body', + [], + [then_out] + ) + + else_body = onnx.helper.make_graph( + [else_const_node], + 'else_body', + [], + [else_out] + ) + + if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body + ) + + cond = np.array(1).astype(bool) + res = x if cond else y + expect(if_node, inputs=[cond], outputs=[res], name='test_if', + opset_imports=[onnx.helper.make_opsetid("", 11)]) + + @staticmethod + def export_if_seq() -> None: + # Given a bool scalar input cond. + # return constant sequence x if cond is True, otherwise return constant sequence y. + + then_out = onnx.helper.make_tensor_sequence_value_info('then_out', onnx.TensorProto.FLOAT, shape=[5]) + else_out = onnx.helper.make_tensor_sequence_value_info('else_out', onnx.TensorProto.FLOAT, shape=[5]) + + x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] + y = [np.array([5, 4, 3, 2, 1]).astype(np.float32)] + + then_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) + ) + + then_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['then_out'] + ) + + else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['y'], + value=onnx.numpy_helper.from_array(y[0]) + ) + + else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['y'], + outputs=['else_out'] + ) + + then_body = onnx.helper.make_graph( + [then_const_node, then_seq_node], + 'then_body', + [], + [then_out] + ) + + else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node], + 'else_body', + [], + [else_out] + ) + + if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['res'], + then_branch=then_body, + else_branch=else_body + ) + + cond = np.array(1).astype(bool) + res = x if cond else y + expect(if_node, inputs=[cond], outputs=[res], name='test_if_seq', + opset_imports=[onnx.helper.make_opsetid("", 13)]) + + @staticmethod + def export_if_optional() -> None: + # Given a bool scalar input cond, return an empty optional sequence of + # tensor if True, return an optional sequence with value x + # (the input optional sequence) otherwise. + + ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) + seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) + + then_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) + then_out_seq_tp = onnx.helper.make_sequence_type_proto(then_out_tensor_tp) + then_out_opt_tp = onnx.helper.make_optional_type_proto(then_out_seq_tp) + then_out = onnx.helper.make_value_info('optional_empty', then_out_opt_tp) + + else_out_tensor_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, shape=[5]) + else_out_seq_tp = onnx.helper.make_sequence_type_proto(else_out_tensor_tp) + else_out_opt_tp = onnx.helper.make_optional_type_proto(else_out_seq_tp) + else_out = onnx.helper.make_value_info('else_opt', else_out_opt_tp) + + x = [np.array([1, 2, 3, 4, 5]).astype(np.float32)] + cond = np.array(0).astype(bool) + res = compute_if_outputs(x, cond) + + opt_empty_in = onnx.helper.make_node( + 'Optional', + inputs=[], + outputs=['optional_empty'], + type=seq_in_tp + ) + + then_body = onnx.helper.make_graph( + [opt_empty_in], + 'then_body', + [], + [then_out] + ) + + else_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.numpy_helper.from_array(x[0]) + ) + + else_seq_node = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['x'], + outputs=['else_seq'] + ) + + else_optional_seq_node = onnx.helper.make_node( + 'Optional', + inputs=['else_seq'], + outputs=['else_opt'] + ) + + else_body = onnx.helper.make_graph( + [else_const_node, else_seq_node, else_optional_seq_node], + 'else_body', + [], + [else_out] + ) + + if_node = onnx.helper.make_node( + 'If', + inputs=['cond'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body + ) + + expect(if_node, inputs=[cond], outputs=[res], name='test_if_opt', + output_type_protos=[else_out_opt_tp], + opset_imports=[onnx.helper.make_opsetid("", 16)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/instancenorm.py b/third_party/onnx/onnx/backend/test/case/node/instancenorm.py new file mode 100644 index 0000000000..10689016ed --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/instancenorm.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class InstanceNormalization(Base): + + @staticmethod + def export() -> None: + def _instancenorm_test_mode(x, s, bias, epsilon=1e-5): # type: ignore + dims_x = len(x.shape) + axis = tuple(range(2, dims_x)) + mean = np.mean(x, axis=axis, keepdims=True) + var = np.var(x, axis=axis, keepdims=True) + dim_ones = (1,) * (dims_x - 2) + s = s.reshape(-1, *dim_ones) + bias = bias.reshape(-1, *dim_ones) + return s * (x - mean) / np.sqrt(var + epsilon) + bias + + # input size: (1, 2, 1, 3) + x = np.array([[[[-1, 0, 1]], [[2, 3, 4]]]]).astype(np.float32) + s = np.array([1.0, 1.5]).astype(np.float32) + bias = np.array([0, 1]).astype(np.float32) + y = _instancenorm_test_mode(x, s, bias).astype(np.float32) + + node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], + ) + + # output size: (1, 2, 1, 3) + expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_example') + + # input size: (2, 3, 4, 5) + x = np.random.randn(2, 3, 4, 5).astype(np.float32) + s = np.random.randn(3).astype(np.float32) + bias = np.random.randn(3).astype(np.float32) + epsilon = 1e-2 + y = _instancenorm_test_mode(x, s, bias, epsilon).astype(np.float32) + + node = onnx.helper.make_node( + 'InstanceNormalization', + inputs=['x', 's', 'bias'], + outputs=['y'], + epsilon=epsilon, + ) + + # output size: (2, 3, 4, 5) + expect(node, inputs=[x, s, bias], outputs=[y], + name='test_instancenorm_epsilon') diff --git a/third_party/onnx/onnx/backend/test/case/node/isinf.py b/third_party/onnx/onnx/backend/test/case/node/isinf.py new file mode 100644 index 0000000000..21680ee412 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/isinf.py @@ -0,0 +1,48 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class IsInf(Base): + + @staticmethod + def export_infinity() -> None: + node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1.2, np.nan, np.inf, 2.8, np.NINF, np.inf], + dtype=np.float32) + y = np.isinf(x) + expect(node, inputs=[x], outputs=[y], name='test_isinf') + + @staticmethod + def export_positive_infinity_only() -> None: + node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_negative=0 + ) + + x = np.array([-1.7, np.nan, np.inf, 3.6, np.NINF, np.inf], + dtype=np.float32) + y = np.isposinf(x) + expect(node, inputs=[x], outputs=[y], name='test_isinf_positive') + + @staticmethod + def export_negative_infinity_only() -> None: + node = onnx.helper.make_node('IsInf', + inputs=['x'], + outputs=['y'], + detect_positive=0 + ) + + x = np.array([-1.7, np.nan, np.inf, -3.6, np.NINF, np.inf], + dtype=np.float32) + y = np.isneginf(x) + expect(node, inputs=[x], outputs=[y], name='test_isinf_negative') diff --git a/third_party/onnx/onnx/backend/test/case/node/isnan.py b/third_party/onnx/onnx/backend/test/case/node/isnan.py new file mode 100644 index 0000000000..0c7104f61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/isnan.py @@ -0,0 +1,22 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class IsNaN(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'IsNaN', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([3.0, np.nan, 4.0, np.nan], dtype=np.float32) + y = np.isnan(x) + expect(node, inputs=[x], outputs=[y], name='test_isnan') diff --git a/third_party/onnx/onnx/backend/test/case/node/layernormalization.py b/third_party/onnx/onnx/backend/test/case/node/layernormalization.py new file mode 100644 index 0000000000..0bafa7a10e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/layernormalization.py @@ -0,0 +1,173 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +# Layer normalization's reference implementation +def _layer_normalization(X, W, B, axis=-1, epsilon=1e-5): # type: ignore + X_shape = X.shape + X_rank = len(X_shape) + if axis < 0: + # If axis = -1 and rank of X is 4, + # the axis is changed to -1 + 4 = 3, + # which means the last axis. + axis = axis + X_rank + unsqueezed_rank = X_rank - axis + reduction_shape = X_shape[0:axis] + (1,) * unsqueezed_rank + + # Parameter used to convert N-D tensor layer + # normalization to equivalent 2-D matirx operations. + row_number = 1 + col_number = 1 + for i in range(X_rank): + if i < axis: + row_number *= X_shape[i] + else: + col_number *= X_shape[i] + + # After reshaping input tensor X into a matrix, + # layer normalization is equivalent to conducting + # standardization on each column vector (s.t. each + # column has zero mean and unit variance). + x_mat = np.reshape(X, (row_number, col_number)) + # This computes mean for every x_mat's column. + x_mean = np.sum(x_mat, axis=1, keepdims=True) / col_number + x_diff = x_mat - x_mean + x_squared_diff = x_diff * x_diff + # This computes variance for every x_mat's column. + variance = np.sum(x_squared_diff, axis=1, keepdims=True) / col_number + variance_eps = variance + epsilon + std_dev = np.sqrt(variance_eps) + inv_std_dev = np.reciprocal(std_dev) + # Standardization step. y_mat is zero-mean and unit-variance. + y_mat = x_diff * inv_std_dev + # Apply affine transform on normalization outcome. + # W is linear coefficient while B is bias. + Y = np.reshape(y_mat, X_shape) * W + B + # Matrix-level operations' outputs should be reshaped + # to compensate the initial tensor-to-matrix reshape. + X_mean = np.reshape(x_mean, reduction_shape) + X_inv_std_dev = np.reshape(inv_std_dev, reduction_shape) + + return Y, X_mean, X_inv_std_dev + + +def calculate_normalized_shape(X_shape, axis): # type: ignore + X_rank = len(X_shape) + if axis < 0: + axis = axis + X_rank + return X_shape[axis:] + + +class LayerNormalization(Base): + @staticmethod + def export() -> None: + X = np.random.randn(2, 3, 4, 5).astype(np.float32) + + def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_4d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_4d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + + for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) + + @staticmethod + def export_default_axis() -> None: + X = np.random.randn(2, 3, 4, 5).astype(np.float32) + + # Default axis in LayerNormalization is -1. + normalized_shape = calculate_normalized_shape(X.shape, -1) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + # Axis is default to -1 in the reference implementation. + Y, mean, inv_std_dev = _layer_normalization(X, W, B) + + # Not specifying axis attribute means -1. + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'] + ) + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name='test_layer_normalization_default_axis') + + @staticmethod + def export2d() -> None: + X = np.random.randn(3, 4).astype(np.float32) + + def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis=axis) + + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + ) + + if axis < 0: + name = f'test_layer_normalization_2d_axis_negative_{-axis}' + else: + name = f'test_layer_normalization_2d_axis{axis}' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + + for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) + + @staticmethod + def export3d_epsilon() -> None: + X = np.random.randn(2, 3, 5).astype(np.float32) + + def case(axis: int) -> None: + normalized_shape = calculate_normalized_shape(X.shape, axis) + W = np.random.randn(*normalized_shape).astype(np.float32) + B = np.random.randn(*normalized_shape).astype(np.float32) + Y, mean, inv_std_dev = _layer_normalization(X, W, B, axis) + node = onnx.helper.make_node( + 'LayerNormalization', + inputs=['X', 'W', 'B'], + outputs=['Y', 'Mean', 'InvStdDev'], + axis=axis, + epsilon=1e-1 + ) + + if axis < 0: + name = f'test_layer_normalization_3d_axis_negative_{-axis}_epsilon' + else: + name = f'test_layer_normalization_3d_axis{axis}_epsilon' + + expect(node, inputs=[X, W, B], outputs=[Y, mean, inv_std_dev], + name=name) + + for i in range(len(X.shape)): + case(i) + case(i - len(X.shape)) diff --git a/third_party/onnx/onnx/backend/test/case/node/leakyrelu.py b/third_party/onnx/onnx/backend/test/case/node/leakyrelu.py new file mode 100644 index 0000000000..b8e448e1a4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/leakyrelu.py @@ -0,0 +1,43 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class LeakyRelu(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], + alpha=0.1 + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + # expected output [-0.1, 0., 1.] + y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 + expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * 0.1 + expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu') + + @staticmethod + def export_leakyrelu_default() -> None: + default_alpha = 0.01 + node = onnx.helper.make_node( + 'LeakyRelu', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * default_alpha + expect(node, inputs=[x], outputs=[y], + name='test_leakyrelu_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/less.py b/third_party/onnx/onnx/backend/test/case/node/less.py new file mode 100644 index 0000000000..8560c99d6b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/less.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Less(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = np.less(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_less') + + @staticmethod + def export_less_broadcast() -> None: + node = onnx.helper.make_node( + 'Less', + inputs=['x', 'y'], + outputs=['less'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = np.less(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_less_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/less_equal.py b/third_party/onnx/onnx/backend/test/case/node/less_equal.py new file mode 100644 index 0000000000..4cf9ea72b2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/less_equal.py @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Less(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = np.less_equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal') + + @staticmethod + def export_less_broadcast() -> None: + node = onnx.helper.make_node( + 'LessOrEqual', + inputs=['x', 'y'], + outputs=['less_equal'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = np.less_equal(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_less_equal_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/log.py b/third_party/onnx/onnx/backend/test/case/node/log.py new file mode 100644 index 0000000000..69e030f094 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/log.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Log(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Log', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([1, 10]).astype(np.float32) + y = np.log(x) # expected output [0., 2.30258512] + expect(node, inputs=[x], outputs=[y], + name='test_log_example') + + x = np.exp(np.random.randn(3, 4, 5).astype(np.float32)) + y = np.log(x) + expect(node, inputs=[x], outputs=[y], + name='test_log') diff --git a/third_party/onnx/onnx/backend/test/case/node/logsoftmax.py b/third_party/onnx/onnx/backend/test/case/node/logsoftmax.py new file mode 100644 index 0000000000..c1f7f3b756 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/logsoftmax.py @@ -0,0 +1,98 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def logsoftmax(x: np.ndarray, axis: int = -1) -> np.ndarray: + x_max = np.max(x, axis=axis, keepdims=True) + tmp = np.exp(x - x_max) + s = np.sum(tmp, axis=axis, keepdims=True) + return (x - x_max) - np.log(s) + + +class LogSoftmax(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + ) + x = np.array([[-1, 0, 1]]).astype(np.float32) + # expected output + # [[-2.4076061 -1.407606 -0.407606 ]] + y = logsoftmax(x) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_example_1') + + @staticmethod + def export_logsoftmax_axis() -> None: + x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) + # expected output + # [[-3.4401896 -2.4401896 -1.4401896 -0.44018966] + # [-3.4401896 -2.4401896 -1.4401896 -0.44018966]] + y = logsoftmax(x) + + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + ) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_large_number') + + x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=0, + ) + y = logsoftmax(x, axis=0) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_0') + + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=1, + ) + y = logsoftmax(x, axis=1) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_1') + + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=2, + ) + y = logsoftmax(x, axis=2) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_axis_2') + + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + axis=-1, + ) + y = logsoftmax(x, axis=-1) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_negative_axis') + + # default axis is -1 + node = onnx.helper.make_node( + 'LogSoftmax', + inputs=['x'], + outputs=['y'], + ) + expect(node, inputs=[x], outputs=[y], + name='test_logsoftmax_default_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/loop.py b/third_party/onnx/onnx/backend/test/case/node/loop.py new file mode 100644 index 0000000000..c67b23fb33 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/loop.py @@ -0,0 +1,426 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import List, Any + +import onnx +from ..base import Base +from . import expect + + +def compute_loop_outputs(x, seq, trip_count): # type: ignore + for i in range(trip_count): + if seq is None: + seq = [] + seq += [x[:int(i + 1)]] + return seq + + +class Loop(Base): + + @staticmethod + def export_loop_11() -> None: + # Given a tensor x of values [x1, ..., xN], and initial tensor y + # sum up its elements using a scan + # returning the final state (y+x1+x2+...+xN) as well the scan_output + # [y+x1, y+x1+x2, ..., y+x1+x2+...+xN] + + y_in = onnx.helper.make_tensor_value_info('y_in', onnx.TensorProto.FLOAT, [1]) + y_out = onnx.helper.make_tensor_value_info('y_out', onnx.TensorProto.FLOAT, [1]) + scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [1]) + cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) + cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) + iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + + x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + y = np.array([-2]).astype(np.float32) + + x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) + ) + + one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) + ) + + i_add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] + ) + + start_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['iter_count'], + outputs=['slice_start'], + axes=[0] + ) + + end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end'], + outputs=['slice_end'], + axes=[0] + ) + + slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] + ) + + y_add_node = onnx.helper.make_node( + 'Add', + inputs=['y_in', 'slice_out'], + outputs=['y_out'] + ) + + identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] + ) + + scan_identity_node = onnx.helper.make_node( + 'Identity', + inputs=['y_out'], + outputs=['scan_out'] + ) + + loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, i_add_node, + start_unsqueeze_node, end_unsqueeze_node, slice_node, y_add_node, + scan_identity_node], + 'loop_body', + [iter_count, cond_in, y_in], + [cond_out, y_out, scan_out] + ) + + node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'y'], + outputs=['res_y', 'res_scan'], + body=loop_body + ) + + trip_count = np.array(5).astype(np.int64) + res_y = np.array([13]).astype(np.float32) + cond = np.array(1).astype(bool) + res_scan = np.array([-1, 1, 4, 8, 13]).astype(np.float32).reshape((5, 1)) + expect(node, inputs=[trip_count, cond, y], outputs=[res_y, res_scan], + name='test_loop11', opset_imports=[onnx.helper.make_opsetid("", 11)]) + + @staticmethod + def export_loop_13() -> None: + # Given a tensor x of values [x1, ..., xN], + # Return a sequence of tensors of + # [[x1], [x1, x2], ..., [x1, ..., xN]] + + seq_in = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, None) + seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, None) + cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) + cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) + iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + + x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + + x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) + ) + + one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) + ) + + zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) + ) + + axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) + ) + + add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] + ) + + end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] + ) + + slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] + ) + + insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['seq_in', 'slice_out'], + outputs=['seq_out'] + ) + + identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] + ) + + loop_body = onnx.helper.make_graph( + [identity_node, x_const_node, one_const_node, zero_const_node, add_node, + axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, seq_in], + [cond_out, seq_out] + ) + + node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'seq_empty'], + outputs=['seq_res'], + body=loop_body + ) + + trip_count = np.array(5).astype(np.int64) + seq_empty: List[Any] = [] + seq_res = [x[:int(i)] for i in x] + cond = np.array(1).astype(bool) + expect(node, inputs=[trip_count, cond, seq_empty], outputs=[seq_res], + name='test_loop13_seq', opset_imports=[onnx.helper.make_opsetid("", 13)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []))]) + + @staticmethod + def export_loop_16_none() -> None: + # Given a tensor sequence of values [x1, ..., xN], and an initial optional sequence of tensors [x0], + # Return a concatenated sequence of tensors of + # [x0, [x1], [x1, x2], ..., [x1, ..., xN]] + + ten_in_tp = onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, []) + seq_in_tp = onnx.helper.make_sequence_type_proto(ten_in_tp) + opt_in_tp = onnx.helper.make_optional_type_proto(seq_in_tp) + opt_in = onnx.helper.make_value_info('opt_seq_in', opt_in_tp) + seq_out = onnx.helper.make_tensor_sequence_value_info('seq_out', onnx.TensorProto.FLOAT, []) + cond_in = onnx.helper.make_tensor_value_info('cond_in', onnx.TensorProto.BOOL, []) + cond_out = onnx.helper.make_tensor_value_info('cond_out', onnx.TensorProto.BOOL, []) + iter_count = onnx.helper.make_tensor_value_info('iter_count', onnx.TensorProto.INT64, []) + + x0 = np.array(0).astype(np.float32) + x = np.array([1, 2, 3, 4, 5]).astype(np.float32) + + optional_has_elem_node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['opt_seq_in'], + outputs=['optional_has_elem'] + ) + + optional_is_none = onnx.helper.make_node( + 'Not', + inputs=['optional_has_elem'], + outputs=['optional_is_none'] + ) + + optional_get_elem = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['opt_seq_in'], + outputs=['seq_in'] + ) + + constant_in = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['constant_in'], + value=onnx.helper.make_tensor( + name='const_tensor', + data_type=onnx.TensorProto.FLOAT, + dims=(), + vals=[0] + ) + ) + + seq_const_in = onnx.helper.make_node( + 'SequenceConstruct', + inputs=['constant_in'], + outputs=['init_seq_in'] + ) + + then_seq_out = onnx.helper.make_tensor_sequence_value_info('init_seq_in', onnx.TensorProto.FLOAT, []) + then_body = onnx.helper.make_graph( + [constant_in, seq_const_in], + 'then_body', + [], + [then_seq_out] + ) + + else_seq_out = onnx.helper.make_tensor_sequence_value_info('seq_in', onnx.TensorProto.FLOAT, []) + else_body = onnx.helper.make_graph( + [optional_get_elem], + 'else_body', + [], + [else_seq_out] + ) + + if_node = onnx.helper.make_node( + 'If', + inputs=['optional_is_none'], + outputs=['sequence'], + then_branch=then_body, + else_branch=else_body + ) + + x_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['x'], + value=onnx.helper.make_tensor( + name='const_tensor_x', + data_type=onnx.TensorProto.FLOAT, + dims=x.shape, + vals=x.flatten().astype(float), + ) + ) + + one_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['one'], + value=onnx.helper.make_tensor( + name='const_tensor_one', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[1] + ) + ) + + zero_const_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['slice_start'], + value=onnx.helper.make_tensor( + name='const_tensor_zero', + data_type=onnx.TensorProto.INT64, + dims=(1,), + vals=[0] + ) + ) + + axes_node = onnx.helper.make_node( + 'Constant', + inputs=[], + outputs=['axes'], + value=onnx.helper.make_tensor( + name='const_tensor_axes', + data_type=onnx.TensorProto.INT64, + dims=(), + vals=[0] + ) + ) + + add_node = onnx.helper.make_node( + 'Add', + inputs=['iter_count', 'one'], + outputs=['end'] + ) + + end_unsqueeze_node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['end', 'axes'], + outputs=['slice_end'] + ) + + slice_node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'slice_start', 'slice_end'], + outputs=['slice_out'] + ) + + insert_node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'slice_out'], + outputs=['seq_out'] + ) + + identity_node = onnx.helper.make_node( + 'Identity', + inputs=['cond_in'], + outputs=['cond_out'] + ) + + loop_body = onnx.helper.make_graph( + [identity_node, optional_has_elem_node, optional_is_none, if_node, x_const_node, one_const_node, + zero_const_node, add_node, axes_node, end_unsqueeze_node, slice_node, insert_node], + 'loop_body', + [iter_count, cond_in, opt_in], + [cond_out, seq_out] + ) + + node = onnx.helper.make_node( + 'Loop', + inputs=['trip_count', 'cond', 'opt_seq'], + outputs=['seq_res'], + body=loop_body + ) + + trip_count = np.array(5).astype(np.int64) + cond = np.array(1).astype(bool) + seq_res = compute_loop_outputs(x, [x0], trip_count) + opt_seq_in: List[Any] = [x0] + expect(node, inputs=[trip_count, cond, opt_seq_in], outputs=[seq_res], + name='test_loop16_seq_none', opset_imports=[onnx.helper.make_opsetid("", 16)], + input_type_protos=[onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, trip_count.shape), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.BOOL, cond.shape), + opt_in_tp]) diff --git a/third_party/onnx/onnx/backend/test/case/node/lrn.py b/third_party/onnx/onnx/backend/test/case/node/lrn.py new file mode 100644 index 0000000000..3931810822 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/lrn.py @@ -0,0 +1,59 @@ +# SPDX-License-Identifier: Apache-2.0 + +import math +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class LRN(Base): + + @staticmethod + def export() -> None: + alpha = 0.0002 + beta = 0.5 + bias = 2.0 + nsize = 3 + node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + alpha=alpha, + beta=beta, + bias=bias, + size=nsize + ) + x = np.random.randn(5, 5, 5, 5).astype(np.float32) + square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) + for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) + y = x / ((bias + (alpha / nsize) * square_sum) ** beta) + expect(node, inputs=[x], outputs=[y], + name='test_lrn') + + @staticmethod + def export_default() -> None: + alpha = 0.0001 + beta = 0.75 + bias = 1.0 + nsize = 3 + node = onnx.helper.make_node( + 'LRN', + inputs=['x'], + outputs=['y'], + size=3 + ) + x = np.random.randn(5, 5, 5, 5).astype(np.float32) + square_sum = np.zeros((5, 5, 5, 5)).astype(np.float32) + for n, c, h, w in np.ndindex(x.shape): + square_sum[n, c, h, w] = sum(x[n, + max(0, c - int(math.floor((nsize - 1) / 2))):min(5, c + int(math.ceil((nsize - 1) / 2)) + 1), + h, + w] ** 2) + y = x / ((bias + (alpha / nsize) * square_sum) ** beta) + expect(node, inputs=[x], outputs=[y], + name='test_lrn_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/lstm.py b/third_party/onnx/onnx/backend/test/case/node/lstm.py new file mode 100644 index 0000000000..5cc68667a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/lstm.py @@ -0,0 +1,214 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Any, Tuple + +import onnx +from ..base import Base +from . import expect + + +class LSTM_Helper(): + def __init__(self, **params: Any) -> None: + # LSTM Input Names + X = str('X') + W = str('W') + R = str('R') + B = str('B') + H_0 = str('initial_h') + C_0 = str('initial_c') + P = str('P') + LAYOUT = str('layout') + number_of_gates = 4 + number_of_peepholes = 3 + + required_inputs = [X, W, R] + for i in required_inputs: + assert i in params, "Missing Required Input: {0}".format(i) + + self.num_directions = params[W].shape[0] + + if self.num_directions == 1: + for k in params.keys(): + if k != X: + params[k] = np.squeeze(params[k], axis=0) + + hidden_size = params[R].shape[-1] + batch_size = params[X].shape[1] + + layout = params[LAYOUT] if LAYOUT in params else 0 + x = params[X] + x = x if layout == 0 else np.swapaxes(x, 0, 1) + b = params[B] if B in params else np.zeros(2 * number_of_gates * hidden_size, dtype=np.float32) + p = params[P] if P in params else np.zeros(number_of_peepholes * hidden_size, dtype=np.float32) + h_0 = params[H_0] if H_0 in params else np.zeros((batch_size, hidden_size), dtype=np.float32) + c_0 = params[C_0] if C_0 in params else np.zeros((batch_size, hidden_size), dtype=np.float32) + + self.X = x + self.W = params[W] + self.R = params[R] + self.B = b + self.P = p + self.H_0 = h_0 + self.C_0 = c_0 + self.LAYOUT = layout + + else: + raise NotImplementedError() + + def f(self, x: np.ndarray) -> np.ndarray: + return 1 / (1 + np.exp(-x)) + + def g(self, x: np.ndarray) -> np.ndarray: + return np.tanh(x) + + def h(self, x: np.ndarray) -> np.ndarray: + return np.tanh(x) + + def step(self) -> Tuple[np.ndarray, np.ndarray]: + seq_length = self.X.shape[0] + hidden_size = self.H_0.shape[-1] + batch_size = self.X.shape[1] + + Y = np.empty([seq_length, self.num_directions, batch_size, hidden_size]) + h_list = [] + + [p_i, p_o, p_f] = np.split(self.P, 3) + H_t = self.H_0 + C_t = self.C_0 + for x in np.split(self.X, self.X.shape[0], axis=0): + gates = np.dot(x, np.transpose(self.W)) + np.dot(H_t, np.transpose(self.R)) + np.add( + *np.split(self.B, 2)) + i, o, f, c = np.split(gates, 4, -1) + i = self.f(i + p_i * C_t) + f = self.f(f + p_f * C_t) + c = self.g(c) + C = f * C_t + i * c + o = self.f(o + p_o * C) + H = o * self.h(C) + h_list.append(H) + H_t = H + C_t = C + + concatenated = np.concatenate(h_list) + if self.num_directions == 1: + Y[:, 0, :, :] = concatenated + + if self.LAYOUT == 0: + Y_h = Y[-1] + else: + Y = np.transpose(Y, [2, 0, 1, 3]) + Y_h = Y[:, :, -1, :] + + return Y, Y_h + + +class LSTM(Base): + + @staticmethod + def export_defaults() -> None: + input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 3 + weight_scale = 0.1 + number_of_gates = 4 + + node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + lstm = LSTM_Helper(X=input, W=W, R=R) + _, Y_h = lstm.step() + expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_lstm_defaults') + + @staticmethod + def export_initial_bias() -> None: + input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + + input_size = 3 + hidden_size = 4 + weight_scale = 0.1 + custom_bias = 0.1 + number_of_gates = 4 + + node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + # Adding custom bias + W_B = custom_bias * np.ones((1, number_of_gates * hidden_size)).astype(np.float32) + R_B = np.zeros((1, number_of_gates * hidden_size)).astype(np.float32) + B = np.concatenate((W_B, R_B), 1) + + lstm = LSTM_Helper(X=input, W=W, R=R, B=B) + _, Y_h = lstm.step() + expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_lstm_with_initial_bias') + + @staticmethod + def export_peepholes() -> None: + input = np.array([[[1., 2., 3., 4.], [5., 6., 7., 8.]]]).astype(np.float32) + + input_size = 4 + hidden_size = 3 + weight_scale = 0.1 + number_of_gates = 4 + number_of_peepholes = 3 + + node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R', 'B', 'sequence_lens', 'initial_h', 'initial_c', 'P'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + # Initializing Inputs + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + B = np.zeros((1, 2 * number_of_gates * hidden_size)).astype(np.float32) + seq_lens = np.repeat(input.shape[0], input.shape[1]).astype(np.int32) + init_h = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) + init_c = np.zeros((1, input.shape[1], hidden_size)).astype(np.float32) + P = weight_scale * np.ones((1, number_of_peepholes * hidden_size)).astype(np.float32) + + lstm = LSTM_Helper(X=input, W=W, R=R, B=B, P=P, initial_c=init_c, initial_h=init_h) + _, Y_h = lstm.step() + expect(node, inputs=[input, W, R, B, seq_lens, init_h, init_c, P], outputs=[Y_h.astype(np.float32)], + name='test_lstm_with_peepholes') + + @staticmethod + def export_batchwise() -> None: + input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 7 + weight_scale = 0.3 + number_of_gates = 4 + layout = 1 + + node = onnx.helper.make_node( + 'LSTM', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout + ) + + W = weight_scale * np.ones((1, number_of_gates * hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, number_of_gates * hidden_size, hidden_size)).astype(np.float32) + + lstm = LSTM_Helper(X=input, W=W, R=R, layout=layout) + Y, Y_h = lstm.step() + expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_lstm_batchwise') diff --git a/third_party/onnx/onnx/backend/test/case/node/matmul.py b/third_party/onnx/onnx/backend/test/case/node/matmul.py new file mode 100644 index 0000000000..e735f098c0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/matmul.py @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class MatMul(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'MatMul', + inputs=['a', 'b'], + outputs=['c'], + ) + + # 2d + a = np.random.randn(3, 4).astype(np.float32) + b = np.random.randn(4, 3).astype(np.float32) + c = np.matmul(a, b) + expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_2d') + + # 3d + a = np.random.randn(2, 3, 4).astype(np.float32) + b = np.random.randn(2, 4, 3).astype(np.float32) + c = np.matmul(a, b) + expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_3d') + + # 4d + a = np.random.randn(1, 2, 3, 4).astype(np.float32) + b = np.random.randn(1, 2, 4, 3).astype(np.float32) + c = np.matmul(a, b) + expect(node, inputs=[a, b], outputs=[c], + name='test_matmul_4d') diff --git a/third_party/onnx/onnx/backend/test/case/node/matmulinteger.py b/third_party/onnx/onnx/backend/test/case/node/matmulinteger.py new file mode 100644 index 0000000000..14b0c5991b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/matmulinteger.py @@ -0,0 +1,36 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class MatMulInteger(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('MatMulInteger', + inputs=['A', 'B', 'a_zero_point', 'b_zero_point'], + outputs=['Y'],) + + A = np.array([[11, 7, 3], + [10, 6, 2], + [9, 5, 1], + [8, 4, 0], ], dtype=np.uint8) + + a_zero_point = np.array([12], dtype=np.uint8) + + B = np.array([[1, 4], + [2, 5], + [3, 6], ], dtype=np.uint8) + + b_zero_point = np.array([0], dtype=np.uint8) + + output = np.array([[-38, -83], + [-44, -98], + [-50, -113], + [-56, -128], ], dtype=np.int32) + + expect(node, inputs=[A, B, a_zero_point, b_zero_point], outputs=[output], + name='test_matmulinteger') diff --git a/third_party/onnx/onnx/backend/test/case/node/max.py b/third_party/onnx/onnx/backend/test/case/node/max.py new file mode 100644 index 0000000000..7b2fb3674a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/max.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from ..utils import all_numeric_dtypes + + +class Max(Base): + + @staticmethod + def export() -> None: + data_0 = np.array([3, 2, 1]).astype(np.float32) + data_1 = np.array([1, 4, 4]).astype(np.float32) + data_2 = np.array([2, 5, 3]).astype(np.float32) + result = np.array([3, 5, 4]).astype(np.float32) + node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_max_example') + + node = onnx.helper.make_node( + 'Max', + inputs=['data_0'], + outputs=['result'], + ) + expect(node, inputs=[data_0], outputs=[data_0], + name='test_max_one_input') + + result = np.maximum(data_0, data_1) + node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_two_inputs') + + @staticmethod + def export_max_all_numeric_types() -> None: + for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([3, 4, 4]).astype(op_dtype) + node = onnx.helper.make_node( + 'Max', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_max_{0}'.format(np.dtype(op_dtype).name)) diff --git a/third_party/onnx/onnx/backend/test/case/node/maxpool.py b/third_party/onnx/onnx/backend/test/case/node/maxpool.py new file mode 100644 index 0000000000..62ec760c61 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/maxpool.py @@ -0,0 +1,417 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from .pool_op_common import get_output_shape, get_pad_shape, pool + + +class MaxPool(Base): + + @staticmethod + def export_maxpool_2d_uint8() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 5, 5] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.uint8) + y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.uint8) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_uint8') + + @staticmethod + def export_maxpool_2d_precomputed_pads() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 5, 5] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_pads') + + @staticmethod + def export_maxpool_with_argmax_2d_precomputed_pads() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 5, 5] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[5, 5], + pads=[2, 2, 2, 2] + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[ + [13, 14, 15, 15, 15], + [18, 19, 20, 20, 20], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25], + [23, 24, 25, 25, 25]]]]).astype(np.float32) + z = np.array([[[ + [12, 13, 14, 14, 14], + [17, 18, 19, 19, 19], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24], + [22, 23, 24, 24, 24]]]]).astype(np.int64) + + expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_pads') + + @staticmethod + def export_maxpool_2d_precomputed_strides() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_strides') + + @staticmethod + def export_maxpool_with_argmax_2d_precomputed_strides() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y', 'z'], + kernel_shape=[2, 2], + strides=[2, 2], + storage_order=1 + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[7, 9], + [17, 19]]]]).astype(np.float32) + z = np.array([[[[6, 16], + [8, 18]]]]).astype(np.int64) + + expect(node, inputs=[x], outputs=[y, z], name='test_maxpool_with_argmax_2d_precomputed_strides') + + @staticmethod + def export_maxpool_2d_precomputed_same_upper() -> None: + """ + input_shape: [1, 1, 5, 5] + output_shape: [1, 1, 3, 3] + pad_shape: [2, 2] -> [1, 1, 1, 1] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + auto_pad='SAME_UPPER' + ) + x = np.array([[[ + [1, 2, 3, 4, 5], + [6, 7, 8, 9, 10], + [11, 12, 13, 14, 15], + [16, 17, 18, 19, 20], + [21, 22, 23, 24, 25], + ]]]).astype(np.float32) + y = np.array([[[[7, 9, 10], + [17, 19, 20], + [22, 24, 25]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_precomputed_same_upper') + + @staticmethod + def export_maxpool_1d_default() -> None: + """ + input_shape: [1, 3, 32] + output_shape: [1, 3, 31] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2], + ) + x = np.random.randn(1, 3, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = [2] + strides = [1] + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0], 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_1d_default') + + @staticmethod + def export_maxpool_2d_default() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 31, 31] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_default') + + @staticmethod + def export_maxpool_3d_default() -> None: + """ + input_shape: [1, 3, 32, 32, 32] + output_shape: [1, 3, 31, 31, 31] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2, 2], + ) + x = np.random.randn(1, 3, 32, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = [2, 2, 2] + strides = [1, 1, 1] + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, [0, 0, 0], 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_3d_default') + + @staticmethod + def export_maxpool_2d_same_upper() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 32, 32] + pad_shape: [1, 1] -> [0, 1, 0, 1] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_UPPER' + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides) + pad_shape = get_pad_shape('SAME_UPPER', x_shape[2:], kernel_shape, strides, out_shape) + pad_top = pad_shape[0] // 2 + pad_bottom = pad_shape[0] - pad_top + pad_left = pad_shape[1] // 2 + pad_right = pad_shape[1] - pad_left + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_upper') + + @staticmethod + def export_maxpool_2d_same_lower() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 32, 32] + pad_shape: [1, 1] -> [1, 0, 1, 0] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + auto_pad='SAME_LOWER' + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (2, 2) + strides = (1, 1) + out_shape = get_output_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides) + pad_shape = get_pad_shape('SAME_LOWER', x_shape[2:], kernel_shape, strides, out_shape) + pad_bottom = pad_shape[0] // 2 + pad_top = pad_shape[0] - pad_bottom + pad_right = pad_shape[1] // 2 + pad_left = pad_shape[1] - pad_right + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_same_lower') + + @staticmethod + def export_maxpool_2d_pads() -> None: + """ + input_shape: [1, 3, 28, 28] + output_shape: [1, 3, 30, 30] + pad_shape: [4, 4] -> [2, 2, 2, 2] by axis + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + pads=[2, 2, 2, 2] + ) + x = np.random.randn(1, 3, 28, 28).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (3, 3) + strides = (1, 1) + pad_bottom = pad_top = pad_right = pad_left = 2 + pad_shape = [pad_top + pad_bottom, pad_left + pad_right] + out_shape = get_output_shape('VALID', np.add(x_shape[2:], pad_shape), kernel_shape, strides) + padded = np.pad(x, ((0, 0), (0, 0), (pad_top, pad_bottom), (pad_left, pad_right)), mode='constant', + constant_values=np.nan) + y = pool(padded, x_shape, kernel_shape, strides, out_shape, pad_shape, 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_pads') + + @staticmethod + def export_maxpool_2d_strides() -> None: + """ + input_shape: [1, 3, 32, 32] + output_shape: [1, 3, 10, 10] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[5, 5], + strides=[3, 3] + ) + x = np.random.randn(1, 3, 32, 32).astype(np.float32) + x_shape = np.shape(x) + kernel_shape = (5, 5) + strides = (3, 3) + out_shape = get_output_shape('VALID', x_shape[2:], kernel_shape, strides) + padded = x + y = pool(padded, x_shape, kernel_shape, strides, out_shape, (0, 0), 'MAX') + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_strides') + + @staticmethod + def export_maxpool_2d_ceil() -> None: + """ + input_shape: [1, 1, 4, 4] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[3, 3], + strides=[2, 2], + ceil_mode=True + ) + x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]]).astype(np.float32) + y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_ceil') + + @staticmethod + def export_maxpool_2d_dilations() -> None: + """ + input_shape: [1, 1, 4, 4] + output_shape: [1, 1, 2, 2] + """ + node = onnx.helper.make_node( + 'MaxPool', + inputs=['x'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[1, 1], + dilations=[2, 2] + ) + x = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]]).astype(np.float32) + y = np.array([[[ + [11, 12], + [15, 16]]]]).astype(np.float32) + + expect(node, inputs=[x], outputs=[y], name='test_maxpool_2d_dilations') diff --git a/third_party/onnx/onnx/backend/test/case/node/maxunpool.py b/third_party/onnx/onnx/backend/test/case/node/maxunpool.py new file mode 100644 index 0000000000..a3177e3662 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/maxunpool.py @@ -0,0 +1,50 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class MaxUnpool(Base): + + @staticmethod + def export_without_output_shape() -> None: + node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] + ) + xT = np.array([[[[1, 2], + [3, 4]]]], dtype=np.float32) + xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) + y = np.array([[[[0, 0, 0, 0], + [0, 1, 0, 2], + [0, 0, 0, 0], + [0, 3, 0, 4]]]], dtype=np.float32) + expect(node, inputs=[xT, xI], outputs=[y], name='test_maxunpool_export_without_output_shape') + + @staticmethod + def export_with_output_shape() -> None: + node = onnx.helper.make_node( + 'MaxUnpool', + inputs=['xT', 'xI', 'output_shape'], + outputs=['y'], + kernel_shape=[2, 2], + strides=[2, 2] + ) + xT = np.array([[[[5, 6], + [7, 8]]]], dtype=np.float32) + xI = np.array([[[[5, 7], + [13, 15]]]], dtype=np.int64) + output_shape = np.array((1, 1, 5, 5), dtype=np.int64) + y = np.array([[[[0, 0, 0, 0, 0], + [0, 5, 0, 6, 0], + [0, 0, 0, 0, 0], + [0, 7, 0, 8, 0], + [0, 0, 0, 0, 0]]]], dtype=np.float32) + expect(node, inputs=[xT, xI, output_shape], outputs=[y], name='test_maxunpool_export_with_output_shape') diff --git a/third_party/onnx/onnx/backend/test/case/node/mean.py b/third_party/onnx/onnx/backend/test/case/node/mean.py new file mode 100644 index 0000000000..f74f43fe29 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/mean.py @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Mean(Base): + + @staticmethod + def export() -> None: + data_0 = np.array([3, 0, 2]).astype(np.float32) + data_1 = np.array([1, 3, 4]).astype(np.float32) + data_2 = np.array([2, 6, 6]).astype(np.float32) + result = np.array([2, 3, 4]).astype(np.float32) + node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_mean_example') + + node = onnx.helper.make_node( + 'Mean', + inputs=['data_0'], + outputs=['result'], + ) + expect(node, inputs=[data_0], outputs=[data_0], + name='test_mean_one_input') + + result = np.divide(np.add(data_0, data_1), 2.) + node = onnx.helper.make_node( + 'Mean', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_mean_two_inputs') diff --git a/third_party/onnx/onnx/backend/test/case/node/meanvariancenormalization.py b/third_party/onnx/onnx/backend/test/case/node/meanvariancenormalization.py new file mode 100644 index 0000000000..34ef811049 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/meanvariancenormalization.py @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class MeanVarianceNormalization(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'MeanVarianceNormalization', + inputs=['X'], + outputs=['Y'] + ) + + input_data = np.array([[[[0.8439683], [0.5665144], [0.05836735]], + [[0.02916367], [0.12964272], [0.5060197]], + [[0.79538304], [0.9411346], [0.9546573]]], + [[[0.17730942], [0.46192095], [0.26480448]], + [[0.6746842], [0.01665257], [0.62473077]], + [[0.9240844], [0.9722341], [0.11965699]]], + [[[0.41356155], [0.9129373], [0.59330076]], + [[0.81929934], [0.7862604], [0.11799799]], + [[0.69248444], [0.54119414], [0.07513223]]]], dtype=np.float32) + + # Calculate expected output data + data_mean = np.mean(input_data, axis=(0, 2, 3), keepdims=1) + data_mean_squared = np.power(data_mean, 2) + data_squared = np.power(input_data, 2) + data_squared_mean = np.mean(data_squared, axis=(0, 2, 3), keepdims=1) + std = np.sqrt(data_squared_mean - data_mean_squared) + expected_output = (input_data - data_mean) / (std + 1e-9) + + expect(node, inputs=[input_data], outputs=[expected_output], + name='test_mvn') diff --git a/third_party/onnx/onnx/backend/test/case/node/min.py b/third_party/onnx/onnx/backend/test/case/node/min.py new file mode 100644 index 0000000000..ec121cc665 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/min.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from ..utils import all_numeric_dtypes + + +class Min(Base): + + @staticmethod + def export() -> None: + data_0 = np.array([3, 2, 1]).astype(np.float32) + data_1 = np.array([1, 4, 4]).astype(np.float32) + data_2 = np.array([2, 5, 0]).astype(np.float32) + result = np.array([1, 2, 0]).astype(np.float32) + node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_min_example') + + node = onnx.helper.make_node( + 'Min', + inputs=['data_0'], + outputs=['result'], + ) + expect(node, inputs=[data_0], outputs=[data_0], + name='test_min_one_input') + + result = np.minimum(data_0, data_1) + node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_two_inputs') + + @staticmethod + def export_min_all_numeric_types() -> None: + for op_dtype in all_numeric_dtypes: + data_0 = np.array([3, 2, 1]).astype(op_dtype) + data_1 = np.array([1, 4, 4]).astype(op_dtype) + result = np.array([1, 2, 1]).astype(op_dtype) + node = onnx.helper.make_node( + 'Min', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_min_{0}'.format(np.dtype(op_dtype).name)) diff --git a/third_party/onnx/onnx/backend/test/case/node/mod.py b/third_party/onnx/onnx/backend/test/case/node/mod.py new file mode 100644 index 0000000000..39895b1c38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/mod.py @@ -0,0 +1,204 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Mod(Base): + + @staticmethod + def export_mod_mixed_sign_float64() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 + ) + + x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float64) + y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float64) + z = np.fmod(x, y) # expected output [-0.1, 0.4, 5. , 0.1, -0.4, 3.] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float64') + + @staticmethod + def export_mod_mixed_sign_float32() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 + ) + + x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float32) + y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float32) + z = np.fmod(x, y) # expected output [-0.10000038, 0.39999962, 5. , 0.10000038, -0.39999962, 3.] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float32') + + @staticmethod + def export_mod_mixed_sign_float16() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 + ) + + x = np.array([-4.3, 7.2, 5.0, 4.3, -7.2, 8.0]).astype(np.float16) + y = np.array([2.1, -3.4, 8.0, -2.1, 3.4, 5.0]).astype(np.float16) + z = np.fmod(x, y) # expected output [-0.10156, 0.3984 , 5. , 0.10156, -0.3984 , 3.] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_float16') + + @staticmethod + def export_mod_mixed_sign_int64() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) + y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) + z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int64') + + @staticmethod + def export_mod_mixed_sign_int32() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int32) + y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int32) + z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int32') + + @staticmethod + def export_mod_mixed_sign_int16() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int16) + y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int16) + z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int16') + + @staticmethod + def export_mod_mixed_sign_int8() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int8) + y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int8) + z = np.mod(x, y) # expected output [ 0, -2, 5, 0, 2, 3] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_mixed_sign_int8') + + @staticmethod + def export_mod_uint8() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([4, 7, 5]).astype(np.uint8) + y = np.array([2, 3, 8]).astype(np.uint8) + z = np.mod(x, y) # expected output [0, 1, 5] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint8') + + @staticmethod + def export_mod_uint16() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([4, 7, 5]).astype(np.uint16) + y = np.array([2, 3, 8]).astype(np.uint16) + z = np.mod(x, y) # expected output [0, 1, 5] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint16') + + @staticmethod + def export_mod_uint32() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([4, 7, 5]).astype(np.uint32) + y = np.array([2, 3, 8]).astype(np.uint32) + z = np.mod(x, y) # expected output [0, 1, 5] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint32') + + @staticmethod + def export_mod_uint64() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([4, 7, 5]).astype(np.uint64) + y = np.array([2, 3, 8]).astype(np.uint64) + z = np.mod(x, y) # expected output [0, 1, 5] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_uint64') + + @staticmethod + def export_mod_int64_fmod() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + fmod=1 + ) + + x = np.array([-4, 7, 5, 4, -7, 8]).astype(np.int64) + y = np.array([2, -3, 8, -2, 3, 5]).astype(np.int64) + z = np.fmod(x, y) # expected output [ 0, 1, 5, 0, -1, 3] + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_int64_fmod') + + @staticmethod + def export_mod_broadcast() -> None: + node = onnx.helper.make_node( + 'Mod', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.arange(0, 30).reshape([3, 2, 5]).astype(np.int32) + y = np.array([7]).astype(np.int32) + z = np.mod(x, y) + # array([[[0, 1, 2, 3, 4], + # [5, 6, 0, 1, 2]], + + # [[3, 4, 5, 6, 0], + # [1, 2, 3, 4, 5]], + + # [[6, 0, 1, 2, 3], + # [4, 5, 6, 0, 1]]], dtype=int32) + expect(node, inputs=[x, y], outputs=[z], + name='test_mod_broadcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/momentum.py b/third_party/onnx/onnx/backend/test/case/node/momentum.py new file mode 100644 index 0000000000..f91aa36030 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/momentum.py @@ -0,0 +1,145 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx.defs import ONNX_DOMAIN, AI_ONNX_PREVIEW_TRAINING_DOMAIN +from ..base import Base +from . import expect + + +def apply_momentum(r, t, x, g, v, norm_coefficient, alpha, beta): # type: ignore + # Add gradient of regularization term. + g_regularized = norm_coefficient * x + g + # Coefficient of gradient should be 1 at the first iteration. + beta_adjusted = beta if t > 0 else 1 + # Update momentum. + v_new = alpha * v + beta_adjusted * g_regularized + # Apply SG with momentum update rule. + x_new = x - r * v_new + return x_new, v_new + + +def apply_nesterov(r, t, x, g, v, norm_coefficient, alpha, beta): # type: ignore + # Add gradient of regularization term. + g_regularized = norm_coefficient * x + g + # Coefficient of gradient should be 1 at the first iteration. + beta_adjusted = beta if t > 0 else 1 + # Update momentum. + v_new = alpha * v + beta_adjusted * g_regularized + # Apply Nesterov with momentum update rule. + x_new = x - r * (g_regularized + alpha * v_new) + return x_new, v_new + + +class Momentum(Base): + + @staticmethod + def export_momentum() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + alpha = 0.95 + beta = 0.1 + + # Create operator. + node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + x = np.array([1.2, 2.8], dtype=np.float32) + g = np.array([-0.94, -2.5], dtype=np.float32) + v = np.array([1.7, 3.6], dtype=np.float32) + + # Compute expected outputs of Momentum. + x_new, v_new = apply_momentum(r, t, x, g, v, + norm_coefficient, alpha, beta) + + # Check results. + expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) + + @staticmethod + def export_nesterov_momentum() -> None: + # Define operator attributes. + norm_coefficient = 0.01 + alpha = 0.95 + beta = 1.0 + + # Create operator. + node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X', 'G', 'V'], + outputs=['X_new', 'V_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='nesterov', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + x = np.array([1.2, 2.8], dtype=np.float32) + g = np.array([-0.94, -2.5], dtype=np.float32) + v = np.array([1.7, 3.6], dtype=np.float32) + + # Compute expected outputs of Momentum. + x_new, v_new = apply_nesterov(r, t, x, g, v, + norm_coefficient, alpha, beta) + + # Check results. + expect(node, inputs=[r, t, x, g, v], + outputs=[x_new, v_new], name='test_nesterov_momentum', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) + + @staticmethod + def export_momentum_multiple() -> None: + # Define operator attributes. + norm_coefficient = 0.001 + alpha = 0.95 + beta = 0.85 + + node = onnx.helper.make_node('Momentum', + inputs=['R', 'T', 'X1', 'X2', + 'G1', 'G2', 'H1', 'H2'], + outputs=['X1_new', 'X2_new', + 'V1_new', 'V2_new'], + norm_coefficient=norm_coefficient, + alpha=alpha, + beta=beta, + mode='standard', + domain=AI_ONNX_PREVIEW_TRAINING_DOMAIN + ) + + # Define operator inputs. + r = np.array(0.1, dtype=np.float32) # scalar + t = np.array(0, dtype=np.int64) # scalar + + x1 = np.array([1.0], dtype=np.float32) + g1 = np.array([-1.0], dtype=np.float32) + v1 = np.array([2.0], dtype=np.float32) + + x2 = np.array([1.0, 2.0], dtype=np.float32) + g2 = np.array([-1.0, -3.0], dtype=np.float32) + v2 = np.array([4.0, 1.0], dtype=np.float32) + + # Compute expected outputs of Momentum. + x1_new, v1_new = apply_momentum(r, t, x1, g1, v1, + norm_coefficient, alpha, beta) + x2_new, v2_new = apply_momentum(r, t, x2, g2, v2, + norm_coefficient, alpha, beta) + + # Check results. + expect(node, inputs=[r, t, x1, x2, g1, g2, v1, v2], + outputs=[x1_new, x2_new, v1_new, v2_new], name='test_momentum_multiple', + opset_imports=[onnx.helper.make_opsetid(AI_ONNX_PREVIEW_TRAINING_DOMAIN, 1)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/mul.py b/third_party/onnx/onnx/backend/test/case/node/mul.py new file mode 100644 index 0000000000..778fc432dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/mul.py @@ -0,0 +1,50 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Mul(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.float32) + z = x * y # expected output [4., 10., 18.] + expect(node, inputs=[x, y], outputs=[z], + name='test_mul_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = x * y + expect(node, inputs=[x, y], outputs=[z], + name='test_mul') + + x = np.random.randint(4, size=(3, 4, 5), dtype=np.uint8) + y = np.random.randint(24, size=(3, 4, 5), dtype=np.uint8) + z = x * y + expect(node, inputs=[x, y], outputs=[z], + name='test_mul_uint8') + + @staticmethod + def export_mul_broadcast() -> None: + node = onnx.helper.make_node( + 'Mul', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = x * y + expect(node, inputs=[x, y], outputs=[z], + name='test_mul_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/neg.py b/third_party/onnx/onnx/backend/test/case/node/neg.py new file mode 100644 index 0000000000..f44f07c316 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/neg.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Neg(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Neg', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-4, 2]).astype(np.float32) + y = np.negative(x) # expected output [4., -2.], + expect(node, inputs=[x], outputs=[y], + name='test_neg_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.negative(x) + expect(node, inputs=[x], outputs=[y], + name='test_neg') diff --git a/third_party/onnx/onnx/backend/test/case/node/negativeloglikelihoodloss.py b/third_party/onnx/onnx/backend/test/case/node/negativeloglikelihoodloss.py new file mode 100644 index 0000000000..5894b7b6e1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/negativeloglikelihoodloss.py @@ -0,0 +1,477 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def compute_negative_log_likelihood_loss(input, target, weight=None, reduction='mean', ignore_index=None): # type: ignore + input_shape = input.shape + if len(input_shape) == 1: + raise RuntimeError("Unsupported shape") + + target_shape = target.shape + N = input_shape[0] + C = input_shape[1] + + # initialize the positional weights when required + gather_weight = None + if weight is not None: + # setting mode='clip' to deal with ignore_index > C or < 0 cases. + # when the target value is > C or < 0, it doesn't matter which value we are + # taking in gather_weight, since it will be set to 0 in the following if-block + # use np.int32 to make it compatible with x86 machines + gather_weight = np.take(weight, np.array(target, dtype=np.int32), mode='clip') + # set `ignore_index`'s loss weight to 0. + # The loss tensor will be multiplied by this weight tensor, + # so `ingore_index`'s loss value will be eliminated. + if ignore_index is not None: + gather_weight = np.where(target == ignore_index, 0, gather_weight).astype(dtype=np.float32) + elif ignore_index is not None: + gather_weight = np.where(target == ignore_index, 0, 1).astype(dtype=np.float32) + + # if input is 4-d and above, make it 3-d + if len(input_shape) != 3: + input = input.reshape((N, C, -1)) + target = target.reshape((N, -1)) + + # Get a dimension from the reshaped input. + # If the original input shape is [N, C, H, W], + # the D here should be H * W because we reshape + # [N, C, H, W] to [N, C, H * W]. + D = input.shape[2] + neg_gather_element_input = np.zeros((N, D), dtype=np.float32) + for i in range(N): + for d in range(D): + if target[i][d] != ignore_index: + neg_gather_element_input[i][d] = -input[i][target[i][d]][d] + + loss = neg_gather_element_input + + # if the input was 4-d or above reshape to the right shape + if len(input_shape) != 3: + loss = loss.reshape(target_shape) + + # apply the weights when required + if gather_weight is not None: + loss = gather_weight * loss + if reduction == 'mean': + loss = loss.sum() / gather_weight.sum() + return loss + + if reduction == 'mean': + loss = np.mean(loss) + elif reduction == 'sum': + loss = np.sum(loss) + return loss + + +class NegativeLogLikelihoodLoss(Base): + + @staticmethod + def export_input_shape_is_NC() -> None: + reduction = 'none' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction + ) + + N, C = 3, 5 + np.random.seed(0) + input = np.random.rand(N, C).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, )).astype(np.int64) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NC') + + @staticmethod + def export_input_shape_is_NCd1d2() -> None: + reduction = 'none' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2') + + @staticmethod + def export_input_shape_is_NCd1d2_reduction_mean() -> None: + reduction = 'mean' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_mean') + + @staticmethod + def export_input_shape_is_NCd1d2_reduction_sum() -> None: + reduction = 'sum' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_reduction_sum') + + @staticmethod + def export_input_shape_is_NCd1d2_with_weight() -> None: + reduction = 'none' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight') + + @staticmethod + def export_input_shape_is_NCd1d2_with_weight_reduction_mean() -> None: + reduction = 'mean' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_mean') + + @staticmethod + def export_input_shape_is_NCd1d2_with_weight_reduction_sum() -> None: + reduction = 'sum' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum') + + @staticmethod + def export_input_shape_is_NCd1d2_with_weight_reduction_sum_ii() -> None: + reduction = 'sum' + ignore_index = np.int64(0) + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + target[0][0][0] = np.int64(0) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_with_weight_reduction_sum_ii') + + @staticmethod + def export_input_shape_is_NCd1d2_no_weight_reduction_mean_ii() -> None: + reduction = 'mean' + ignore_index = np.int64(1) + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index + ) + + N, C, dim1, dim2 = 3, 5, 6, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2)).astype(np.int64) + target[0][0][0] = np.int64(1) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, reduction=reduction, ignore_index=ignore_index) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2_no_weight_reduction_mean_ii') + + @staticmethod + def export_input_shape_is_NCd1() -> None: + reduction = 'mean' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction + ) + + N, C, d1 = 3, 5, 2 + np.random.seed(0) + input = np.random.rand(N, C, d1).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1') + + @staticmethod + def export_input_shape_is_NCd1_weight() -> None: + reduction = 'mean' + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction + ) + + N, C, d1 = 3, 5, 2 + np.random.seed(0) + input = np.random.rand(N, C, d1).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight') + + @staticmethod + def export_input_shape_is_NCd1_ii() -> None: + reduction = 'mean' + ignore_index = np.int64(1) + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index + ) + + N, C, d1 = 3, 5, 2 + np.random.seed(0) + input = np.random.rand(N, C, d1).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + target[0][0] = np.int64(1) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=None, reduction=reduction, ignore_index=ignore_index) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_ii') + + @staticmethod + def export_input_shape_is_NCd1_weight_ii() -> None: + reduction = 'mean' + ignore_index = np.int64(1) + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index + ) + + N, C, d1 = 3, 5, 2 + np.random.seed(0) + input = np.random.rand(N, C, d1).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, d1)).astype(np.int64) + target[0][0] = np.int64(1) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, target, weight=weight, reduction=reduction, ignore_index=ignore_index) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_weight_ii') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_mean_weight() -> None: + reduction = 'mean' + + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_mean_weight') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_none_no_weight() -> None: + reduction = 'none' + + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3d4d5_none_no_weight') + + @staticmethod + def export_input_shape_is_NCd1_mean_weight_negative_ii() -> None: + reduction = 'mean' + ignore_index = np.int64(-1) + + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1 = 3, 5, 6 + np.random.seed(0) + input = np.random.rand(N, C, dim1).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) + target[0][0] = -1 + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1_mean_weight_negative_ii') + + @staticmethod + def export_input_shape_is_NCd1d2d3_none_no_weight_negative_ii() -> None: + reduction = 'none' + ignore_index = np.int64(-5) + + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 + np.random.seed(0) + input = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) + target = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) + target[0][0][0][0] = -5 + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[input, target], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_none_no_weight_negative_ii') + + @staticmethod + def export_input_shape_is_NCd1d2d3_sum_weight_high_ii() -> None: + reduction = 'sum' + ignore_index = np.int64(10) + + node = onnx.helper.make_node( + 'NegativeLogLikelihoodLoss', + inputs=['input', 'target', 'weight'], + outputs=['loss'], + reduction=reduction, + ignore_index=ignore_index) + + N, C = 3, 5 + np.random.seed(0) + input = np.random.rand(N, C).astype(np.float32) + target = np.random.randint(0, high=C, size=(N)) + target[0] = 10 + weight = np.random.rand(C).astype(np.float32) + + negative_log_likelihood_loss = compute_negative_log_likelihood_loss(input, + target, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[input, target, weight], outputs=[negative_log_likelihood_loss], + name='test_nllloss_NCd1d2d3_sum_weight_high_ii') diff --git a/third_party/onnx/onnx/backend/test/case/node/nonmaxsuppression.py b/third_party/onnx/onnx/backend/test/case/node/nonmaxsuppression.py new file mode 100644 index 0000000000..c9026dbfe6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/nonmaxsuppression.py @@ -0,0 +1,224 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class NonMaxSuppression(Base): + + @staticmethod + def export_nonmaxsuppression_suppress_by_IOU() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU') + + @staticmethod + def export_nonmaxsuppression_suppress_by_IOU_and_scores() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.4]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_suppress_by_IOU_and_scores') + + @staticmethod + def export_nonmaxsuppression_flipped_coordinates() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [1.0, 1.0, 0.0, 0.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, 0.9, 1.0, -0.1], + [0.0, 10.0, 1.0, 11.0], + [1.0, 10.1, 0.0, 11.1], + [1.0, 101.0, 0.0, 100.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_flipped_coordinates') + + @staticmethod + def export_nonmaxsuppression_limit_output_size() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([2]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_limit_output_size') + + @staticmethod + def export_nonmaxsuppression_single_box() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0] + ]]).astype(np.float32) + scores = np.array([[[0.9]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_single_box') + + @staticmethod + def export_nonmaxsuppression_identical_boxes() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.0, 1.0, 1.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_identical_boxes') + + @staticmethod + def export_nonmaxsuppression_center_point_box_format() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'], + center_point_box=1 + ) + boxes = np.array([[ + [0.5, 0.5, 1.0, 1.0], + [0.5, 0.6, 1.0, 1.0], + [0.5, 0.4, 1.0, 1.0], + [0.5, 10.5, 1.0, 1.0], + [0.5, 10.6, 1.0, 1.0], + [0.5, 100.5, 1.0, 1.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([3]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 0, 5]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_center_point_box_format') + + @staticmethod + def export_nonmaxsuppression_two_classes() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[ + [0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0] + ]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3], + [0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([2]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0], [0, 1, 3], [0, 1, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_classes') + + @staticmethod + def export_nonmaxsuppression_two_batches() -> None: + node = onnx.helper.make_node( + 'NonMaxSuppression', + inputs=['boxes', 'scores', 'max_output_boxes_per_class', 'iou_threshold', 'score_threshold'], + outputs=['selected_indices'] + ) + boxes = np.array([[[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]], + [[0.0, 0.0, 1.0, 1.0], + [0.0, 0.1, 1.0, 1.1], + [0.0, -0.1, 1.0, 0.9], + [0.0, 10.0, 1.0, 11.0], + [0.0, 10.1, 1.0, 11.1], + [0.0, 100.0, 1.0, 101.0]]]).astype(np.float32) + scores = np.array([[[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]], + [[0.9, 0.75, 0.6, 0.95, 0.5, 0.3]]]).astype(np.float32) + max_output_boxes_per_class = np.array([2]).astype(np.int64) + iou_threshold = np.array([0.5]).astype(np.float32) + score_threshold = np.array([0.0]).astype(np.float32) + selected_indices = np.array([[0, 0, 3], [0, 0, 0], [1, 0, 3], [1, 0, 0]]).astype(np.int64) + + expect(node, inputs=[boxes, scores, max_output_boxes_per_class, iou_threshold, score_threshold], outputs=[selected_indices], name='test_nonmaxsuppression_two_batches') diff --git a/third_party/onnx/onnx/backend/test/case/node/nonzero.py b/third_party/onnx/onnx/backend/test/case/node/nonzero.py new file mode 100644 index 0000000000..2bf21e206c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/nonzero.py @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class NonZero(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'NonZero', + inputs=['condition'], + outputs=['result'], + ) + + condition = np.array([[1, 0], [1, 1]], dtype=bool) + result = np.array(np.nonzero(condition), dtype=np.int64) # expected output [[0, 1, 1], [0, 0, 1]] + expect(node, inputs=[condition], outputs=[result], + name='test_nonzero_example') diff --git a/third_party/onnx/onnx/backend/test/case/node/not.py b/third_party/onnx/onnx/backend/test/case/node/not.py new file mode 100644 index 0000000000..ea4067bc12 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/not.py @@ -0,0 +1,33 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Not(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Not', + inputs=['x'], + outputs=['not'], + ) + + # 2d + x = (np.random.randn(3, 4) > 0).astype(bool) + expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_2d') + + # 3d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_3d') + + # 4d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + expect(node, inputs=[x], outputs=[np.logical_not(x)], + name='test_not_4d') diff --git a/third_party/onnx/onnx/backend/test/case/node/onehot.py b/third_party/onnx/onnx/backend/test/case/node/onehot.py new file mode 100644 index 0000000000..5567460729 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/onehot.py @@ -0,0 +1,106 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def one_hot(indices, depth, axis=-1, dtype=np.float32): # type: ignore + ''' Compute one hot from indices at a specific axis ''' + values = np.asarray(indices) + rank = len(values.shape) + depth_range = np.arange(depth) + if axis < 0: + axis += (rank + 1) + ls = values.shape[0:axis] + rs = values.shape[axis:rank] + targets = np.reshape(depth_range, (1,) * len(ls) + depth_range.shape + (1,) * len(rs)) + values = np.reshape(np.mod(values, depth), ls + (1,) + rs) + return np.asarray(targets == values, dtype=dtype) + + +class OneHot(Base): + + @staticmethod + def export_without_axis() -> None: + on_value = 5 + off_value = 2 + output_type = np.int32 + node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'] + ) + indices = np.array([0, 7, 8], dtype=np.int64) + depth = np.float32(12) + values = np.array([off_value, on_value], dtype=output_type) + y = one_hot(indices, depth, dtype=output_type) + y = y * (on_value - off_value) + off_value + expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_without_axis') + + @staticmethod + def export_with_axis() -> None: + axisValue = 1 + on_value = 3 + off_value = 1 + output_type = np.float32 + node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue + ) + indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) + depth = np.float32(10) + values = np.array([off_value, on_value], dtype=output_type) + y = one_hot(indices, depth, axis=axisValue, dtype=output_type) + y = y * (on_value - off_value) + off_value + expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_axis') + + @staticmethod + def export_with_negative_indices() -> None: + axisValue = 1 + on_value = 3 + off_value = 1 + output_type = np.float32 + node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue + ) + indices = np.array([0, -7, -8], dtype=np.int64) + + # print(y) + # [[3. 1. 1. 1. 1. 1. 1. 1. 1. 1.] + # [1. 1. 1. 3. 1. 1. 1. 1. 1. 1.] + # [1. 1. 3. 1. 1. 1. 1. 1. 1. 1.]] + + depth = np.float32(10) + values = np.array([off_value, on_value], dtype=output_type) + y = one_hot(indices, depth, axis=axisValue, dtype=output_type) + y = y * (on_value - off_value) + off_value + expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_negative_indices') + + @staticmethod + def export_with_negative_axis() -> None: + axisValue = -2 + on_value = 3 + off_value = 1 + output_type = np.float32 + node = onnx.helper.make_node( + 'OneHot', + inputs=['indices', 'depth', 'values'], + outputs=['y'], + axis=axisValue + ) + indices = np.array([[1, 9], + [2, 4]], dtype=np.float32) + depth = np.float32(10) + values = np.array([off_value, on_value], dtype=output_type) + y = one_hot(indices, depth, axis=axisValue, dtype=output_type) + y = y * (on_value - off_value) + off_value + expect(node, inputs=[indices, depth, values], outputs=[y], name='test_onehot_with_negative_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/optionalgetelement.py b/third_party/onnx/onnx/backend/test/case/node/optionalgetelement.py new file mode 100644 index 0000000000..ba124fda83 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/optionalgetelement.py @@ -0,0 +1,49 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Optional, Any + +import onnx +from ..base import Base +from . import expect + + +def optional_get_element_reference_implementation(optional: Optional[Any]) -> Any: + assert optional is not None + return optional + + +class OptionalHasElement(Base): + + @staticmethod + def export_get_element_tensor() -> None: + optional = np.array([1, 2, 3, 4]).astype(np.float32) + tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) + input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) + + node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] + ) + output = optional_get_element_reference_implementation(optional) + expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element') + + @staticmethod + def export_get_element_sequence() -> None: + optional = [np.array([1, 2, 3, 4]).astype(np.int32)] + tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[4, ]) + seq_type_proto = onnx.helper.make_sequence_type_proto(tensor_type_proto) + input_type_proto = onnx.helper.make_optional_type_proto(seq_type_proto) + + node = onnx.helper.make_node( + 'OptionalGetElement', + inputs=['optional_input'], + outputs=['output'] + ) + output = optional_get_element_reference_implementation(optional) + expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_get_element_sequence') diff --git a/third_party/onnx/onnx/backend/test/case/node/optionalhaselement.py b/third_party/onnx/onnx/backend/test/case/node/optionalhaselement.py new file mode 100644 index 0000000000..2966cd1127 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/optionalhaselement.py @@ -0,0 +1,48 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Optional + +import onnx +from ..base import Base +from . import expect + + +def optional_has_element_reference_implementation(optional: Optional[np.ndarray]) -> np.ndarray: + if optional is None: + return np.array(False) + else: + return np.array(True) + + +class OptionalHasElement(Base): + + @staticmethod + def export() -> None: + optional = np.array([1, 2, 3, 4]).astype(np.float32) + tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.FLOAT, shape=[4, ]) + input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) + node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] + ) + output = optional_has_element_reference_implementation(optional) + expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element') + + @staticmethod + def export_empty() -> None: + optional = None + tensor_type_proto = onnx.helper.make_tensor_type_proto(elem_type=onnx.TensorProto.INT32, shape=[]) + input_type_proto = onnx.helper.make_optional_type_proto(tensor_type_proto) + node = onnx.helper.make_node( + 'OptionalHasElement', + inputs=['optional_input'], + outputs=['output'] + ) + output = optional_has_element_reference_implementation(optional) + expect(node, inputs=[optional], outputs=[output], + input_type_protos=[input_type_proto], + name='test_optional_has_element_empty') diff --git a/third_party/onnx/onnx/backend/test/case/node/or.py b/third_party/onnx/onnx/backend/test/case/node/or.py new file mode 100644 index 0000000000..b75fd77c40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/or.py @@ -0,0 +1,82 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Or(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], + ) + + # 2d + x = (np.random.randn(3, 4) > 0).astype(bool) + y = (np.random.randn(3, 4) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or2d') + + # 3d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(3, 4, 5) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or3d') + + # 4d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or4d') + + @staticmethod + def export_or_broadcast() -> None: + node = onnx.helper.make_node( + 'Or', + inputs=['x', 'y'], + outputs=['or'], + ) + + # 3d vs 1d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(5) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v1d') + + # 3d vs 2d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(4, 5) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast3v2d') + + # 4d vs 2d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(5, 6) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v2d') + + # 4d vs 3d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(4, 5, 6) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v3d') + + # 4d vs 4d + x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) + y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) + z = np.logical_or(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_or_bcast4v4d') diff --git a/third_party/onnx/onnx/backend/test/case/node/pad.py b/third_party/onnx/onnx/backend/test/case/node/pad.py new file mode 100644 index 0000000000..99c3ffce91 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/pad.py @@ -0,0 +1,80 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def pad_impl(data, raw_pads, mode, constant_values=0.0): # type: ignore + + input_rank = data.ndim + if input_rank * 2 != raw_pads.size: + raise Exception('The number of elements in raw_pads should be 2 * data_rank') + + # re-order to np.pad accepted order ((x1_begin, x1_end), (x2_begin, x2_end), ...) + pad_width = () + for i in range(int(raw_pads.size / 2)): + pad_width += ((raw_pads[i], raw_pads[i + input_rank])), # type: ignore + + if mode == 'constant': + y = np.pad( + data, + pad_width=pad_width, + mode=mode, + constant_values=constant_values, + ) + return y + + y = np.pad( + data, + pad_width=pad_width, + mode=mode, + ) + + return y + + +class Pad(Base): + + @staticmethod + def export_constant_pad() -> None: + node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads', 'value'], + outputs=['y'], + mode='constant' + ) + x = np.random.randn(1, 3, 4, 5).astype(np.float32) + pads = np.array([0, 0, 1, 3, 0, 0, 2, 4]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] + value = np.float32(1.2) + y = pad_impl( + x, + pads, + 'constant', + 1.2 + ) + + expect(node, inputs=[x, pads, value], outputs=[y], + name='test_constant_pad') + + @staticmethod + def export_reflection_and_edge_pad() -> None: + for mode in ['edge', 'reflect']: + node = onnx.helper.make_node( + 'Pad', + inputs=['x', 'pads'], + outputs=['y'], + mode=mode + ) + x = np.random.randn(1, 3, 4, 5).astype(np.int32) + pads = np.array([0, 0, 1, 1, 0, 0, 1, 1]).astype(np.int64) # pad order [x1_begin, x2_begin, ..., x1_end, x2_end, ...] + y = pad_impl( + x, + pads, + mode + ) + + expect(node, inputs=[x, pads], outputs=[y], + name='test_{}_pad'.format(mode)) diff --git a/third_party/onnx/onnx/backend/test/case/node/pool_op_common.py b/third_party/onnx/onnx/backend/test/case/node/pool_op_common.py new file mode 100644 index 0000000000..217ef525e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/pool_op_common.py @@ -0,0 +1,75 @@ +# SPDX-License-Identifier: Apache-2.0 +import numpy as np # type: ignore +import itertools +from typing import Text, Sequence + + +def get_pad_shape(auto_pad: Text, + input_spatial_shape: Sequence[int], + kernel_spatial_shape: Sequence[int], + strides_spatial: Sequence[int], + output_spatial_shape: Sequence[int] + ) -> Sequence[int]: + pad_shape = [0] * len(input_spatial_shape) + if auto_pad in ('SAME_UPPER', 'SAME_LOWER'): + for i in range(len(input_spatial_shape)): + pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial[i] + \ + kernel_spatial_shape[i] - input_spatial_shape[i] + elif auto_pad == 'VALID': + pass + return pad_shape + + +def get_output_shape(auto_pad: Text, + input_spatial_shape: Sequence[int], + kernel_spatial_shape: Sequence[int], + strides_spatial: Sequence[int] + ) -> Sequence[int]: + out_shape = [0] * len(input_spatial_shape) + if auto_pad in ('SAME_UPPER', 'SAME_LOWER'): + for i in range(len(input_spatial_shape)): + out_shape[i] = int( + np.ceil( + float( + input_spatial_shape[i]) + / float( + strides_spatial[i]))) + elif auto_pad == 'VALID': + for i in range(len(input_spatial_shape)): + out_shape[i] = int(np.ceil(float(input_spatial_shape[i] - (kernel_spatial_shape[i] - 1)) / float(strides_spatial[i]))) + return out_shape + + +def pool(padded: np.ndarray, + x_shape: Sequence[int], + kernel_shape: Sequence[int], + strides_shape: Sequence[int], + out_shape: Sequence[int], + pad_shape: Sequence[int], + pooling_type: Text, + count_include_pad: int = 0 + ) -> np.ndarray: + spatial_size = len(x_shape) - 2 + y = np.zeros([x_shape[0], x_shape[1]] + list(out_shape)) + + for shape in itertools.product(range(x_shape[0]), range(x_shape[1]), *[range(int( + (x_shape[i + 2] + pad_shape[i] - kernel_shape[i]) / strides_shape[i] + 1)) for i in range(spatial_size)]): + window = padded[shape[0], shape[1]] + window_vals = np.array([window[i] for i in list( + itertools.product( + *[range(strides_shape[i] * shape[i + 2], strides_shape[i] * shape[i + 2] + kernel_shape[i]) for i in + range(spatial_size)]) + )]) + if pooling_type == 'AVG': + f = np.average + elif pooling_type == 'MAX': + f = np.max + else: + raise NotImplementedError( + 'Pooling type {} does not support. Should be AVG, MAX'.format(pooling_type)) + + if count_include_pad == 1 and pooling_type == 'AVG': + y[shape] = f(window_vals) + else: + y[shape] = f(window_vals[np.where(~np.isnan(window_vals))]) + return y.astype(np.float32) diff --git a/third_party/onnx/onnx/backend/test/case/node/pow.py b/third_party/onnx/onnx/backend/test/case/node/pow.py new file mode 100644 index 0000000000..dcffbdfc95 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/pow.py @@ -0,0 +1,117 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def pow(x, y): # type: ignore + z = np.power(x, y).astype(x.dtype) + return z + + +class Pow(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.float32) + z = pow(x, y) # expected output [1., 32., 729.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_example') + + x = np.arange(60).reshape(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = pow(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_pow') + + @staticmethod + def export_pow_broadcast() -> None: + node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array(2).astype(np.float32) + z = pow(x, y) # expected output [1., 4., 9.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_scalar') + + node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], + ) + x = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32) + y = np.array([1, 2, 3]).astype(np.float32) + # expected output [[1, 4, 27], [4, 25, 216]] + z = pow(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_bcast_array') + + @staticmethod + def export_types() -> None: + node = onnx.helper.make_node( + 'Pow', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.int64) + z = pow(x, y) # expected output [1., 32., 729.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int64') + + x = np.array([1, 2, 3]).astype(np.int64) + y = np.array([4, 5, 6]).astype(np.float32) + z = pow(x, y) # expected output [1, 32, 729] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_float32') + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.int32) + z = pow(x, y) # expected output [1., 32., 729.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_int32') + + x = np.array([1, 2, 3]).astype(np.int32) + y = np.array([4, 5, 6]).astype(np.float32) + z = pow(x, y) # expected output [1, 32, 729] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_float32') + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.uint64) + z = pow(x, y) # expected output [1., 32., 729.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint64') + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([4, 5, 6]).astype(np.uint32) + z = pow(x, y) # expected output [1., 32., 729.] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_float32_uint32') + + x = np.array([1, 2, 3]).astype(np.int64) + y = np.array([4, 5, 6]).astype(np.int64) + z = pow(x, y) # expected output [1, 32, 729] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int64_int64') + + x = np.array([1, 2, 3]).astype(np.int32) + y = np.array([4, 5, 6]).astype(np.int32) + z = pow(x, y) # expected output [1, 32, 729] + expect(node, inputs=[x, y], outputs=[z], + name='test_pow_types_int32_int32') diff --git a/third_party/onnx/onnx/backend/test/case/node/prelu.py b/third_party/onnx/onnx/backend/test/case/node/prelu.py new file mode 100644 index 0000000000..0a650afdf1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/prelu.py @@ -0,0 +1,40 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class PRelu(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + slope = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + + expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_example') + + @staticmethod + def export_prelu_broadcast() -> None: + node = onnx.helper.make_node( + 'PRelu', + inputs=['x', 'slope'], + outputs=['y'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + slope = np.random.randn(5).astype(np.float32) + y = np.clip(x, 0, np.inf) + np.clip(x, -np.inf, 0) * slope + + expect(node, inputs=[x, slope], outputs=[y], + name='test_prelu_broadcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/qlinearconv.py b/third_party/onnx/onnx/backend/test/case/node/qlinearconv.py new file mode 100644 index 0000000000..20f2b26036 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/qlinearconv.py @@ -0,0 +1,45 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class QLinearConv(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('QLinearConv', + inputs=['x', 'x_scale', 'x_zero_point', 'w', 'w_scale', 'w_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + + x = np.array([[255, 174, 162, 25, 203, 168, 58], + [15, 59, 237, 95, 129, 0, 64], + [56, 242, 153, 221, 168, 12, 166], + [232, 178, 186, 195, 237, 162, 237], + [188, 39, 124, 77, 80, 102, 43], + [127, 230, 21, 83, 41, 40, 134], + [255, 154, 92, 141, 42, 148, 247], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + + x_scale = np.float32(0.00369204697) + x_zero_point = np.uint8(132) + + w = np.array([0], dtype=np.uint8).reshape((1, 1, 1, 1)) + + w_scale = np.array([0.00172794575], dtype=np.float32) + w_zero_point = np.array([255], dtype=np.uint8) + + y_scale = np.float32(0.00162681262) + y_zero_point = np.uint8(123) + + output = np.array([[0, 81, 93, 230, 52, 87, 197], + [240, 196, 18, 160, 126, 255, 191], + [199, 13, 102, 34, 87, 243, 89], + [23, 77, 69, 60, 18, 93, 18], + [67, 216, 131, 178, 175, 153, 212], + [128, 25, 234, 172, 214, 215, 121], + [0, 101, 163, 114, 213, 107, 8], ], dtype=np.uint8).reshape((1, 1, 7, 7)) + + expect(node, inputs=[x, x_scale, x_zero_point, w, w_scale, w_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearconv') diff --git a/third_party/onnx/onnx/backend/test/case/node/qlinearmatmul.py b/third_party/onnx/onnx/backend/test/case/node/qlinearmatmul.py new file mode 100644 index 0000000000..e70366ec6b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/qlinearmatmul.py @@ -0,0 +1,71 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class QLinearMatMul(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('QLinearMatMul', + inputs=['a', 'a_scale', 'a_zero_point', 'b', 'b_scale', 'b_zero_point', 'y_scale', 'y_zero_point'], + outputs=['y'],) + + #2D + a = np.array([[208, 236, 0, 238], + [3, 214, 255, 29], ], dtype=np.uint8) + + a_scale = np.array([0.0066], dtype=np.float32) + a_zero_point = np.array([113], dtype=np.uint8) + + b = np.array([[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], dtype=np.uint8) + + b_scale = np.array([0.00705], dtype=np.float32) + b_zero_point = np.array([114], dtype=np.uint8) + + y_scale = np.array([0.0107], dtype=np.float32) + y_zero_point = np.array([118], dtype=np.uint8) + + output = np.array([[168, 115, 255], + [1, 66, 151], ], dtype=np.uint8) + + expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_2D') + + #3D + a = np.array([[[208, 236, 0, 238], + [3, 214, 255, 29]], + [[208, 236, 0, 238], + [3, 214, 255, 29]]], dtype=np.uint8) + + a_scale = np.array([0.0066], dtype=np.float32) + a_zero_point = np.array([113], dtype=np.uint8) + + b = np.array([[[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]], + [[152, 51, 244], + [60, 26, 255], + [0, 127, 246], + [127, 254, 247]]], dtype=np.uint8) + + b_scale = np.array([0.00705], dtype=np.float32) + b_zero_point = np.array([114], dtype=np.uint8) + + y_scale = np.array([0.0107], dtype=np.float32) + y_zero_point = np.array([118], dtype=np.uint8) + + output = np.array([[[168, 115, 255], + [1, 66, 151]], + [[168, 115, 255], + [1, 66, 151]]], dtype=np.uint8) + + expect(node, inputs=[a, a_scale, a_zero_point, b, b_scale, b_zero_point, y_scale, y_zero_point], outputs=[output], + name='test_qlinearmatmul_3D') diff --git a/third_party/onnx/onnx/backend/test/case/node/quantizelinear.py b/third_party/onnx/onnx/backend/test/case/node/quantizelinear.py new file mode 100644 index 0000000000..205a3564c2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/quantizelinear.py @@ -0,0 +1,47 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import onnx +from ..base import Base +from . import expect + + +class QuantizeLinear(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + + x = np.array([0, 2, 3, 1000, -254, -1000]).astype(np.float32) + y_scale = np.float32(2) + y_zero_point = np.uint8(128) + y = np.array([128, 129, 130, 255, 1, 0]).astype(np.uint8) + + expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear') + + @staticmethod + def export_axis() -> None: + node = onnx.helper.make_node('QuantizeLinear', + inputs=['x', 'y_scale', 'y_zero_point'], + outputs=['y'],) + + x = np.array([[[[-162, 10], + [-100, 232], + [-20, -50]], + + [[-76, 0], + [0, 252], + [32, -44]], + + [[245, -485], + [-960, -270], + [-375, -470]], ], ], dtype=np.float32) + y_scale = np.array([2, 4, 5], dtype=np.float32) + y_zero_point = np.array([84, 24, 196], dtype=np.uint8) + y = (x / y_scale.reshape(1, 3, 1, 1) + y_zero_point.reshape(1, 3, 1, 1)).astype(np.uint8) + + expect(node, inputs=[x, y_scale, y_zero_point], outputs=[y], + name='test_quantizelinear_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/rangeop.py b/third_party/onnx/onnx/backend/test/case/node/rangeop.py new file mode 100644 index 0000000000..0a0e5ffd47 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/rangeop.py @@ -0,0 +1,42 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Range(Base): + + @staticmethod + def export_range_float_type_positive_delta() -> None: + node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], + ) + + start = np.float32(1) + limit = np.float32(5) + delta = np.float32(2) + + output = np.arange(start, limit, delta, dtype=np.float32) # expected output [1.0, 3.0] + expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_float_type_positive_delta') + + @staticmethod + def export_range_int32_type_negative_delta() -> None: + node = onnx.helper.make_node( + 'Range', + inputs=['start', 'limit', 'delta'], + outputs=['output'], + ) + + start = np.int32(10) + limit = np.int32(6) + delta = np.int32(-3) + + output = np.arange(start, limit, delta, dtype=np.int32) # expected output [10, 7] + expect(node, inputs=[start, limit, delta], outputs=[output], + name='test_range_int32_type_negative_delta') diff --git a/third_party/onnx/onnx/backend/test/case/node/reciprocal.py b/third_party/onnx/onnx/backend/test/case/node/reciprocal.py new file mode 100644 index 0000000000..441fc0df6c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reciprocal.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Reciprocal(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Reciprocal', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-4, 2]).astype(np.float32) + y = np.reciprocal(x) # expected output [-0.25, 0.5], + expect(node, inputs=[x], outputs=[y], + name='test_reciprocal_example') + + x = np.random.rand(3, 4, 5).astype(np.float32) + 0.5 + y = np.reciprocal(x) + expect(node, inputs=[x], outputs=[y], + name='test_reciprocal') diff --git a/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum.py b/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum.py new file mode 100644 index 0000000000..a4720d515a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum.py @@ -0,0 +1,62 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceLogSum(Base): + + @staticmethod + def export_nokeepdims() -> None: + node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[2, 1], + keepdims=0 + ) + data = np.random.ranf([3, 4, 5]).astype(np.float32) + reduced = np.log(np.sum(data, axis=(2, 1), keepdims=False)) + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_desc_axes') + + node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[0, 1], + keepdims=0 + ) + data = np.random.ranf([3, 4, 5]).astype(np.float32) + reduced = np.log(np.sum(data, axis=(0, 1), keepdims=False)) + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_asc_axes') + + @staticmethod + def export_keepdims() -> None: + node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"] + ) + data = np.random.ranf([3, 4, 5]).astype(np.float32) + reduced = np.log(np.sum(data, keepdims=True)) + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_default') + + @staticmethod + def export_negative_axes_keepdims() -> None: + node = onnx.helper.make_node( + 'ReduceLogSum', + inputs=['data'], + outputs=["reduced"], + axes=[-2] + ) + data = np.random.ranf([3, 4, 5]).astype(np.float32) + reduced = np.log(np.sum(data, axis=(-2), keepdims=True)) + # print(reduced) + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_negative_axes') diff --git a/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum_exp.py b/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum_exp.py new file mode 100644 index 0000000000..695f797b9c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reduce_log_sum_exp.py @@ -0,0 +1,149 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceLogSumExp(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) + reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) + # print(reduced) + #[[20., 2.31326175] + # [40.00004578, 2.31326175] + # [60.00671387, 2.31326175]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.double) + reduced = np.log(np.sum( + np.exp(data), axis=tuple(axes), keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) + reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + # print(reduced) + # [[[20., 2.31326175]] + # [[40.00004578, 2.31326175]] + # [[60.00671387, 2.31326175]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.double) + reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims + ) + + data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) + reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) + # print(reduced) + # [[[60.00671387]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.double) + reduced = np.log(np.sum(np.exp(data), + axis=axes, + keepdims=keepdims == 1)) + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + node = onnx.helper.make_node( + 'ReduceLogSumExp', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.array( + [[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], + dtype=np.double) + reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + # print(reduced) + # [[[20., 2.31326175]] + # [[40.00004578, 2.31326175]] + # [[60.00671387, 2.31326175]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.double) + reduced = np.log(np.sum(np.exp(data), + axis=tuple(axes), + keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_log_sum_exp_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducel1.py b/third_party/onnx/onnx/backend/test/case/node/reducel1.py new file mode 100644 index 0000000000..70b31d79ab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducel1.py @@ -0,0 +1,137 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceL1(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [2] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[3., 7.], [11., 15.], [19., 23.]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_keep_dims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) + #print(reduced) + #[[[78.]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(a=np.abs(data), axis=axes, keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL1', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + # print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + #[[[3.], [7.]], [[11.], [15.]], [[19.], [23.]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(a=np.abs(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l1_negative_axes_keep_dims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducel2.py b/third_party/onnx/onnx/backend/test/case/node/reducel2.py new file mode 100644 index 0000000000..6dd61b269f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducel2.py @@ -0,0 +1,150 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceL2(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [2] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + #print(reduced) + #[[2.23606798, 5.], + # [7.81024968, 10.63014581], + # [13.45362405, 16.2788206]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + #print(reduced) + #[[[2.23606798], [5.]] + # [[7.81024968], [10.63014581]] + # [[13.45362405], [16.2788206 ]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_keep_dims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_l2_keep_dims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + #print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) + #print(reduced) + #[[[25.49509757]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sqrt(np.sum( + a=np.square(data), axis=axes, keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceL2', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims + ) + + data = np.reshape(np.arange(1, np.prod(shape) + 1, dtype=np.float32), shape) + # print(data) + #[[[1., 2.], [3., 4.]], [[5., 6.], [7., 8.]], [[9., 10.], [11., 12.]]] + + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + # print(reduced) + #[[[2.23606798], [5.]] + # [[7.81024968], [10.63014581]] + # [[13.45362405], [16.2788206 ]]] + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sqrt(np.sum( + a=np.square(data), axis=tuple(axes), keepdims=keepdims == 1)) + + expect(node, inputs=[data], outputs=[reduced], + name='test_reduce_l2_negative_axes_keep_dims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducemax.py b/third_party/onnx/onnx/backend/test/case/node/reducemax.py new file mode 100644 index 0000000000..c187b5b67d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducemax.py @@ -0,0 +1,118 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceMax(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[20., 2.] + # [40., 2.] + # [60., 2.]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[20., 2.]] + # [[40., 2.]] + # [[60., 2.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) + #print(reduced) + [[[60.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdim_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.maximum.reduce(data, axis=axes, keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMax', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + #[[[20., 2.]] + # [[40., 2.]] + # [[60., 2.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.maximum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_max_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducemean.py b/third_party/onnx/onnx/backend/test/case/node/reducemean.py new file mode 100644 index 0000000000..d23924d259 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducemean.py @@ -0,0 +1,119 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceMean(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[12.5, 1.5] + # [35., 1.5] + # [57.5, 1.5]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[12.5, 1.5]] + # [[35., 1.5]] + # [[57.5, 1.5]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) + #print(reduced) + #[[[18.25]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.mean(data, axis=axes, keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMean', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + # [[[12.5, 1.5]] + # [[35., 1.5]] + # [[57.5, 1.5]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.mean(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_mean_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducemin.py b/third_party/onnx/onnx/backend/test/case/node/reducemin.py new file mode 100644 index 0000000000..8cd2f72aa3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducemin.py @@ -0,0 +1,117 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceMin(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[5., 1.] + # [30., 1.] + # [55., 1.]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[5., 1.]] + # [[30., 1.]] + # [[55., 1.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMin', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) + #print(reduced) + #[[[1.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.minimum.reduce(data, axis=axes, keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceMin', inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[5, 1], [20, 2]], [[30, 1], [40, 2]], [[55, 1], [60, 2]]], dtype=np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + #[[[5., 1.]] + # [[30., 1.]] + # [[55., 1.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.minimum.reduce(data, axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_min_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reduceprod.py b/third_party/onnx/onnx/backend/test/case/node/reduceprod.py new file mode 100644 index 0000000000..dbd651d5fa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reduceprod.py @@ -0,0 +1,115 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceProd(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[3., 8.] + # [35., 48.] + # [99., 120.]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[3., 8.]] + # [[35., 48.]] + # [[99., 120.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) + #print(reduced) + #[[[4.790016e+08]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.prod(data, axis=axes, keepdims=keepdims == 1) + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceProd', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + #[[[3., 8.]] + # [[35., 48.]] + # [[99., 120.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.prod(data, axis=tuple(axes), keepdims=keepdims == 1) + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_prod_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducesum.py b/third_party/onnx/onnx/backend/test/case/node/reducesum.py new file mode 100644 index 0000000000..6ec666ceb9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducesum.py @@ -0,0 +1,146 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceSum(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = np.array([1], dtype=np.int64) + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + #print(reduced) + #[[4., 6.] + # [12., 14.] + # [20., 22.]] + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = np.array([1], dtype=np.int64) + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + #print(reduced) + #[[[4., 6.]] + # [[12., 14.]] + # [[20., 22.]]] + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = np.array([], dtype=np.int64) + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(data, axis=None, keepdims=keepdims == 1) + #print(reduced) + #[[[78.]]] + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(data, axis=None, keepdims=keepdims == 1) + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = np.array([-2], dtype=np.int64) + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(data, axis=tuple(axes.tolist()), keepdims=keepdims == 1) + # print(reduced) + #[[[4., 6.]] + # [[12., 14.]] + # [[20., 22.]]] + + expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(data, axis=tuple( + axes.tolist()), keepdims=keepdims == 1) + + expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_negative_axes_keepdims_random') + + @staticmethod + def export_empty_axes_input_noop() -> None: + shape = [3, 2, 2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSum', + inputs=['data', 'axes'], + outputs=['reduced'], + keepdims=keepdims, + noop_with_empty_axes=True) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + axes = np.array([], dtype=np.int64) + reduced = np.array(data) + #print(reduced) + #[[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]] + + expect(node, inputs=[data, axes], outputs=[reduced], + name='test_reduce_sum_empty_axes_input_noop_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.array(data) + + expect(node, inputs=[data, axes], outputs=[reduced], name='test_reduce_sum_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/reducesumsquare.py b/third_party/onnx/onnx/backend/test/case/node/reducesumsquare.py new file mode 100644 index 0000000000..20fc1a4643 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reducesumsquare.py @@ -0,0 +1,119 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReduceSumSquare(Base): + + @staticmethod + def export_do_not_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 0 + + node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[10., 20.] + # [74., 100.] + # [202., 244.]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_do_not_keepdims_random') + + @staticmethod + def export_keepdims() -> None: + shape = [3, 2, 2] + axes = [1] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + #print(reduced) + #[[[10., 20.]] + # [[74., 100.]] + # [[202., 244.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_keepdims_random') + + @staticmethod + def export_default_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = None + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) + #print(reduced) + #[[[650.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(np.square(data), axis=axes, keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_default_axes_keepdims_random') + + @staticmethod + def export_negative_axes_keepdims() -> None: + shape = [3, 2, 2] + axes = [-2] + keepdims = 1 + + node = onnx.helper.make_node( + 'ReduceSumSquare', + inputs=['data'], + outputs=['reduced'], + axes=axes, + keepdims=keepdims) + + data = np.array([[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]], dtype=np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + # print(reduced) + #[[[10., 20.s]] + # [[74., 100.]] + # [[202., 244.]]] + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_example') + + np.random.seed(0) + data = np.random.uniform(-10, 10, shape).astype(np.float32) + reduced = np.sum(np.square(data), axis=tuple(axes), keepdims=keepdims == 1) + + expect(node, inputs=[data], outputs=[reduced], name='test_reduce_sum_square_negative_axes_keepdims_random') diff --git a/third_party/onnx/onnx/backend/test/case/node/relu.py b/third_party/onnx/onnx/backend/test/case/node/relu.py new file mode 100644 index 0000000000..26d2a71524 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/relu.py @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Relu(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Relu', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) + + expect(node, inputs=[x], outputs=[y], + name='test_relu') diff --git a/third_party/onnx/onnx/backend/test/case/node/reshape.py b/third_party/onnx/onnx/backend/test/case/node/reshape.py new file mode 100644 index 0000000000..a435166e51 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reshape.py @@ -0,0 +1,71 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def reshape_reference_implementation(data: np.ndarray, shape: np.ndarray, allowzero: int = 0) -> np.ndarray: + # replace zeros with corresponding dim size + # we need to do this because np.reshape doesn't support 0 by default unless 'allowzero' is set + new_shape = np.copy(shape) + if allowzero == 0: + zeros_index = np.where(shape == 0) + new_shape[zeros_index] = np.array(data.shape)[zeros_index] + reshaped = np.reshape(data, new_shape) + return reshaped + + +class Reshape(Base): + + @staticmethod + def export_reshape() -> None: + original_shape = [2, 3, 4] + test_cases = { + 'reordered_all_dims': np.array([4, 2, 3], dtype=np.int64), + 'reordered_last_dims': np.array([2, 4, 3], dtype=np.int64), + 'reduced_dims': np.array([2, 12], dtype=np.int64), + 'extended_dims': np.array([2, 3, 2, 2], dtype=np.int64), + 'one_dim': np.array([24], dtype=np.int64), + 'negative_dim': np.array([2, -1, 2], dtype=np.int64), + 'negative_extended_dims': np.array([-1, 2, 3, 4], dtype=np.int64), + 'zero_dim': np.array([2, 0, 4, 1], dtype=np.int64), + 'zero_and_negative_dim': np.array([2, 0, 1, -1], dtype=np.int64), + } + data = np.random.random_sample(original_shape).astype(np.float32) + + for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + ) + + reshaped = reshape_reference_implementation(data, shape) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) + + @staticmethod + def export_allowzero() -> None: + original_shape = [0, 3, 4] + test_cases = { + 'allowzero_reordered': np.array([3, 4, 0], dtype=np.int64), + } + data = np.random.random_sample(original_shape).astype(np.float32) + + for test_name, shape in test_cases.items(): + node = onnx.helper.make_node( + 'Reshape', + inputs=['data', 'shape'], + outputs=['reshaped'], + allowzero=1, # if allowzero=1, final shape = (3, 4, 0) + # if allowzero=0, final shape = (3, 4, 4) + ) + + reshaped = reshape_reference_implementation(data, shape, allowzero=1) + + expect(node, inputs=[data, shape], outputs=[reshaped], + name='test_reshape_' + test_name) diff --git a/third_party/onnx/onnx/backend/test/case/node/resize.py b/third_party/onnx/onnx/backend/test/case/node/resize.py new file mode 100644 index 0000000000..f220e6cb7d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/resize.py @@ -0,0 +1,939 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from typing import Any, List, Callable, Union, Optional, Text + + +def cartesian(arrays: List[np.ndarray], out: np.ndarray = None) -> np.ndarray: + """ + From https://stackoverflow.com/a/1235363 + Generate a cartesian product of input arrays. + Parameters + ---------- + arrays : list of array-like + 1-D arrays to form the cartesian product of. + out : ndarray + Array to place the cartesian product in. + Returns + ------- + out : ndarray + 2-D array of shape (M, len(arrays)) containing cartesian products + formed of input arrays. + Examples + -------- + >>> cartesian(([1, 2, 3], [4, 5], [6, 7])) + array([[1, 4, 6], + [1, 4, 7], + [1, 5, 6], + [1, 5, 7], + [2, 4, 6], + [2, 4, 7], + [2, 5, 6], + [2, 5, 7], + [3, 4, 6], + [3, 4, 7], + [3, 5, 6], + [3, 5, 7]]) + """ + + arrays = [np.asarray(x) for x in arrays] + dtype = arrays[0].dtype + + n = np.prod([x.size for x in arrays]) + if out is None: + out = np.zeros([n, len(arrays)], dtype=dtype) + + m = n // arrays[0].size + out[:, 0] = np.repeat(arrays[0], m) + if arrays[1:]: + cartesian(arrays[1:], out=out[0:m, 1:]) + for j in range(1, arrays[0].size): + out[j * m:(j + 1) * m, 1:] = out[0:m, 1:] + return out + + +def interpolate_1d_with_x(data: np.ndarray, + scale_factor: float, + x: float, + get_coeffs: Callable[[float], np.ndarray], + roi: np.ndarray = None, + extrapolation_value: float = 0.0, + coordinate_transformation_mode: Text = 'half_pixel', + exclude_outside: bool = False, + ) -> np.ndarray: + def get_neighbor_idxes(x: float, n: int, limit: int) -> np.ndarray: + """ + Return the n nearest indexes to x among [0, limit), prefer the indexes smaller than x. + As a result, the ratio must be in (0, 1] + Examples: + get_neighbor_idxes(4, 2, 10) == [3, 4] + get_neighbor_idxes(4, 3, 10) == [3, 4, 5] + get_neighbor_idxes(4.4, 3, 10) == [3, 4, 5] + get_neighbor_idxes(4.5, 3, 10) == [3, 4, 5] + get_neighbor_idxes(4.6, 3, 10) == [4, 5, 6] + get_neighbor_idxes(4.4, 1, 10) == [4] + get_neighbor_idxes(4.6, 1, 10) == [5] + :param x: + :param n: the number of the wanted indexes + :param limit: the maximum value of index + :return: An np.array containing n nearest indexes in ascending order + """ + idxes = sorted(range(limit), key=lambda idx: (abs(x - idx), idx))[:n] + idxes = sorted(idxes) + return np.array(idxes) + + def get_neighbor(x: float, n: int, data: np.ndarray) -> np.ndarray: + """ + Pad `data` in 'edge' mode, and get n nearest elements in the padded array and their indexes in the original + array + :param x: center index (in the unpadded coordinate system) of the found nearest elements. + :param n: the number of neighbors. + :param data: the array + :return: A tuple containing the indexes of neighbor elements (the index can be smaller than 0 or higher than + len(data)) and the value of these elements + """ + pad_width = np.ceil(n / 2).astype(int) + padded = np.pad(data, pad_width, mode='edge') + x += pad_width + + idxes = get_neighbor_idxes(x, n, len(padded)) + ret = padded[idxes] + return idxes - pad_width, ret + + input_width = len(data) + output_width = scale_factor * input_width + if coordinate_transformation_mode == 'align_corners': + if output_width == 1: + x_ori = 0. + else: + x_ori = x * (input_width - 1) / (output_width - 1) + elif coordinate_transformation_mode == 'asymmetric': + x_ori = x / scale_factor + elif coordinate_transformation_mode == 'tf_crop_and_resize': + if output_width == 1: + x_ori = (roi[1] - roi[0]) * (input_width - 1) / 2 + else: + x_ori = x * (roi[1] - roi[0]) * \ + (input_width - 1) / (output_width - 1) + x_ori += (roi[0] * (input_width - 1)) + # Return extrapolation_value directly as what TF CropAndResize does + if x_ori < 0 or x_ori > input_width - 1: + return extrapolation_value + elif coordinate_transformation_mode == 'pytorch_half_pixel': + if output_width == 1: + x_ori = -0.5 + else: + x_ori = (x + 0.5) / scale_factor - 0.5 + elif coordinate_transformation_mode == 'half_pixel': + x_ori = (x + 0.5) / scale_factor - 0.5 + else: + raise ValueError(f'invalid coordinate_transformation_mode: {coordinate_transformation_mode}') + x_ori_int = np.floor(x_ori).astype(int).item() + + # ratio must be in (0, 1] since we prefer the pixel on the left of `x_ori` + if x_ori.is_integer(): + ratio = 1 + else: + ratio = x_ori - x_ori_int + + coeffs = get_coeffs(ratio) + n = len(coeffs) + + idxes, points = get_neighbor(x_ori, n, data) + + if exclude_outside: + for i, idx in enumerate(idxes): + if idx < 0 or idx >= input_width: + coeffs[i] = 0 + coeffs /= sum(coeffs) + + return np.dot(coeffs, points).item() + + +def interpolate_nd_with_x(data: np.ndarray, + n: int, + scale_factors: List[float], + x: List[float], + get_coeffs: Callable[[float], np.ndarray], + roi: np.ndarray = None, + **kwargs: Any + ) -> np.ndarray: + if n == 1: + return interpolate_1d_with_x(data, scale_factors[0], x[0], get_coeffs, roi=roi, + **kwargs) + return interpolate_1d_with_x( + [interpolate_nd_with_x(data[i], n - 1, scale_factors[1:], x[1:], get_coeffs, + roi=None if roi is None else np.concatenate( + [roi[1:n], roi[n + 1:]]), + **kwargs) + for i in range(data.shape[0])], scale_factors[0], x[0], get_coeffs, + roi=None if roi is None else [roi[0], roi[n]], **kwargs) + + +def interpolate_nd(data: np.ndarray, + get_coeffs: Callable[[float], np.ndarray], + output_size: Optional[List[int]] = None, + scale_factors: Optional[List[float]] = None, + roi: np.ndarray = None, + **kwargs: Any + ) -> np.ndarray: + def get_all_coords(data: np.ndarray) -> np.ndarray: + return cartesian([list(range(data.shape[i])) for i in range(len(data.shape))]) + + assert output_size is not None or scale_factors is not None + if output_size is not None: + scale_factors = np.array(output_size) / np.array(data.shape) + else: + output_size = (scale_factors * np.array(data.shape)).astype(int) + assert scale_factors is not None + + ret = np.zeros(output_size) + for x in get_all_coords(ret): + ret[tuple(x)] = interpolate_nd_with_x(data, len(data.shape), scale_factors, x, get_coeffs, roi=roi, + **kwargs) + return ret + + +def cubic_coeffs(ratio: float, A: float = -0.75) -> np.ndarray: + coeffs = [((A * (ratio + 1) - 5 * A) * (ratio + 1) + 8 * A) * (ratio + 1) - 4 * A, + ((A + 2) * ratio - (A + 3)) * ratio * ratio + 1, + ((A + 2) * (1 - ratio) - (A + 3)) * (1 - ratio) * (1 - ratio) + 1, + ((A * ((1 - ratio) + 1) - 5 * A) * ((1 - ratio) + 1) + 8 * A) * ((1 - ratio) + 1) - 4 * A] + + return np.array(coeffs) + + +def linear_coeffs(ratio: float) -> np.ndarray: + return np.array([1 - ratio, ratio]) + + +def nearest_coeffs(ratio: float, mode: Text = 'round_prefer_floor') -> np.ndarray: + if type(ratio) == int or ratio.is_integer(): + return np.array([0, 1]) + elif mode == 'round_prefer_floor': + return np.array([ratio <= 0.5, ratio > 0.5]) + elif mode == 'round_prefer_ceil': + return np.array([ratio < 0.5, ratio >= 0.5]) + elif mode == 'floor': + return np.array([1, 0]) + elif mode == 'ceil': + return np.array([0, 1]) + + +class Resize(Base): + + @staticmethod + def export_resize_upsample_scales_nearest() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + + # [[[[1. 1. 1. 2. 2. 2.] + # [1. 1. 1. 2. 2. 2.] + # [3. 3. 3. 4. 4. 4.] + # [3. 3. 3. 4. 4. 4.]]]] + output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_nearest') + + @staticmethod + def export_resize_downsample_scales_nearest() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='nearest', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + + # [[[[1. 3.]]]] + output = interpolate_nd( + data, nearest_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_nearest') + + @staticmethod + def export_resize_upsample_sizes_nearest() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 7, 8], dtype=np.int64) + + # [[[[1. 1. 1. 1. 2. 2. 2. 2.] + # [1. 1. 1. 1. 2. 2. 2. 2.] + # [1. 1. 1. 1. 2. 2. 2. 2.] + # [1. 1. 1. 1. 2. 2. 2. 2.] + # [3. 3. 3. 3. 4. 4. 4. 4.] + # [3. 3. 3. 3. 4. 4. 4. 4.] + # [3. 3. 3. 3. 4. 4. 4. 4.]]]] + output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest') + + @staticmethod + def export_resize_downsample_sizes_nearest() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 1, 3], dtype=np.int64) + + # [[[[1. 3.]]]] + output = interpolate_nd( + data, nearest_coeffs, output_size=sizes).astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_nearest') + + @staticmethod + def export_resize_upsample_scales_linear() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[1. 1.25 1.75 2. ] + # [1.5 1.75 2.25 2.5 ] + # [2.5 2.75 3.25 3.5 ] + # [3. 3.25 3.75 4. ]]]] + output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear') + + @staticmethod + def export_resize_upsample_scales_linear_align_corners() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[1. 1.33333333 1.66666667 2. ] + # [1.66666667 2. 2.33333333 2.66666667] + # [2.33333333 2.66666667 3. 3.33333333] + # [3. 3.33333333 3.66666667 4. ]]]] + output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_linear_align_corners') + + @staticmethod + def export_resize_downsample_scales_linear() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + + # [[[[2.6666665 4.3333331]]]] + output = interpolate_nd( + data, linear_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear') + + @staticmethod + def export_resize_downsample_scales_linear_align_corners() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='align_corners' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.6, 0.6], dtype=np.float32) + + # [[[[1. 3.142857]]]] + output = interpolate_nd( + data, linear_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_linear_align_corners') + + @staticmethod + def export_resize_upsample_scales_cubic() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[ 0.47265625 0.76953125 1.24609375 1.875 2.28125 + # 2.91015625 3.38671875 3.68359375] + # [ 1.66015625 1.95703125 2.43359375 3.0625 3.46875 + # 4.09765625 4.57421875 4.87109375] + # [ 3.56640625 3.86328125 4.33984375 4.96875 5.375 + # 6.00390625 6.48046875 6.77734375] + # [ 6.08203125 6.37890625 6.85546875 7.484375 7.890625 + # 8.51953125 8.99609375 9.29296875] + # [ 7.70703125 8.00390625 8.48046875 9.109375 9.515625 + # 10.14453125 10.62109375 10.91796875] + # [10.22265625 10.51953125 10.99609375 11.625 12.03125 + # 12.66015625 13.13671875 13.43359375] + # [12.12890625 12.42578125 12.90234375 13.53125 13.9375 + # 14.56640625 15.04296875 15.33984375] + # [13.31640625 13.61328125 14.08984375 14.71875 15.125 + # 15.75390625 16.23046875 16.52734375]]]] + output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic') + + @staticmethod + def export_resize_upsample_scales_cubic_align_corners() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[ 1. 1.34110787 1.80029155 2.32944606 2.67055394 + # 3.19970845 3.65889213 4. ] + # [ 2.36443149 2.70553936 3.16472303 3.69387755 4.03498542 + # 4.56413994 5.02332362 5.36443149] + # [ 4.20116618 4.54227405 5.00145773 5.53061224 5.87172012 + # 6.40087464 6.86005831 7.20116618] + # [ 6.31778426 6.65889213 7.1180758 7.64723032 7.98833819 + # 8.51749271 8.97667638 9.31778426] + # [ 7.68221574 8.02332362 8.48250729 9.01166181 9.35276968 + # 9.8819242 10.34110787 10.68221574] + # [ 9.79883382 10.13994169 10.59912536 11.12827988 11.46938776 + # 11.99854227 12.45772595 12.79883382] + # [11.63556851 11.97667638 12.43586006 12.96501458 13.30612245 + # 13.83527697 14.29446064 14.63556851] + # [13. 13.34110787 13.80029155 14.32944606 14.67055394 + # 15.19970845 15.65889213 16. ]]]] + output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_align_corners') + + @staticmethod + def export_resize_downsample_scales_cubic() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + + # [[[[ 1.47119141 2.78125 4.08251953] + # [ 6.71142578 8.02148438 9.32275391] + # [11.91650391 13.2265625 14.52783203]]]] + output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic') + + @staticmethod + def export_resize_downsample_scales_cubic_align_corners() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='align_corners' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + + # [[[[ 1. 2.39519159 3.79038317] + # [ 6.58076634 7.97595793 9.37114951] + # [12.16153268 13.55672427 14.95191585]]]] + output = interpolate_nd( + data, cubic_coeffs, scale_factors=scales, coordinate_transformation_mode='align_corners').astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_align_corners') + + @staticmethod + def export_resize_upsample_sizes_cubic() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 9, 10], dtype=np.int64) + + # [[[[ 0.45507922 0.64057922 0.97157922 1.42257922 1.90732922 + # 2.22332922 2.70807922 3.15907922 3.49007922 3.67557922] + # [ 1.39437963 1.57987963 1.91087963 2.36187963 2.84662963 + # 3.16262963 3.64737963 4.09837963 4.42937963 4.61487963] + # [ 2.95130693 3.13680693 3.46780693 3.91880693 4.40355693 + # 4.71955693 5.20430693 5.65530693 5.98630693 6.17180693] + # [ 5.20525069 5.39075069 5.72175069 6.17275069 6.65750069 + # 6.97350069 7.45825069 7.90925069 8.24025069 8.42575069] + # [ 6.88975 7.07525 7.40625 7.85725 8.342 + # 8.658 9.14275 9.59375 9.92475 10.11025 ] + # [ 8.57424931 8.75974931 9.09074931 9.54174931 10.02649931 + # 10.34249931 10.82724931 11.27824931 11.60924931 11.79474931] + # [10.82819307 11.01369307 11.34469307 11.79569307 12.28044307 + # 12.59644307 13.08119307 13.53219307 13.86319307 14.04869307] + # [12.38512037 12.57062037 12.90162037 13.35262037 13.83737037 + # 14.15337037 14.63812037 15.08912037 15.42012037 15.60562037] + # [13.32442078 13.50992078 13.84092078 14.29192078 14.77667078 + # 15.09267078 15.57742078 16.02842078 16.35942078 16.54492078]]]] + output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_cubic') + + @staticmethod + def export_resize_downsample_sizes_cubic() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='cubic', + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 3, 3], dtype=np.int64) + + # [[[[ 1.63078704 3.00462963 4.37847222] + # [ 7.12615741 8.5 9.87384259] + # [12.62152778 13.99537037 15.36921296]]]] + output = interpolate_nd( + data, cubic_coeffs, output_size=sizes).astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_cubic') + + # TensorFlow v1 bicubic with half_pixel_centers=True + @staticmethod + def export_resize_upsample_scales_cubic_A_n0p5_exclude_outside() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[ 0.55882353 0.81494204 1.35698249 1.89705882 2.39705882 + # 2.93713516 3.47917561 3.73529412] + # [ 1.58329755 1.83941606 2.38145651 2.92153285 3.42153285 + # 3.96160918 4.50364964 4.75976814] + # [ 3.75145936 4.00757787 4.54961832 5.08969466 5.58969466 + # 6.12977099 6.67181144 6.92792995] + # [ 5.91176471 6.16788321 6.70992366 7.25 7.75 + # 8.29007634 8.83211679 9.08823529] + # [ 7.91176471 8.16788321 8.70992366 9.25 9.75 + # 10.29007634 10.83211679 11.08823529] + # [10.07207005 10.32818856 10.87022901 11.41030534 11.91030534 + # 12.45038168 12.99242213 13.24854064] + # [12.24023186 12.49635036 13.03839082 13.57846715 14.07846715 + # 14.61854349 15.16058394 15.41670245] + # [13.26470588 13.52082439 14.06286484 14.60294118 15.10294118 + # 15.64301751 16.18505796 16.44117647]]]] + output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_A_n0p5_exclude_outside') + + @staticmethod + def export_resize_downsample_scales_cubic_A_n0p5_exclude_outside() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + cubic_coeff_a=-0.5, + exclude_outside=True + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 0.8, 0.8], dtype=np.float32) + + # [[[[ 1.36812675 2.6695014 4.0133367 ] + # [ 6.57362535 7.875 9.2188353 ] + # [11.94896657 13.25034122 14.59417652]]]] + output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.5), scale_factors=scales, + exclude_outside=True).astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_downsample_scales_cubic_A_n0p5_exclude_outside') + + # TensorFlow v1 bicubic with half_pixel_centers=False + @staticmethod + def export_resize_upsample_scales_cubic_asymmetric() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', 'scales'], + outputs=['Y'], + mode='cubic', + coordinate_transformation_mode='asymmetric' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 2.0], dtype=np.float32) + + # [[[[ 1. 1.40625 2. 2.5 3. 3.59375 4. + # 4.09375] + # [ 2.625 3.03125 3.625 4.125 4.625 5.21875 5.625 + # 5.71875] + # [ 5. 5.40625 6. 6.5 7. 7.59375 8. + # 8.09375] + # [ 7. 7.40625 8. 8.5 9. 9.59375 10. + # 10.09375] + # [ 9. 9.40625 10. 10.5 11. 11.59375 12. + # 12.09375] + # [11.375 11.78125 12.375 12.875 13.375 13.96875 14.375 + # 14.46875] + # [13. 13.40625 14. 14.5 15. 15.59375 16. + # 16.09375] + # [13.375 13.78125 14.375 14.875 15.375 15.96875 16.375 + # 16.46875]]]] + output = interpolate_nd(data, lambda x: cubic_coeffs(x, A=-0.75), scale_factors=scales, + coordinate_transformation_mode='asymmetric').astype(np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_resize_upsample_scales_cubic_asymmetric') + + @staticmethod + def export_resize_tf_crop_and_resize() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + # Note: for some rois, the result may be different with that of TF for inaccurate floating point + roi = np.array([0, 0, 0.4, 0.6, 1, 1, 0.6, 0.8], dtype=np.float32) + sizes = np.array([1, 1, 3, 3], dtype=np.int64) + + # [[[[ 7.6000004 7.9 8.2 ] + # [ 8.8 9.1 9.400001 ] + # [10. 10.3 10.6 ]]]] + output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize').astype(np.float32) + + expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') + + @staticmethod + def export_resize_tf_crop_and_resize_extrapolation_value() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', 'roi', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='tf_crop_and_resize', + extrapolation_value=10.0 + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + # Note: for some rois, the result may be different with that of TF for inaccurate floating point + roi = np.array([0, 0, 0.4, 0.6, 1, 1, 1.2, 1.7], dtype=np.float32) + sizes = np.array([1, 1, 3, 3], dtype=np.int64) + + # [[[[ 7.6000004 10. 10. ] + # [12.400001 10. 10. ] + # [10. 10. 10. ]]]] + output = interpolate_nd(data, linear_coeffs, output_size=sizes, roi=roi, + coordinate_transformation_mode='tf_crop_and_resize', extrapolation_value=10.0).astype(np.float32) + + expect(node, inputs=[data, roi, sizes], outputs=[output], + name='test_resize_tf_crop_and_resize') + + @staticmethod + def export_resize_downsample_sizes_linear_pytorch_half_pixel() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='linear', + coordinate_transformation_mode='pytorch_half_pixel' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 3, 1], dtype=np.int64) + + # [[[[ 1.6666666] + # [ 7. ] + # [12.333333 ]]]] + output = interpolate_nd( + data, linear_coeffs, output_size=sizes, coordinate_transformation_mode='pytorch_half_pixel').astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_downsample_sizes_linear_pytorch_half_pixel') + + @staticmethod + def export_resize_upsample_sizes_nearest_floor_align_corners() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='align_corners', + nearest_mode='floor' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 8, 8], dtype=np.int64) + + # [[[[ 1. 1. 1. 2. 2. 3. 3. 4.] + # [ 1. 1. 1. 2. 2. 3. 3. 4.] + # [ 1. 1. 1. 2. 2. 3. 3. 4.] + # [ 5. 5. 5. 6. 6. 7. 7. 8.] + # [ 5. 5. 5. 6. 6. 7. 7. 8.] + # [ 9. 9. 9. 10. 10. 11. 11. 12.] + # [ 9. 9. 9. 10. 10. 11. 11. 12.] + # [13. 13. 13. 14. 14. 15. 15. 16.]]]] + output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='floor'), output_size=sizes, coordinate_transformation_mode='align_corners').astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_floor_align_corners') + + @staticmethod + def export_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='asymmetric', + nearest_mode='round_prefer_ceil' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 8, 8], dtype=np.int64) + + # [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] + # [ 5. 6. 6. 7. 7. 8. 8. 8.] + # [ 5. 6. 6. 7. 7. 8. 8. 8.] + # [ 9. 10. 10. 11. 11. 12. 12. 12.] + # [ 9. 10. 10. 11. 11. 12. 12. 12.] + # [13. 14. 14. 15. 15. 16. 16. 16.] + # [13. 14. 14. 15. 15. 16. 16. 16.] + # [13. 14. 14. 15. 15. 16. 16. 16.]]]] + output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='round_prefer_ceil'), + output_size=sizes, coordinate_transformation_mode='asymmetric').astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric') + + @staticmethod + def export_resize_upsample_sizes_nearest_ceil_half_pixel() -> None: + node = onnx.helper.make_node( + 'Resize', + inputs=['X', '', '', 'sizes'], + outputs=['Y'], + mode='nearest', + coordinate_transformation_mode='half_pixel', + nearest_mode='ceil' + ) + + data = np.array([[[ + [1, 2, 3, 4], + [5, 6, 7, 8], + [9, 10, 11, 12], + [13, 14, 15, 16], + ]]], dtype=np.float32) + + sizes = np.array([1, 1, 8, 8], dtype=np.int64) + + # [[[[ 1. 2. 2. 3. 3. 4. 4. 4.] + # [ 5. 6. 6. 7. 7. 8. 8. 8.] + # [ 5. 6. 6. 7. 7. 8. 8. 8.] + # [ 9. 10. 10. 11. 11. 12. 12. 12.] + # [ 9. 10. 10. 11. 11. 12. 12. 12.] + # [13. 14. 14. 15. 15. 16. 16. 16.] + # [13. 14. 14. 15. 15. 16. 16. 16.] + # [13. 14. 14. 15. 15. 16. 16. 16.]]]] + output = interpolate_nd( + data, lambda x: nearest_coeffs(x, mode='ceil'), output_size=sizes).astype(np.float32) + + expect(node, inputs=[data, sizes], outputs=[output], + name='test_resize_upsample_sizes_nearest_ceil_half_pixel') diff --git a/third_party/onnx/onnx/backend/test/case/node/reversesequence.py b/third_party/onnx/onnx/backend/test/case/node/reversesequence.py new file mode 100644 index 0000000000..d102a61242 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/reversesequence.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ReverseSequence(Base): + + @staticmethod + def export_reversesequence_time() -> None: + node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=0, + batch_axis=1, + ) + x = np.array([[0.0, 4.0, 8.0, 12.0], + [1.0, 5.0, 9.0, 13.0], + [2.0, 6.0, 10.0, 14.0], + [3.0, 7.0, 11.0, 15.0]], dtype=np.float32) + sequence_lens = np.array([4, 3, 2, 1], dtype=np.int64) + + y = np.array([[3.0, 6.0, 9.0, 12.0], + [2.0, 5.0, 8.0, 13.0], + [1.0, 4.0, 10.0, 14.0], + [0.0, 7.0, 11.0, 15.0]], dtype=np.float32) + + expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_time') + + @staticmethod + def export_reversesequence_batch() -> None: + node = onnx.helper.make_node( + 'ReverseSequence', + inputs=['x', 'sequence_lens'], + outputs=['y'], + time_axis=1, + batch_axis=0, + ) + x = np.array([[0.0, 1.0, 2.0, 3.0], + [4.0, 5.0, 6.0, 7.0], + [8.0, 9.0, 10.0, 11.0], + [12.0, 13.0, 14.0, 15.0]], dtype=np.float32) + sequence_lens = np.array([1, 2, 3, 4], dtype=np.int64) + + y = np.array([[0.0, 1.0, 2.0, 3.0], + [5.0, 4.0, 6.0, 7.0], + [10.0, 9.0, 8.0, 11.0], + [15.0, 14.0, 13.0, 12.0]], dtype=np.float32) + + expect(node, inputs=[x, sequence_lens], outputs=[y], + name='test_reversesequence_batch') diff --git a/third_party/onnx/onnx/backend/test/case/node/rnn.py b/third_party/onnx/onnx/backend/test/case/node/rnn.py new file mode 100644 index 0000000000..14cb6f8705 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/rnn.py @@ -0,0 +1,184 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Any, Tuple + +import onnx +from ..base import Base +from . import expect + + +class RNN_Helper(): + def __init__(self, **params: Any) -> None: + # RNN Input Names + X = str('X') + W = str('W') + R = str('R') + B = str('B') + H_0 = str('initial_h') + LAYOUT = str('layout') + + required_inputs = [X, W, R] + for i in required_inputs: + assert i in params, "Missing Required Input: {0}".format(i) + + self.num_directions = params[str(W)].shape[0] + + if self.num_directions == 1: + for k in params.keys(): + if k != X: + params[k] = np.squeeze(params[k], axis=0) + + hidden_size = params[R].shape[-1] + batch_size = params[X].shape[1] + + layout = params[LAYOUT] if LAYOUT in params else 0 + x = params[X] + x = x if layout == 0 else np.swapaxes(x, 0, 1) + b = params[B] if B in params else np.zeros(2 * hidden_size, dtype=np.float32) + h_0 = params[H_0] if H_0 in params else np.zeros((batch_size, hidden_size), dtype=np.float32) + + self.X = x + self.W = params[W] + self.R = params[R] + self.B = b + self.H_0 = h_0 + self.LAYOUT = layout + + else: + raise NotImplementedError() + + def f(self, x: np.ndarray) -> np.ndarray: + return np.tanh(x) + + def step(self) -> Tuple[np.ndarray, np.ndarray]: + seq_length = self.X.shape[0] + hidden_size = self.H_0.shape[-1] + batch_size = self.X.shape[1] + + Y = np.empty([seq_length, self.num_directions, batch_size, hidden_size]) + h_list = [] + + H_t = self.H_0 + for x in np.split(self.X, self.X.shape[0], axis=0): + H = self.f(np.dot(x, np.transpose(self.W)) + np.dot(H_t, np.transpose(self.R)) + np.add( + *np.split(self.B, 2))) + h_list.append(H) + H_t = H + + concatenated = np.concatenate(h_list) + if self.num_directions == 1: + Y[:, 0, :, :] = concatenated + + if self.LAYOUT == 0: + Y_h = Y[-1] + else: + Y = np.transpose(Y, [2, 0, 1, 3]) + Y_h = Y[:, :, -1, :] + + return Y, Y_h + + +class RNN(Base): + + @staticmethod + def export_defaults() -> None: + input = np.array([[[1., 2.], [3., 4.], [5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 4 + weight_scale = 0.1 + + node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + + rnn = RNN_Helper(X=input, W=W, R=R) + _, Y_h = rnn.step() + expect(node, inputs=[input, W, R], outputs=[Y_h.astype(np.float32)], name='test_simple_rnn_defaults') + + @staticmethod + def export_initial_bias() -> None: + input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]]]).astype(np.float32) + + input_size = 3 + hidden_size = 5 + custom_bias = 0.1 + weight_scale = 0.1 + + node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + + # Adding custom bias + W_B = custom_bias * np.ones((1, hidden_size)).astype(np.float32) + R_B = np.zeros((1, hidden_size)).astype(np.float32) + B = np.concatenate((W_B, R_B), axis=1) + + rnn = RNN_Helper(X=input, W=W, R=R, B=B) + _, Y_h = rnn.step() + expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], + name='test_simple_rnn_with_initial_bias') + + @staticmethod + def export_seq_length() -> None: + input = np.array([[[1., 2., 3.], [4., 5., 6.], [7., 8., 9.]], + [[10., 11., 12.], [13., 14., 15.], [16., 17., 18.]]]).astype(np.float32) + + input_size = 3 + hidden_size = 5 + + node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R', 'B'], + outputs=['', 'Y_h'], + hidden_size=hidden_size + ) + + W = np.random.randn(1, hidden_size, input_size).astype(np.float32) + R = np.random.randn(1, hidden_size, hidden_size).astype(np.float32) + + # Adding custom bias + W_B = np.random.randn(1, hidden_size).astype(np.float32) + R_B = np.random.randn(1, hidden_size).astype(np.float32) + B = np.concatenate((W_B, R_B), axis=1) + + rnn = RNN_Helper(X=input, W=W, R=R, B=B) + _, Y_h = rnn.step() + expect(node, inputs=[input, W, R, B], outputs=[Y_h.astype(np.float32)], name='test_rnn_seq_length') + + @staticmethod + def export_batchwise() -> None: + input = np.array([[[1., 2.]], [[3., 4.]], [[5., 6.]]]).astype(np.float32) + + input_size = 2 + hidden_size = 4 + weight_scale = 0.5 + layout = 1 + + node = onnx.helper.make_node( + 'RNN', + inputs=['X', 'W', 'R'], + outputs=['Y', 'Y_h'], + hidden_size=hidden_size, + layout=layout + ) + + W = weight_scale * np.ones((1, hidden_size, input_size)).astype(np.float32) + R = weight_scale * np.ones((1, hidden_size, hidden_size)).astype(np.float32) + + rnn = RNN_Helper(X=input, W=W, R=R, layout=layout) + Y, Y_h = rnn.step() + expect(node, inputs=[input, W, R], outputs=[Y.astype(np.float32), Y_h.astype(np.float32)], name='test_simple_rnn_batchwise') diff --git a/third_party/onnx/onnx/backend/test/case/node/roialign.py b/third_party/onnx/onnx/backend/test/case/node/roialign.py new file mode 100644 index 0000000000..882d5ebc82 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/roialign.py @@ -0,0 +1,244 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def get_roi_align_input_values(): # type: ignore + X = np.array( + [ + [ + [ + [ + 0.2764, + 0.7150, + 0.1958, + 0.3416, + 0.4638, + 0.0259, + 0.2963, + 0.6518, + 0.4856, + 0.7250, + ], + [ + 0.9637, + 0.0895, + 0.2919, + 0.6753, + 0.0234, + 0.6132, + 0.8085, + 0.5324, + 0.8992, + 0.4467, + ], + [ + 0.3265, + 0.8479, + 0.9698, + 0.2471, + 0.9336, + 0.1878, + 0.4766, + 0.4308, + 0.3400, + 0.2162, + ], + [ + 0.0206, + 0.1720, + 0.2155, + 0.4394, + 0.0653, + 0.3406, + 0.7724, + 0.3921, + 0.2541, + 0.5799, + ], + [ + 0.4062, + 0.2194, + 0.4473, + 0.4687, + 0.7109, + 0.9327, + 0.9815, + 0.6320, + 0.1728, + 0.6119, + ], + [ + 0.3097, + 0.1283, + 0.4984, + 0.5068, + 0.4279, + 0.0173, + 0.4388, + 0.0430, + 0.4671, + 0.7119, + ], + [ + 0.1011, + 0.8477, + 0.4726, + 0.1777, + 0.9923, + 0.4042, + 0.1869, + 0.7795, + 0.9946, + 0.9689, + ], + [ + 0.1366, + 0.3671, + 0.7011, + 0.6234, + 0.9867, + 0.5585, + 0.6985, + 0.5609, + 0.8788, + 0.9928, + ], + [ + 0.5697, + 0.8511, + 0.6711, + 0.9406, + 0.8751, + 0.7496, + 0.1650, + 0.1049, + 0.1559, + 0.2514, + ], + [ + 0.7012, + 0.4056, + 0.7879, + 0.3461, + 0.0415, + 0.2998, + 0.5094, + 0.3727, + 0.5482, + 0.0502, + ], + ] + ] + ], + dtype=np.float32, + ) + batch_indices = np.array([0, 0, 0], dtype=np.int64) + rois = np.array([[0, 0, 9, 9], [0, 5, 4, 9], [5, 5, 9, 9]], dtype=np.float32) + return X, batch_indices, rois + + +class RoiAlign(Base): + @staticmethod + def export_roialign_aligned_false() -> None: + node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="output_half_pixel", + ) + + X, batch_indices, rois = get_roi_align_input_values() + # (num_rois, C, output_height, output_width) + Y = np.array( + [ + [ + [ + [0.4664, 0.4466, 0.3405, 0.5688, 0.6068], + [0.3714, 0.4296, 0.3835, 0.5562, 0.3510], + [0.2768, 0.4883, 0.5222, 0.5528, 0.4171], + [0.4713, 0.4844, 0.6904, 0.4920, 0.8774], + [0.6239, 0.7125, 0.6289, 0.3355, 0.3495], + ] + ], + [ + [ + [0.3022, 0.4305, 0.4696, 0.3978, 0.5423], + [0.3656, 0.7050, 0.5165, 0.3172, 0.7015], + [0.2912, 0.5059, 0.6476, 0.6235, 0.8299], + [0.5916, 0.7389, 0.7048, 0.8372, 0.8893], + [0.6227, 0.6153, 0.7097, 0.6154, 0.4585], + ] + ], + [ + [ + [0.2384, 0.3379, 0.3717, 0.6100, 0.7601], + [0.3767, 0.3785, 0.7147, 0.9243, 0.9727], + [0.5749, 0.5826, 0.5709, 0.7619, 0.8770], + [0.5355, 0.2566, 0.2141, 0.2796, 0.3600], + [0.4365, 0.3504, 0.2887, 0.3661, 0.2349], + ] + ], + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_false") + + @staticmethod + def export_roialign_aligned_true() -> None: + node = onnx.helper.make_node( + "RoiAlign", + inputs=["X", "rois", "batch_indices"], + outputs=["Y"], + spatial_scale=1.0, + output_height=5, + output_width=5, + sampling_ratio=2, + coordinate_transformation_mode="half_pixel", + ) + + X, batch_indices, rois = get_roi_align_input_values() + # (num_rois, C, output_height, output_width) + Y = np.array( + [ + [ + [ + [0.5178, 0.3434, 0.3229, 0.4474, 0.6344], + [0.4031, 0.5366, 0.4428, 0.4861, 0.4023], + [0.2512, 0.4002, 0.5155, 0.6954, 0.3465], + [0.3350, 0.4601, 0.5881, 0.3439, 0.6849], + [0.4932, 0.7141, 0.8217, 0.4719, 0.4039], + ] + ], + [ + [ + [0.3070, 0.2187, 0.3337, 0.4880, 0.4870], + [0.1871, 0.4914, 0.5561, 0.4192, 0.3686], + [0.1433, 0.4608, 0.5971, 0.5310, 0.4982], + [0.2788, 0.4386, 0.6022, 0.7000, 0.7524], + [0.5774, 0.7024, 0.7251, 0.7338, 0.8163], + ] + ], + [ + [ + [0.2393, 0.4075, 0.3379, 0.2525, 0.4743], + [0.3671, 0.2702, 0.4105, 0.6419, 0.8308], + [0.5556, 0.4543, 0.5564, 0.7502, 0.9300], + [0.6626, 0.5617, 0.4813, 0.4954, 0.6663], + [0.6636, 0.3721, 0.2056, 0.1928, 0.2478], + ] + ], + ], + dtype=np.float32, + ) + + expect(node, inputs=[X, rois, batch_indices], outputs=[Y], name="test_roialign_aligned_true") diff --git a/third_party/onnx/onnx/backend/test/case/node/round.py b/third_party/onnx/onnx/backend/test/case/node/round.py new file mode 100644 index 0000000000..017d9cf049 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/round.py @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Round(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Round', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([0.1, 0.5, 0.9, 1.2, 1.5, + 1.8, 2.3, 2.5, 2.7, -1.1, + -1.5, -1.9, -2.2, -2.5, -2.8]).astype(np.float32) + y = np.array([0., 0., 1., 1., 2., + 2., 2., 2., 3., -1., + -2., -2., -2., -2., -3.]).astype(np.float32) # expected output + expect(node, inputs=[x], outputs=[y], + name='test_round') diff --git a/third_party/onnx/onnx/backend/test/case/node/scan.py b/third_party/onnx/onnx/backend/test/case/node/scan.py new file mode 100644 index 0000000000..6fd7ff7f27 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/scan.py @@ -0,0 +1,103 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Scan(Base): + + @staticmethod + def export_scan_8() -> None: + # Given an input sequence [x1, ..., xN], sum up its elements using a scan + # returning the final state (x1+x2+...+xN) as well the scan_output + # [x1, x1+x2, ..., x1+x2+...+xN] + # + # create graph to represent scan body + sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) + next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) + sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) + scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) + add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] + ) + id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] + ) + scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] + ) + # create scan op node + no_sequence_lens = '' # optional input, not supplied + node = onnx.helper.make_node( + 'Scan', + inputs=[no_sequence_lens, 'initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body + ) + # create inputs for batch-size 1, sequence-length 3, inner dimension 2 + initial = np.array([0, 0]).astype(np.float32).reshape((1, 2)) + x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((1, 3, 2)) + # final state computed = [1 + 3 + 5, 2 + 4 + 6] + y = np.array([9, 12]).astype(np.float32).reshape((1, 2)) + # scan-output computed + z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((1, 3, 2)) + + expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan_sum', opset_imports=[onnx.helper.make_opsetid("", 8)]) + + @staticmethod + def export_scan_9() -> None: + # Given an input sequence [x1, ..., xN], sum up its elements using a scan + # returning the final state (x1+x2+...+xN) as well the scan_output + # [x1, x1+x2, ..., x1+x2+...+xN] + # + # create graph to represent scan body + sum_in = onnx.helper.make_tensor_value_info('sum_in', onnx.TensorProto.FLOAT, [2]) + next = onnx.helper.make_tensor_value_info('next', onnx.TensorProto.FLOAT, [2]) + sum_out = onnx.helper.make_tensor_value_info('sum_out', onnx.TensorProto.FLOAT, [2]) + scan_out = onnx.helper.make_tensor_value_info('scan_out', onnx.TensorProto.FLOAT, [2]) + add_node = onnx.helper.make_node( + 'Add', + inputs=['sum_in', 'next'], + outputs=['sum_out'] + ) + id_node = onnx.helper.make_node( + 'Identity', + inputs=['sum_out'], + outputs=['scan_out'] + ) + scan_body = onnx.helper.make_graph( + [add_node, id_node], + 'scan_body', + [sum_in, next], + [sum_out, scan_out] + ) + # create scan op node + node = onnx.helper.make_node( + 'Scan', + inputs=['initial', 'x'], + outputs=['y', 'z'], + num_scan_inputs=1, + body=scan_body + ) + # create inputs for sequence-length 3, inner dimension 2 + initial = np.array([0, 0]).astype(np.float32).reshape((2,)) + x = np.array([1, 2, 3, 4, 5, 6]).astype(np.float32).reshape((3, 2)) + # final state computed = [1 + 3 + 5, 2 + 4 + 6] + y = np.array([9, 12]).astype(np.float32).reshape((2,)) + # scan-output computed + z = np.array([1, 2, 4, 6, 9, 12]).astype(np.float32).reshape((3, 2)) + + expect(node, inputs=[initial, x], outputs=[y, z], + name='test_scan9_sum', opset_imports=[onnx.helper.make_opsetid("", 9)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/scatter.py b/third_party/onnx/onnx/backend/test/case/node/scatter.py new file mode 100644 index 0000000000..c587d46c69 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/scatter.py @@ -0,0 +1,86 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from onnx import helper + + +# The below Scatter's numpy implementation is from https://stackoverflow.com/a/46204790/11767360 +def scatter(data, indices, updates, axis=0): # type: ignore + if axis < 0: + axis = data.ndim + axis + + idx_xsection_shape = indices.shape[:axis] + indices.shape[axis + 1:] + + def make_slice(arr, axis, i): # type: ignore + slc = [slice(None)] * arr.ndim + slc[axis] = i + return slc + + def unpack(packed): # type: ignore + unpacked = packed[0] + for i in range(1, len(packed)): + unpacked = unpacked, packed[i] + return unpacked + + # We use indices and axis parameters to create idx + # idx is in a form that can be used as a NumPy advanced indices for scattering of updates param. in data + idx = [[unpack(np.indices(idx_xsection_shape).reshape(indices.ndim - 1, -1)), + indices[tuple(make_slice(indices, axis, i))].reshape(1, -1)[0]] for i in range(indices.shape[axis])] + idx = list(np.concatenate(idx, axis=1)) + idx.insert(axis, idx.pop()) + + # updates_idx is a NumPy advanced indices for indexing of elements in the updates + updates_idx = list(idx) + updates_idx.pop(axis) + updates_idx.insert(axis, np.repeat(np.arange(indices.shape[axis]), np.prod(idx_xsection_shape))) + + scattered = np.copy(data) + scattered[tuple(idx)] = updates[tuple(updates_idx)] + return scattered + + +class Scatter(Base): + + @staticmethod + def export_scatter_without_axis() -> None: + node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + ) + data = np.zeros((3, 3), dtype=np.float32) + indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) + updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + + y = scatter(data, indices, updates) + # print(y) produces + # [[2.0, 1.1, 0.0], + # [1.0, 0.0, 2.2], + # [0.0, 2.1, 1.2]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_without_axis', opset_imports=[helper.make_opsetid("", 10)]) + + @staticmethod + def export_scatter_with_axis() -> None: + axis = 1 + node = onnx.helper.make_node( + 'Scatter', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) + indices = np.array([[1, 3]], dtype=np.int64) + updates = np.array([[1.1, 2.1]], dtype=np.float32) + + y = scatter(data, indices, updates, axis=axis) + # print(y) produces + # [[1.0, 1.1, 3.0, 2.1, 5.0]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_with_axis', opset_imports=[helper.make_opsetid("", 10)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/scatterelements.py b/third_party/onnx/onnx/backend/test/case/node/scatterelements.py new file mode 100644 index 0000000000..f134eb5133 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/scatterelements.py @@ -0,0 +1,140 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +# The below ScatterElements' numpy implementation is from https://stackoverflow.com/a/46204790/11767360 +def scatter_elements(data, indices, updates, axis=0, reduction='none'): # type: ignore + if axis < 0: + axis = data.ndim + axis + + idx_xsection_shape = indices.shape[:axis] + indices.shape[axis + 1:] + + def make_slice(arr, axis, i): # type: ignore + slc = [slice(None)] * arr.ndim + slc[axis] = i + return slc + + def unpack(packed): # type: ignore + unpacked = packed[0] + for i in range(1, len(packed)): + unpacked = unpacked, packed[i] + return unpacked + + def make_indices_for_duplicate(idx): # type: ignore + final_idx = list() + for i in range(len(idx[0])): + final_idx.append(tuple(idx_element[i] for idx_element in idx)) + return list(final_idx) + + # We use indices and axis parameters to create idx + # idx is in a form that can be used as a NumPy advanced indices for scattering of updates param. in data + idx = [[unpack(np.indices(idx_xsection_shape).reshape(indices.ndim - 1, -1)), + indices[tuple(make_slice(indices, axis, i))].reshape(1, -1)[0]] for i in range(indices.shape[axis])] + idx = list(np.concatenate(idx, axis=1)) + idx.insert(axis, idx.pop()) + + # updates_idx is a NumPy advanced indices for indexing of elements in the updates + updates_idx = list(idx) + updates_idx.pop(axis) + updates_idx.insert(axis, np.repeat(np.arange(indices.shape[axis]), np.prod(idx_xsection_shape))) + + scattered = np.copy(data) + if reduction == 'none': + scattered[tuple(idx)] = updates[tuple(updates_idx)] + else: + idx, updates_idx = make_indices_for_duplicate(idx), make_indices_for_duplicate(updates_idx) + for iter, idx_set in enumerate(idx): + if reduction == 'add': + scattered[idx_set] += updates[updates_idx[iter]] + elif reduction == 'mul': + scattered[idx_set] *= updates[updates_idx[iter]] + return scattered + + +class ScatterElements(Base): + + @staticmethod + def export_scatter_elements_without_axis() -> None: + node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + ) + data = np.zeros((3, 3), dtype=np.float32) + indices = np.array([[1, 0, 2], [0, 2, 1]], dtype=np.int64) + updates = np.array([[1.0, 1.1, 1.2], [2.0, 2.1, 2.2]], dtype=np.float32) + + y = scatter_elements(data, indices, updates) + # print(y) produces + # [[2.0, 1.1, 0.0], + # [1.0, 0.0, 2.2], + # [0.0, 2.1, 1.2]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_without_axis') + + @staticmethod + def export_scatter_elements_with_axis() -> None: + axis = 1 + node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) + indices = np.array([[1, 3]], dtype=np.int64) + updates = np.array([[1.1, 2.1]], dtype=np.float32) + + y = scatter_elements(data, indices, updates, axis) + # print(y) produces + # [[1.0, 1.1, 3.0, 2.1, 5.0]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_axis') + + @staticmethod + def export_scatter_elements_with_negative_indices() -> None: + axis = 1 + node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + ) + data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) + indices = np.array([[1, -3]], dtype=np.int64) + updates = np.array([[1.1, 2.1]], dtype=np.float32) + + y = scatter_elements(data, indices, updates, axis) + # print(y) produces + # [[1.0, 1.1, 2.1, 4.0, 5.0]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_negative_indices') + + @staticmethod + def export_scatter_elements_with_duplicate_indices() -> None: + axis = 1 + node = onnx.helper.make_node( + 'ScatterElements', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + axis=axis, + reduction='add', + ) + data = np.array([[1.0, 2.0, 3.0, 4.0, 5.0]], dtype=np.float32) + indices = np.array([[1, 1]], dtype=np.int64) + updates = np.array([[1.1, 2.1]], dtype=np.float32) + + y = scatter_elements(data, indices, updates, axis, reduction='add') + # print(y) produces + # [[1.0, 5.2, 3.0, 4.0, 5.0]] + + expect(node, inputs=[data, indices, updates], outputs=[y], + name='test_scatter_elements_with_duplicate_indices') diff --git a/third_party/onnx/onnx/backend/test/case/node/scatternd.py b/third_party/onnx/onnx/backend/test/case/node/scatternd.py new file mode 100644 index 0000000000..72f91597db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/scatternd.py @@ -0,0 +1,106 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def scatter_nd_impl(data, indices, updates, reduction='none'): # type: ignore + + # Check tensor shapes + assert indices.shape[-1] <= len(data.shape) + assert updates.shape == indices.shape[:-1] + data.shape[indices.shape[-1]:] + + # Compute output + output = np.copy(data) + for i in np.ndindex(indices.shape[:-1]): + # NOTE: The order of iteration in this loop is not specified. + if reduction == 'add': + output[indices[i]] += updates[i] + elif reduction == 'mul': + output[indices[i]] *= updates[i] + else: + output[indices[i]] = updates[i] + return output + + +class ScatterND(Base): + + @staticmethod + def export_scatternd() -> None: + node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + ) + data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + indices = np.array([[0], [2]], dtype=np.int64) + updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) + # Expecting output as np.array( + # [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + # [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + # [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + # [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + output = scatter_nd_impl(data, indices, updates) + expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd') + + @staticmethod + def export_scatternd_add() -> None: + node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='add', + ) + data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + indices = np.array([[0], [0]], dtype=np.int64) + updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) + # Expecting output as np.array( + # [[[7, 8, 9, 10], [13, 14, 15, 16], [18, 17, 16, 15], [16, 15, 14, 13]], + # [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + # [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + # [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + output = scatter_nd_impl(data, indices, updates, reduction='add') + expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_add') + + @staticmethod + def export_scatternd_multiply() -> None: + node = onnx.helper.make_node( + 'ScatterND', + inputs=['data', 'indices', 'updates'], + outputs=['y'], + reduction='mul', + ) + data = np.array( + [[[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]], + [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + indices = np.array([[0], [0]], dtype=np.int64) + updates = np.array( + [[[5, 5, 5, 5], [6, 6, 6, 6], [7, 7, 7, 7], [8, 8, 8, 8]], + [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]]], dtype=np.float32) + # Expecting output as np.array( + # [[[5, 10, 15, 20], [60, 72, 84, 96], [168, 147, 126, 105], [128, 96, 64, 32]], + # [[1, 2, 3, 4], [5, 6, 7, 8], [8, 7, 6, 5], [4, 3, 2, 1]], + # [[1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3, 3], [4, 4, 4, 4]], + # [[8, 7, 6, 5], [4, 3, 2, 1], [1, 2, 3, 4], [5, 6, 7, 8]]], dtype=np.float32) + output = scatter_nd_impl(data, indices, updates, reduction='mul') + expect(node, inputs=[data, indices, updates], outputs=[output], + name='test_scatternd_multiply') diff --git a/third_party/onnx/onnx/backend/test/case/node/selu.py b/third_party/onnx/onnx/backend/test/case/node/selu.py new file mode 100644 index 0000000000..2b2f49e3be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/selu.py @@ -0,0 +1,46 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Selu(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], + alpha=2.0, + gamma=3.0 + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + # expected output [-3.79272318, 0., 3.] + y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 + expect(node, inputs=[x], outputs=[y], + name='test_selu_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) * 3.0 + (np.exp(np.clip(x, -np.inf, 0)) - 1) * 2.0 * 3.0 + expect(node, inputs=[x], outputs=[y], + name='test_selu') + + @staticmethod + def export_selu_default() -> None: + default_alpha = 1.67326319217681884765625 + default_gamma = 1.05070102214813232421875 + node = onnx.helper.make_node( + 'Selu', + inputs=['x'], + outputs=['y'], + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, 0, np.inf) * default_gamma + \ + (np.exp(np.clip(x, -np.inf, 0)) - 1) * default_alpha * default_gamma + expect(node, inputs=[x], outputs=[y], + name='test_selu_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/sequence_map.py b/third_party/onnx/onnx/backend/test/case/node/sequence_map.py new file mode 100755 index 0000000000..b8ad3f0531 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sequence_map.py @@ -0,0 +1,242 @@ +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class SequenceMap(Base): + @staticmethod + def export_sequence_map_identity_1_sequence(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info( + 'in0', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['M'])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x'], + outputs=['y'], + body=body + ) + + x = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) + for _ in range(3)] + y = x + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + ] + expect(node, inputs=[x], outputs=[y], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence') + + @staticmethod + def export_sequence_map_identity_2_sequences(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info('out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('out1', onnx.TensorProto.FLOAT, ['M'])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body + ) + + x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] + x1 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] + y0 = x0 + y1 = x1 + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), + ] + expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_2_sequences') + + @staticmethod + def export_sequence_map_identity_1_sequence_1_tensor(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Identity', ['in0'], ['out0']), + onnx.helper.make_node('Identity', ['in1'], ['out1'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['M'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info( + 'out1', onnx.TensorProto.FLOAT, ['M'])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0', 'y1'], + body=body + ) + + x0 = [np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) for _ in range(3)] + x1 = np.random.uniform(0.0, 1.0, np.random.randint( + 1, 10)).astype(np.float32) + y0 = x0 + y1 = [x1 for _ in range(3)] + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M']), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['M'])), + ] + expect(node, inputs=[x0, x1], outputs=[y0, y1], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_identity_1_sequence_1_tensor') + + @staticmethod + def export_sequence_map_add_2_sequences(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body + ) + + N = [np.random.randint(1, 10) for _ in range(3)] + x0 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] + x1 = [np.random.uniform(0.0, 1.0, N[k]).astype(np.float32) + for k in range(3)] + y0 = [x0[k] + x1[k] for k in range(3)] + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + ] + expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_2_sequences') + + @staticmethod + def export_sequence_map_add_1_sequence_1_tensor(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Add', ['in0', 'in1'], ['out0'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('in0', onnx.TensorProto.FLOAT, ['N']), + onnx.helper.make_tensor_value_info('in1', onnx.TensorProto.FLOAT, ['N'])], + [onnx.helper.make_tensor_value_info( + 'out0', onnx.TensorProto.FLOAT, ['N'])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['x0', 'x1'], + outputs=['y0'], + body=body + ) + + x0 = [np.random.uniform(0.0, 1.0, 10).astype(np.float32) for k in range(3)] + x1 = np.random.uniform(0.0, 1.0, 10).astype(np.float32) + y0 = [x0[i] + x1 for i in range(3)] + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N']), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['N'])), + ] + expect(node, inputs=[x0, x1], outputs=[y0], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_add_1_sequence_1_tensor') + + @staticmethod + def export_sequence_map_extract_shapes(): # type: () -> None + body = onnx.helper.make_graph( + [onnx.helper.make_node('Shape', ['x'], ['shape'])], + 'seq_map_body', + [onnx.helper.make_tensor_value_info('x', onnx.TensorProto.FLOAT, ['H', 'W', 'C'])], + [onnx.helper.make_tensor_value_info('shape', onnx.TensorProto.INT64, [3])] + ) + + node = onnx.helper.make_node( + 'SequenceMap', + inputs=['in_seq'], + outputs=['shapes'], + body=body + ) + + shapes = [ + np.array([40, 30, 3], dtype=np.int64), + np.array([20, 10, 3], dtype=np.int64), + np.array([10, 5, 3], dtype=np.int64), + ] + x0 = [np.zeros(shape, dtype=np.float32) for shape in shapes] + input_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.FLOAT, ['H', 'W', 'C'])), + ] + output_type_protos = [ + onnx.helper.make_sequence_type_proto( + onnx.helper.make_tensor_type_proto(onnx.TensorProto.INT64, [3])), + ] + expect(node, inputs=[x0], outputs=[shapes], + input_type_protos=input_type_protos, + output_type_protos=output_type_protos, + name='test_sequence_map_extract_shapes') diff --git a/third_party/onnx/onnx/backend/test/case/node/sequenceinsert.py b/third_party/onnx/onnx/backend/test/case/node/sequenceinsert.py new file mode 100644 index 0000000000..d5ca6633e6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sequenceinsert.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import List, Any + +import onnx +from ..base import Base +from . import expect + + +def sequence_insert_reference_implementation(sequence: List[Any], tensor: np.ndarray, position: np.ndarray = None) -> List[Any]: + # make a copy of input sequence + seq = list(sequence) + if position is not None: + # In these cases, insert_position will be between [-len(sequence), len(sequence)] + # The position argument will be in the format np.array([pos_index]) + insert_position = position[0] + seq.insert(insert_position, tensor) + else: + # Default position of insertion is at the end of the sequence. + seq.append(tensor) + return seq + + +class SequenceInsert(Base): + + @staticmethod + def export() -> None: + test_cases = { + 'at_back': [np.array([10, 11, 12]).astype(np.int64)], + 'at_front': [np.array([-2, -1, 0]), np.array([0]).astype(np.int64)] + } + sequence = [np.array([1, 2, 3, 4]).astype(np.int64), np.array([5, 6, 7]).astype(np.int64), np.array([8, 9]).astype(np.int64)] + + for test_name, test_inputs in test_cases.items(): + tensor = test_inputs[0].astype(np.int64) + + if len(test_inputs) > 1: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor', 'position'], + outputs=['output_sequence'] + ) + position = test_inputs[1] + inserted = sequence_insert_reference_implementation(sequence, tensor, position) + expect(node, inputs=[sequence, tensor, position], outputs=[inserted], + name='test_sequence_insert_' + test_name) + else: + node = onnx.helper.make_node( + 'SequenceInsert', + inputs=['sequence', 'tensor'], + outputs=['output_sequence'] + ) + inserted = sequence_insert_reference_implementation(sequence, tensor) + expect(node, inputs=[sequence, tensor], outputs=[inserted], + name='test_sequence_insert_' + test_name) diff --git a/third_party/onnx/onnx/backend/test/case/node/shape.py b/third_party/onnx/onnx/backend/test/case/node/shape.py new file mode 100644 index 0000000000..eaed93059c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/shape.py @@ -0,0 +1,58 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +# Reference implementation of shape op +def shape_reference_impl(x, start=None, end=None): # type: ignore + dims = x.shape[start:end] + return np.array(dims).astype(np.int64) + + +def test_shape(testname, xval, start=None, end=None): # type: ignore + node = onnx.helper.make_node( + 'Shape', + inputs=['x'], + outputs=['y'], + start=start, + end=end + ) + + yval = shape_reference_impl(xval, start, end) + + expect(node, inputs=[xval], outputs=[yval], name='test_shape' + testname) + + +class Shape(Base): + + @staticmethod + def export() -> None: + x = np.array([ + [1, 2, 3], + [4, 5, 6], + ]).astype(np.float32) + test_shape('_example', x) # preserve names of original test cases + + x = np.random.randn(3, 4, 5).astype(np.float32) + + test_shape('', x) # preserve names of original test cases + + test_shape('_start_1', x, start=1) + + test_shape('_end_1', x, end=1) + + test_shape('_start_negative_1', x, start=-1) + + test_shape('_end_negative_1', x, end=-1) + + test_shape('_start_1_end_negative_1', x, start=1, end=-1) + + test_shape('_start_1_end_2', x, start=1, end=2) + + test_shape('_clip_start', x, start=-10) + + test_shape('_clip_end', x, end=10) diff --git a/third_party/onnx/onnx/backend/test/case/node/shrink.py b/third_party/onnx/onnx/backend/test/case/node/shrink.py new file mode 100644 index 0000000000..5e4de81b4a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/shrink.py @@ -0,0 +1,37 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Shrink(Base): + + @staticmethod + def export_hard_shrink() -> None: + node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, + ) + X = np.arange(-2.0, 2.1, dtype=np.float32) + Y = np.array([-2, 0, 0, 0, 2], dtype=np.float32) + expect(node, inputs=[X], outputs=[Y], + name='test_shrink_hard') + + @staticmethod + def export_soft_shrink() -> None: + node = onnx.helper.make_node( + 'Shrink', + inputs=['x'], + outputs=['y'], + lambd=1.5, + bias=1.5, + ) + X = np.arange(-2.0, 2.1, dtype=np.float32) + Y = np.array([-0.5, 0, 0, 0, 0.5], dtype=np.float32) + expect(node, inputs=[X], outputs=[Y], + name='test_shrink_soft') diff --git a/third_party/onnx/onnx/backend/test/case/node/sigmoid.py b/third_party/onnx/onnx/backend/test/case/node/sigmoid.py new file mode 100644 index 0000000000..7fd34b5b0a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sigmoid.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sigmoid(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sigmoid', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = 1.0 / (1.0 + np.exp(np.negative(x))) # expected output [0.26894143, 0.5, 0.7310586] + expect(node, inputs=[x], outputs=[y], + name='test_sigmoid_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = 1.0 / (1.0 + np.exp(np.negative(x))) + expect(node, inputs=[x], outputs=[y], + name='test_sigmoid') diff --git a/third_party/onnx/onnx/backend/test/case/node/sign.py b/third_party/onnx/onnx/backend/test/case/node/sign.py new file mode 100644 index 0000000000..72e926067a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sign.py @@ -0,0 +1,23 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sign(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sign', + inputs=['x'], + outputs=['y'], + ) + + x = np.array(range(-5, 6)).astype(np.float32) + y = np.sign(x) + expect(node, inputs=[x], outputs=[y], + name='test_sign') diff --git a/third_party/onnx/onnx/backend/test/case/node/sin.py b/third_party/onnx/onnx/backend/test/case/node/sin.py new file mode 100644 index 0000000000..e3e74d3690 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sin.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sin(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sin', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.sin(x) + expect(node, inputs=[x], outputs=[y], + name='test_sin_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.sin(x) + expect(node, inputs=[x], outputs=[y], + name='test_sin') diff --git a/third_party/onnx/onnx/backend/test/case/node/sinh.py b/third_party/onnx/onnx/backend/test/case/node/sinh.py new file mode 100644 index 0000000000..898d9818c5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sinh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sinh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sinh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.sinh(x) # expected output [-1.17520118, 0., 1.17520118] + expect(node, inputs=[x], outputs=[y], + name='test_sinh_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.sinh(x) + expect(node, inputs=[x], outputs=[y], + name='test_sinh') diff --git a/third_party/onnx/onnx/backend/test/case/node/size.py b/third_party/onnx/onnx/backend/test/case/node/size.py new file mode 100644 index 0000000000..2efbddff8a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/size.py @@ -0,0 +1,33 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Size(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Size', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([ + [1, 2, 3], + [4, 5, 6], + ]).astype(np.float32) + y = np.array(6).astype(np.int64) + + expect(node, inputs=[x], outputs=[y], + name='test_size_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.array(x.size).astype(np.int64) + + expect(node, inputs=[x], outputs=[y], + name='test_size') diff --git a/third_party/onnx/onnx/backend/test/case/node/slice.py b/third_party/onnx/onnx/backend/test/case/node/slice.py new file mode 100644 index 0000000000..af6586a1be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/slice.py @@ -0,0 +1,150 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Slice(Base): + + @staticmethod + def export_slice() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + y = x[0:3, 0:10] + starts = np.array([0, 0], dtype=np.int64) + ends = np.array([3, 10], dtype=np.int64) + axes = np.array([0, 1], dtype=np.int64) + steps = np.array([1, 1], dtype=np.int64) + + expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice') + + @staticmethod + def export_slice_neg() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([0], dtype=np.int64) + ends = np.array([-1], dtype=np.int64) + axes = np.array([1], dtype=np.int64) + steps = np.array([1], dtype=np.int64) + y = x[:, 0:-1] + + expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg') + + @staticmethod + def export_slice_start_out_of_bounds() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([1000], dtype=np.int64) + ends = np.array([1000], dtype=np.int64) + axes = np.array([1], dtype=np.int64) + steps = np.array([1], dtype=np.int64) + y = x[:, 1000:1000] + + expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_start_out_of_bounds') + + @staticmethod + def export_slice_end_out_of_bounds() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([1], dtype=np.int64) + ends = np.array([1000], dtype=np.int64) + axes = np.array([1], dtype=np.int64) + steps = np.array([1], dtype=np.int64) + y = x[:, 1:1000] + + expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_end_out_of_bounds') + + @staticmethod + def export_slice_default_axes() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([0, 0, 3], dtype=np.int64) + ends = np.array([20, 10, 4], dtype=np.int64) + y = x[:, :, 3:4] + + expect(node, inputs=[x, starts, ends], outputs=[y], + name='test_slice_default_axes') + + @staticmethod + def export_slice_default_steps() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([0, 0, 3], dtype=np.int64) + ends = np.array([20, 10, 4], dtype=np.int64) + axes = np.array([0, 1, 2], dtype=np.int64) + y = x[:, :, 3:4] + + expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_default_steps') + + @staticmethod + def export_slice_neg_steps() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes', 'steps'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([20, 10, 4], dtype=np.int64) + ends = np.array([0, 0, 1], dtype=np.int64) + axes = np.array([0, 1, 2], dtype=np.int64) + steps = np.array([-1, -3, -2]).astype(np.int64) + y = x[20:0:-1, 10:0:-3, 4:1:-2] + + expect(node, inputs=[x, starts, ends, axes, steps], outputs=[y], + name='test_slice_neg_steps') + + @staticmethod + def export_slice_negative_axes() -> None: + node = onnx.helper.make_node( + 'Slice', + inputs=['x', 'starts', 'ends', 'axes'], + outputs=['y'], + ) + + x = np.random.randn(20, 10, 5).astype(np.float32) + starts = np.array([0, 0, 3], dtype=np.int64) + ends = np.array([20, 10, 4], dtype=np.int64) + axes = np.array([0, -2, -1], dtype=np.int64) + y = x[:, :, 3:4] + + expect(node, inputs=[x, starts, ends, axes], outputs=[y], + name='test_slice_negative_axes') diff --git a/third_party/onnx/onnx/backend/test/case/node/softmax.py b/third_party/onnx/onnx/backend/test/case/node/softmax.py new file mode 100644 index 0000000000..b02827166b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/softmax.py @@ -0,0 +1,96 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def softmax(x: np.ndarray, axis: int = -1) -> np.ndarray: + x_max = np.max(x, axis=axis, keepdims=True) + tmp = np.exp(x - x_max) + s = np.sum(tmp, axis=axis, keepdims=True) + return tmp / s + + +class Softmax(Base): + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + ) + x = np.array([[-1, 0, 1]]).astype(np.float32) + # expected output [[0.09003058, 0.24472848, 0.66524094]] + y = softmax(x, axis=1) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_example') + + @staticmethod + def export_softmax_axis() -> None: + x = np.array([[0, 1, 2, 3], [10000, 10001, 10002, 10003]] + ).astype(np.float32) + # expected output + # [[0.032058604 0.08714432 0.23688284 0.6439143 ] + # [0.032058604 0.08714432 0.23688284 0.6439143 ]] + y = softmax(x) + + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + ) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_large_number') + + x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=0, + ) + y = softmax(x, axis=0) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_0') + + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=1, + ) + y = softmax(x, axis=1) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_1') + + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=2, + ) + y = softmax(x, axis=2) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_axis_2') + + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + axis=-1, + ) + y = softmax(x, axis=-1) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_negative_axis') + + # default axis is -1 + node = onnx.helper.make_node( + 'Softmax', + inputs=['x'], + outputs=['y'], + ) + expect(node, inputs=[x], outputs=[y], + name='test_softmax_default_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/softmaxcrossentropy.py b/third_party/onnx/onnx/backend/test/case/node/softmaxcrossentropy.py new file mode 100644 index 0000000000..fa3059b328 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/softmaxcrossentropy.py @@ -0,0 +1,902 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def softmaxcrossentropy(x, target, weight=None, reduction='mean', ignore_index=None, get_log_prob=None): # type: ignore + input_shape = x.shape + if len(input_shape) == 1: + raise RuntimeError("Unsupported shape") + + target_shape = target.shape + N = input_shape[0] + C = input_shape[1] + + # compute log_softmax + max_x = np.max(x, axis=1, keepdims=True) + exp_x = np.exp(x - max_x) + p = exp_x / np.sum(exp_x, axis=1, keepdims=True) + inp = np.log(p) + log_prob = None + if get_log_prob is True: + log_prob = np.copy(inp) + + # initialize the positional weights when required + gather_weight = None + if weight is not None: + # setting mode='clip' to deal with ignore_index > C or < 0 cases. + # when the target value is > C or < 0, it doesn't matter which value we are + # taking in gather_weight, since it will be set to 0 in the following if-block + # use np.int32 to make it compatible with x86 machines + gather_weight = np.take(weight, np.array(target, dtype=np.int32), mode='clip') + # set `ignore_index`'s loss weight to 0. + # The loss tensor will be multiplied by this weight tensor, + # so `ingore_index`'s loss value will be eliminated. + if ignore_index is not None: + gather_weight = np.where(target == ignore_index, 0, gather_weight).astype(dtype=np.float32) + elif ignore_index is not None: + gather_weight = np.where(target == ignore_index, 0, 1).astype(dtype=np.float32) + + # if input is 4-d and above, make it 3-d + if len(input_shape) != 3: + inp = inp.reshape((N, C, -1)) + target = target.reshape((N, -1)) + + # Get a dimension from the reshaped input. + # If the original input shape is [N, C, H, W], + # the D here should be H * W because we reshape + # [N, C, H, W] to [N, C, H * W]. + D = inp.shape[2] + neg_gather_element_input = np.zeros((N, D), dtype=np.float32) + for i in range(N): + for d in range(D): + if target[i][d] != ignore_index: + neg_gather_element_input[i][d] = -inp[i][target[i][d]][d] + + loss = neg_gather_element_input + + # if the input was 4-d or above reshape to the right shape + if len(input_shape) != 3: + loss = loss.reshape(target_shape) + + # apply the weights when required + if gather_weight is not None: + loss = gather_weight * loss + if reduction == 'mean': + loss = loss.sum() / gather_weight.sum() + if get_log_prob is True: + return loss, log_prob + else: + return loss + + if reduction == 'mean': + loss = np.mean(loss) + elif reduction == 'sum': + loss = np.sum(loss) + + if get_log_prob is True: + return loss, log_prob + else: + return loss + + +class SoftmaxCrossEntropyLoss(Base): + + @staticmethod + def export_softmaxcrossentropy_none() -> None: + # Define operator attributes. + reduction = 'none' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, reduction='none') + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_none') + + @staticmethod + def export_softmaxcrossentropy_none_log_prob() -> None: + # Define operator attributes. + reduction = 'none' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, reduction='none', get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_none_log_prob') + + @staticmethod + def export_softmaxcrossentropy_none_weights() -> None: + # Define operator attributes. + reduction = 'none' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, weight=weights, reduction='none') + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_none_weights') + + @staticmethod + def export_softmaxcrossentropy_none_weights_log_prob() -> None: + # Define operator attributes. + reduction = 'none' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, reduction='none', get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_none_weights_log_prob') + + @staticmethod + def export_softmaxcrossentropy_sum() -> None: + # Define operator attributes. + reduction = 'sum' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, reduction='sum') + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_sum') + + @staticmethod + def export_softmaxcrossentropy_sum_log_prob() -> None: + # Define operator attributes. + reduction = 'sum' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, reduction='sum', get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_sum_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels) + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean') + + @staticmethod + def export_softmaxcrossentropy_mean_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_3d() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, y) + + # Check results + expect(node, inputs=[x, y], outputs=[sce], name='test_sce_mean_3d') + + @staticmethod + def export_softmaxcrossentropy_mean_3d_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + y = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, y, get_log_prob=True) + + # Check results + expect(node, inputs=[x, y], outputs=[loss, log_prob], name='test_sce_mean_3d_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_weights() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, weight=weights) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(0) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + labels[0] = np.int64(0) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(0) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + labels[0] = np.int64(0) + weights = np.array([0.9, 0.7, 0.8, 0.9, 0.9], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + labels[0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, )).astype(np.int64) + labels[0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii_3d() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(1) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + labels[0][0] = np.int64(1) + weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_3d') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii_3d_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(1) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + labels[0][0] = np.int64(1) + weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, weight=weights, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_3d_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii_3d() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + labels[0][0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_3d') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii_3d_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2)).astype(np.int64) + labels[0][0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_3d_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii_4d() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2, 7).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) + labels[0][0][0] = np.int64(2) + weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[sce], name='test_sce_mean_weight_ii_4d') + + @staticmethod + def export_softmaxcrossentropy_mean_weights_ii_4d_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2, 7).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) + labels[0][0][0] = np.int64(2) + weights = np.array([0.2, 0.3, 0.6, 0.1, 0.5], dtype=np.float32) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, weight=weights, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels, weights], outputs=[loss, log_prob], name='test_sce_mean_weight_ii_4d_log_prob') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii_4d() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2, 7).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) + labels[0][0][0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + sce = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index) + + # Check results + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_mean_no_weight_ii_4d') + + @staticmethod + def export_softmaxcrossentropy_mean_no_weights_ii_4d_log_prob() -> None: + # Define operator attributes. + reduction = 'mean' + ignore_index = np.int64(2) + + # Create operator. + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + # Define operator inputs. + np.random.seed(0) + x = np.random.rand(3, 5, 2, 7).astype(np.float32) + labels = np.random.randint(0, high=5, size=(3, 2, 7)).astype(np.int64) + labels[0][0][0] = np.int64(2) + + # Compute SoftmaxCrossEntropyLoss + loss, log_prob = softmaxcrossentropy(x, labels, reduction=reduction, ignore_index=ignore_index, get_log_prob=True) + + # Check results + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_mean_no_weight_ii_4d_log_prob') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_mean_weight() -> None: + reduction = 'mean' + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction) + + expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3d4d5_mean_weight') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_mean_weight_log_prob() -> None: + reduction = 'mean' + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + weight = np.random.rand(C).astype(np.float32) + + loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + get_log_prob=True) + + expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_mean_weight_log_prob') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_none_no_weight() -> None: + reduction = 'none' + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + + sce = softmaxcrossentropy(x, + labels, + reduction=reduction) + + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3d4d5_none_no_weight') + + @staticmethod + def export_input_shape_is_NCd1d2d3d4d5_none_no_weight_log_prob() -> None: + reduction = 'none' + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction) + + N, C, dim1, dim2, dim3, dim4, dim5 = 3, 5, 6, 6, 5, 3, 4 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3, dim4, dim5).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3, dim4, dim5)).astype(np.int64) + + loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + get_log_prob=True) + + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3d4d5_none_no_weight_log_prob') + + @staticmethod + def export_input_shape_is_NCd1_mean_weight_negative_ii() -> None: + reduction = 'mean' + ignore_index = np.int64(-1) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1 = 3, 5, 6 + np.random.seed(0) + x = np.random.rand(N, C, dim1).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) + labels[0][0] = -1 + weight = np.random.rand(C).astype(np.float32) + + sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1_mean_weight_negative_ii') + + @staticmethod + def export_input_shape_is_NCd1_mean_weight_negative_ii_log_prob() -> None: + reduction = 'mean' + ignore_index = np.int64(-1) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1 = 3, 5, 6 + np.random.seed(0) + x = np.random.rand(N, C, dim1).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1)).astype(np.int64) + labels[0][0] = -1 + weight = np.random.rand(C).astype(np.float32) + + loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + + expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1_mean_weight_negative_ii_log_prob') + + @staticmethod + def export_input_shape_is_NCd1d2d3_none_no_weight_negative_ii() -> None: + reduction = 'none' + ignore_index = np.int64(-5) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) + labels[0][0][0][0] = -5 + + sce = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[x, labels], outputs=[sce], name='test_sce_NCd1d2d3_none_no_weight_negative_ii') + + @staticmethod + def export_input_shape_is_NCd1d2d3_none_no_weight_negative_ii_log_prob() -> None: + reduction = 'none' + ignore_index = np.int64(-5) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + N, C, dim1, dim2, dim3 = 3, 5, 6, 6, 5 + np.random.seed(0) + x = np.random.rand(N, C, dim1, dim2, dim3).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N, dim1, dim2, dim3)).astype(np.int64) + labels[0][0][0][0] = -5 + + loss, log_prob = softmaxcrossentropy(x, + labels, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + + expect(node, inputs=[x, labels], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob') + + @staticmethod + def export_input_shape_is_NCd1d2d3_sum_weight_high_ii() -> None: + reduction = 'sum' + ignore_index = np.int64(10) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z'], + reduction=reduction, + ignore_index=ignore_index) + + N, C = 3, 5 + np.random.seed(0) + x = np.random.rand(N, C).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) + labels[0] = 10 + weight = np.random.rand(C).astype(np.float32) + + sce = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index) + + expect(node, inputs=[x, labels, weight], outputs=[sce], name='test_sce_NCd1d2d3_sum_weight_high_ii') + + @staticmethod + def export_input_shape_is_NCd1d2d3_sum_weight_high_ii_log_prob() -> None: + reduction = 'sum' + ignore_index = np.int64(10) + + node = onnx.helper.make_node('SoftmaxCrossEntropyLoss', + inputs=['x', 'y', 'w'], + outputs=['z', 'log_prob'], + reduction=reduction, + ignore_index=ignore_index) + + N, C = 3, 5 + np.random.seed(0) + x = np.random.rand(N, C).astype(np.float32) + labels = np.random.randint(0, high=C, size=(N)).astype(np.int64) + labels[0] = 10 + weight = np.random.rand(C).astype(np.float32) + + loss, log_prob = softmaxcrossentropy(x, + labels, + weight=weight, + reduction=reduction, + ignore_index=ignore_index, + get_log_prob=True) + + expect(node, inputs=[x, labels, weight], outputs=[loss, log_prob], name='test_sce_NCd1d2d3_sum_weight_high_ii_log_prob') diff --git a/third_party/onnx/onnx/backend/test/case/node/softplus.py b/third_party/onnx/onnx/backend/test/case/node/softplus.py new file mode 100644 index 0000000000..fbcc83ebc3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/softplus.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Softplus(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Softplus', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.log(np.exp(x) + 1) # expected output [0.31326166, 0.69314718, 1.31326163] + expect(node, inputs=[x], outputs=[y], + name='test_softplus_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.log(np.exp(x) + 1) + expect(node, inputs=[x], outputs=[y], + name='test_softplus') diff --git a/third_party/onnx/onnx/backend/test/case/node/softsign.py b/third_party/onnx/onnx/backend/test/case/node/softsign.py new file mode 100644 index 0000000000..c0715ce559 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/softsign.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Softsign(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Softsign', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.array([-0.5, 0, 0.5]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_softsign_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = x / (1 + np.abs(x)) + expect(node, inputs=[x], outputs=[y], + name='test_softsign') diff --git a/third_party/onnx/onnx/backend/test/case/node/spacetodepth.py b/third_party/onnx/onnx/backend/test/case/node/spacetodepth.py new file mode 100644 index 0000000000..0278ad3d87 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/spacetodepth.py @@ -0,0 +1,57 @@ + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class SpaceToDepth(Base): + + @staticmethod + def export() -> None: + b, c, h, w = shape = (2, 2, 6, 6) + blocksize = 2 + node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=blocksize, + ) + x = np.random.random_sample(shape).astype(np.float32) + tmp = np.reshape(x, [b, c, + h // blocksize, blocksize, + w // blocksize, blocksize]) + tmp = np.transpose(tmp, [0, 3, 5, 1, 2, 4]) + y = np.reshape(tmp, [b, c * (blocksize**2), + h // blocksize, + w // blocksize]) + expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth') + + @staticmethod + def export_example() -> None: + node = onnx.helper.make_node( + 'SpaceToDepth', + inputs=['x'], + outputs=['y'], + blocksize=2, + ) + + # (1, 1, 4, 6) input tensor + x = np.array([[[[0, 6, 1, 7, 2, 8], + [12, 18, 13, 19, 14, 20], + [3, 9, 4, 10, 5, 11], + [15, 21, 16, 22, 17, 23]]]]).astype(np.float32) + + # (1, 4, 2, 3) output tensor + y = np.array([[[[0, 1, 2], + [3, 4, 5]], + [[6, 7, 8], + [9, 10, 11]], + [[12, 13, 14], + [15, 16, 17]], + [[18, 19, 20], + [21, 22, 23]]]]).astype(np.float32) + expect(node, inputs=[x], outputs=[y], + name='test_spacetodepth_example') diff --git a/third_party/onnx/onnx/backend/test/case/node/split.py b/third_party/onnx/onnx/backend/test/case/node/split.py new file mode 100644 index 0000000000..dcc1ae5eee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/split.py @@ -0,0 +1,104 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Split(Base): + + @staticmethod + def export_1d() -> None: + input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + + node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'], + axis=0 + ) + + expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] + expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_1d') + + split = np.array([2, 4]).astype(np.int64) + node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=0, + ) + + expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] + expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_1d') + + @staticmethod + def export_2d() -> None: + input = np.array([[1., 2., 3., 4., 5., 6.], + [7., 8., 9., 10., 11., 12.]]).astype(np.float32) + + node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2'], + axis=1 + ) + + expected_outputs = [np.array([[1., 2., 3.], [7., 8., 9.]]).astype(np.float32), + np.array([[4., 5., 6.], [10., 11., 12.]]).astype(np.float32)] + + expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_2d') + + split = np.array([2, 4]).astype(np.int64) + node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'], + axis=1, + ) + + expected_outputs = [np.array([[1., 2.], [7., 8.]]).astype(np.float32), + np.array([[3., 4., 5., 6.], [9., 10., 11., 12.]]).astype(np.float32)] + + expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_2d') + + @staticmethod + def export_default_values() -> None: + input = np.array([1., 2., 3., 4., 5., 6.]).astype(np.float32) + + # If axis is not specified, split is applied on default axis 0 + node = onnx.helper.make_node( + 'Split', + inputs=['input'], + outputs=['output_1', 'output_2', 'output_3'] + ) + + expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4.]).astype(np.float32), np.array([5., 6.]).astype(np.float32)] + expect(node, inputs=[input], outputs=[y for y in expected_outputs], name='test_split_equal_parts_default_axis') + + split = np.array([2, 4]).astype(np.int64) + node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2'] + ) + + expected_outputs = [np.array([1., 2.]).astype(np.float32), np.array([3., 4., 5., 6.]).astype(np.float32)] + expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_variable_parts_default_axis') + + @staticmethod + def export_zero_size_splits() -> None: + input = np.array([]).astype(np.float32) + + # Split emtpy tensor to tensors of size zero + split = np.array([0, 0, 0]).astype(np.int64) + node = onnx.helper.make_node( + 'Split', + inputs=['input', 'split'], + outputs=['output_1', 'output_2', 'output_3'] + ) + + expected_outputs = [np.array([]).astype(np.float32), np.array([]).astype(np.float32), np.array([]).astype(np.float32)] + expect(node, inputs=[input, split], outputs=[y for y in expected_outputs], name='test_split_zero_size_splits') diff --git a/third_party/onnx/onnx/backend/test/case/node/sqrt.py b/third_party/onnx/onnx/backend/test/case/node/sqrt.py new file mode 100644 index 0000000000..4647d7c6ef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sqrt.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sqrt(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sqrt', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([1, 4, 9]).astype(np.float32) + y = np.sqrt(x) # expected output [1., 2., 3.] + expect(node, inputs=[x], outputs=[y], + name='test_sqrt_example') + + x = np.abs(np.random.randn(3, 4, 5).astype(np.float32)) + y = np.sqrt(x) + expect(node, inputs=[x], outputs=[y], + name='test_sqrt') diff --git a/third_party/onnx/onnx/backend/test/case/node/squeeze.py b/third_party/onnx/onnx/backend/test/case/node/squeeze.py new file mode 100644 index 0000000000..bed1bd787e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/squeeze.py @@ -0,0 +1,37 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from onnx.backend.test.case.base import Base +from onnx.backend.test.case.node import expect + + +class Squeeze(Base): + + @staticmethod + def export_squeeze() -> None: + node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + x = np.random.randn(1, 3, 4, 5).astype(np.float32) + axes = np.array([0], dtype=np.int64) + y = np.squeeze(x, axis=0) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze') + + @staticmethod + def export_squeeze_negative_axes() -> None: + node = onnx.helper.make_node( + 'Squeeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + x = np.random.randn(1, 3, 1, 5).astype(np.float32) + axes = np.array([-2], dtype=np.int64) + y = np.squeeze(x, axis=-2) + expect(node, inputs=[x, axes], outputs=[y], + name='test_squeeze_negative_axes') diff --git a/third_party/onnx/onnx/backend/test/case/node/stringnormalizer.py b/third_party/onnx/onnx/backend/test/case/node/stringnormalizer.py new file mode 100644 index 0000000000..ccf09bca62 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/stringnormalizer.py @@ -0,0 +1,108 @@ +# SPDX-License-Identifier: Apache-2.0 +# coding: utf-8 + + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class StringNormalizer(Base): + + @staticmethod + def export_nostopwords_nochangecase() -> None: + input = np.array([u'monday', u'tuesday']).astype(object) + output = input + + # No stopwords. This is a NOOP + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_nostopwords_nochangecase') + + @staticmethod + def export_monday_casesensintive_nochangecase() -> None: + input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) + stopwords = [u'monday'] + + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + is_case_sensitive=1, + stopwords=stopwords + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_nochangecase') + + @staticmethod + def export_monday_casesensintive_lower() -> None: + input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + output = np.array([u'tuesday', u'wednesday', u'thursday']).astype(object) + stopwords = [u'monday'] + + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='LOWER', + is_case_sensitive=1, + stopwords=stopwords + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_lower') + + @staticmethod + def export_monday_casesensintive_upper() -> None: + input = np.array([u'monday', u'tuesday', u'wednesday', u'thursday']).astype(object) + output = np.array([u'TUESDAY', u'WEDNESDAY', u'THURSDAY']).astype(object) + stopwords = [u'monday'] + + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_casesensintive_upper') + + @staticmethod + def export_monday_empty_output() -> None: + input = np.array([u'monday', u'monday']).astype(object) + output = np.array([u'']).astype(object) + stopwords = [u'monday'] + + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + is_case_sensitive=1, + stopwords=stopwords + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_empty_output') + + @staticmethod + def export_monday_insensintive_upper_twodim() -> None: + input = np.array([u'Monday', u'tuesday', u'wednesday', u'Monday', u'tuesday', u'wednesday']).astype(object).reshape([1, 6]) + + # It does upper case cecedille, accented E + # and german umlaut but fails + # with german eszett + output = np.array([u'TUESDAY', u'WEDNESDAY', u'TUESDAY', u'WEDNESDAY']).astype(object).reshape([1, 4]) + stopwords = [u'monday'] + + node = onnx.helper.make_node( + 'StringNormalizer', + inputs=['x'], + outputs=['y'], + case_change_action='UPPER', + stopwords=stopwords + ) + expect(node, inputs=[input], outputs=[output], name='test_strnormalizer_export_monday_insensintive_upper_twodim') diff --git a/third_party/onnx/onnx/backend/test/case/node/sub.py b/third_party/onnx/onnx/backend/test/case/node/sub.py new file mode 100644 index 0000000000..856ade897b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sub.py @@ -0,0 +1,50 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sub(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.array([1, 2, 3]).astype(np.float32) + y = np.array([3, 2, 1]).astype(np.float32) + z = x - y # expected output [-2., 0., 2.] + expect(node, inputs=[x, y], outputs=[z], + name='test_sub_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(3, 4, 5).astype(np.float32) + z = x - y + expect(node, inputs=[x, y], outputs=[z], + name='test_sub') + + x = np.random.randint(12, 24, size=(3, 4, 5), dtype=np.uint8) + y = np.random.randint(12, size=(3, 4, 5), dtype=np.uint8) + z = x - y + expect(node, inputs=[x, y], outputs=[z], + name='test_sub_uint8') + + @staticmethod + def export_sub_broadcast() -> None: + node = onnx.helper.make_node( + 'Sub', + inputs=['x', 'y'], + outputs=['z'], + ) + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.random.randn(5).astype(np.float32) + z = x - y + expect(node, inputs=[x, y], outputs=[z], + name='test_sub_bcast') diff --git a/third_party/onnx/onnx/backend/test/case/node/sum.py b/third_party/onnx/onnx/backend/test/case/node/sum.py new file mode 100644 index 0000000000..2806ab26c4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/sum.py @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Sum(Base): + + @staticmethod + def export() -> None: + data_0 = np.array([3, 0, 2]).astype(np.float32) + data_1 = np.array([1, 3, 4]).astype(np.float32) + data_2 = np.array([2, 6, 6]).astype(np.float32) + result = np.array([6, 9, 12]).astype(np.float32) + node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1', 'data_2'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1, data_2], outputs=[result], + name='test_sum_example') + + node = onnx.helper.make_node( + 'Sum', + inputs=['data_0'], + outputs=['result'], + ) + expect(node, inputs=[data_0], outputs=[data_0], + name='test_sum_one_input') + + result = np.add(data_0, data_1) + node = onnx.helper.make_node( + 'Sum', + inputs=['data_0', 'data_1'], + outputs=['result'], + ) + expect(node, inputs=[data_0, data_1], outputs=[result], + name='test_sum_two_inputs') diff --git a/third_party/onnx/onnx/backend/test/case/node/tan.py b/third_party/onnx/onnx/backend/test/case/node/tan.py new file mode 100644 index 0000000000..d03f8fbc61 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/tan.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Tan(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Tan', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.tan(x) + expect(node, inputs=[x], outputs=[y], + name='test_tan_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.tan(x) + expect(node, inputs=[x], outputs=[y], + name='test_tan') diff --git a/third_party/onnx/onnx/backend/test/case/node/tanh.py b/third_party/onnx/onnx/backend/test/case/node/tanh.py new file mode 100644 index 0000000000..ae689239f6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/tanh.py @@ -0,0 +1,28 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Tanh(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Tanh', + inputs=['x'], + outputs=['y'], + ) + + x = np.array([-1, 0, 1]).astype(np.float32) + y = np.tanh(x) # expected output [-0.76159418, 0., 0.76159418] + expect(node, inputs=[x], outputs=[y], + name='test_tanh_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.tanh(x) + expect(node, inputs=[x], outputs=[y], + name='test_tanh') diff --git a/third_party/onnx/onnx/backend/test/case/node/tfidfvectorizer.py b/third_party/onnx/onnx/backend/test/case/node/tfidfvectorizer.py new file mode 100644 index 0000000000..260eb59ddf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/tfidfvectorizer.py @@ -0,0 +1,206 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +from typing import Any, Sequence + +import onnx +from onnx import NodeProto +from ..base import Base +from . import expect + + +class TfIdfVectorizerHelper(): + def __init__(self, **params: Any) -> None: + # Attr names + mode = str('mode') + min_gram_length = str('min_gram_length') + max_gram_length = str('max_gram_length') + max_skip_count = str('max_skip_count') + ngram_counts = str('ngram_counts') + ngram_indexes = str('ngram_indexes') + pool_int64s = str('pool_int64s') + + required_attr = [mode, min_gram_length, max_gram_length, max_skip_count, + ngram_counts, ngram_indexes, pool_int64s] + + for i in required_attr: + assert i in params, "Missing attribute: {0}".format(i) + + self.mode = params[mode] + self.min_gram_length = params[min_gram_length] + self.max_gram_length = params[max_gram_length] + self.max_skip_count = params[max_skip_count] + self.ngram_counts = params[ngram_counts] + self.ngram_indexes = params[ngram_indexes] + self.pool_int64s = params[pool_int64s] + + def make_node_noweights(self) -> NodeProto: + return onnx.helper.make_node( + 'TfIdfVectorizer', + inputs=['X'], + outputs=['Y'], + mode=self.mode, + min_gram_length=self.min_gram_length, + max_gram_length=self.max_gram_length, + max_skip_count=self.max_skip_count, + ngram_counts=self.ngram_counts, + ngram_indexes=self.ngram_indexes, + pool_int64s=self.pool_int64s + ) + + +class TfIdfVectorizer(Base): + + @staticmethod + def export_tf_only_bigrams_skip0() -> None: + input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) + output = np.array([0., 0., 0., 0., 1., 1., 1.]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_only_bigrams_skip0') + + @staticmethod + def export_tf_batch_onlybigrams_skip0() -> None: + input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) + output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 0., 1.]]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip0') + + @staticmethod + def export_tf_onlybigrams_levelempty() -> None: + input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) + output = np.array([1., 1., 1.]).astype(np.float32) + + ngram_counts = np.array([0, 0]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2]).astype(np.int64) + pool_int64s = np.array([ # unigrams none + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=0, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_levelempty') + + @staticmethod + def export_tf_onlybigrams_skip5() -> None: + input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) + output = np.array([0., 0., 0., 0., 1., 3., 1.]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_onlybigrams_skip5') + + @staticmethod + def export_tf_batch_onlybigrams_skip5() -> None: + input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) + output = np.array([[0., 0., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 1., 1., 1.]]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=2, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_onlybigrams_skip5') + + @staticmethod + def export_tf_uniandbigrams_skip5() -> None: + input = np.array([1, 1, 3, 3, 3, 7, 8, 6, 7, 5, 6, 8]).astype(np.int32) + output = np.array([0., 3., 1., 0., 1., 3., 1.]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_uniandbigrams_skip5') + + @staticmethod + def export_tf_batch_uniandbigrams_skip5() -> None: + input = np.array([[1, 1, 3, 3, 3, 7], [8, 6, 7, 5, 6, 8]]).astype(np.int32) + output = np.array([[0., 3., 0., 0., 0., 0., 0.], [0., 0., 1., 0., 1., 1., 1.]]).astype(np.float32) + + ngram_counts = np.array([0, 4]).astype(np.int64) + ngram_indexes = np.array([0, 1, 2, 3, 4, 5, 6]).astype(np.int64) + pool_int64s = np.array([2, 3, 5, 4, # unigrams + 5, 6, 7, 8, 6, 7]).astype(np.int64) # bigrams + + helper = TfIdfVectorizerHelper( + mode='TF', + min_gram_length=1, + max_gram_length=2, + max_skip_count=5, + ngram_counts=ngram_counts, + ngram_indexes=ngram_indexes, + pool_int64s=pool_int64s + ) + node = helper.make_node_noweights() + expect(node, inputs=[input], outputs=[output], name='test_tfidfvectorizer_tf_batch_uniandbigrams_skip5') diff --git a/third_party/onnx/onnx/backend/test/case/node/thresholdedrelu.py b/third_party/onnx/onnx/backend/test/case/node/thresholdedrelu.py new file mode 100644 index 0000000000..e1132e0a6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/thresholdedrelu.py @@ -0,0 +1,49 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class ThresholdedRelu(Base): + + @staticmethod + def export() -> None: + alpha = 2.0 + node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'], + alpha=alpha + ) + + x = np.array([-1.5, 0., 1.2, 2.0, 2.2]).astype(np.float32) + y = np.clip(x, alpha, np.inf) # expected output [0., 0., 0., 0., 2.2] + y[y == alpha] = 0 + + expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_example') + + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, alpha, np.inf) + y[y == alpha] = 0 + + expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu') + + @staticmethod + def export_default() -> None: + default_alpha = 1.0 + node = onnx.helper.make_node( + 'ThresholdedRelu', + inputs=['x'], + outputs=['y'] + ) + x = np.random.randn(3, 4, 5).astype(np.float32) + y = np.clip(x, default_alpha, np.inf) + y[y == default_alpha] = 0 + + expect(node, inputs=[x], outputs=[y], + name='test_thresholdedrelu_default') diff --git a/third_party/onnx/onnx/backend/test/case/node/tile.py b/third_party/onnx/onnx/backend/test/case/node/tile.py new file mode 100644 index 0000000000..1002d2a6d0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/tile.py @@ -0,0 +1,56 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Tile(Base): + + @staticmethod + def export_tile() -> None: + node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] + ) + + x = np.random.rand(2, 3, 4, 5).astype(np.float32) + + repeats = np.random.randint(low=1, high=10, size=(np.ndim(x),)).astype(np.int64) + + z = np.tile(x, repeats) + + expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile') + + @staticmethod + def export_tile_precomputed() -> None: + node = onnx.helper.make_node( + 'Tile', + inputs=['x', 'y'], + outputs=['z'] + ) + + x = np.array([ + [0, 1], + [2, 3] + ], dtype=np.float32) + + repeats = np.array([2, 2], dtype=np.int64) + + z = np.array([ + [0, 1, 0, 1], + [2, 3, 2, 3], + [0, 1, 0, 1], + [2, 3, 2, 3] + ], dtype=np.float32) + + expect(node, + inputs=[x, repeats], + outputs=[z], + name='test_tile_precomputed') diff --git a/third_party/onnx/onnx/backend/test/case/node/topk.py b/third_party/onnx/onnx/backend/test/case/node/topk.py new file mode 100644 index 0000000000..c4f64e2983 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/topk.py @@ -0,0 +1,121 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def topk_sorted_implementation(X, k, axis, largest): # type: ignore + sorted_indices = np.argsort(X, axis=axis) + sorted_values = np.sort(X, axis=axis) + if largest: + sorted_indices = np.flip(sorted_indices, axis=axis) + sorted_values = np.flip(sorted_values, axis=axis) + topk_sorted_indices = np.take(sorted_indices, np.arange(k), axis=axis) + topk_sorted_values = np.take(sorted_values, np.arange(k), axis=axis) + return topk_sorted_values, np.array(topk_sorted_indices, dtype=np.int64) + + +class TopK(Base): + + @staticmethod + def export_top_k() -> None: + axis = 1 + largest = 1 + + k = 3 + node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis + ) + X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], + ], dtype=np.float32) + K = np.array([k], dtype=np.int64) + values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + + #print(values_ref) + #[[ 3. 2. 1.] + # [ 7. 6. 5.] + # [11. 10. 9.]] + #print(indices_ref) + #[[3 2 1] + # [3 2 1] + # [3 2 1]] + + expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k') + + @staticmethod + def export_top_k_smallest() -> None: + axis = 1 + largest = 0 + sorted = 1 + k = 3 + + node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis, + largest=largest, + sorted=sorted + ) + + X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [11, 10, 9, 8], + ], dtype=np.float32) + K = np.array([k], dtype=np.int64) + values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + + #print(values_ref) + #[[ 0. 1. 2.] + # [ 4. 5. 6.] + # [ 8. 9. 10.]] + #print(indices_ref) + #[[0 1 2] + # [0 1 2] + # [3 2 1]] + + expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_smallest') + + @staticmethod + def export_top_k_negative_axis() -> None: + axis = -1 + largest = 1 + + k = 3 + node = onnx.helper.make_node( + 'TopK', + inputs=['x', 'k'], + outputs=['values', 'indices'], + axis=axis + ) + X = np.array([ + [0, 1, 2, 3], + [4, 5, 6, 7], + [8, 9, 10, 11], + ], dtype=np.float32) + K = np.array([k], dtype=np.int64) + values_ref, indices_ref = topk_sorted_implementation(X, k, axis, largest) + + # print(values_ref) + #[[ 3. 2. 1.] + # [ 7. 6. 5.] + # [11. 10. 9.]] + # print(indices_ref) + #[[3 2 1] + # [3 2 1] + # [3 2 1]] + + expect(node, inputs=[X, K], outputs=[values_ref, indices_ref], + name='test_top_k_negative_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/transpose.py b/third_party/onnx/onnx/backend/test/case/node/transpose.py new file mode 100644 index 0000000000..334c449a5d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/transpose.py @@ -0,0 +1,43 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore +import itertools + +import onnx +from ..base import Base +from . import expect + + +class Transpose(Base): + + @staticmethod + def export_default() -> None: + shape = (2, 3, 4) + data = np.random.random_sample(shape).astype(np.float32) + + node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'] + ) + + transposed = np.transpose(data) + expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_default') + + @staticmethod + def export_all_permutations() -> None: + shape = (2, 3, 4) + data = np.random.random_sample(shape).astype(np.float32) + permutations = list(itertools.permutations(np.arange(len(shape)))) + + for i in range(len(permutations)): + node = onnx.helper.make_node( + 'Transpose', + inputs=['data'], + outputs=['transposed'], + perm=permutations[i] + ) + transposed = np.transpose(data, permutations[i]) + expect(node, inputs=[data], outputs=[transposed], + name='test_transpose_all_permutations_' + str(i)) diff --git a/third_party/onnx/onnx/backend/test/case/node/trilu.py b/third_party/onnx/onnx/backend/test/case/node/trilu.py new file mode 100644 index 0000000000..7477f7a766 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/trilu.py @@ -0,0 +1,450 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def triu_reference_implementation(x, k=0): # type: ignore + return np.triu(x, k) + + +def tril_reference_implementation(x, k=0): # type: ignore + return np.tril(x, k) + + +class Trilu(Base): + @staticmethod + def export_triu() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 7, 3, 7, 9], + # [0, 2, 8, 6, 9], + # [0, 0, 0, 8, 7], + # [0, 0, 0, 2, 4]] + y = triu_reference_implementation(x) + expect(node, inputs=[x], outputs=[y], name='test_triu') + + @staticmethod + def export_triu_neg() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(-1).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [0, 4, 0, 8, 7], + # [0, 0, 4, 2, 4]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_neg') + + @staticmethod + def export_triu_out_neg_out() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(-7).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_neg_out') + + @staticmethod + def export_triu_pos() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(2).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[0, 0, 3, 7, 9], + # [0, 0, 0, 6, 9], + # [0, 0, 0, 0, 7], + # [0, 0, 0, 0, 0]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_pos') + + @staticmethod + def export_triu_out_pos() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(6).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 0, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_out_pos') + + @staticmethod + def export_triu_square() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) + y = triu_reference_implementation(x) + # X: + # [[[4, 6, 9], + # [7, 5, 4], + # [8, 1, 2]], + # + # [[1, 4, 9], + # [9, 6, 3], + # [8, 9, 8]]] + # expect result: + # [[[4, 6, 9], + # [0, 5, 4], + # [0, 0, 2]], + # + # [[1, 4, 9], + # [0, 6, 3], + # [0, 0, 8]]] + expect(node, inputs=[x], outputs=[y], name='test_triu_square') + + @staticmethod + def export_triu_square_neg() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) + k = np.array(-1).astype(np.int64) + # X: + # [[[4, 6, 9], + # [7, 5, 4], + # [8, 1, 2]], + # + # [[1, 4, 9], + # [9, 6, 3], + # [8, 9, 8]]] + # expect result: + # [[[4, 6, 9], + # [7, 5, 4], + # [0, 1, 2]], + # + # [[1, 4, 9], + # [9, 6, 3], + # [0, 9, 8]]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_square_neg') + + @staticmethod + def export_triu_one_row() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) + k = np.array(1).astype(np.int64) + # X: + # [[[1, 4, 9, 7, 1]], + # + # [[9, 2, 8, 8, 4]], + # + # [[3, 9, 7, 4, 2]]] + # expect result: + # [[[0, 4, 9, 7, 1]], + # + # [[0, 2, 8, 8, 4]], + # + # [[0, 9, 7, 4, 2]]] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_one_row') + + @staticmethod + def export_triu_zero() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + ) + + x = np.random.randint(10, size=(0, 5)).astype(np.int64) + k = np.array(6).astype(np.int64) + # X: + # [] + # expect result: + # [] + y = triu_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_triu_zero') + + @staticmethod + def export_tril() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 0, 0, 0, 0], + # [1, 2, 0, 0, 0], + # [9, 4, 1, 0, 0], + # [4, 3, 4, 2, 0]] + y = tril_reference_implementation(x) + expect(node, inputs=[x], outputs=[y], name='test_tril') + + @staticmethod + def export_tril_neg() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(-1).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[0, 0, 0, 0, 0], + # [1, 0, 0, 0, 0], + # [9, 4, 0, 0, 0], + # [4, 3, 4, 0, 0]] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_neg') + + @staticmethod + def export_tril_out_neg() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(-7).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0], + # [0, 0, 0, 0, 0]] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_neg') + + @staticmethod + def export_tril_pos() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(2).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 7, 3, 0, 0], + # [1, 2, 8, 6, 0], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_pos') + + @staticmethod + def export_tril_out_pos() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + x = np.random.randint(10, size=(4, 5)).astype(np.int64) + k = np.array(6).astype(np.int64) + # X: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + # expect result: + # [[4, 7, 3, 7, 9], + # [1, 2, 8, 6, 9], + # [9, 4, 1, 8, 7], + # [4, 3, 4, 2, 4]] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_out_pos') + + @staticmethod + def export_tril_square() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) + # X: + # [[[0, 4, 3], + # [2, 0, 9], + # [8, 2, 5]], + # + # [[2, 7, 2], + # [2, 6, 0], + # [2, 6, 5]]] + # expect result: + # [[[0, 0, 0], + # [2, 0, 0], + # [8, 2, 5]], + # + # [[2, 0, 0], + # [2, 6, 0], + # [2, 6, 5]]] + y = tril_reference_implementation(x) + expect(node, inputs=[x], outputs=[y], name='test_tril_square') + + @staticmethod + def export_tril_square_neg() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(2, 3, 3)).astype(np.int64) + k = np.array(-1).astype(np.int64) + # X: + # [[[0, 4, 3], + # [2, 0, 9], + # [8, 2, 5]], + # + # [[2, 7, 2], + # [2, 6, 0], + # [2, 6, 5]]] + # expect result: + # [[[0, 0, 0], + # [2, 0, 0], + # [8, 2, 0]], + # + # [[0, 0, 0], + # [2, 0, 0], + # [2, 6, 0]]] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_square_neg') + + @staticmethod + def export_tril_one_row() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(3, 1, 5)).astype(np.int64) + # X: + # [[[6, 2, 4, 1, 6]], + # + # [[8, 3, 8, 7, 0]], + # + # [[2, 2, 9, 5, 9]]] + # expect result: + # [[[6, 0, 0, 0, 0]], + # + # [[8, 0, 0, 0, 0]], + # + # [[2, 0, 0, 0, 0]]] + y = tril_reference_implementation(x) + expect(node, inputs=[x], outputs=[y], name='test_tril_one_row_neg') + + @staticmethod + def export_tril_zero() -> None: + node = onnx.helper.make_node( + 'Trilu', + inputs=['x', 'k'], + outputs=['y'], + upper=0, + ) + + x = np.random.randint(10, size=(3, 0, 5)).astype(np.int64) + k = np.array(6).astype(np.int64) + # X: + # [] + # expect result: + # [] + y = tril_reference_implementation(x, int(k)) + expect(node, inputs=[x, k], outputs=[y], name='test_tril_zero') diff --git a/third_party/onnx/onnx/backend/test/case/node/unique.py b/third_party/onnx/onnx/backend/test/case/node/unique.py new file mode 100644 index 0000000000..7f81feaa03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/unique.py @@ -0,0 +1,141 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +def specify_int64(indices, inverse_indices, counts): # type: ignore + return np.array(indices, dtype=np.int64), np.array(inverse_indices, dtype=np.int64), np.array(counts, dtype=np.int64) + + +class Unique(Base): + + @staticmethod + def export_sorted_without_axis() -> None: + node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'] + ) + + x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) + y, indices, inverse_indices, counts = np.unique(x, True, True, True) + indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) + expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_without_axis') + + @staticmethod + def export_not_sorted_without_axis() -> None: + node_not_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=0 + ) + # numpy unique does not retain original order (it sorts the output unique values) + # https://github.com/numpy/numpy/issues/8621 + # we need to recover unsorted output and indices + x = np.array([2.0, 1.0, 1.0, 3.0, 4.0, 3.0], dtype=np.float32) + y, indices, inverse_indices, counts = np.unique(x, True, True, True) + + # prepare index mapping from sorted to unsorted + argsorted_indices = np.argsort(indices) + inverse_indices_map = {i: si for i, si in zip(argsorted_indices, np.arange(len(argsorted_indices)))} + + indices = indices[argsorted_indices] + y = np.take(x, indices, axis=0) + inverse_indices = np.asarray([inverse_indices_map[i] for i in inverse_indices], dtype=np.int64) + counts = counts[argsorted_indices] + indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) + # print(y) + # [2.0, 1.0, 3.0, 4.0] + # print(indices) + # [0 1 3 4] + # print(inverse_indices) + # [0, 1, 1, 2, 3, 2] + # print(counts) + # [1, 2, 2, 1] + + expect(node_not_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_not_sorted_without_axis') + + @staticmethod + def export_sorted_with_axis() -> None: + node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=0 + ) + + x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]], dtype=np.float32) + y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=0) + indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) + # print(y) + # [[1. 0. 0.] + # [2. 3. 4.]] + # print(indices) + # [0 2] + # print(inverse_indices) + # [0 0 1] + # print(counts) + # [2 1] + + expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis') + + @staticmethod + def export_sorted_with_axis_3d() -> None: + node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=1 + ) + + x = np.array([[[1., 1.], [0., 1.], [2., 1.], [0., 1.]], + [[1., 1.], [0., 1.], [2., 1.], [0., 1.]]], dtype=np.float32) + y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=1) + indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) + # print(y) + # [[[0. 1.] + # [1. 1.] + # [2. 1.]] + # [[0. 1.] + # [1. 1.] + # [2. 1.]]] + # print(indices) + # [1 0 2] + # print(inverse_indices) + # [1 0 2 0] + # print(counts) + # [2 1 1] + expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_axis_3d') + + @staticmethod + def export_sorted_with_negative_axis() -> None: + node_sorted = onnx.helper.make_node( + 'Unique', + inputs=['X'], + outputs=['Y', 'indices', 'inverse_indices', 'counts'], + sorted=1, + axis=-1 + ) + + x = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 3]], dtype=np.float32) + y, indices, inverse_indices, counts = np.unique(x, True, True, True, axis=-1) + indices, inverse_indices, counts = specify_int64(indices, inverse_indices, counts) + # print(y) + # [[0. 1.] + # [0. 1.] + # [3. 2.]] + # print(indices) + # [1 0] + # print(inverse_indices) + # [1 0 0] + # print(counts) + # [2 1] + + expect(node_sorted, inputs=[x], outputs=[y, indices, inverse_indices, counts], name='test_unique_sorted_with_negative_axis') diff --git a/third_party/onnx/onnx/backend/test/case/node/unsqueeze.py b/third_party/onnx/onnx/backend/test/case/node/unsqueeze.py new file mode 100644 index 0000000000..21092225a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/unsqueeze.py @@ -0,0 +1,89 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Unsqueeze(Base): + + @staticmethod + def export_unsqueeze_one_axis() -> None: + x = np.random.randn(3, 4, 5).astype(np.float32) + + for i in range(x.ndim): + axes = np.array([i]).astype(np.int64) + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=i) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_axis_' + str(i)) + + @staticmethod + def export_unsqueeze_two_axes() -> None: + x = np.random.randn(3, 4, 5).astype(np.float32) + axes = np.array([1, 4]).astype(np.int64) + + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=1) + y = np.expand_dims(y, axis=4) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_two_axes') + + @staticmethod + def export_unsqueeze_three_axes() -> None: + x = np.random.randn(3, 4, 5).astype(np.float32) + axes = np.array([2, 4, 5]).astype(np.int64) + + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=2) + y = np.expand_dims(y, axis=4) + y = np.expand_dims(y, axis=5) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_three_axes') + + @staticmethod + def export_unsqueeze_unsorted_axes() -> None: + x = np.random.randn(3, 4, 5).astype(np.float32) + axes = np.array([5, 4, 2]).astype(np.int64) + + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + y = np.expand_dims(x, axis=2) + y = np.expand_dims(y, axis=4) + y = np.expand_dims(y, axis=5) + + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_unsorted_axes') + + @staticmethod + def export_unsqueeze_negative_axes() -> None: + node = onnx.helper.make_node( + 'Unsqueeze', + inputs=['x', 'axes'], + outputs=['y'], + ) + x = np.random.randn(1, 3, 1, 5).astype(np.float32) + axes = np.array([-2]).astype(np.int64) + y = np.expand_dims(x, axis=-2) + expect(node, inputs=[x, axes], outputs=[y], + name='test_unsqueeze_negative_axes') diff --git a/third_party/onnx/onnx/backend/test/case/node/upsample.py b/third_party/onnx/onnx/backend/test/case/node/upsample.py new file mode 100644 index 0000000000..8828ca09b5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/upsample.py @@ -0,0 +1,37 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect +from onnx import helper + + +class Upsample(Base): + + @staticmethod + def export_nearest() -> None: + node = onnx.helper.make_node( + 'Upsample', + inputs=['X', 'scales'], + outputs=['Y'], + mode='nearest', + ) + + data = np.array([[[ + [1, 2], + [3, 4], + ]]], dtype=np.float32) + + scales = np.array([1.0, 1.0, 2.0, 3.0], dtype=np.float32) + + output = np.array([[[ + [1, 1, 1, 2, 2, 2], + [1, 1, 1, 2, 2, 2], + [3, 3, 3, 4, 4, 4], + [3, 3, 3, 4, 4, 4], + ]]], dtype=np.float32) + + expect(node, inputs=[data, scales], outputs=[output], + name='test_upsample_nearest', opset_imports=[helper.make_opsetid("", 9)]) diff --git a/third_party/onnx/onnx/backend/test/case/node/where.py b/third_party/onnx/onnx/backend/test/case/node/where.py new file mode 100644 index 0000000000..4ecd3d1d54 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/where.py @@ -0,0 +1,40 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Where(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], + ) + + condition = np.array([[1, 0], [1, 1]], dtype=bool) + x = np.array([[1, 2], [3, 4]], dtype=np.float32) + y = np.array([[9, 8], [7, 6]], dtype=np.float32) + z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] + expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_example') + + @staticmethod + def export_long() -> None: + node = onnx.helper.make_node( + 'Where', + inputs=['condition', 'x', 'y'], + outputs=['z'], + ) + + condition = np.array([[1, 0], [1, 1]], dtype=bool) + x = np.array([[1, 2], [3, 4]], dtype=np.int64) + y = np.array([[9, 8], [7, 6]], dtype=np.int64) + z = np.where(condition, x, y) # expected output [[1, 8], [3, 4]] + expect(node, inputs=[condition, x, y], outputs=[z], + name='test_where_long_example') diff --git a/third_party/onnx/onnx/backend/test/case/node/xor.py b/third_party/onnx/onnx/backend/test/case/node/xor.py new file mode 100644 index 0000000000..76bbf76d89 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/node/xor.py @@ -0,0 +1,82 @@ +# SPDX-License-Identifier: Apache-2.0 + +import numpy as np # type: ignore + +import onnx +from ..base import Base +from . import expect + + +class Xor(Base): + + @staticmethod + def export() -> None: + node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], + ) + + # 2d + x = (np.random.randn(3, 4) > 0).astype(bool) + y = (np.random.randn(3, 4) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor2d') + + # 3d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(3, 4, 5) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor3d') + + # 4d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor4d') + + @staticmethod + def export_xor_broadcast() -> None: + node = onnx.helper.make_node( + 'Xor', + inputs=['x', 'y'], + outputs=['xor'], + ) + + # 3d vs 1d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(5) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v1d') + + # 3d vs 2d + x = (np.random.randn(3, 4, 5) > 0).astype(bool) + y = (np.random.randn(4, 5) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast3v2d') + + # 4d vs 2d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(5, 6) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v2d') + + # 4d vs 3d + x = (np.random.randn(3, 4, 5, 6) > 0).astype(bool) + y = (np.random.randn(4, 5, 6) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v3d') + + # 4d vs 4d + x = (np.random.randn(1, 4, 1, 6) > 0).astype(bool) + y = (np.random.randn(3, 1, 5, 6) > 0).astype(bool) + z = np.logical_xor(x, y) + expect(node, inputs=[x, y], outputs=[z], + name='test_xor_bcast4v4d') diff --git a/third_party/onnx/onnx/backend/test/case/test_case.py b/third_party/onnx/onnx/backend/test/case/test_case.py new file mode 100644 index 0000000000..2a1c6fd1a4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/test_case.py @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: Apache-2.0 + +from dataclasses import dataclass +from typing import Optional, Sequence, Tuple +import onnx +import numpy as np # type: ignore + + +@dataclass +class TestCase: + name: str + model_name: str + url: Optional[str] + model_dir: Optional[str] + model: Optional[onnx.ModelProto] + data_sets: Optional[Sequence[Tuple[Sequence[np.ndarray], Sequence[np.ndarray]]]] + kind: str + rtol: float + atol: float + # Tell PyTest this isn't a real test. + __test__: bool = False diff --git a/third_party/onnx/onnx/backend/test/case/utils.py b/third_party/onnx/onnx/backend/test/case/utils.py new file mode 100644 index 0000000000..8eb7d287e7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/case/utils.py @@ -0,0 +1,29 @@ +# SPDX-License-Identifier: Apache-2.0 + +import importlib +import pkgutil +from types import ModuleType +from typing import Optional, List + +import numpy as np # type: ignore + + +all_numeric_dtypes = [ + np.int8, np.int16, np.int32, np.int64, + np.uint8, np.uint16, np.uint32, np.uint64, + np.float16, np.float32, np.float64, +] + + +def import_recursive(package: ModuleType) -> None: + """ + Takes a package and imports all modules underneath it + """ + pkg_dir: Optional[List[str]] = None + pkg_dir = package.__path__ # type: ignore + module_location = package.__name__ + for (_module_loader, name, ispkg) in pkgutil.iter_modules(pkg_dir): + module_name = "{}.{}".format(module_location, name) # Module/package + module = importlib.import_module(module_name) + if ispkg: + import_recursive(module) diff --git a/third_party/onnx/onnx/backend/test/cmd_tools.py b/third_party/onnx/onnx/backend/test/cmd_tools.py new file mode 100644 index 0000000000..904fd8c50a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cmd_tools.py @@ -0,0 +1,107 @@ +# SPDX-License-Identifier: Apache-2.0 + +import argparse +import json +import os +import shutil + +import onnx.backend.test.case.node as node_test +import onnx.backend.test.case.model as model_test +from onnx import numpy_helper +from typing import Text + + +TOP_DIR = os.path.realpath(os.path.dirname(__file__)) +DATA_DIR = os.path.join(TOP_DIR, 'data') + + +def generate_data(args: argparse.Namespace) -> None: + + def prepare_dir(path: Text) -> None: + if os.path.exists(path): + shutil.rmtree(path) + os.makedirs(path) + + cases = model_test.collect_testcases() + if args.op_type is None: + # include all of the testcases + cases += node_test.collect_testcases() + else: + # only include those testcases including the given operator + cases += node_test.collect_testcases_by_operator(args.op_type) + for case in cases: + output_dir = os.path.join( + args.output, case.kind, case.name) + prepare_dir(output_dir) + if case.kind == 'real': + with open(os.path.join(output_dir, 'data.json'), 'w') as fi: + json.dump({ + 'url': case.url, + 'model_name': case.model_name, + 'rtol': case.rtol, + 'atol': case.atol, + }, fi, sort_keys=True) + else: + assert case.model + with open(os.path.join(output_dir, 'model.onnx'), 'wb') as f: + f.write(case.model.SerializeToString()) + assert case.data_sets + for i, (inputs, outputs) in enumerate(case.data_sets): + data_set_dir = os.path.join( + output_dir, 'test_data_set_{}'.format(i)) + prepare_dir(data_set_dir) + for j, input in enumerate(inputs): + with open(os.path.join( + data_set_dir, 'input_{}.pb'.format(j)), 'wb') as f: + if case.model.graph.input[j].type.HasField('map_type'): + f.write(numpy_helper.from_dict( + input, case.model.graph.input[j].name).SerializeToString()) + elif case.model.graph.input[j].type.HasField('sequence_type'): + f.write(numpy_helper.from_list( + input, case.model.graph.input[j].name).SerializeToString()) + elif case.model.graph.input[j].type.HasField('optional_type'): + f.write(numpy_helper.from_optional( + input, case.model.graph.input[j].name).SerializeToString()) + else: + assert case.model.graph.input[j].type.HasField('tensor_type') + f.write(numpy_helper.from_array( + input, case.model.graph.input[j].name).SerializeToString()) + for j, output in enumerate(outputs): + with open(os.path.join( + data_set_dir, 'output_{}.pb'.format(j)), 'wb') as f: + if case.model.graph.output[j].type.HasField('map_type'): + f.write(numpy_helper.from_dict( + output, case.model.graph.output[j].name).SerializeToString()) + elif case.model.graph.output[j].type.HasField('sequence_type'): + f.write(numpy_helper.from_list( + output, case.model.graph.output[j].name).SerializeToString()) + elif case.model.graph.output[j].type.HasField('optional_type'): + f.write(numpy_helper.from_optional( + output, case.model.graph.output[j].name).SerializeToString()) + else: + assert case.model.graph.output[j].type.HasField('tensor_type') + f.write(numpy_helper.from_array( + output, case.model.graph.output[j].name).SerializeToString()) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser('backend-test-tools') + subparsers = parser.add_subparsers() + + subparser = subparsers.add_parser('generate-data', help='convert testcases to test data') + subparser.add_argument('-o', '--output', default=DATA_DIR, + help='output directory (default: %(default)s)') + subparser.add_argument('-t', '--op_type', default=None, + help='op_type for test case generation. (generates test data for the specified op_type only.)') + subparser.set_defaults(func=generate_data) + + return parser.parse_args() + + +def main() -> None: + args = parse_args() + args.func(args) + + +if __name__ == '__main__': + main() diff --git a/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.cc b/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.cc new file mode 100644 index 0000000000..0abb406957 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.cc @@ -0,0 +1,273 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "test_driver.h" +#include +#include +#include + +#include +#include +#include +#ifdef _WIN32 +#include +#include +#else +#include +#endif +#include "onnx/common/common.h" + +namespace ONNX_NAMESPACE { +namespace testing { +bool FileExists(const std::string& filename) { +#ifdef _WIN32 + if (INVALID_FILE_ATTRIBUTES == GetFileAttributes(filename.c_str())) { + return false; + } +#else + struct stat stats; + if (lstat(filename.c_str(), &stats) != 0 || !S_ISREG(stats.st_mode)) { + return false; + } +#endif + return true; +} +void TestDriver::SetDefaultDir(const std::string& s) { + default_dir_ = s; +} + +/** + * It is possible that case_dir is not a dir. + * But it does not affect the result. + */ +void TestDriver::FetchSingleTestCase(const std::string& case_dir, const std::string& test_case_name) { + std::string model_name = case_dir; + model_name += "model.onnx"; + if (FileExists(model_name)) { + UnsolvedTestCase test_case; + test_case.test_case_name_ = test_case_name; + test_case.model_filename_ = model_name; + test_case.model_dirname_ = case_dir; + for (int case_count = 0;; case_count++) { + std::vector input_filenames, output_filenames; + std::string input_name, output_name; + std::string case_dirname = case_dir; + case_dirname += "test_data_set_" + ONNX_NAMESPACE::to_string(case_count); + input_name = case_dirname + "/input_" + "0" + ".pb"; + output_name = case_dirname + "/output_" + "0" + ".pb"; + if (!FileExists(output_name) && !FileExists(input_name)) { + break; + } + + for (int data_count = 0;; data_count++) { + input_name = case_dirname + "/input_" + ONNX_NAMESPACE::to_string(data_count) + ".pb"; + output_name = case_dirname + "/output_" + ONNX_NAMESPACE::to_string(data_count) + ".pb"; + const bool input_exists = FileExists(input_name); + const bool output_exists = FileExists(output_name); + if (!output_exists && !input_exists) { + break; + } + if (input_exists) { + input_filenames.emplace_back(std::move(input_name)); + } + if (output_exists) { + output_filenames.emplace_back(std::move(output_name)); + } + } + UnsolvedTestData test_data(input_filenames, output_filenames); + test_case.test_data_.emplace_back(std::move(test_data)); + } + testcases_.emplace_back(std::move(test_case)); + } +} + +bool TestDriver::FetchAllTestCases(const std::string& target) { + std::string target_dir = target; + if (target_dir == "") { + target_dir = default_dir_; + } + if (target_dir[target_dir.size() - 1] == '/') { + target_dir.erase(target_dir.size() - 1, 1); + } +#ifdef _WIN32 + _finddata_t file; + intptr_t lf; + if ((lf = _findfirst(target_dir.c_str(), &file)) == -1) { + std::cerr << "Error: cannot open directory " << target_dir << " when fetching test data: " << strerror(errno) + << std::endl; + return false; + } else { + ONNX_TRY { + do { + std::string entry_dname = file.name; + std::string full_entry_dname; + if (entry_dname != "." && entry_dname != "..") { + full_entry_dname = target_dir + "/" + entry_dname + "/"; + FetchSingleTestCase(full_entry_dname, entry_dname); + } + } while (_findnext(lf, &file) == 0); + } + ONNX_CATCH(const std::exception& e) { + ONNX_HANDLE_EXCEPTION([&]() { + _findclose(lf); + ONNX_THROW_EX(e); + }); + } + _findclose(lf); + } +#else + DIR* directory; + ONNX_TRY { + directory = opendir(target_dir.c_str()); + if (directory == NULL) { + std::cerr << "Error: cannot open directory " << target_dir << " when fetching test data: " << strerror(errno) + << std::endl; + return false; + } + while (true) { + errno = 0; + struct dirent* entry = readdir(directory); + if (entry == NULL) { + if (errno != 0) { + std::cerr << "Error: cannot read directory " << target_dir << " when fetching test data: " << strerror(errno) + << std::endl; + return -1; + } else { + break; + } + } + std::string full_entry_dname; + std::string entry_dname = entry->d_name; + if (entry_dname != "." && entry_dname != "..") { + full_entry_dname = target_dir + "/" + entry_dname + "/"; + FetchSingleTestCase(full_entry_dname, entry_dname); + } + } + } + ONNX_CATCH(const std::exception& e) { + ONNX_HANDLE_EXCEPTION([&]() { + if (directory != NULL) { + closedir(directory); + } + ONNX_THROW_EX(e); + }); + } + if (directory != NULL) { + if (closedir(directory) != 0) { + std::cerr << "Warning: failed to close directory " << target_dir + << " when fetching test data: " << strerror(errno) << std::endl; + return false; + } + } +#endif + return true; +} + +std::vector GetTestCase(const std::string& location) { + TestDriver test_driver; + test_driver.FetchAllTestCases(location); + return test_driver.testcases_; +} + +void LoadSingleFile(const std::string& filename, std::string& filedata) { + FILE* fp; + if ((fp = fopen(filename.c_str(), "r")) != NULL) { + ONNX_TRY { + int fsize; + char buff[1024] = {0}; + do { + fsize = fread(buff, sizeof(char), 1024, fp); + filedata += std::string(buff, buff + fsize); + } while (fsize == 1024); + } + ONNX_CATCH(const std::exception& e) { + ONNX_HANDLE_EXCEPTION([&]() { + fclose(fp); + ONNX_THROW_EX(e); + }); + } + fclose(fp); + } else { + std::cerr << "Warning: failed to open file: " << filename << std::endl; + } +} + +ResolvedTestCase LoadSingleTestCase(const UnsolvedTestCase& t) { + ResolvedTestCase st; + std::string raw_model; + LoadSingleFile(t.model_filename_, raw_model); + st.test_case_name_ = t.test_case_name_; + ONNX_NAMESPACE::ParseProtoFromBytes(&st.model_, raw_model.c_str(), raw_model.size()); + int test_data_counter = 0; + for (auto& test_data : t.test_data_) { + ResolvedTestData proto_test_data; + for (auto& input_file : test_data.input_filenames_) { + std::string input_data; + ONNX_NAMESPACE::ValueInfoProto input_info; + LoadSingleFile(input_file, input_data); + input_info = st.model_.graph().input(test_data_counter); + if (input_info.type().has_tensor_type()) { + ONNX_NAMESPACE::TensorProto input_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&input_proto, input_data.c_str(), input_data.size()); + proto_test_data.inputs_.emplace_back(std::move(input_proto)); + } else if (input_info.type().has_sequence_type()) { + ONNX_NAMESPACE::SequenceProto input_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&input_proto, input_data.c_str(), input_data.size()); + proto_test_data.seq_inputs_.emplace_back(std::move(input_proto)); + } else if (input_info.type().has_map_type()) { + ONNX_NAMESPACE::MapProto input_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&input_proto, input_data.c_str(), input_data.size()); + proto_test_data.map_inputs_.emplace_back(std::move(input_proto)); + } else if (input_info.type().has_optional_type()) { + ONNX_NAMESPACE::OptionalProto input_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&input_proto, input_data.c_str(), input_data.size()); + proto_test_data.optional_inputs_.emplace_back(std::move(input_proto)); + } + test_data_counter++; + } + test_data_counter = 0; + for (auto& output_file : test_data.output_filenames_) { + std::string output_data; + ONNX_NAMESPACE::ValueInfoProto output_info; + output_info = st.model_.graph().output(test_data_counter); + LoadSingleFile(output_file, output_data); + if (output_info.type().has_tensor_type()) { + ONNX_NAMESPACE::TensorProto output_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&output_proto, output_data.c_str(), output_data.size()); + proto_test_data.outputs_.emplace_back(std::move(output_proto)); + } else if (output_info.type().has_sequence_type()) { + ONNX_NAMESPACE::SequenceProto output_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&output_proto, output_data.c_str(), output_data.size()); + proto_test_data.seq_outputs_.emplace_back(std::move(output_proto)); + } else if (output_info.type().has_map_type()) { + ONNX_NAMESPACE::MapProto output_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&output_proto, output_data.c_str(), output_data.size()); + proto_test_data.map_outputs_.emplace_back(std::move(output_proto)); + } else if (output_info.type().has_optional_type()) { + ONNX_NAMESPACE::OptionalProto output_proto; + ONNX_NAMESPACE::ParseProtoFromBytes(&output_proto, output_data.c_str(), output_data.size()); + proto_test_data.optional_outputs_.emplace_back(std::move(output_proto)); + } + test_data_counter++; + } + st.proto_test_data_.emplace_back(std::move(proto_test_data)); + } + return st; +} + +std::vector LoadAllTestCases(const std::string& location) { + std::vector t = GetTestCase(location); + return LoadAllTestCases(t); +} + +std::vector LoadAllTestCases(const std::vector& t) { + std::vector st; + for (const auto& i : t) { + st.push_back(LoadSingleTestCase(i)); + } + return st; +} + +} // namespace testing +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.h b/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.h new file mode 100644 index 0000000000..c66d7dc6f3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/driver/test_driver.h @@ -0,0 +1,142 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include +#include + +#include "onnx/onnxifi_loader.h" +#include "onnx/onnxifi_utils.h" +#include "onnx/string_utils.h" +#include "onnx/onnx-data_pb.h" + +#include "gtest/gtest.h" +namespace ONNX_NAMESPACE { +namespace testing { +/** + * Store one chunk of test data files repos, + * includng input and output. + * No real data was loaded in this type of class, + * but only data location. + * Data loading is unsolved, this class CANNOT be treated as real data. + */ +struct UnsolvedTestData { + std::vector input_filenames_; + std::vector output_filenames_; + UnsolvedTestData() {} + UnsolvedTestData( + const std::vector& input_filenames, + const std::vector& output_filenames) + : input_filenames_(input_filenames), + output_filenames_(output_filenames) {} +}; + +/** + * Store one model file repos, + * including one model file and several chunks of test data + * No real data was loaded in this type of class, + * but only data location. + * Data loading is unsolved, this class CANNOT be treated as real data. + */ +struct UnsolvedTestCase { + UnsolvedTestCase( + const std::string& model_filename, + const std::string& model_dirname, + const std::vector& test_data) + : model_filename_(model_filename), + model_dirname_(model_dirname), + test_data_(test_data) {} + + UnsolvedTestCase() {} + std::string test_case_name_; + std::string model_filename_; + std::string model_dirname_; + std::vector test_data_; +}; + +/** + * Store one chunk of test data, + * including raw input/output and protos. + * Real data was loaded in this type of class. + * Data loading is resolved, this class may contains large chunk of data. + */ +struct ResolvedTestData { + std::vector inputs_; + std::vector seq_inputs_; + std::vector map_inputs_; + std::vector optional_inputs_; + + std::vector outputs_; + std::vector seq_outputs_; + std::vector map_outputs_; + std::vector optional_outputs_; +}; + +/** + * Store one test model, + * including raw model, model proto and several chunks of test data. + * Real data was loaded in this type of class. + * Data loading is resolved, this class may contains large chunk of data. + */ +struct ResolvedTestCase { + ONNX_NAMESPACE::ModelProto model_; + std::vector proto_test_data_; + std::string test_case_name_; +}; + +/** + * Store all unloaded test cases in one repo. + */ +class TestDriver { + std::string default_dir_; + + public: + void SetDefaultDir(const std::string& s); + std::vector testcases_; + TestDriver(const std::string& default_dir = ".") { + default_dir_ = default_dir; + } + /** + * Fetch all test cases in target. + * Return true if success, and false if failed. + */ + bool FetchAllTestCases(const std::string& target_dir); + /** + * Fetch one test case from repo case_dir. + * The structure of case_dir should include following contents. + * + * Regular file: model.onnx, store the protobuf of the model. + * Repo(s): test_data_set_X: store the input&output data. + * + * Each repo in test_data_set_X should include following contents. + * + * Regular file(s): input_X.pb, store one input tensor. + * Regular file(s): output_X.pb, store one output tensor. + */ + void FetchSingleTestCase( + const std::string& case_dir, + const std::string& test_case_name); +}; + +std::vector GetTestCase(); + +/** + * Load one proto file from filename as string to filedata. + */ +void LoadSingleFile(const std::string& filename, std::string& filedata); + +/** + * Load one test case. + */ +ResolvedTestCase LoadSingleTestCase(const UnsolvedTestCase& t); + +/** + * Load all test cases. + */ +std::vector LoadAllTestCases(const std::string& location); +std::vector LoadAllTestCases( + const std::vector& t); + +} // namespace testing +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/backend/test/cpp/driver_test.cc b/third_party/onnx/onnx/backend/test/cpp/driver_test.cc new file mode 100644 index 0000000000..1774aeb02b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/driver_test.cc @@ -0,0 +1,415 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "gtest_utils.h" + +#include "onnx/checker.h" +#include "onnx/onnxifi.h" +#include "onnx/onnxifi_ext.h" +#include "onnx/onnxifi_loader.h" +#include "onnx/string_utils.h" + +/** + * In order to not test the backend itself + * but only to test the funcionality of this test driver, + * include IO and integrity checkers, + * please set ONNXIFI_DUMMY_BACKEND to be true when compiling. + * By default it is false. + */ +#ifndef ONNXIFI_DUMMY_BACKEND +#define ONNXIFI_DUMMY_BACKEND false +#endif + +#ifndef ONNXIFI_TESTDATA_EPS +#define ONNXIFI_TESTDATA_EPS 1e-5 +#endif + +namespace ONNX_NAMESPACE { +namespace testing { +const float onnxifi_testdata_eps = static_cast(ONNXIFI_TESTDATA_EPS); + +template +class CompareOnnxifiData { + public: + bool IsEqual(void* P, void* Q) { + T x = *((T*)P), y = *((T*)Q); + return ((x - y) > -onnxifi_testdata_eps) && + ((x - y) < onnxifi_testdata_eps); + } +}; + +class ONNXCppDriverTest : public ::testing::TestWithParam< + ONNX_NAMESPACE::testing::ResolvedTestCase> { + public: + struct PrintToStringParamName { + template + std::string operator()(const ::testing::TestParamInfo& t) const { + auto test_case = + static_cast(t.param); + /** + * We pick folder name instead of model.graph().name as test case name + * here mostly for two reasons: + * 1. Name of proto graph can be empty or ruined. + * 2. Compares to the complex logic of protobuf, folder name is easier to + * parse, to modify and to use. + */ + return test_case.test_case_name_; + } + }; + + protected: + std::vector protos_; + ONNX_NAMESPACE::ModelProto model_; + + // A memory pool of shape information of onnxTensorDescriptorV1 used in this + // test driver. + std::vector> shape_pool; + // A memory pool of raw_data of backend output in onnxTensorDescriptorV1. + std::vector> data_pool; + + void SetUp() override { + ONNX_NAMESPACE::testing::ResolvedTestCase t = GetParam(); + protos_ = t.proto_test_data_; + model_ = t.model_; + } + + uint64_t GetDescriptorSize(const onnxTensorDescriptorV1* t) { + uint64_t d_size = 1; + for (uint32_t i = 0; i < t->dimensions; i++) { + d_size *= t->shape[i]; + } + return d_size; + } + + bool IsGtestAssertMemorySafeSuccess( + onnxStatus x, + onnxGraph* graph_pointer, + onnxifi_library& lib) { + if (x != ONNXIFI_STATUS_SUCCESS) { + if (graph_pointer != NULL) { + lib.onnxReleaseGraph(*graph_pointer); + } + } + bool result = (x == ONNXIFI_STATUS_SUCCESS); + return result; + } + + bool IsUnsupported(onnxStatus s, std::string& msg) { + if (s == ONNXIFI_STATUS_UNSUPPORTED_VERSION) { + msg = "Unsupported version of ONNX or operator."; + return true; + } + + if (s == ONNXIFI_STATUS_UNSUPPORTED_OPERATOR) { + msg = "Unsupported operator."; + return true; + } + + if (s == ONNXIFI_STATUS_UNSUPPORTED_ATTRIBUTE) { + msg = "Unsupported attribute."; + return true; + } + + if (s == ONNXIFI_STATUS_UNSUPPORTED_SHAPE) { + msg = "Unsupported shape."; + return true; + } + if (s == ONNXIFI_STATUS_UNSUPPORTED_DATATYPE) { + msg = "Unsupported datatype"; + return true; + } + return false; + } + + bool IsDescriptorEqual( + const onnxTensorDescriptorV1& x, + const onnxTensorDescriptorV1& y) { + if (x.dataType != y.dataType || x.dimensions != y.dimensions) { + return false; + } + const int dims = x.dimensions; + for (int i = 0; i < dims; i++) { + if (x.shape[i] != y.shape[i]) { + return false; + } + } + const uint64_t d_size = GetDescriptorSize(&x); + void* p1 = (void*)x.buffer; + void* p2 = (void*)y.buffer; + bool is_equal = true; + for (uint64_t i = 0; i < d_size; i++) { + int offset = 1; + switch (x.dataType) { + case ONNXIFI_DATATYPE_UNDEFINED: + case ONNXIFI_DATATYPE_INT8: + CompareOnnxifiData compare_int8; + is_equal &= compare_int8.IsEqual(p1, p2); + offset = sizeof(char); + break; + case ONNXIFI_DATATYPE_UINT8: + CompareOnnxifiData compare_uint8; + is_equal &= compare_uint8.IsEqual(p1, p2); + offset = sizeof(unsigned char); + break; + case ONNXIFI_DATATYPE_FLOAT16: + // no support now + break; + case ONNXIFI_DATATYPE_INT16: + CompareOnnxifiData compare_int16; + is_equal &= compare_int16.IsEqual(p1, p2); + offset = sizeof(short); + break; + case ONNXIFI_DATATYPE_UINT16: + CompareOnnxifiData compare_uint16; + is_equal &= compare_uint16.IsEqual(p1, p2); + offset = sizeof(unsigned short); + break; + case ONNXIFI_DATATYPE_FLOAT32: + CompareOnnxifiData compare_float32; + is_equal &= compare_float32.IsEqual(p1, p2); + offset = sizeof(float); + break; + case ONNXIFI_DATATYPE_INT32: + CompareOnnxifiData compare_int32; + is_equal &= compare_int32.IsEqual(p1, p2); + offset = sizeof(int); + break; + case ONNXIFI_DATATYPE_UINT32: + CompareOnnxifiData compare_uint32; + is_equal &= compare_uint32.IsEqual(p1, p2); + offset = sizeof(unsigned int); + break; + case ONNXIFI_DATATYPE_FLOAT64: + CompareOnnxifiData compare_float64; + is_equal &= compare_float64.IsEqual(p1, p2); + offset = sizeof(long double); + break; + case ONNXIFI_DATATYPE_INT64: + CompareOnnxifiData compare_int64; + is_equal &= compare_int64.IsEqual(p1, p2); + offset = sizeof(long long); + break; + case ONNXIFI_DATATYPE_UINT64: + CompareOnnxifiData compare_uint64; + is_equal &= compare_uint64.IsEqual(p1, p2); + offset = sizeof(unsigned long long); + break; + case ONNXIFI_DATATYPE_COMPLEX64: + case ONNXIFI_DATATYPE_COMPLEX128: + // no support now + break; + } + p1 = (char*)p1 + offset; + p2 = (char*)p2 + offset; + if (!is_equal) { + return false; + } + } + return true; + } + + void RunAndVerify( + onnxifi_library& lib, + onnxBackend& backend, + onnxBackendID backendID) { + // Check Model + ONNX_NAMESPACE::checker::check_model(model_); + // Check Input & Output Data + ONNX_NAMESPACE::checker::CheckerContext ctx; + for (auto proto_test_data : protos_) { + for (auto input : proto_test_data.inputs_) { + ONNX_NAMESPACE::checker::check_tensor(input, ctx); + } + for (auto input : proto_test_data.seq_inputs_) { + ONNX_NAMESPACE::checker::check_sequence(input, ctx); + } + for (auto input : proto_test_data.map_inputs_) { + ONNX_NAMESPACE::checker::check_map(input, ctx); + } + for (auto input : proto_test_data.optional_inputs_) { + ONNX_NAMESPACE::checker::check_optional(input, ctx); + } + for (auto output : proto_test_data.outputs_) { + ONNX_NAMESPACE::checker::check_tensor(output, ctx); + } + for (auto output : proto_test_data.seq_outputs_) { + ONNX_NAMESPACE::checker::check_sequence(output, ctx); + } + for (auto output : proto_test_data.map_outputs_) { + ONNX_NAMESPACE::checker::check_map(output, ctx); + } + for (auto output : proto_test_data.optional_outputs_) { + ONNX_NAMESPACE::checker::check_optional(output, ctx); + } + } + if (!ONNXIFI_DUMMY_BACKEND) { + onnxGraph graph; + uint32_t weightCount = model_.graph().initializer_size(); + onnxTensorDescriptorV1 weightDescriptors, + *weightDescriptors_pointer = NULL; + if (weightCount != 0) { + weightDescriptors = + ONNX_NAMESPACE::testing::ProtoToOnnxTensorDescriptor( + model_.graph().initializer(0), shape_pool); + weightDescriptors_pointer = &weightDescriptors; + } + std::string serialized_model; + model_.SerializeToString(&serialized_model); + auto is_compatible = lib.onnxGetBackendCompatibility( + backendID, serialized_model.size(), serialized_model.data()); + std::string error_msg; + if (IsUnsupported(is_compatible, error_msg)) { + std::cout << "Warning: " << error_msg + << " This test case will be skipped." << std::endl; + GTEST_SKIP(); + return; + } + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess(is_compatible, NULL, lib)); + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxInitGraph( + backend, + NULL, + serialized_model.size(), + serialized_model.data(), + weightCount, + weightDescriptors_pointer, + &graph), + NULL, + lib)); + for (const auto& proto_test_data : protos_) { + std::vector input_descriptor, output_descriptor, + result_descriptor; + for (const auto& input : proto_test_data.inputs_) { + input_descriptor.push_back( + ONNX_NAMESPACE::testing::ProtoToOnnxTensorDescriptor( + input, shape_pool)); + } + int output_count = 0; + for (auto& output : proto_test_data.outputs_) { + output_count++; + output_descriptor.push_back( + ONNX_NAMESPACE::testing::ProtoToOnnxTensorDescriptor( + output, shape_pool)); + onnxTensorDescriptorV1 result; + result.tag = ONNXIFI_TAG_TENSOR_DESCRIPTOR_V1; + std::string name_string = output_descriptor[output_count - 1].name; + result.name = name_string.c_str(); + result.dataType = output.data_type(); + result.memoryType = ONNXIFI_MEMORY_TYPE_CPU; + std::vector shape_values( + output.dims().begin(), output.dims().end()); + shape_pool.emplace_back(std::move(shape_values)); + result.dimensions = shape_pool.back().size(); + result.shape = shape_pool.back().data(); + std::vector raw_data(output.raw_data().size(), 0); + data_pool.emplace_back(std::move(raw_data)); + result.buffer = (onnxPointer)data_pool.back().data(); + result_descriptor.emplace_back(std::move(result)); + } + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxSetGraphIO( + graph, + input_descriptor.size(), + input_descriptor.data(), + result_descriptor.size(), + result_descriptor.data()), + &graph, + lib)); + + onnxMemoryFenceV1 inputFence, outputFence; + inputFence.tag = ONNXIFI_TAG_MEMORY_FENCE_V1; + outputFence.tag = ONNXIFI_TAG_MEMORY_FENCE_V1; + inputFence.type = ONNXIFI_SYNCHRONIZATION_EVENT; + outputFence.type = ONNXIFI_SYNCHRONIZATION_EVENT; + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxInitEvent(backend, &inputFence.event), &graph, lib)); + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxInitEvent(backend, &outputFence.event), &graph, lib)); + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxRunGraph(graph, &inputFence, &outputFence), &graph, lib)); + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxSignalEvent(inputFence.event), &graph, lib)); + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxWaitEvent(outputFence.event), &graph, lib)); + lib.onnxReleaseEvent(outputFence.event); + lib.onnxReleaseEvent(inputFence.event); + ASSERT_EQ(output_descriptor.size(), result_descriptor.size()); + for (int i = 0; i < output_descriptor.size(); i++) { + auto output_size = GetDescriptorSize(&output_descriptor[i]); + auto result_size = GetDescriptorSize(&result_descriptor[i]); + ASSERT_EQ(output_size, result_size); + for (int j = 0; j < output_size; j++) { + EXPECT_EQ( + IsDescriptorEqual(output_descriptor[i], result_descriptor[i]), + true); + } + } +/* + * Examine functions in onnxifi_ext + */ +#ifdef ONNXIFI_ENABLE_EXT + onnxExtensionFunctionPointer* f; + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxGetExtensionFunctionAddress( + backendID, "onnxGetExtensionFunctionAddress", f), + NULL, + lib)); +#endif + } + ASSERT_TRUE(IsGtestAssertMemorySafeSuccess( + lib.onnxReleaseGraph(graph), NULL, lib)); + } + } +}; + +/** + * When testing backend, we do not specify target backend here, + * but always use the by-default backend of onnxifi_loader. + * Check onnxifi_loader.c for more detail of how to indicate specific + * backend. + */ +TEST_P(ONNXCppDriverTest, ONNXCppDriverUnitTest){ + onnxifi_library lib; + onnxBackendID* backendIDs = NULL; + onnxBackend backend; + const size_t max_info_size = 50; // The maximum backend info size + if (!ONNXIFI_DUMMY_BACKEND) { + ASSERT_TRUE(onnxifi_load(1, NULL, &lib)); + size_t numBackends = 0; + ASSERT_EQ( + lib.onnxGetBackendIDs(backendIDs, &numBackends), + ONNXIFI_STATUS_FALLBACK); + backendIDs = (void**)malloc(numBackends * sizeof(onnxBackendID)); + ASSERT_EQ( + lib.onnxGetBackendIDs(backendIDs, &numBackends), + ONNXIFI_STATUS_SUCCESS); + + for (int i = 0; i < numBackends; i++) { + const uint64_t backendProperties[] = {ONNXIFI_BACKEND_PROPERTY_NONE}; + ASSERT_EQ( + lib.onnxInitBackend(backendIDs[i], backendProperties, &backend), + ONNXIFI_STATUS_SUCCESS); + char infovalue[max_info_size]; + size_t infoValueSize = max_info_size; + ASSERT_EQ( + lib.onnxGetBackendInfo( + backendIDs[i], ONNXIFI_BACKEND_NAME, infovalue, &infoValueSize), + ONNXIFI_STATUS_SUCCESS); + RunAndVerify(lib, backend, backendIDs[i]); + lib.onnxReleaseBackend(backend); + lib.onnxReleaseBackendID(backendIDs[i]); + } + free(backendIDs); + } else { + RunAndVerify(lib, backend, NULL); + } +} + +INSTANTIATE_TEST_CASE_P( + ONNXCppAllTest, + ONNXCppDriverTest, + ::testing::ValuesIn(GetTestCases()), + ONNXCppDriverTest::PrintToStringParamName()); +} // namespace testing +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/backend/test/cpp/gtest_utils.cc b/third_party/onnx/onnx/backend/test/cpp/gtest_utils.cc new file mode 100644 index 0000000000..13fed6295a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/gtest_utils.cc @@ -0,0 +1,13 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "gtest_utils.h" +namespace ONNX_NAMESPACE { +namespace testing { +std::vector& GetTestCases() { + static std::vector all_test_cases; + return all_test_cases; +} +} // namespace testing +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/backend/test/cpp/gtest_utils.h b/third_party/onnx/onnx/backend/test/cpp/gtest_utils.h new file mode 100644 index 0000000000..d05c77b6fa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/gtest_utils.h @@ -0,0 +1,11 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "gtest/gtest.h" +#include "onnx/backend/test/cpp/driver/test_driver.h" +namespace ONNX_NAMESPACE { +namespace testing { +std::vector& GetTestCases(); +} +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/backend/test/cpp/test_main.cc b/third_party/onnx/onnx/backend/test/cpp/test_main.cc new file mode 100644 index 0000000000..b67afdb3ff --- /dev/null +++ b/third_party/onnx/onnx/backend/test/cpp/test_main.cc @@ -0,0 +1,19 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include +#include "gtest_utils.h" + +GTEST_API_ int main(int argc, char** argv) { + if (argc < 2) { + std::cerr << "target directory must be given!" << std::endl; + return EXIT_FAILURE; + } + argc--; + std::string target_dir = argv[argc]; + auto testcases = ONNX_NAMESPACE::testing::LoadAllTestCases(target_dir); + ONNX_NAMESPACE::testing::GetTestCases() = testcases; + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/third_party/onnx/onnx/backend/test/data/node/test_abs/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_abs/model.onnx new file mode 100644 index 0000000000..cbb52b8a83 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_abs/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Abstest_absZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..414f615a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_abs/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_acos/model.onnx new file mode 100644 index 0000000000..874cf57053 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acos/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Acos test_acosZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7a61135c2c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..15177ccd16 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_acos/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/model.onnx new file mode 100644 index 0000000000..e2c32804a6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Acostest_acos_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c32a2f1c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..598a49de8b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acos_example/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +ByJ ’ +@ÛÉ?’ +†? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_acosh/model.onnx new file mode 100644 index 0000000000..77301e9d5f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acosh/model.onnx @@ -0,0 +1,14 @@ + backend-test:M + +xy"Acosh +test_acoshZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..23af965f62 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8fbcb45c56 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acosh/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðÎì@D{,@„#@‚‰@ë8@ÓÑ&@vç@‡ø8@[m=@ @È22@*ï@ Ê@>;@“ö‰?ZT—?/?é 5@Á81@ÕŽ7@øP>@&º2@í¯@Àd1@\<­?šN&@}2¼?žG<@ñ6@¾@½Àñ?¾ï0@»@’Ó@·Û?j[$@çÜ#@sK$@=9<@oÑ)@âÕ@†Ö@+@VÅ?5”(@aæ(@ÕµÜ?(Õ³?V@Àk@™þ@\@¿ã>@—^¢?×Ü?OÓÅ?én'@éªí?<<@YZê? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/model.onnx new file mode 100644 index 0000000000..868c12b59b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:E + +xy"Acoshtest_acosh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c690ef0b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1b7c7729e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_acosh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/model.onnx new file mode 100644 index 0000000000..324e40e38a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..038e9dcb5c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..265567aa17 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..82851b8509 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..075011c207 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX_newJ—b‡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..47b03d2f37 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BH_newJ@ß?@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/model.onnx new file mode 100644 index 0000000000..c9dc8c1f81 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..259b58bf7f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..eb51654d45 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..15cbe61b3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..62e5b3a8f7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_5.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..ad3e95e23d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_6.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..cb33a3de66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/input_7.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f84f709d78 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX1_newJ—b‡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..c8d6212c8d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BX2_newJ@¸…?7@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..ac197e13eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +BH1_newJ@ß?@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_3.pb new file mode 100644 index 0000000000..987572fef4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adagrad_multiple/test_data_set_0/output_3.pb @@ -0,0 +1 @@ +BH2_newJ ïŸ@ÝÎA \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_adam/model.onnx new file mode 100644 index 0000000000..e2c192a7df Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..15244fd4b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BXJš™™?333@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..439d577ffb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e3f3aa94fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BVJš™Ù?fff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..e0fb17859a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/input_5.pb @@ -0,0 +1 @@ +BHJÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0fd42a35b8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX_newJd4ƒ?\N*@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f5f4916b39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BV_newJ1¶È?’ãR@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..074ed200b0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +BH_newJ9ŸM?Âê³@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/model.onnx new file mode 100644 index 0000000000..1f74226a73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..259b58bf7f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..eb51654d45 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..15cbe61b3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..62e5b3a8f7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_5.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..0dd424c33d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_6.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..bb84e11178 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_7.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_8.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_8.pb new file mode 100644 index 0000000000..3a1c3faf77 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_8.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_9.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_9.pb new file mode 100644 index 0000000000..4d97f4be46 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/input_9.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d6554ea2ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX1_newJÁVB? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..84851f0eb4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BX2_newJdï ?6¿ü? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..ca18d87a68 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +BV1_newJpÎì? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_3.pb new file mode 100644 index 0000000000..32448031b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_4.pb new file mode 100644 index 0000000000..8b342ab6cd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_4.pb @@ -0,0 +1 @@ +BH1_newJ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_5.pb new file mode 100644 index 0000000000..dfc933bfdd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_adam_multiple/test_data_set_0/output_5.pb @@ -0,0 +1 @@ +BH2_newJZì?;’A \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_add/model.onnx new file mode 100644 index 0000000000..78da813549 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add/model.onnx @@ -0,0 +1,19 @@ + backend-test:i + +x +ysum"Addtest_addZ +x + + + +Z +y + + + +b +sum + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a83758c353 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_add/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/model.onnx new file mode 100644 index 0000000000..fffb9c58ad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:g + +x +ysum"Addtest_add_bcastZ +x + + + +Z +y + + +b +sum + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..725a84b31c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_add_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/model.onnx new file mode 100644 index 0000000000..e0c6e0621c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/model.onnx @@ -0,0 +1,19 @@ + backend-test:o + +x +ysum"Addtest_add_uint8Z +x + + + +Z +y + + + +b +sum + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a358b1dadc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1735d5acdb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/input_1.pb @@ -0,0 +1,4 @@ +ByJ< + + +        \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8a101479e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_add_uint8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BsumJ<&, $!"' ,$'" \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and2d/model.onnx new file mode 100644 index 0000000000..823a8fad13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and2d/model.onnx @@ -0,0 +1,17 @@ + backend-test:_ + +x +yand"And +test_and2dZ +x +   + +Z +y +   + +b +and +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d9541774b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f37772a3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..644166260e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and3d/model.onnx new file mode 100644 index 0000000000..601f2ba6b6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and3d/model.onnx @@ -0,0 +1,20 @@ + backend-test:k + +x +yand"And +test_and3dZ +x +  + + +Z +y +  + + +b +and +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..402cb458fe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..825b4f452a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ac2cebf485 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and4d/model.onnx new file mode 100644 index 0000000000..ae2465b88c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and4d/model.onnx @@ -0,0 +1,23 @@ + backend-test:w + +x +yand"And +test_and4dZ +x +  + + + +Z +y +  + + + +b +and +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3c2fb94d85 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..925bab6960 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5389f4895a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/model.onnx new file mode 100644 index 0000000000..c54ddce1d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/model.onnx @@ -0,0 +1,18 @@ + backend-test:k + +x +yand"Andtest_and_bcast3v1dZ +x +  + + +Z +y + +  +b +and +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5cc32fe100 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1500686f96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5e19b0b5a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/model.onnx new file mode 100644 index 0000000000..22bc73a8a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/model.onnx @@ -0,0 +1,18 @@ + backend-test:o + +x +yand"Andtest_and_bcast3v2dZ +x +  + + +Z +y +   + +b +and +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d784193ad4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8bab0d309c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..05a20c23cf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast3v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/model.onnx new file mode 100644 index 0000000000..a36c3355ad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/model.onnx @@ -0,0 +1,20 @@ + backend-test:w + +x +yand"Andtest_and_bcast4v2dZ +x +  + + + +Z +y +   + +b +and +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..22944e3243 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d7cba2c1a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..219a3303c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/model.onnx new file mode 100644 index 0000000000..c07b3ae6cb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/model.onnx @@ -0,0 +1,21 @@ + backend-test:{ + +x +yand"Andtest_and_bcast4v3dZ +x +  + + + +Z +y +  + + +b +and +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..70f33b925d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7e83c141eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c8235b845c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/model.onnx new file mode 100644 index 0000000000..d17a018ffd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/model.onnx @@ -0,0 +1,22 @@ + backend-test: + +x +yand"Andtest_and_bcast4v4dZ +x +  + + + +Z +y +  + + + +b +and +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..024a3481cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8e18502fa2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..da964d4022 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_and_bcast4v4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/model.onnx new file mode 100644 index 0000000000..f5d9bd1e15 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/model.onnx @@ -0,0 +1,12 @@ + backend-test:} +' +dataresult"ArgMax* +keepdims  test_argmax_default_axis_exampleZ +data +  + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..931446fc1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f6f7c0f367 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/model.onnx new file mode 100644 index 0000000000..037618f516 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/model.onnx @@ -0,0 +1,13 @@ + backend-test:© +A +dataresult"ArgMax* +keepdims * +select_last_index 2test_argmax_default_axis_example_select_last_indexZ +data +  + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1821ab502d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f6f7c0f367 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_example_select_last_index/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/model.onnx new file mode 100644 index 0000000000..42d98c023d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:„ +' +dataresult"ArgMax* +keepdims test_argmax_default_axis_randomZ +data + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edce89923a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ?¯1®?à0AºD Á^Áµ‡ÁoàÔ@4²@ÊÎì@j(A$v¿@Å9E¿æ‰³@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..155c0f172d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/model.onnx new file mode 100644 index 0000000000..8689e4a9f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/model.onnx @@ -0,0 +1,15 @@ + backend-test:° +A +dataresult"ArgMax* +keepdims * +select_last_index 1test_argmax_default_axis_random_select_last_indexZ +data + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edce89923a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ?¯1®?à0AºD Á^Áµ‡ÁoàÔ@4²@ÊÎì@j(A$v¿@Å9E¿æ‰³@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..155c0f172d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_default_axis_random_select_last_index/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/model.onnx new file mode 100644 index 0000000000..fcf0ce22d9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/model.onnx @@ -0,0 +1,13 @@ + backend-test:† +4 +dataresult"ArgMax* +axis * +keepdims test_argmax_keepdims_exampleZ +data +  + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..931446fc1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7fe4182434 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/model.onnx new file mode 100644 index 0000000000..95f3318272 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/model.onnx @@ -0,0 +1,14 @@ + backend-test:² +N +dataresult"ArgMax* +axis * +keepdims * +select_last_index .test_argmax_keepdims_example_select_last_indexZ +data +  + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1821ab502d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..60d9eebdb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_example_select_last_index/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/model.onnx new file mode 100644 index 0000000000..36a9021db5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test: +4 +dataresult"ArgMax* +axis * +keepdims test_argmax_keepdims_randomZ +data + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edce89923a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ?¯1®?à0AºD Á^Áµ‡ÁoàÔ@4²@ÊÎì@j(A$v¿@Å9E¿æ‰³@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b447f5f9af Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/model.onnx new file mode 100644 index 0000000000..785d4ef0c7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/model.onnx @@ -0,0 +1,16 @@ + backend-test:¹ +N +dataresult"ArgMax* +axis * +keepdims * +select_last_index -test_argmax_keepdims_random_select_last_indexZ +data + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edce89923a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ?¯1®?à0AºD Á^Áµ‡ÁoàÔ@4²@ÊÎì@j(A$v¿@Å9E¿æ‰³@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b447f5f9af Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_keepdims_random_select_last_index/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/model.onnx new file mode 100644 index 0000000000..2685d086a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/model.onnx @@ -0,0 +1,13 @@ + backend-test: += +dataresult"ArgMax* +axisÿÿÿÿÿÿÿÿÿ * +keepdims *test_argmax_negative_axis_keepdims_exampleZ +data +  + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..931446fc1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7fe4182434 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example_select_last_index/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example_select_last_index/model.onnx new file mode 100644 index 0000000000..fd3abb1d78 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_argmax_negative_axis_keepdims_example_select_last_index/model.onnx @@ -0,0 +1,14 @@ + backend-test:É +W +dataresult"ArgMax* +axisÿÿÿÿÿÿÿÿÿ * +keepdims * +select_last_index QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asin/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asin/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7ef10bf49a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asin/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðø?OL?(Ÿ%?…?åüß>úÂ3?Jäç>¶õŒ?8s¦?l{É>‚ãi?«? ¨?º_—?¿š‘=ت²=ñ£¥<¶Û{?"Hd?®‡?‡‹®?fm?C–õ>E@e?[Ëò=çÃ1?M>`Hž?TŒ ?ŸêÚ>Ÿ‰>Z°b?%„ò>$Ç?cï™]“ç>k§E?9Õv=:Ø:?p-—c>N¤>X—¾>ªS?/xè>L†µ?)ZÑ=úyW>ãç%>È06?ƒ>aø>Ú|> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asin_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/model.onnx new file mode 100644 index 0000000000..41661dd78f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Asintest_asin_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c32a2f1c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2ef8fdad56 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_asin_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_asinh/model.onnx new file mode 100644 index 0000000000..0c18656cd5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asinh/model.onnx @@ -0,0 +1,14 @@ + backend-test:M + +xy"Asinh +test_asinhZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..71224febc4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asinh/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðÉšª?ØÅÇ>%Ã]?,òÅ?(ÿ°?»~]¿§{X?ng¾ÄÓ½'ºÌ>Èþ>ý¥•?A³3?b”ø=cÜ>óѧ><‚˜?µ¢P¾ È>!H?‹Ö/¿…qÇ?´§•¿Ž\;=“>¾V=›?½–?¼ >AG½>½L¿®·¿\¸®¾Æt>!‚„?M=‚?©Á¾wƒ˜¾šPj¿Ü$“¿P馿ƒðµ?ÆÊú¾J­Ù¾µP†¿ã 7?LÏ ¿DcQû¾-s€¿˜Ö漎Õ>„ ˆ=¯˜˜>¤¿Õßµ¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/model.onnx new file mode 100644 index 0000000000..de019c6c09 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:E + +xy"Asinhtest_asinh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fc85f0a2ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_asinh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_atan/model.onnx new file mode 100644 index 0000000000..b98edadfa0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atan/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Atan test_atanZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d1e21981c3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atan/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð# ‡?ãÂ>¯OF?V“?Ã"Š?ÆF¿Ü‚B?~Ò¾p¥Ò½æzÇ>4~>|êw?ÿˆ&?´ø÷=ßáÕ>¶ä¤>¦ {?ö4O¾W›>=õ4¿žF™¿Ã3?{6?¡r#¿zñ“?mìw¿ÖK;=Ê{=¾}#~?¦%y?j>Ó¹>ÓÜ9¿98¿±l«¾ËÐ>ðfc?0…`?…3½¾ŽN–¾× O¿u¿þ4…¿ûmŒ?jSñ¾¡fÓ¾H«e¿c.)?Í‚¿d¥V¾Aõ:¿(½>QËñ¾&8^¿ÇÎæ¼s3Ï>âˆ=Þb–>Ùµ¿t*²¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/model.onnx new file mode 100644 index 0000000000..e7fd457399 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Atantest_atan_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4a268e9929 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_atan_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_atanh/model.onnx new file mode 100644 index 0000000000..fc8f56681d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atanh/model.onnx @@ -0,0 +1,14 @@ + backend-test:M + +xy"Atanh +test_atanhZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7a61135c2c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..35d5d65417 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_atanh/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/model.onnx new file mode 100644 index 0000000000..d3dc0876b5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:E + +xy"Atanhtest_atanh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c32a2f1c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b2bac68eca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_atanh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/model.onnx new file mode 100644 index 0000000000..becce475f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/model.onnx @@ -0,0 +1,14 @@ + backend-test:y +( +xy" AveragePool* + kernel_shape@ test_averagepool_1d_defaultZ +x + + + + b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..04d0812b47 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BxJ€xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..efcdf6ce4b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_1d_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJôi‚Š?¤0?pÎ?nx@féã>`¼^¼¦yÌ>ËW¾Þ`>ý>§•L?¨Ç?vùá>Ç>´ Ç>Óói?\û$? ÿ\=Ð€Š¾° Ú¿˜s¿žOB?Piz=ˆC?T½Ð>>M4¿Îѽx<,?#À?DéO?åyˆ>Ú–·¿ •¿$)Ľh}1?à°›?P§Ð>‹°¾×è,¿ý¿È¿_ú=ºv8?4žò¾jnX¿,[s¾ÌÖ¾GÏi¿¹Ù ¿A1‚¾¨À}½X¿oº¿jàL>Ü\}>$ì<>Eè)¾Š?ÿ¾|¿¿¿†¢¿C½å½ó ‚¿äm¿ž—c¾jøÚ¾ùñÇ>´ªÛ>eZ"?@nC½°Õ¾µŸ¾$G¿Ž9¿fñã¾Â¾4ó ¿bU¾é.?Î ¿À’ļƕØ?`ÇÄ?ò´ÿ>3 ¿€‰¼ò¹¦>Ž»Ñ>Õ!7?C«?ìŸ*?h? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/model.onnx new file mode 100644 index 0000000000..1d4c906abd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/model.onnx @@ -0,0 +1,18 @@ + backend-test:¤ +N +xy" AveragePool* + ceil_mode * + kernel_shape@@ * +strides@@ test_averagepool_2d_ceilZ +x + + + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7ef45fc816 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3ef908e160 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_ceil/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/model.onnx new file mode 100644 index 0000000000..81bedb37ed --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/model.onnx @@ -0,0 +1,16 @@ + backend-test:ƒ +* +xy" AveragePool* + kernel_shape@@ test_averagepool_2d_defaultZ +x + + + + + b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..909f5501d1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/model.onnx new file mode 100644 index 0000000000..2cbd0926ef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/model.onnx @@ -0,0 +1,17 @@ + backend-test:“ += +xy" AveragePool* + kernel_shape@@ * +pads@@@@ test_averagepool_2d_padsZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5309700dbf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c9de7fcd33 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/model.onnx new file mode 100644 index 0000000000..cbdd71baf8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/model.onnx @@ -0,0 +1,18 @@ + backend-test:¿ +W +xy" AveragePool* +count_include_pad * + kernel_shape@@ * +pads@@@@ *test_averagepool_2d_pads_count_include_padZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5309700dbf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e27490ac03 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_pads_count_include_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/model.onnx new file mode 100644 index 0000000000..22e29ad9b2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/model.onnx @@ -0,0 +1,17 @@ + backend-test:Ÿ += +xy" AveragePool* + kernel_shape@@ * +pads@@@@ $test_averagepool_2d_precomputed_padsZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a92a50abd3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/model.onnx new file mode 100644 index 0000000000..9ce3ff966e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/model.onnx @@ -0,0 +1,18 @@ + backend-test:Ë +W +xy" AveragePool* +count_include_pad * + kernel_shape@@ * +pads@@@@ 6test_averagepool_2d_precomputed_pads_count_include_padZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..62b2add4ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_pads_count_include_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/model.onnx new file mode 100644 index 0000000000..213d7ef4c3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/model.onnx @@ -0,0 +1,19 @@ + backend-test:¿ +W +xy" AveragePool* +auto_pad" +SAME_UPPER * + kernel_shape@@ * +strides@@ *test_averagepool_2d_precomputed_same_upperZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e8ff996ff8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_same_upper/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/model.onnx new file mode 100644 index 0000000000..7aa5cc95d3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/model.onnx @@ -0,0 +1,17 @@ + backend-test:¡ +< +xy" AveragePool* + kernel_shape@@ * +strides@@ 'test_averagepool_2d_precomputed_stridesZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7b17d98ebc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_precomputed_strides/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/model.onnx new file mode 100644 index 0000000000..83c2ed26bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/model.onnx @@ -0,0 +1,18 @@ + backend-test:¡ +E +xy" AveragePool* +auto_pad" +SAME_LOWER * + kernel_shape@@ test_averagepool_2d_same_lowerZ +x + + + + + b +y + + + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7dfbb4fe2c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_lower/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/model.onnx new file mode 100644 index 0000000000..ffc4f58449 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/model.onnx @@ -0,0 +1,18 @@ + backend-test:¡ +E +xy" AveragePool* +auto_pad" +SAME_UPPER * + kernel_shape@@ test_averagepool_2d_same_upperZ +x + + + + + b +y + + + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2ab7912dab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_same_upper/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/model.onnx new file mode 100644 index 0000000000..1a795a99d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/model.onnx @@ -0,0 +1,19 @@ + backend-test:• +< +xy" AveragePool* + kernel_shape@@ * +strides@@ test_averagepool_2d_stridesZ +x + + + + + b +y + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab1681fb70 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_2d_strides/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/model.onnx new file mode 100644 index 0000000000..27e351660e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/model.onnx @@ -0,0 +1,18 @@ + backend-test: +, +xy" AveragePool* + kernel_shape@@@ test_averagepool_3d_defaultZ +x + + + + + + b +y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1f024e54b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..57a0a1541e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_averagepool_3d_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/model.onnx new file mode 100644 index 0000000000..dc46086351 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/model.onnx @@ -0,0 +1,24 @@ + backend-test:° +9 +x +Wy"Conv* + kernel_shape@@ * +pads@@@@ test_basic_conv_with_paddingZ +x + + + + +Z +W + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..063e19140b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f8944bc11 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_with_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/model.onnx new file mode 100644 index 0000000000..a77bc3463c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..063e19140b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c158083caf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_conv_without_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/model.onnx new file mode 100644 index 0000000000..023bd4a9f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33cea02633 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ  diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53980d95da --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BwJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6741b09810 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f81e5d710a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_basic_convinteger/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/model.onnx new file mode 100644 index 0000000000..fcbed8efe7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/model.onnx @@ -0,0 +1,37 @@ + backend-test:á +A +x +s +bias +mean +vary"BatchNormalization* +epsilon +×#< test_batchnorm_epsilonZ +x + + + + +Z +s + + +Z +bias + + +Z +mean + + +Z +var + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d514241f1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d116d510ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BsJ ³ 6?þa:¿êV? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..04d8744293 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BbiasJ =˜ž?ttä¿ÖÒK¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..735331ef9d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_3.pb @@ -0,0 +1 @@ +BmeanJ ðD³¿fÆ<¾ž²¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f583c0235d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BvarJ c»6=l¿L?W›= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5094ae4152 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/model.onnx new file mode 100644 index 0000000000..53523e7657 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/model.onnx @@ -0,0 +1,48 @@ + backend-test:Ó +p +x +s +bias +mean +vary output_mean +output_var"BatchNormalization* +epsilon +×#< * + training_mode $test_batchnorm_epsilon_training_modeZ +x + + + + +Z +s + + +Z +bias + + +Z +mean + + +Z +var + + +b +y + + + + +b + output_mean + + +b + +output_var + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d514241f1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d116d510ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BsJ ³ 6?þa:¿êV? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..04d8744293 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BbiasJ =˜ž?ttä¿ÖÒK¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..735331ef9d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_3.pb @@ -0,0 +1 @@ +BmeanJ ðD³¿fÆ<¾ž²¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f583c0235d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BvarJ c»6=l¿L?W›= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7143658e3e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..b5779a5596 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +B output_meanJ Xø¡¿· 2¾÷¥£¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..ec74fb00c9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_epsilon_training_mode/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B +output_varJ ‰>îœX?êÎ!> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/model.onnx new file mode 100644 index 0000000000..bbdb6c7427 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/model.onnx @@ -0,0 +1,35 @@ + backend-test:Î +. +x +s +bias +mean +vary"BatchNormalizationtest_batchnorm_exampleZ +x + + + + +Z +s + + +Z +bias + + +Z +mean + + +Z +var + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..51031034e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be392c2f40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BsJ ÙºÀ>*¹Œ¿­²˜> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ffa575cc82 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BbiasJ Ç©?3Ï1¿Ì9¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..03fea1b63f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_3.pb @@ -0,0 +1 @@ +BmeanJ rÌÞ¾­´ì?‚,? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..93001374be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BvarJ Ç»y?î[?nì?< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0809e19c11 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/model.onnx new file mode 100644 index 0000000000..88dc567e8f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/model.onnx @@ -0,0 +1,46 @@ + backend-test:À +] +x +s +bias +mean +vary output_mean +output_var"BatchNormalization* + training_mode $test_batchnorm_example_training_modeZ +x + + + + +Z +s + + +Z +bias + + +Z +mean + + +Z +var + + +b +y + + + + +b + output_mean + + +b + +output_var + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..51031034e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be392c2f40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BsJ ÙºÀ>*¹Œ¿­²˜> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ffa575cc82 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BbiasJ Ç©?3Ï1¿Ì9¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..03fea1b63f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_3.pb @@ -0,0 +1 @@ +BmeanJ rÌÞ¾­´ì?‚,? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..93001374be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BvarJ Ç»y?î[?nì?< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..77cd8aabed Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..89e2fbe59f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +B output_meanJ ™õ¾uØ?N2? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..30fcb8615d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_batchnorm_example_training_mode/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B +output_varJ „`v?’/c?Pù > \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/model.onnx new file mode 100644 index 0000000000..aab6c12573 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/model.onnx @@ -0,0 +1,13 @@ + backend-test:E + +xy" Bernoullitest_bernoulliZ +x + +  + +b +y + +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b6d3af50c4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + + BxJP¨_Váá?3‡`ÏÔâæ?K‰nkÖIã?õ•cÛ®oá?öý)Û?[›‰!*«ä?ÒYaÊmÜ?÷:ˆg‰ì?63ISÖî?BÒKNŠØ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49da0b5cf6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/model.onnx new file mode 100644 index 0000000000..8a755e9e13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/model.onnx @@ -0,0 +1,14 @@ + backend-test:Z + +xy" Bernoulli* +dtype  test_bernoulli_doubleZ +x + + + +b +y + +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7faf960c63 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BxJ(  ?¦7?³N?w} ?HéØ>QY%?n à> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49da0b5cf6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/model.onnx new file mode 100644 index 0000000000..59119a0a78 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7faf960c63 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BxJ(  ?¦7?³N?w} ?HéØ>QY%?n à> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49da0b5cf6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_double_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/model.onnx new file mode 100644 index 0000000000..6ad1655631 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b6d3af50c4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + + BxJP¨_Váá?3‡`ÏÔâæ?K‰nkÖIã?õ•cÛ®oá?öý)Û?[›‰!*«ä?ÒYaÊmÜ?÷:ˆg‰ì?63ISÖî?BÒKNŠØ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49da0b5cf6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/model.onnx new file mode 100644 index 0000000000..200629a424 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7faf960c63 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BxJ(  ?¦7?³N?w} ?HéØ>QY%?n à> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e4dd877fed Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/model.onnx new file mode 100644 index 0000000000..b8a5a8ddd9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7faf960c63 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BxJ(  ?¦7?³N?w} ?HéØ>QY%?n à> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e4dd877fed Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bernoulli_seed_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/model.onnx new file mode 100644 index 0000000000..9525387dd5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/model.onnx @@ -0,0 +1,17 @@ + backend-test:y +) +x +yz"BitShift* + direction"LEFT test_bitshift_left_uint16Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..57ba338287 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fcbf693c8e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fedb77508a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/model.onnx new file mode 100644 index 0000000000..a6398e0d2f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/model.onnx @@ -0,0 +1,17 @@ + backend-test:y +) +x +yz"BitShift* + direction"LEFT test_bitshift_left_uint32Z +x + +  +Z +y + +  +b +z + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c01899b3ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d58cf28933 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..126ba2ba52 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/model.onnx new file mode 100644 index 0000000000..e1f04b61cd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/model.onnx @@ -0,0 +1,17 @@ + backend-test:y +) +x +yz"BitShift* + direction"LEFT test_bitshift_left_uint64Z +x + +  +Z +y + +  +b +z + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4c69686334 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2b2b147a19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..586fb01919 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/model.onnx new file mode 100644 index 0000000000..120aabf900 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/model.onnx @@ -0,0 +1,17 @@ + backend-test:x +) +x +yz"BitShift* + direction"LEFT test_bitshift_left_uint8Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2381f5a6a2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a079f7460e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b98bfa686a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_left_uint8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ  \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/model.onnx new file mode 100644 index 0000000000..b345754cb2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/model.onnx @@ -0,0 +1,17 @@ + backend-test:{ +* +x +yz"BitShift* + direction"RIGHT test_bitshift_right_uint16Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..57ba338287 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fcbf693c8e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73293c5640 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/model.onnx new file mode 100644 index 0000000000..feebd1fa87 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/model.onnx @@ -0,0 +1,17 @@ + backend-test:{ +* +x +yz"BitShift* + direction"RIGHT test_bitshift_right_uint32Z +x + +  +Z +y + +  +b +z + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c01899b3ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d58cf28933 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d545c52b6e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/model.onnx new file mode 100644 index 0000000000..bf20f84ac9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/model.onnx @@ -0,0 +1,17 @@ + backend-test:{ +* +x +yz"BitShift* + direction"RIGHT test_bitshift_right_uint64Z +x + +  +Z +y + +  +b +z + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4c69686334 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2b2b147a19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5260f807e2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/model.onnx new file mode 100644 index 0000000000..820adac3d9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/model.onnx @@ -0,0 +1,17 @@ + backend-test:z +* +x +yz"BitShift* + direction"RIGHT test_bitshift_right_uint8Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2381f5a6a2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a079f7460e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..36087feb33 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_bitshift_right_uint8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/model.onnx new file mode 100644 index 0000000000..078bbaf12c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/model.onnx @@ -0,0 +1,12 @@ + backend-test:r + +inputoutput"Cast* +to test_cast_BFLOAT16_to_FLOATZ +input +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e7fbb216db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80a9fe87a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/model.onnx new file mode 100644 index 0000000000..c60a94b580 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/model.onnx @@ -0,0 +1,12 @@ + backend-test:p + +inputoutput"Cast* +to test_cast_DOUBLE_to_FLOATZ +input +   + +b +output +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2f262521e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BinputJ`RÖÜdú/Ô?\²™Š G×?þX'L ?â?Fþ Ü?ÌöÕ+ ï?€¨ãÔ›º?|3):y¼Ê?<¿ìOÊ¥Ä?’ÐSnCæä?z Pûí5Ð?4.Ì# ØÝ?¸åùyVIÏ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5f760bfd84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJ0Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/model.onnx new file mode 100644 index 0000000000..4ae26ca15d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/model.onnx @@ -0,0 +1,14 @@ + backend-test:r + +inputoutput"Cast* +to + test_cast_DOUBLE_to_FLOAT16Z +input +   + +b +output +  + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a1a2cd292a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..05ff0b52aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ + +BoutputJ1/@9l0J2æ5‘:7.´:&.Ð;€7 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/model.onnx new file mode 100644 index 0000000000..a92ae8cc9b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/model.onnx @@ -0,0 +1,13 @@ + backend-test:r + +inputoutput"Cast* +to  test_cast_FLOAT16_to_DOUBLEZ +input +  + + +b +output +   + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1454185c4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJæ8ï8;t9Á5þ6•9µ+V9]9»2 0 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6d22219119 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/model.onnx new file mode 100644 index 0000000000..dbdfef3264 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/model.onnx @@ -0,0 +1,13 @@ + backend-test:q + +inputoutput"Cast* +to test_cast_FLOAT16_to_FLOATZ +input +  + + +b +output +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ce7f7bd369 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJ’/9–0;-8¢6<42:L7Œ8Ï$ñ8 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9e65670828 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/model.onnx new file mode 100644 index 0000000000..da421a6e13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/model.onnx @@ -0,0 +1,12 @@ + backend-test:r + +inputoutput"Cast* +to test_cast_FLOAT_to_BFLOAT16Z +input +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fc06bd1b5f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5d313b3c56 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/model.onnx new file mode 100644 index 0000000000..e83e2181f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/model.onnx @@ -0,0 +1,12 @@ + backend-test:p + +inputoutput"Cast* +to  test_cast_FLOAT_to_DOUBLEZ +input +  + +b +output +   + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a3a4dfd28a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab6a834d8e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/model.onnx new file mode 100644 index 0000000000..428d57ec41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/model.onnx @@ -0,0 +1,14 @@ + backend-test:q + +inputoutput"Cast* +to + test_cast_FLOAT_to_FLOAT16Z +input +  + +b +output +  + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1111543226 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2fa7f21ce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/model.onnx new file mode 100644 index 0000000000..46447c96dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/model.onnx @@ -0,0 +1,12 @@ + backend-test:p + +inputoutput"Cast* +to test_cast_FLOAT_to_STRINGZ +input +  + +b +output +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4b0bb0708c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0 z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8d2b65fc18 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_FLOAT_to_STRING/test_data_set_0/output_0.pb @@ -0,0 +1,6 @@ +2 0.97676112 0.60484552 0.73926362 0.0391877932 +0.282806962 +0.120196562 0.29614022 +0.118727722 +0.317983182 +0.414262982 0.0641474952 0.6924721Boutput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/model.onnx new file mode 100644 index 0000000000..d9c4180fb4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/model.onnx @@ -0,0 +1,12 @@ + backend-test:p + +inputoutput"Cast* +to test_cast_STRING_to_FLOATZ +input +  + +b +output +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fbe920e572 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1,7 @@ +2 +0.478925472 +0.480336672 +0.499684872 +0.819105452 +0.4703124820.8164682 +0.210871952 0.72290382NaN2INF2+INF2-INFBinput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..20e7394509 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cast_STRING_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/model.onnx new file mode 100644 index 0000000000..f3cc97f688 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/model.onnx @@ -0,0 +1,16 @@ + backend-test:‰ + +input +likeoutput"CastLiketest_castlike_BFLOAT16_to_FLOATZ +input +  + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e7fbb216db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c739ea465a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80a9fe87a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/model.onnx new file mode 100644 index 0000000000..b3598c7ca2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e7fbb216db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c739ea465a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80a9fe87a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_BFLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/model.onnx new file mode 100644 index 0000000000..363c44c5d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/model.onnx @@ -0,0 +1,16 @@ + backend-test:‡ + +input +likeoutput"CastLiketest_castlike_DOUBLE_to_FLOATZ +input +   + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2f262521e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BinputJ`RÖÜdú/Ô?\²™Š G×?þX'L ?â?Fþ Ü?ÌöÕ+ ï?€¨ãÔ›º?|3):y¼Ê?<¿ìOÊ¥Ä?’ÐSnCæä?z Pûí5Ð?4.Ì# ØÝ?¸åùyVIÏ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1cc9eb8c85 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJÓ¡> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5f760bfd84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJ0Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/model.onnx new file mode 100644 index 0000000000..ead7aa56c5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/model.onnx @@ -0,0 +1,18 @@ + backend-test:‰ + +input +likeoutput"CastLiketest_castlike_DOUBLE_to_FLOAT16Z +input +   + +Z +like + + + +b +output +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a1a2cd292a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b6f232223 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BlikeJ1 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..05ff0b52aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ + +BoutputJ1/@9l0J2æ5‘:7.´:&.Ð;€7 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/model.onnx new file mode 100644 index 0000000000..5e792442a7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a1a2cd292a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b6f232223 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BlikeJ1 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..05ff0b52aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT16_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ + +BoutputJ1/@9l0J2æ5‘:7.´:&.Ð;€7 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/model.onnx new file mode 100644 index 0000000000..6081f69672 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2f262521e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BinputJ`RÖÜdú/Ô?\²™Š G×?þX'L ?â?Fþ Ü?ÌöÕ+ ï?€¨ãÔ›º?|3):y¼Ê?<¿ìOÊ¥Ä?’ÐSnCæä?z Pûí5Ð?4.Ì# ØÝ?¸åùyVIÏ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1cc9eb8c85 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJÓ¡> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5f760bfd84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_DOUBLE_to_FLOAT_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJ0Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/model.onnx new file mode 100644 index 0000000000..bf61a448be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/model.onnx @@ -0,0 +1,17 @@ + backend-test:‰ + +input +likeoutput"CastLiketest_castlike_FLOAT16_to_DOUBLEZ +input +  + + +Z +like + +  +b +output +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1454185c4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJæ8ï8;t9Á5þ6•9µ+V9]9»2 0 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a01a391921 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6d22219119 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/model.onnx new file mode 100644 index 0000000000..e6fca86569 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1454185c4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJæ8ï8;t9Á5þ6•9µ+V9]9»2 0 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a01a391921 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6d22219119 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_DOUBLE_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/model.onnx new file mode 100644 index 0000000000..74a6b56ca7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/model.onnx @@ -0,0 +1,17 @@ + backend-test:ˆ + +input +likeoutput"CastLiketest_castlike_FLOAT16_to_FLOATZ +input +  + + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ce7f7bd369 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJ’/9–0;-8¢6<42:L7Œ8Ï$ñ8 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dd2ce49777 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9e65670828 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/model.onnx new file mode 100644 index 0000000000..18f1e659f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ce7f7bd369 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BinputJ’/9–0;-8¢6<42:L7Œ8Ï$ñ8 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dd2ce49777 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9e65670828 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT16_to_FLOAT_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/model.onnx new file mode 100644 index 0000000000..2ddf9e195f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/model.onnx @@ -0,0 +1,16 @@ + backend-test:‰ + +input +likeoutput"CastLiketest_castlike_FLOAT_to_BFLOAT16Z +input +  + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fc06bd1b5f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d3235bb24f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJõ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5d313b3c56 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/model.onnx new file mode 100644 index 0000000000..8403d07fd9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fc06bd1b5f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d3235bb24f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJõ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5d313b3c56 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_BFLOAT16_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BoutputJõ>õ>ÿ>Q?ð>Q?W>9?À€€€ÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/model.onnx new file mode 100644 index 0000000000..c3489a1b61 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/model.onnx @@ -0,0 +1,16 @@ + backend-test:‡ + +input +likeoutput"CastLiketest_castlike_FLOAT_to_DOUBLEZ +input +  + +Z +like + +  +b +output +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a3a4dfd28a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9d880ecb0e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab6a834d8e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/model.onnx new file mode 100644 index 0000000000..f5064b546b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a3a4dfd28a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9d880ecb0e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab6a834d8e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_DOUBLE_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/model.onnx new file mode 100644 index 0000000000..43fc912b1d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/model.onnx @@ -0,0 +1,18 @@ + backend-test:ˆ + +input +likeoutput"CastLiketest_castlike_FLOAT_to_FLOAT16Z +input +  + +Z +like + + + +b +output +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1111543226 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5b8b689b79 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BlikeJd8 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2fa7f21ce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/model.onnx new file mode 100644 index 0000000000..fce76c7e48 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1111543226 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5b8b689b79 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BlikeJd8 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2fa7f21ce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_FLOAT16_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/model.onnx new file mode 100644 index 0000000000..be377f75fc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/model.onnx @@ -0,0 +1,16 @@ + backend-test:‡ + +input +likeoutput"CastLiketest_castlike_FLOAT_to_STRINGZ +input +  + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4b0bb0708c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0 z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..796cde0030 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +2 0.9767611Blike \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8d2b65fc18 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING/test_data_set_0/output_0.pb @@ -0,0 +1,6 @@ +2 0.97676112 0.60484552 0.73926362 0.0391877932 +0.282806962 +0.120196562 0.29614022 +0.118727722 +0.317983182 +0.414262982 0.0641474952 0.6924721Boutput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/model.onnx new file mode 100644 index 0000000000..24fdcc07bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4b0bb0708c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ0 z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..796cde0030 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +2 0.9767611Blike \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8d2b65fc18 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_FLOAT_to_STRING_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,6 @@ +2 0.97676112 0.60484552 0.73926362 0.0391877932 +0.282806962 +0.120196562 0.29614022 +0.118727722 +0.317983182 +0.414262982 0.0641474952 0.6924721Boutput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/model.onnx new file mode 100644 index 0000000000..c3e70b8089 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/model.onnx @@ -0,0 +1,16 @@ + backend-test:‡ + +input +likeoutput"CastLiketest_castlike_STRING_to_FLOATZ +input +  + +Z +like + + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fbe920e572 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_0.pb @@ -0,0 +1,7 @@ +2 +0.478925472 +0.480336672 +0.499684872 +0.819105452 +0.4703124820.8164682 +0.210871952 0.72290382NaN2INF2+INF2-INFBinput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7cb044382c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJ¸5õ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..20e7394509 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/model.onnx new file mode 100644 index 0000000000..7014726d59 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fbe920e572 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,7 @@ +2 +0.478925472 +0.480336672 +0.499684872 +0.819105452 +0.4703124820.8164682 +0.210871952 0.72290382NaN2INF2+INF2-INFBinput \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7cb044382c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BlikeJ¸5õ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..20e7394509 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_castlike_STRING_to_FLOAT_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_ceil/model.onnx new file mode 100644 index 0000000000..c81b74af73 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_ceil/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Ceil test_ceilZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ca539550e6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_ceil/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/model.onnx new file mode 100644 index 0000000000..e8f6661acb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Ceiltest_ceil_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b9a2ac3d78 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b2814a0a53 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_ceil_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_celu/model.onnx new file mode 100644 index 0000000000..8da707e294 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_celu/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb4a0b06b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +BXJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5ae597db6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_celu/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BYJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/model.onnx new file mode 100644 index 0000000000..975254a868 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb4a0b06b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +BXJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5ae597db6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_celu_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BYJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip/model.onnx new file mode 100644 index 0000000000..428ad94c5d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d79b11f350 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cafe4fc04b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..988707f17d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/model.onnx new file mode 100644 index 0000000000..0a61e485e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0b9013e47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_inbounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/model.onnx new file mode 100644 index 0000000000..0c3171058a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb14958ac8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c1139a25ef Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_inbounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/model.onnx new file mode 100644 index 0000000000..ab8e1c52c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..631490bcca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..615a8146da Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9d5ad395e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_max/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/model.onnx new file mode 100644 index 0000000000..dc79de71ae Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ec96b45997 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0892038d10 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c26bf83421 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_int8_min/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/model.onnx new file mode 100644 index 0000000000..6f94837a2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..96a2566e77 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2d8f7a33a2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..60eb82bd6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_max/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/model.onnx new file mode 100644 index 0000000000..24ff6ef308 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c2bfba0c42 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9210c945eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_default_min/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/model.onnx new file mode 100644 index 0000000000..17bcddd2fe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a0ab4543ff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d79b11f350 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cafe4fc04b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0b9013e47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/model.onnx new file mode 100644 index 0000000000..2de5a5359a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..aaaeb640f5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5cfc885b73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0b9013e47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_inbounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/model.onnx new file mode 100644 index 0000000000..2b14afd51a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9c5dc72d46 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..aaaeb640f5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5cfc885b73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..75f56e1fe5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_outbounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/model.onnx new file mode 100644 index 0000000000..3819a20361 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ff367a29bd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..aaaeb640f5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5cfc885b73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0123d928f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_clip_splitbounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/model.onnx new file mode 100644 index 0000000000..137b6b2275 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4013bc6a67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c8d8c4f2ff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..787c92554c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/model.onnx new file mode 100644 index 0000000000..39ded16598 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/model.onnx @@ -0,0 +1,17 @@ + backend-test: +1 +input + conditionoutput"Compress* +axis test_compress_1Z +input +  + +Z + condition + +  +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4013bc6a67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c00e46c023 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..695a73bc17 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/model.onnx new file mode 100644 index 0000000000..5a705d2987 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/model.onnx @@ -0,0 +1,16 @@ + backend-test:Š +$ +input + conditionoutput"Compresstest_compress_default_axisZ +input +  + +Z + condition + +  +b +output + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4013bc6a67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0b6c330c0c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..70260a6350 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/model.onnx new file mode 100644 index 0000000000..74471faf64 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/model.onnx @@ -0,0 +1,17 @@ + backend-test:¥ +: +input + conditionoutput"Compress* +axisÿÿÿÿÿÿÿÿÿ test_compress_negative_axisZ +input +  + +Z + condition + +  +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4013bc6a67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c00e46c023 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..695a73bc17 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_compress_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/model.onnx new file mode 100644 index 0000000000..1db8fcbddb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..956756d6d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fe6e05f7cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be680bf495 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/model.onnx new file mode 100644 index 0000000000..86a9389c8b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/model.onnx @@ -0,0 +1,17 @@ + backend-test:š +6 +value0 +value1output"Concat* +axisÿÿÿÿÿÿÿÿÿ test_concat_1d_axis_negative_1Z +value0 + + +Z +value1 + + +b +output + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..956756d6d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fe6e05f7cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be680bf495 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_1d_axis_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/model.onnx new file mode 100644 index 0000000000..24db1731bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c04418c91b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..13e244f121 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..def8bc4946 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/model.onnx new file mode 100644 index 0000000000..93863e3248 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/model.onnx @@ -0,0 +1,17 @@ + backend-test:” +- +value0 +value1output"Concat* +axis test_concat_2d_axis_1Z +value0 +  + +Z +value1 +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c04418c91b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..13e244f121 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1260354451 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/model.onnx new file mode 100644 index 0000000000..8fe3e2ce7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/model.onnx @@ -0,0 +1,17 @@ + backend-test:¦ +6 +value0 +value1output"Concat* +axisÿÿÿÿÿÿÿÿÿ test_concat_2d_axis_negative_1Z +value0 +  + +Z +value1 +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c04418c91b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..13e244f121 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1260354451 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/model.onnx new file mode 100644 index 0000000000..2883893588 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/model.onnx @@ -0,0 +1,17 @@ + backend-test:¦ +6 +value0 +value1output"Concat* +axisþÿÿÿÿÿÿÿÿ test_concat_2d_axis_negative_2Z +value0 +  + +Z +value1 +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c04418c91b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..13e244f121 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..def8bc4946 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_2d_axis_negative_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/model.onnx new file mode 100644 index 0000000000..25426626fd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d3ffbb5941 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/model.onnx new file mode 100644 index 0000000000..51379ca945 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/model.onnx @@ -0,0 +1,20 @@ + backend-test:  +- +value0 +value1output"Concat* +axis test_concat_3d_axis_1Z +value0 + + + +Z +value1 + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d03e552282 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/model.onnx new file mode 100644 index 0000000000..a925f7ec47 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/model.onnx @@ -0,0 +1,20 @@ + backend-test:  +- +value0 +value1output"Concat* +axis test_concat_3d_axis_2Z +value0 + + + +Z +value1 + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b4de73e0de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/model.onnx new file mode 100644 index 0000000000..276194447d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/model.onnx @@ -0,0 +1,20 @@ + backend-test:² +6 +value0 +value1output"Concat* +axisÿÿÿÿÿÿÿÿÿ test_concat_3d_axis_negative_1Z +value0 + + + +Z +value1 + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b4de73e0de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/model.onnx new file mode 100644 index 0000000000..e22154d710 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/model.onnx @@ -0,0 +1,20 @@ + backend-test:² +6 +value0 +value1output"Concat* +axisþÿÿÿÿÿÿÿÿ test_concat_3d_axis_negative_2Z +value0 + + + +Z +value1 + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d03e552282 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/model.onnx new file mode 100644 index 0000000000..fb3e9679fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/model.onnx @@ -0,0 +1,20 @@ + backend-test:² +6 +value0 +value1output"Concat* +axisýÿÿÿÿÿÿÿÿ test_concat_3d_axis_negative_3Z +value0 + + + +Z +value1 + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bb523483 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b71b84730 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d3ffbb5941 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_concat_3d_axis_negative_3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_constant/model.onnx new file mode 100644 index 0000000000..2a3d11bb08 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_constant/model.onnx @@ -0,0 +1,7 @@ + backend-test:Ç +›values"Constant*† +value*z"dxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@B const_tensor  test_constantb +values +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constant/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7e2d9120ce --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_constant/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BvaluesJdxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/model.onnx new file mode 100644 index 0000000000..c4edfc6ca3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..09d5a14a4b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..14c2aba5f4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..61cc724a89 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BvalueJš™™? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..306f7de5e3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_constant_pad/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + ByJðš™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?xÌá?háÌ>“Žz?Ëj@$ ï?š™™?š™™?š™™?š™™?š™™?š™™?š™™?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>š™™?š™™?š™™?š™™?š™™?š™™?š™™?(€>¢%º?^ÓB?À0ù= Bã>š™™?š™™?š™™?š™™?š™™?š™™?š™™?]ת>ü=¿?R¾iJ >¦Z¿š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?/d#ÀŒS'?±K]?‡þ=¿©C@š™™?š™™?š™™?š™™?š™™?š™™?š™™?¨(º¿Hm;= ­?¾2Ä?ó¼?š™™?š™™?š™™?š™™?š™™?š™™?š™™?Šª>…žÁ>íEc¿½Šý¿‹!²¾š™™?š™™?š™™?š™™?š™™?š™™?š™™?ò >*z?•ç™?³OƾmÇš¾š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?ü6†¿&õ¿gÚ¿³ù?‘x¿š™™?š™™?š™™?š™™?š™™?š™™?š™™?FKྙ[ ¿œ G?4”ο—ØY¾š™™?š™™?š™™?š™™?š™™?š™™?š™™?L=e¿Æ> Ä¿õ—¿kÞæ¼š™™?š™™?š™™?š™™?š™™?š™™?š™™?QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™?š™™? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/model.onnx new file mode 100644 index 0000000000..5e5d5a6ca9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..04b96676c1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d3badd3106 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_float_ones/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/model.onnx new file mode 100644 index 0000000000..bc7feafb9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f62ff7fec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e5181b6242 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_shape_zero/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/model.onnx new file mode 100644 index 0000000000..1667c52f89 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5d50478be7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6362cca6bb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_constantofshape_int_zeros/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/model.onnx new file mode 100644 index 0000000000..37672c8967 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/model.onnx @@ -0,0 +1,26 @@ + backend-test:É +S +x +Wy"Conv* +auto_pad" +SAME_LOWER * + kernel_shape@@ * +strides@@ test_conv_with_autopad_sameZ +x + + + + +Z +W + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..063e19140b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0aef738871 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_autopad_same/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/model.onnx new file mode 100644 index 0000000000..5219d34455 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..275a5b9f87 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3ddea281fa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_and_asymmetric_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/model.onnx new file mode 100644 index 0000000000..fa8731f4af Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..275a5b9f87 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ec91bfd733 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_no_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/model.onnx new file mode 100644 index 0000000000..56f5025dcb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/model.onnx @@ -0,0 +1,25 @@ + backend-test:Ä +K +x +Wy"Conv* + kernel_shape@@ * +pads@@@@ * +strides@@ test_conv_with_strides_paddingZ +x + + + + +Z +W + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..275a5b9f87 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6d5f1a8b21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3d0a83658b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_conv_with_strides_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/model.onnx new file mode 100644 index 0000000000..f0bc1732df Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33cea02633 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ  diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53980d95da --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BwJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6741b09810 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ecfa319732 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_with_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/model.onnx new file mode 100644 index 0000000000..ca2b1caa50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33cea02633 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ  diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53980d95da --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BwJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6741b09810 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f81e5d710a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convinteger_without_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/model.onnx new file mode 100644 index 0000000000..cbbcdcded4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/model.onnx @@ -0,0 +1,22 @@ + backend-test:… + +X +WY" ConvTransposetest_convtransposeZ +X + + + + +Z +W + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e9d5fbb2a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/model.onnx new file mode 100644 index 0000000000..7c3196b711 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/model.onnx @@ -0,0 +1,19 @@ + backend-test:| + +X +WY" ConvTransposetest_convtranspose_1dZ +X + + + +Z +W + + + +b +Y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..044c8ba35c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd46a392dd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d573578b79 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/model.onnx new file mode 100644 index 0000000000..274ceaae6e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/model.onnx @@ -0,0 +1,25 @@ + backend-test:” + +X +WY" ConvTransposetest_convtranspose_3dZ +X + + + + + +Z +W + + + + + +b +Y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..641c08f4e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2e776a1476 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..393c55ef28 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/model.onnx new file mode 100644 index 0000000000..ea5f39f66e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/model.onnx @@ -0,0 +1,25 @@ + backend-test:¿ +E +X +WY" ConvTranspose* +auto_pad" +SAME_UPPER * +strides@@ test_convtranspose_autopad_sameZ +X + + + + +Z +W + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9a2f7db91f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_autopad_same/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/model.onnx new file mode 100644 index 0000000000..12b3d30796 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/model.onnx @@ -0,0 +1,23 @@ + backend-test:£ +, +X +WY" ConvTranspose* + dilations@@ test_convtranspose_dilationsZ +X + + + + +Z +W + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a7469a0486 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..18bbc26d6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ebe21926b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_dilations/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/model.onnx new file mode 100644 index 0000000000..f74b7fd9aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/model.onnx @@ -0,0 +1,28 @@ + backend-test:ñ +w +X +WYtest" ConvTranspose* + kernel_shape@@ * +output_padding@@ * + output_shape@ +@ * +strides@@ test_convtranspose_kernel_shapeZ +X + + + + +Z +W + + + + +b +Y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f24a3ab75f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_kernel_shape/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/model.onnx new file mode 100644 index 0000000000..4d25394275 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/model.onnx @@ -0,0 +1,26 @@ + backend-test:» +A +X +WY" ConvTranspose* + output_shape@ +@ * +strides@@ test_convtranspose_output_shapeZ +X + + + + +Z +W + + + + +b +Y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f24a3ab75f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_output_shape/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/model.onnx new file mode 100644 index 0000000000..56d575671d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/model.onnx @@ -0,0 +1,25 @@ + backend-test:´ +C +X +WY" ConvTranspose* +output_padding@@ * +strides@@ test_convtranspose_padZ +X + + + + +Z +W + + + + +b +Y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f24a3ab75f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/model.onnx new file mode 100644 index 0000000000..1886468324 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/model.onnx @@ -0,0 +1,24 @@ + backend-test:¯ += +X +WY" ConvTranspose* +pads@@@@ * +strides@@ test_convtranspose_padsZ +X + + + + +Z +W + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5fed94a3b0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..56545d306e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1eccb0f17d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/model.onnx new file mode 100644 index 0000000000..3fdea1f6be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/model.onnx @@ -0,0 +1,28 @@ + backend-test:ð +w +x +wytest" ConvTranspose* + kernel_shape@@ * +output_padding@@ * + output_shape@ +@ * +strides@@ test_convtranspose_with_kernelZ +x + + + + +Z +w + + + + +b +y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dd4c0c66ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..45d0d5dd6f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9fd2487d54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_convtranspose_with_kernel/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cos/model.onnx new file mode 100644 index 0000000000..4d210c8d5d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cos/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Costest_cosZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e7e3f56f4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cos/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +ByJð)ªD¾¤Æk?°Ý?éý¿º¸•¾ -?xä?À}?2£~?ɸj?IY}?cî=ú_9?y~?†1g?báq?yöœ=¡¡z?‚Žs?£*(?jëT¿Jd¸>; m?+dt?fÿ> Ð>#M +¾½æ½¾Ow_?sÓg? >ôq6?.}0½Ž:z?$ + ?ºm?hR_?ó»Â>úå?xßh?o?Þ`t?…3N?kWo? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/model.onnx new file mode 100644 index 0000000000..d07aefb345 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Costest_cos_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5791183f10 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cos_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cosh/model.onnx new file mode 100644 index 0000000000..1d33dccb6b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cosh/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Cosh test_coshZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0a8ad7082c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cosh/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð‡<@@²bŠ?B\Â?!!˜@'T@£%Â?Ò?¾?x?¶®€?9ñŠ?ˆT?gz@1ä¦?Ýò€?;ÑŒ?)1‡?ÿ¿@´‚?úR†?>˜±?ÖÅÎ@LTœ?‘à²?]æ¤?_|œ@v}@P"€?½?‚?U@Ûr@%Š?C‰?ص?ý]l@@Ó‡?S‘?@¹í?q9è?ظ‰?¹ä…?½ Í?ü @Ò6@G¤e@–ü?ØzŒ?ÙJò?­¨?2'@Qè‚?^×¶?T³‰?µ‘?©ä? €?/ì‹?…H€?læ…?_ š?’ƒˆ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/model.onnx new file mode 100644 index 0000000000..de7bc22b02 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Coshtest_cosh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7d0ec27e10 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cosh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/model.onnx new file mode 100644 index 0000000000..9f337922f5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5a92807169 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ea75d94f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7844c6a440 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/model.onnx new file mode 100644 index 0000000000..73292221cb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5a92807169 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ea75d94f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..60b17d5d4a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_exclusive/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/model.onnx new file mode 100644 index 0000000000..5307823a20 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5a92807169 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ea75d94f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1ea06327a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/model.onnx new file mode 100644 index 0000000000..473920459e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5a92807169 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ea75d94f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f994d032a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_1d_reverse_exclusive/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/model.onnx new file mode 100644 index 0000000000..85edd6b97a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f274efdec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ea75d94f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f5901522dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/model.onnx new file mode 100644 index 0000000000..3de0826d9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f274efdec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c00ea22e05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e3a084217e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_axis_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/model.onnx new file mode 100644 index 0000000000..bf03320005 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f274efdec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1dce0eb3d0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BaxisJÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e3a084217e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_cumsum_2d_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/model.onnx new file mode 100644 index 0000000000..72060b1c14 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/model.onnx @@ -0,0 +1,17 @@ + backend-test:Ž +6 +xy" DepthToSpace* + blocksize * +mode"CRD test_depthtospace_crd_modeZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..660603548a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f1a31fb5bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/model.onnx new file mode 100644 index 0000000000..d924be45b8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/model.onnx @@ -0,0 +1,17 @@ + backend-test:– +6 +xy" DepthToSpace* + blocksize * +mode"CRD "test_depthtospace_crd_mode_exampleZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b779a1137f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a4b2f0a51a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_crd_mode_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/model.onnx new file mode 100644 index 0000000000..483c41297b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/model.onnx @@ -0,0 +1,17 @@ + backend-test:Ž +6 +xy" DepthToSpace* + blocksize * +mode"DCR test_depthtospace_dcr_modeZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..660603548a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8721c7484d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_dcr_mode/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/model.onnx new file mode 100644 index 0000000000..4ec6c5dd0b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/model.onnx @@ -0,0 +1,17 @@ + backend-test: +6 +xy" DepthToSpace* + blocksize * +mode"DCR test_depthtospace_exampleZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b779a1137f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7c25befc37 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_depthtospace_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/model.onnx new file mode 100644 index 0000000000..b146d86b71 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0b43ff76d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d0d6480042 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..d7beff25a7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJ€ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f248d253c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/model.onnx new file mode 100644 index 0000000000..fa71acdee8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/model.onnx @@ -0,0 +1,25 @@ + backend-test:º +/ +x +x_scale + x_zero_pointy"DequantizeLineartest_dequantizelinear_axisZ +x + + + + +Z +x_scale + + +Z + x_zero_point + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f5ae5cc350 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJY"ÈJ;W õcŽyf \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4a72bc49f9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..14b45dbd15 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJTÄ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d50e2b457e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dequantizelinear_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/model.onnx new file mode 100644 index 0000000000..a1cc4b4343 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..188fd6ddef Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ee10c60314 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_det_2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_nd/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/model.onnx new file mode 100644 index 0000000000..723f6f4289 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/model.onnx @@ -0,0 +1,12 @@ + backend-test:D + +xy"Det test_det_ndZ +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e8c16bdf23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9f6380118f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_det_nd/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_div/model.onnx new file mode 100644 index 0000000000..1f6aae8883 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div/model.onnx @@ -0,0 +1,19 @@ + backend-test:e + +x +yz"Divtest_divZ +x + + + +Z +y + + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..41fe484fbc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJðìç¥?x2?¬³¨?’µ?ü5ˆ?í¢Ø?f†È?Hø¡?ËùÂ?>Œ?ž¸É?.óö?ÞÆ¨?´mÕ?ÁÞ?œ°Û?B ¥?Ðr—?ÛË?â’‚?µê?Ý™€?±ÂÖ?Ÿ¢?ÖÞ?þ(û?%ן?†¿É?ÈË??É?ðœ?®óù?h;¹?Wì?ŠˆÙ?j¦?‡*è?³À²?þÇð?&gÊ?´Üð?à¤Ø?"ÕÜ?f+À?ó`ú?FnÒ?â@¶?KžÍ?ìt‚?š¦?‘€Ô?C!¥?!Ï?äá¶?7W‘?.¦?œôÈ?¸¡Ë?~ƒÉ?œÓ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e28adb5d12 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/model.onnx new file mode 100644 index 0000000000..83e267fa6d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:c + +x +yz"Divtest_div_bcastZ +x + + + +Z +y + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..69248c4a58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJìç¥?x2?¬³¨?’µ?ü5ˆ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51b469f064 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_bcast/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJðd5®?#·>8>?¾ÐÊ?3£à?ŒA¿ùhY?>1ë½½x•½ÊÅ>‹™ã=Gd¦?0Ò?µ2°= Õ>ÆÎƒ>3òª?‰e¾d­b>ßwM¿¯ü¿…‘? ç'?nW¿÷@" ¿'‰'=wn¾û¹Š?½°?'Ôô='­>ªp,¿dF³¿§d§¾ ÷=ºÃŒ?°‹i?î8Œ¾çr‘¾dO¿ëx¢¿¯µ¥¿Ðް?R6õ¾4 ­¾æV¿J?y’¿Ó¶L¾øÜ0¿%±>oƾµµU¿°óؼ3©>%Šs=k>¤å¾(‡®¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_div_example/model.onnx new file mode 100644 index 0000000000..c28a54df42 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:U + +x +yz"Divtest_div_exampleZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..085a7dc43a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a76e53091 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5105f6eef8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/model.onnx new file mode 100644 index 0000000000..cfa216123f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/model.onnx @@ -0,0 +1,19 @@ + backend-test:k + +x +yz"Divtest_div_uint8Z +x + + + +Z +y + + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..142030c4a7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..281ba73083 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/input_1.pb @@ -0,0 +1,4 @@ +ByJ<   + +      + \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..660e3014a6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_div_uint8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/model.onnx new file mode 100644 index 0000000000..332666ab0a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/model.onnx new file mode 100644 index 0000000000..fda1584bed Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..de98527e0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask/test_data_set_0/output_1.pb @@ -0,0 +1 @@ + BzJ< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/model.onnx new file mode 100644 index 0000000000..b6c1cd9853 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..18a4deb5fe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BrJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..de98527e0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_mask_ratio/test_data_set_0/output_1.pb @@ -0,0 +1 @@ + BzJ< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/model.onnx new file mode 100644 index 0000000000..f959a71180 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0b9013e47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_old/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/model.onnx new file mode 100644 index 0000000000..1a7b38378c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..18a4deb5fe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BrJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_default_ratio/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/model.onnx new file mode 100644 index 0000000000..e5e8fd619d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dropout_random_old/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/model.onnx new file mode 100644 index 0000000000..b0f8177e47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..493d80fda0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d185e66c30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f849bb82a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ¡  < \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..502709e493 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B y_zero_pointJ™ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/model.onnx new file mode 100644 index 0000000000..32ffc0affd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..493d80fda0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d185e66c30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f849bb82a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ¡  < \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..502709e493 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B y_zero_pointJ™ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/model.onnx new file mode 100644 index 0000000000..a1daa8dd4b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ffa1ea88c2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d4818b3753 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98bf9a5ea6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ€€< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..d5833802d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B y_zero_pointJÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/model.onnx new file mode 100644 index 0000000000..d02a492732 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ffa1ea88c2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d4818b3753 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98bf9a5ea6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ€€< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..d5833802d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_max_adjusted_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B y_zero_pointJÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/model.onnx new file mode 100644 index 0000000000..c9ceb73c9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2651ee2bea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..793fce69f8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ @†SŸÕÿ`¦ùÿ¿• \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98bf9a5ea6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ€€< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..74d6f51802 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/model.onnx new file mode 100644 index 0000000000..943b4e00ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2651ee2bea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..793fce69f8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ @†SŸÕÿ`¦ùÿ¿• \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98bf9a5ea6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +By_scaleJ€€< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..74d6f51802 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_dynamicquantizelinear_min_adjusted_expanded/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/model.onnx new file mode 100644 index 0000000000..57f2e783a0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/model.onnx @@ -0,0 +1,21 @@ + backend-test: +" +x +padsy"Pad* +mode"edge  test_edge_padZ +x + + + + +Z +pads + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f625fc015a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..131ea5f957 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..12dd0a3bab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_edge_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/model.onnx new file mode 100644 index 0000000000..6697b74f32 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/model.onnx @@ -0,0 +1,13 @@ + backend-test:w ++ +xy"Einsum* +equation" ...ii ->...i test_einsum_batch_diagonalZ +x +  + + +b +y +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5e8787cd07 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e4e6397152 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_diagonal/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + ByJx¥ÏåóŽ9ü?é•2Ógî?êÉkZè?„‘M Ô?½Å¿u(@ : ñE÷¿3ê‘Ð3Ø?$`þ¦ò<ó?ÌÊÅB`6ÿ?£ÊÑ;Ë¿"¡_}©§ì¿µ§ÁÎE±?gÖZK꿬°W”–í¿nL«'÷¿Ù? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/model.onnx new file mode 100644 index 0000000000..173cb5720f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/model.onnx @@ -0,0 +1,20 @@ + backend-test:˜ +1 +x +yz"Einsum* +equation"bij, bjk -> bik test_einsum_batch_matmulZ +x +  + + +Z +y +  + + +b +z +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5b93576069 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e594483411 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/input_1.pb @@ -0,0 +1,3 @@ + ByJàÏÛû6QÕÃ?3ê‘Ð3Ø?Ê£ý§½hì¿xÝ0£W±ÿ¿E)ÏQ1DÖ¿îNˆ6>Ä?EÉäGE¯ó?$`þ¦ò<ó?ø`hköÉØ¿õÍ¢íXÓ¿SdQy߯ð¿]¬~ºd¸ö¿`ü­øáLû¿ÌÊÅB`6ÿ?6«žOà¿eÖ¨Ëh Ü¿në¿%s ô¿Qht3áè?Š¥Œ†Òù¿£ÊÑ;Ë¿"¡_}©§ì¿šõ±ÃØ??–„Xà¿®’¶’Þãò¿õ+TÍÛœ¿BÏðÊiÛ?µ§ÁÎE±?90³[Ó?ù­ïØ]Lä¿zø4¹&7׿¤£áÅ˄忦\Cë׿gÖZKê¿v±ŠÚžû¿O¸7[æµÆ?…íJcǶٿf£ÜJú¿‰¿)w9žÝ?¬°W”–í¿ +>@–˜ª?)þ »µTç?e¹ƒ‚À?±tR6ü:ò?Î*¸ØÁó¿nL«'÷¿Ù?ÜæÚöéå¿zõ¥û‘Ýë¿ÜÖn»ï…⿈FzðÓ¿>?(´Á¬?}ªÑ(t¤ò¿|ך’Óì?œ‹gÕiÍÝ?^ôsBt”ø¿rÖHˆáÏ÷?“D~ãUþ?|-µ÷GÜò? +¯ÆêÆÇ¿ç7€Í!ñ¿K&Æßð? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8d382df70a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_einsum_batch_matmul/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/model.onnx new file mode 100644 index 0000000000..41ad6d0d51 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..60ec8162b6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BxJ(¥ÏåóŽ9ü?S‰Ìú,œÙ?«É"RÒQï?N1ãiYí@Ú=±|„áý? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9869f3dd62 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + ByJ(‚Œ¥BÜEï¿é•2Ógî?6„ÓI¬_ÿY´ÈøŒlº¿f)gð>GÚ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a9dda2a61d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_inner_prod/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + BzJ…PR<èšî¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/model.onnx new file mode 100644 index 0000000000..e7f35f6ec0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/model.onnx @@ -0,0 +1,12 @@ + backend-test:] +$ +xy"Einsum* +equation"ij->i test_einsum_sumZ +x +   + +b +y + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..86fd72d2a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BxJ`¥ÏåóŽ9ü?S‰Ìú,œÙ?«É"RÒQï?N1ãiYí@Ú=±|„áý?‚Œ¥BÜEï¿é•2Ógî?6„ÓI¬_ÿY´ÈøŒlº¿f)gð>GÚ?í᪠pÂ?÷…ýK´D÷? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a69ca92798 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_sum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + ByJ[.Ü‹ ‰@R½»0û?H!@Ú»}þ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/model.onnx new file mode 100644 index 0000000000..412a226cdb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/model.onnx @@ -0,0 +1,12 @@ + backend-test:h +% +xy"Einsum* +equation"ij->ji test_einsum_transposeZ +x +   + +b +y +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..86fd72d2a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BxJ`¥ÏåóŽ9ü?S‰Ìú,œÙ?«É"RÒQï?N1ãiYí@Ú=±|„áý?‚Œ¥BÜEï¿é•2Ógî?6„ÓI¬_ÿY´ÈøŒlº¿f)gð>GÚ?í᪠pÂ?÷…ýK´D÷? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..22d7af00ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_einsum_transpose/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + ByJ`¥ÏåóŽ9ü?Ú=±|„áý?Y´ÈøŒlº¿S‰Ìú,œÙ?‚Œ¥BÜEï¿f)gð>GÚ?«É"RÒQï?é•2Ógî?í᪠pÂ?N1ãiYí@6„ÓI¬_ÿ÷…ýK´D÷? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_elu/model.onnx new file mode 100644 index 0000000000..66c13b76b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_elu/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..542ab30e12 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_elu/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?‘¨Ÿ¿ÿ8s?”Ô¾(ÙH¾ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?äî½¾iJ >n“¿쿌S'?±K]?|†¿©C@+6Ä¿Hm;=Hή¾2Ä?ó¼?Šª>…žÁ>œ£–¿³®Ü¿r¿ò >*z?•ç™?Bk$¿Ð’¿FI¦¿P¿}†Ñ¿³ù?vpL¿$ž5¿ ܶ¿œ G? Í¿°;ľüq—¿Æ>0ËL¿èb±¿`¥c½QNÛ>.:ˆ=™Ýš>2}p¿~Ä¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/model.onnx new file mode 100644 index 0000000000..e4024db725 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:Q + +xy"Elutest_elu_defaultZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..222986cd8e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_elu_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?‘¨¿ÿ8s?”Ô¾(ÙȽø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?äî=¾iJ >n¿l¿ŒS'?±K]?|¿©C@+6D¿Hm;=HÎ.¾2Ä?ó¼?Šª>…žÁ>œ£¿³®\¿r–¾ò >*z?•ç™?Bk¤¾Ð’…¾FI&¿PB¿}†Q¿³ù?vp̾$žµ¾ Ü6¿œ G? M¿°;D¾üq¿Æ>0Ë̾èb1¿`¥ã¼QNÛ>.:ˆ=™Ýš>2}ð¾~Ä›¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/model.onnx new file mode 100644 index 0000000000..1e53245c28 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b870f18094 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_elu_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_equal/model.onnx new file mode 100644 index 0000000000..52283ad8ca --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_equal/model.onnx @@ -0,0 +1,20 @@ + backend-test:i + +x +yz"Equal +test_equalZ +x + + + +Z +y + + + +b +z +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b8f53b3624 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6b22267dab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f28c2e7d60 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/model.onnx new file mode 100644 index 0000000000..29f9d4481a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:g + +x +yz"Equaltest_equal_bcastZ +x + + + +Z +y + + +b +z +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b8f53b3624 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..954f31f307 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dbc90caa29 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_equal_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_erf/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_erf/model.onnx new file mode 100644 index 0000000000..740dc07bd5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_erf/model.onnx @@ -0,0 +1,15 @@ + backend-test:Q + +xy"Erftest_erfZ +x + + + + + b +y + + + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..002174d45e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_erf/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_exp/model.onnx new file mode 100644 index 0000000000..75c0c68832 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_exp/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Exptest_expZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a43ee3e89f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_exp/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/model.onnx new file mode 100644 index 0000000000..6617ea3760 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Exptest_exp_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1ff102096d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_exp_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/model.onnx new file mode 100644 index 0000000000..664a741110 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/model.onnx @@ -0,0 +1,17 @@ + backend-test: +# +data + new_shapeexpanded"Expandtest_expand_dim_changedZ +data +  + +Z + new_shape + + +b +expanded + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62725e6c78 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8d9183b22e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8aae37547b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_changed/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/model.onnx new file mode 100644 index 0000000000..280d3cbf39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/model.onnx @@ -0,0 +1,16 @@ + backend-test: +# +data + new_shapeexpanded"Expandtest_expand_dim_unchangedZ +data +  + +Z + new_shape + + +b +expanded +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62725e6c78 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9bec26895d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fb98340c5f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_expand_dim_unchanged/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/model.onnx new file mode 100644 index 0000000000..9387411543 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/model.onnx @@ -0,0 +1,13 @@ + backend-test:| +' +xy"EyeLike* +dtype * +k 'test_eyelike_populate_off_main_diagonalZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..29bf3c25b7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ae7df04bfe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_populate_off_main_diagonal/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/model.onnx new file mode 100644 index 0000000000..40fbae8a84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/model.onnx @@ -0,0 +1,12 @@ + backend-test:b + +xy"EyeLike* +dtype  test_eyelike_with_dtypeZ +x +  + +b +y +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0cc6d1df6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6255b1aabf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_with_dtype/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/model.onnx new file mode 100644 index 0000000000..f042b0066d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/model.onnx @@ -0,0 +1,11 @@ + backend-test:W + +xy"EyeLiketest_eyelike_without_dtypeZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1eb1960cd3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3cf5be8708 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_eyelike_without_dtype/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/model.onnx new file mode 100644 index 0000000000..4141d1e424 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8af614509 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis0/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +xBbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/model.onnx new file mode 100644 index 0000000000..b7a1f6af71 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/model.onnx @@ -0,0 +1,14 @@ + backend-test:d + +ab"Flatten* +axis test_flatten_axis1Z +a + + + + +b +b +  + +QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c6d529fcdd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +<BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/model.onnx new file mode 100644 index 0000000000..473f36a295 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/model.onnx @@ -0,0 +1,14 @@ + backend-test:d + +ab"Flatten* +axis test_flatten_axis2Z +a + + + + +b +b +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..16f29d6678 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis2/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/model.onnx new file mode 100644 index 0000000000..f455575b82 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/model.onnx @@ -0,0 +1,14 @@ + backend-test:d + +ab"Flatten* +axis test_flatten_axis3Z +a + + + + +b +b +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a9787fdf10 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_axis3/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/model.onnx new file mode 100644 index 0000000000..9e5990ad27 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/model.onnx @@ -0,0 +1,13 @@ + backend-test:^ + +ab"Flattentest_flatten_default_axisZ +a + + + + +b +b +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ec5cd2936d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9ad6a5cc4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_default_axis/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/model.onnx new file mode 100644 index 0000000000..f88bf444e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/model.onnx @@ -0,0 +1,14 @@ + backend-test:v +% +ab"Flatten* +axisÿÿÿÿÿÿÿÿÿ test_flatten_negative_axis1Z +a + + + + +b +b +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a9787fdf10 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/model.onnx new file mode 100644 index 0000000000..7d447388eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/model.onnx @@ -0,0 +1,14 @@ + backend-test:v +% +ab"Flatten* +axisþÿÿÿÿÿÿÿÿ test_flatten_negative_axis2Z +a + + + + +b +b +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..16f29d6678 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis2/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/model.onnx new file mode 100644 index 0000000000..4da7bbd4cc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/model.onnx @@ -0,0 +1,14 @@ + backend-test:v +% +ab"Flatten* +axisýÿÿÿÿÿÿÿÿ test_flatten_negative_axis3Z +a + + + + +b +b +  + +QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c6d529fcdd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis3/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +<BbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/model.onnx new file mode 100644 index 0000000000..2e1d117e57 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/model.onnx @@ -0,0 +1,14 @@ + backend-test:v +% +ab"Flatten* +axisüÿÿÿÿÿÿÿÿ test_flatten_negative_axis4Z +a + + + + +b +b +  + +xB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cd476ae70 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8af614509 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_flatten_negative_axis4/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +xBbJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_floor/model.onnx new file mode 100644 index 0000000000..d4f266ba9c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_floor/model.onnx @@ -0,0 +1,14 @@ + backend-test:M + +xy"Floor +test_floorZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b84ba0bfe8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_floor/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/model.onnx new file mode 100644 index 0000000000..a0ace88d6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:E + +xy"Floortest_floor_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7b703a3a41 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..93002678ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_floor_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/model.onnx new file mode 100644 index 0000000000..764b311f0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..663f5c9648 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bfcd20aadc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..aacfe4ef55 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_0/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/model.onnx new file mode 100644 index 0000000000..bd85de6ef8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/model.onnx @@ -0,0 +1,21 @@ + backend-test:Œ +' +data +indicesy"Gather* +axis  test_gather_1Z +data + + + + +Z +indices + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..663f5c9648 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bfcd20aadc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ee50b90681 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJèxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/model.onnx new file mode 100644 index 0000000000..f2a2301b9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/model.onnx @@ -0,0 +1,18 @@ + backend-test: +' +data +indicesy"Gather* +axis test_gather_2d_indicesZ +data +  + +Z +indices +  + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..37c74aca03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ$xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0ce468e7ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..647152d5ad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_2d_indices/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJxÌá?“Žz?Ëj@â.z¿ÿ8s?hdÓ½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/model.onnx new file mode 100644 index 0000000000..4d0252370a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/model.onnx @@ -0,0 +1,17 @@ + backend-test:‘ +/ +data +indicesy"GatherElements* +axis test_gather_elements_0Z +data +  + +Z +indices +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a2f61e243c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..65897f5c36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f721f24f9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/model.onnx new file mode 100644 index 0000000000..72ae049cb0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..670c322dbf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e6b50a51db Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..14166cc7c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/model.onnx new file mode 100644 index 0000000000..09f24a7f21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..670c322dbf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b4f71fa57a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..587cfeb1d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_elements_negative_indices/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/model.onnx new file mode 100644 index 0000000000..4070fc30b9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6feb34d016 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0f831b5178 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f2fef98f11 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gather_negative_indices/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/model.onnx new file mode 100644 index 0000000000..08aea69147 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/model.onnx @@ -0,0 +1,19 @@ + backend-test:› +! +data +indicesoutput"GatherNDtest_gathernd_example_float32Z +data + + + +Z +indices + + + +b +output + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..808688cc0a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e74ff0acf0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ea0b7d1d79 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/model.onnx new file mode 100644 index 0000000000..6db1f8bf13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:‰ +! +data +indicesoutput"GatherNDtest_gathernd_example_int32Z +data +  + +Z +indices +  + +b +output + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4bc8485f45 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..44cc403405 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc07bbf164 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/model.onnx new file mode 100644 index 0000000000..a383c78c56 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/model.onnx @@ -0,0 +1,19 @@ + backend-test:¯ +4 +data +indicesoutput"GatherND* + +batch_dims &test_gathernd_example_int32_batch_dim1Z +data + + + +Z +indices +  + +b +output +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ab873d2a20 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..76c523359a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..227b48af69 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gathernd_example_int32_batch_dim1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/model.onnx new file mode 100644 index 0000000000..2a8d93f40a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..53f90be010 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ0  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e5347a9d5c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJP^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a9cf36e7f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJ‰Œé>ã„?í™<\?N²? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..981b511745 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_all_attributes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ<uÂ>¤÷>âÀ>®Ú>¼ä>îßÈ>¾í"?„?*'?†M?¸ÀØ>L’#?n´þ>ŠXþ>»£? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/model.onnx new file mode 100644 index 0000000000..262a97e2bb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ee690bab01 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6945e22c76 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJPÙp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7077e4ffe3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26a528b772 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_alpha/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ0bÛ}?ÎC!?%Äp?‚áþ>´Æ•?D¾?\Ø„? ?íps?½ß?No?à ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/model.onnx new file mode 100644 index 0000000000..3c40891571 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b8f458ac2f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ8  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3693051106 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJpZ{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..257550d456 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJõ—2?ü®v=9±*?ì®+? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..257d11549d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_beta/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ Ë<ë?X{-@ìV @Ε3@ä€@5¡X@7.+@ÄŠ^@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/model.onnx new file mode 100644 index 0000000000..e6b2ba4865 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/model.onnx @@ -0,0 +1,21 @@ + backend-test:‡ + +a +b +cy"Gemmtest_gemm_default_matrix_biasZ +a +  + +Z +b +  + +Z +c +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e0263dc800 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJH  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2afad68ca1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ`H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f7941271b0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJ0õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..25be287dc4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_matrix_bias/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +ByJ0ka@ƒ2@žô@°ä*@§Û?ýÌP@Pè @ +Â'@œ@C®@Ž´@bDÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/model.onnx new file mode 100644 index 0000000000..713c2c63a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/model.onnx @@ -0,0 +1,18 @@ + backend-test:k + +a +by"Gemmtest_gemm_default_no_biasZ +a +  + + +Z +b +  + + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c697d4a45e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +BaJP  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..33a04e66ff --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BbJx»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a2d1ea89d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_no_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/model.onnx new file mode 100644 index 0000000000..c5501990f8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d8296f4705 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ  ?¦7?³N?w} ?HéØ>QY%? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a8407d404d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ0n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..8a37e54037 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJÃõH@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1e8cfac7ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_scalar_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/model.onnx new file mode 100644 index 0000000000..df86a03ac8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/model.onnx @@ -0,0 +1,21 @@ + backend-test: + +a +b +cy"Gemm)test_gemm_default_single_elem_vector_biasZ +a +  + +Z +b +  + +Z +c + + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1c1c52cd4c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJT  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4c02a907aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJT¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c2b01ea8fc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJõ—2? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e8c7e349a6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_single_elem_vector_bias/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ$œ7@×[-@͆2@UX@ÚN@‚nT@[)@ @*…8@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/model.onnx new file mode 100644 index 0000000000..d85b483c0c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/model.onnx @@ -0,0 +1,21 @@ + backend-test:‡ + +a +b +cy"Gemmtest_gemm_default_vector_biasZ +a +  + +Z +b +  + +Z +c +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b8f458ac2f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ8  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3693051106 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJpZ{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..257550d456 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BcJõ—2?ü®v=9±*?ì®+? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..151d42666b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_vector_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/model.onnx new file mode 100644 index 0000000000..eea18fe769 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/model.onnx @@ -0,0 +1,21 @@ + backend-test:… + +a +b +cy"Gemmtest_gemm_default_zero_biasZ +a +  + +Z +b +  + +Z +c +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ee690bab01 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6945e22c76 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJPÙp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7077e4ffe3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cdbdbc0743 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_default_zero_bias/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ0bÛý?ÎC¡?%Äð?‚á~?´Æ@D¾œ?\Ø@Œ?ípó?½ßŽ?Nï?à ˜? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/model.onnx new file mode 100644 index 0000000000..e888c7c53c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/model.onnx @@ -0,0 +1,22 @@ + backend-test: +! +a +b +cy"Gemm* +transA test_gemm_transposeAZ +a +  + +Z +b +  + +Z +c +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4e23312d6e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJH  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2afad68ca1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ`H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7077e4ffe3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..40a2611279 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeA/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/model.onnx new file mode 100644 index 0000000000..e7dcfc267a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/model.onnx @@ -0,0 +1,22 @@ + backend-test: +! +a +b +cy"Gemm* +transB test_gemm_transposeBZ +a +  + +Z +b +  + +Z +c +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e0263dc800 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJH  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..165ae220bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ`H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7077e4ffe3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7d048a51c9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gemm_transposeB/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ0m1@ŸjÎ?ÅaØ?¼ @ä7I@m¬à?‰ç?¨L @Aì@"Ì?S»?0Jµ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/model.onnx new file mode 100644 index 0000000000..0b008e3e37 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/model.onnx @@ -0,0 +1,15 @@ + backend-test:m + +xy"GlobalAveragePooltest_globalaveragepoolZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eba6662325 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ¬xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..11253b30da --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ ýIó>o¶F¾w‘¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/model.onnx new file mode 100644 index 0000000000..6b0bb2a1f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/model.onnx @@ -0,0 +1,15 @@ + backend-test:y + +xy"GlobalAveragePool"test_globalaveragepool_precomputedZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f170252f2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..afafcf9674 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_globalaveragepool_precomputed/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/model.onnx new file mode 100644 index 0000000000..2ef4689210 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/model.onnx @@ -0,0 +1,15 @@ + backend-test:e + +xy" GlobalMaxPooltest_globalmaxpoolZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eba6662325 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ¬xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..68ac3d729f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ ©C@³ù?âב? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/model.onnx new file mode 100644 index 0000000000..c7db3bd8e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/model.onnx @@ -0,0 +1,15 @@ + backend-test:q + +xy" GlobalMaxPooltest_globalmaxpool_precomputedZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f170252f2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f526155558 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_globalmaxpool_precomputed/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater/model.onnx new file mode 100644 index 0000000000..756cde4dd3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater/model.onnx @@ -0,0 +1,19 @@ + backend-test:y + +x +ygreater"Greater test_greaterZ +x + + + +Z +y + + + +b +greater +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3c4514fc59 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/model.onnx new file mode 100644 index 0000000000..8244ce90d4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:w + +x +ygreater"Greatertest_greater_bcastZ +x + + + +Z +y + + +b +greater +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..086fbce535 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/model.onnx new file mode 100644 index 0000000000..1d2dcbf96c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/model.onnx @@ -0,0 +1,19 @@ + backend-test:’ +% +x +y greater_equal"GreaterOrEqualtest_greater_equalZ +x + + + +Z +y + + + +b# + greater_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ef2676775a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/model.onnx new file mode 100644 index 0000000000..6d0c362c27 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test: +% +x +y greater_equal"GreaterOrEqualtest_greater_equal_bcastZ +x + + + +Z +y + + +b# + greater_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de5062272b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/model.onnx new file mode 100644 index 0000000000..31f63dec86 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/model.onnx @@ -0,0 +1,24 @@ + backend-test:œ +L +x +y;GreaterOrEqual_test_greater_equal_bcast_expanded_functionO1"Greater +J +x +y;GreaterOrEqual_test_greater_equal_bcast_expanded_functionO2"Equal + +;GreaterOrEqual_test_greater_equal_bcast_expanded_functionO1 +;GreaterOrEqual_test_greater_equal_bcast_expanded_functionO2 greater_equal"Or!test_greater_equal_bcast_expandedZ +x + + + +Z +y + + +b# + greater_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de5062272b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_bcast_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/model.onnx new file mode 100644 index 0000000000..ebc0ab20b9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/model.onnx @@ -0,0 +1,25 @@ + backend-test:† +F +x +y5GreaterOrEqual_test_greater_equal_expanded_functionO1"Greater +D +x +y5GreaterOrEqual_test_greater_equal_expanded_functionO2"Equal + +5GreaterOrEqual_test_greater_equal_expanded_functionO1 +5GreaterOrEqual_test_greater_equal_expanded_functionO2 greater_equal"Ortest_greater_equal_expandedZ +x + + + +Z +y + + + +b# + greater_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ef2676775a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_greater_equal_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/model.onnx new file mode 100644 index 0000000000..e0abc2bd9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bf70952eb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bb2ce19c84 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9488b8ba89 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/model.onnx new file mode 100644 index 0000000000..2ff754b641 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/model.onnx @@ -0,0 +1,25 @@ + backend-test: +C +X +GridY" +GridSample* + align_corners * +mode"bilinear !test_gridsample_aligncorners_trueZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1286d0d738 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1269b66167 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_aligncorners_true/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/model.onnx new file mode 100644 index 0000000000..23390519dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/model.onnx @@ -0,0 +1,24 @@ + backend-test:¡ +, +X +GridY" +GridSample* +mode"bicubic test_gridsample_bicubicZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1286d0d738 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ff968649f9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bicubic/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/model.onnx new file mode 100644 index 0000000000..637a599392 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/model.onnx @@ -0,0 +1,24 @@ + backend-test:£ +- +X +GridY" +GridSample* +mode"bilinear test_gridsample_bilinearZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1286d0d738 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c3cb6e476f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_bilinear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/model.onnx new file mode 100644 index 0000000000..3005657f31 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/model.onnx @@ -0,0 +1,24 @@ + backend-test:¯ +3 +X +GridY" +GridSample* + padding_mode"border test_gridsample_border_paddingZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4067cb0c7a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c61638df4a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_border_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/model.onnx new file mode 100644 index 0000000000..fc1cce44d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/model.onnx @@ -0,0 +1,24 @@ + backend-test:¡ +, +X +GridY" +GridSample* +mode"nearest test_gridsample_nearestZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1286d0d738 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e110edb140 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/model.onnx new file mode 100644 index 0000000000..ec265a307f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/model.onnx @@ -0,0 +1,25 @@ + backend-test:· +7 +X +GridY" +GridSample* + padding_mode" +reflection "test_gridsample_reflection_paddingZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4067cb0c7a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0adcf14b73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_reflection_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/model.onnx new file mode 100644 index 0000000000..9f8b35316c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/model.onnx @@ -0,0 +1,24 @@ + backend-test:­ +2 +X +GridY" +GridSample* + padding_mode"zeros test_gridsample_zeros_paddingZ +X + + + + +Z +Grid + + + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0c8ea512f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4067cb0c7a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..909b699ef2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gridsample_zeros_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/model.onnx new file mode 100644 index 0000000000..ed624934ef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/model.onnx @@ -0,0 +1,33 @@ + backend-test:Ò +9 +X +W +RYY_h"GRU* + hidden_size * +layout test_gru_batchwiseZ +X + + + +Z +W + + + +Z +R + + + +b +Y + + + + +b +Y_h + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a4c92c6a4c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..69ecd5b5bc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..213bb3fa03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJ°ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL>ÍÌL> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7f5281e004 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_0.pb @@ -0,0 +1,7 @@ +BYJH +ÞB> +ÞB> +ÞB> +ÞB> +ÞB> +ÞB>W3>W3>W3>W3>W3>W3>fUÇ=fUÇ=fUÇ=fUÇ=fUÇ=fUÇ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..a9c91371f8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_batchwise/test_data_set_0/output_1.pb @@ -0,0 +1,7 @@ +BY_hJH +ÞB> +ÞB> +ÞB> +ÞB> +ÞB> +ÞB>W3>W3>W3>W3>W3>W3>fUÇ=fUÇ=fUÇ=fUÇ=fUÇ=fUÇ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/model.onnx new file mode 100644 index 0000000000..5ff1c0fe40 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..17423bca02 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..99b74f9e0c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJxÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..77871963f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJ¬ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5205e2bae0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_defaults/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ<äý=äý=äý=äý=äý=yYM>yYM>yYM>yYM>yYM>ì¶L>ì¶L>ì¶L>ì¶L>ì¶L> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/model.onnx new file mode 100644 index 0000000000..5c79aad3f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0879670028 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e874a35ab2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ´xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0b3c5c433c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJ¬FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..97393a9a55 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/input_3.pb @@ -0,0 +1,2 @@ +BBJxÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿Ì9¾rÌÞ¾­´ì?‚,?ÖžÐ>8E¿< +?¡,¿Â`=ÏÆ"¿»*-?u›?ELU¾dÁÊ>qé‹¿‡á¾¿ó÷à>u¬*>l‘"?r…@hÉq?¸®i¿dúŽ?§o¨¿ÑTì¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6116cf946d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_seq_length/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJÀ/”º$\¾ž€ó³øzà¶ž™=XO7¶X¼èÃ!­d°.>#<Ѐâ±O\L¹ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/model.onnx new file mode 100644 index 0000000000..5d7e933cd5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cb9bf0ac3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..65156942be --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BWJlÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9dce5b5fee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BRJlÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..836334ea7f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..31f8ef0e50 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_gru_with_initial_bias/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ$yYM>yYM>yYM>Š>Š>Š>)G™=)G™=)G™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/model.onnx new file mode 100644 index 0000000000..e117bc908d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a6b15b5073 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/model.onnx new file mode 100644 index 0000000000..fc51e2ab80 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/model.onnx @@ -0,0 +1,14 @@ + backend-test:e + +xy"Hardmax* +axis test_hardmax_axis_1Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4f31bbeb22 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/model.onnx new file mode 100644 index 0000000000..f88233d1a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/model.onnx @@ -0,0 +1,14 @@ + backend-test:e + +xy"Hardmax* +axis test_hardmax_axis_2Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7afee9772 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_axis_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/model.onnx new file mode 100644 index 0000000000..0e739da48d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/model.onnx @@ -0,0 +1,13 @@ + backend-test:^ + +xy"Hardmaxtest_hardmax_default_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7afee9772 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/model.onnx new file mode 100644 index 0000000000..982284e768 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:Q + +xy"Hardmaxtest_hardmax_exampleZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..433614e247 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a0fb2a75d6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/model.onnx new file mode 100644 index 0000000000..3672c16282 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/model.onnx @@ -0,0 +1,14 @@ + backend-test:u +% +xy"Hardmax* +axisÿÿÿÿÿÿÿÿÿ test_hardmax_negative_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7afee9772 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/model.onnx new file mode 100644 index 0000000000..cd0b6a0e57 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/model.onnx @@ -0,0 +1,11 @@ + backend-test:Q + +xy"Hardmaxtest_hardmax_one_hotZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9f8805fef1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cd6bf58573 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardmax_one_hot/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/model.onnx new file mode 100644 index 0000000000..06a6b3c03f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bb2d84b642 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/model.onnx new file mode 100644 index 0000000000..34a13728cb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:a + +xy" HardSigmoidtest_hardsigmoid_defaultZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bd3a106591 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/model.onnx new file mode 100644 index 0000000000..53ba901e0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c7cb5d3884 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardsigmoid_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/model.onnx new file mode 100644 index 0000000000..e4ed18be12 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/model.onnx @@ -0,0 +1,13 @@ + backend-test:U + +xy" HardSwishtest_hardswishZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5e8478e33a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardswish/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/model.onnx new file mode 100644 index 0000000000..4affd0bcf0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5e8478e33a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_hardswish_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_identity/model.onnx new file mode 100644 index 0000000000..717d47bc13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_identity/model.onnx @@ -0,0 +1,15 @@ + backend-test:[ + +xy"Identity test_identityZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dc6642135 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9e707e6884 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/model.onnx new file mode 100644 index 0000000000..24c05f7b72 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..66541754ea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..caf27fcf2a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity_opt/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/model.onnx new file mode 100644 index 0000000000..4deff66122 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/model.onnx @@ -0,0 +1,9 @@ + backend-test:H + +xy"Identitytest_identity_sequenceZ +x" + +b +y" + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..93d5a7b783 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..edef126fea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_identity_sequence/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_if/model.onnx new file mode 100644 index 0000000000..c018af03b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a61228b1bf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BcondJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5371ef3881 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_opt/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/model.onnx new file mode 100644 index 0000000000..bbac0ae9f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c5b8b09d9c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d4eb6c858b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if_opt/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_seq/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/model.onnx new file mode 100644 index 0000000000..cfada6bd2e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a61228b1bf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BcondJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73dc9b0de7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_if_seq/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/model.onnx new file mode 100644 index 0000000000..8c7b65dd2b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/model.onnx @@ -0,0 +1,27 @@ + backend-test:µ +9 +x +s +biasy"InstanceNormalization* +epsilon +×#< test_instancenorm_epsilonZ +x + + + + +Z +s + + +Z +bias + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..51031034e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be392c2f40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BsJ ÙºÀ>*¹Œ¿­²˜> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ffa575cc82 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BbiasJ Ç©?3Ï1¿Ì9¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4093b496d5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_epsilon/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/model.onnx new file mode 100644 index 0000000000..40960caf18 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/model.onnx @@ -0,0 +1,25 @@ + backend-test:¢ +& +x +s +biasy"InstanceNormalizationtest_instancenorm_exampleZ +x + + + + +Z +s + + +Z +bias + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d1c0c937 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c60d361f70 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..753f636471 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5211daa8b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_instancenorm_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_isinf/model.onnx new file mode 100644 index 0000000000..fd6750fbc2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_isinf/model.onnx @@ -0,0 +1,12 @@ + backend-test:= + +xy"IsInf +test_isinfZ +x + + +b +y + +  +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ad81eb14fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c75785dce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/model.onnx new file mode 100644 index 0000000000..18daacc5df Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2e8954d5c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6adb495967 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_negative/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/model.onnx new file mode 100644 index 0000000000..9433053cfc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f65bb69e40 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ebe65e3b14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isinf_positive/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isnan/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_isnan/model.onnx new file mode 100644 index 0000000000..f629dbffd3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_isnan/model.onnx @@ -0,0 +1,12 @@ + backend-test:= + +xy"IsNaN +test_isnanZ +x + + +b +y + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..14d9d76db6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1867429a10 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_isnan/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/model.onnx new file mode 100644 index 0000000000..c231bf2bb0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cb9f861532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ0^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c4cc3f8068 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ0©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò > \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dfc6746781 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0ºâF@”À¿ h >^‡´>V@./í?´Íd><üš?‚å»?œÀ@öi¿W¶Ò¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..148269b825 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÙŠ?? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..43e398028f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ¸Š? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/model.onnx new file mode 100644 index 0000000000..3f5ec47670 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cb9f861532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ0^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c4cc3f8068 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ0©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò > \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dfc6746781 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0ºâF@”À¿ h >^‡´>V@./í?´Íd><üš?‚å»?œÀ@öi¿W¶Ò¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..148269b825 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÙŠ?? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..43e398028f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis0_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ¸Š? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/model.onnx new file mode 100644 index 0000000000..0a9274ac6a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/model.onnx @@ -0,0 +1,30 @@ + backend-test:ä +> +X +W +BYMean InvStdDev"LayerNormalization* +axis !test_layer_normalization_2d_axis1Z +X +  + +Z +W + + +Z +B + + +b +Y +  + +b +Mean +  + +b + InvStdDev +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e62021794 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ^&,¿Z¸¾[*P¿ÔöÜ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6292fe9bc2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ3¯5>;¶Í¾WªÐ¿Ìñì> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4628fd7c3b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0Uñ`¾¤Ó =p®š¿-Ü¿Ž69¿p„= ËÀ¹°?ðªU?¯G¹¾ÐU–¿¦‰À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98181fe95d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ lH¬?†1Ø>Þíó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2515b32d39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ €É´?ÃLm?•Ñ×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/model.onnx new file mode 100644 index 0000000000..47e0232d7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e62021794 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ^&,¿Z¸¾[*P¿ÔöÜ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6292fe9bc2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ3¯5>;¶Í¾WªÐ¿Ìñì> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4628fd7c3b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0Uñ`¾¤Ó =p®š¿-Ü¿Ž69¿p„= ËÀ¹°?ðªU?¯G¹¾ÐU–¿¦‰À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98181fe95d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ lH¬?†1Ø>Þíó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2515b32d39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis1_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ €É´?ÃLm?•Ñ×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/model.onnx new file mode 100644 index 0000000000..777d89f2f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/model.onnx @@ -0,0 +1,30 @@ + backend-test:÷ +G +X +W +BYMean InvStdDev"LayerNormalization* +axisÿÿÿÿÿÿÿÿÿ +test_layer_normalization_2d_axis_negative_1Z +X +  + +Z +W + + +Z +B + + +b +Y +  + +b +Mean +  + +b + InvStdDev +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..42570cabfd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJµDh¿²ÄT=®¥:?> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..fda0006eef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJâב?Æž¿¹ÿÍ>·O/¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..804362a72f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98181fe95d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ lH¬?†1Ø>Þíó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2515b32d39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ €É´?ÃLm?•Ñ×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/model.onnx new file mode 100644 index 0000000000..036f6f6607 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..42570cabfd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJµDh¿²ÄT=®¥:?> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..fda0006eef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJâב?Æž¿¹ÿÍ>·O/¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..804362a72f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..98181fe95d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ lH¬?†1Ø>Þíó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2515b32d39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_1_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ €É´?ÃLm?•Ñ×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/model.onnx new file mode 100644 index 0000000000..6cdcfaf433 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/model.onnx @@ -0,0 +1,30 @@ + backend-test:ÿ +G +X +W +BYMean InvStdDev"LayerNormalization* +axisþÿÿÿÿÿÿÿÿ +test_layer_normalization_2d_axis_negative_2Z +X +  + +Z +W +  + +Z +B +  + +b +Y +  + +b +Mean +  + +b + InvStdDev +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4e7a630079 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ0*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..d5d501c315 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ04”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..37959bfd42 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0Ðׄ¾a‘*¿õ~¿$(ѽ^2俽ż?0;›¼¿k ?Œîì>m>>Âm> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..148269b825 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÙŠ?? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..43e398028f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ¸Š? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/model.onnx new file mode 100644 index 0000000000..017db71847 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6a0330647f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4e7a630079 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ0*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..d5d501c315 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ04”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..37959bfd42 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0Ðׄ¾a‘*¿õ~¿$(ѽ^2俽ż?0;›¼¿k ?Œîì>m>>Âm> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..148269b825 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÙŠ?? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..43e398028f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_2d_axis_negative_2_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ¸Š? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/model.onnx new file mode 100644 index 0000000000..909f7470c1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a31659249a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJxŠª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..74d9957214 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJx^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6dbb76c6eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxj÷¾³»¿¾0_ ¿Ä– ÀB¾¾¸e¿šÔ†¿,bJ¾Î76¿ˆ°y=e‚?·k™¿—7#?Š0迎ÁÍ>Cþ#¿¤À2´…¿ˆ†ñ½‡VŸ>‰D¨?dèy?Ï€ˆ>Öx¾”g¸?H†’?2“?àO¶¾6ÛÚ¿ëÓ5? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0106db6a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾â> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..0230503de6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJX¢l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..aeee5298d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a31659249a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJxŠª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..74d9957214 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJx^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6dbb76c6eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxj÷¾³»¿¾0_ ¿Ä– ÀB¾¾¸e¿šÔ†¿,bJ¾Î76¿ˆ°y=e‚?·k™¿—7#?Š0迎ÁÍ>Cþ#¿¤À2´…¿ˆ†ñ½‡VŸ>‰D¨?dèy?Ï€ˆ>Öx¾”g¸?H†’?2“?àO¶¾6ÛÚ¿ëÓ5? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0106db6a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾â> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..0230503de6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis0_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJX¢l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/model.onnx new file mode 100644 index 0000000000..d8851df5ff --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/model.onnx @@ -0,0 +1,35 @@ + backend-test:— +Q +X +W +BYMean InvStdDev"LayerNormalization* +axis * +epsilonÍÌÌ= )test_layer_normalization_3d_axis1_epsilonZ +X + + + +Z +W +  + +Z +B +  + +b +Y + + + +b +Mean + + + +b + InvStdDev + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0186d6af80 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ¿z‘S¿z¡É½·Ù)¿›5?2;Š¿Aà’¿ó)à¾þþ¾èúö?> s?N³=Ûœ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c49373997 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ<,(X?€¿»Å¿\˜?MF¢>g½k?E0£>@Y[?©&¿b„¿ú|.?A¬M¿V†0¿Ž;é¾t0< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dfbc21bcad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJx£ÒA? ³Ê¿¶½æ¿ü-¬¾ßF7>¾Ñ@à¨+?w;÷?f¿Ù>þc¿MT€?‘1t?Ô*¿¨¿«¾>==V?l N?$k¦¿‚:Ž?µoÍ>)÷@$Nì|h>bÇâ¿ló¬?…¿JÎ|¿n˜¸¾ïÜŸ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2494f05b38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÆß/?7yK> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2bd20bd1aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ6ï—?5P? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..fd840045a2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0186d6af80 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ¿z‘S¿z¡É½·Ù)¿›5?2;Š¿Aà’¿ó)à¾þþ¾èúö?> s?N³=Ûœ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c49373997 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ<,(X?€¿»Å¿\˜?MF¢>g½k?E0£>@Y[?©&¿b„¿ú|.?A¬M¿V†0¿Ž;é¾t0< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dfbc21bcad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJx£ÒA? ³Ê¿¶½æ¿ü-¬¾ßF7>¾Ñ@à¨+?w;÷?f¿Ù>þc¿MT€?‘1t?Ô*¿¨¿«¾>==V?l N?$k¦¿‚:Ž?µoÍ>)÷@$Nì|h>bÇâ¿ló¬?…¿JÎ|¿n˜¸¾ïÜŸ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2494f05b38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÆß/?7yK> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2bd20bd1aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis1_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ6ï—?5P? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/model.onnx new file mode 100644 index 0000000000..319b899029 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/model.onnx @@ -0,0 +1,35 @@ + backend-test: +Q +X +W +BYMean InvStdDev"LayerNormalization* +axis * +epsilonÍÌÌ= )test_layer_normalization_3d_axis2_epsilonZ +X + + + +Z +W + + +Z +B + + +b +Y + + + +b +Mean + + + +b + InvStdDev + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..82e3d1c6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ|i?mj¢>ÊLI?|Îî¾;Çq¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9aab7853f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ òѾen‹¼- Â>…˜@Ö-½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3c76f6f0c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..bd9b558027 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÄ¢¹?}Ó<(Á?C]>“ÊÉ=Š> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..e182fed80e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..56d324d808 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..82e3d1c6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ|i?mj¢>ÊLI?|Îî¾;Çq¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9aab7853f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ òѾen‹¼- Â>…˜@Ö-½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3c76f6f0c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..bd9b558027 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÄ¢¹?}Ó<(Á?C]>“ÊÉ=Š> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..e182fed80e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis2_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/model.onnx new file mode 100644 index 0000000000..428cb69754 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/model.onnx @@ -0,0 +1,35 @@ + backend-test:¢ +Z +X +W +BYMean InvStdDev"LayerNormalization* +axisÿÿÿÿÿÿÿÿÿ * +epsilonÍÌÌ= 3test_layer_normalization_3d_axis_negative_1_epsilonZ +X + + + +Z +W + + +Z +B + + +b +Y + + + +b +Mean + + + +b + InvStdDev + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ee99892132 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJиt¿†$±¾t\í¾½„ö>Ö8Å¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..89dd201197 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ=@C >ÞÀm>µé¿Á¡s¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..95e94801a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxáðžG3?$_?`4ؼïᙿRwÇ?¤+¯¾n¸>Ò³1¿mË”¿Õk?)è¾öˆ=Ü\†¿ÓæO>“¨½hÕ¾1zø>˜v ¿ó?6®Î?ò‘=€Ss<–VX¿®FÀÔÑÅ?Íj>Ÿ5Ú>à²q½lÇï¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..bd9b558027 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÄ¢¹?}Ó<(Á?C]>“ÊÉ=Š> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..e182fed80e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..43feeea747 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ee99892132 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJиt¿†$±¾t\í¾½„ö>Ö8Å¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..89dd201197 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJ=@C >ÞÀm>µé¿Á¡s¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..95e94801a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxáðžG3?$_?`4ؼïᙿRwÇ?¤+¯¾n¸>Ò³1¿mË”¿Õk?)è¾öˆ=Ü\†¿ÓæO>“¨½hÕ¾1zø>˜v ¿ó?6®Î?ò‘=€Ss<–VX¿®FÀÔÑÅ?Íj>Ÿ5Ú>à²q½lÇï¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..bd9b558027 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÄ¢¹?}Ó<(Á?C]>“ÊÉ=Š> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..e182fed80e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_1_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/model.onnx new file mode 100644 index 0000000000..b8ce46acf5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/model.onnx @@ -0,0 +1,35 @@ + backend-test:ª +Z +X +W +BYMean InvStdDev"LayerNormalization* +axisþÿÿÿÿÿÿÿÿ * +epsilonÍÌÌ= 3test_layer_normalization_3d_axis_negative_2_epsilonZ +X + + + +Z +W +  + +Z +B +  + +b +Y + + + +b +Mean + + + +b + InvStdDev + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a0ab9b13d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c7a81ef2a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJ<ש/¾”E?+ÑR?ur +@Y«?g½¾Ñu¾¥ÁŒ?]¿'?©ß#?jøÎ¿•GǼ˜ï<¿GR>ɽ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..95e7d41541 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxcÅ¿Œ¶ž? Ã?¦ø¿Gœ @"ì2@J‘¿ †??Ø >Ø¡H¿·#`>ÑÑ=¿~)ˆ?L'¾ktW¾EA-¿ôw„?Vlú?”M?ÖM@dâ%¿*_?þOœ?øNO@Kø=˜´k½Ç9¿8Ë|¿lŸâ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2494f05b38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÆß/?7yK> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2bd20bd1aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ6ï—?5P? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..4069c9fdd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a0ab9b13d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c7a81ef2a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJ<ש/¾”E?+ÑR?ur +@Y«?g½¾Ñu¾¥ÁŒ?]¿'?©ß#?jøÎ¿•GǼ˜ï<¿GR>ɽ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..95e7d41541 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJxcÅ¿Œ¶ž? Ã?¦ø¿Gœ @"ì2@J‘¿ †??Ø >Ø¡H¿·#`>ÑÑ=¿~)ˆ?L'¾ktW¾EA-¿ôw„?Vlú?”M?ÖM@dâ%¿*_?þOœ?øNO@Kø=˜´k½Ç9¿8Ë|¿lŸâ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2494f05b38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJÆß/?7yK> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..2bd20bd1aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_2_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJ6ï—?5P? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/model.onnx new file mode 100644 index 0000000000..d61890b246 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/model.onnx @@ -0,0 +1,37 @@ + backend-test:² +Z +X +W +BYMean InvStdDev"LayerNormalization* +axisýÿÿÿÿÿÿÿÿ * +epsilonÍÌÌ= 3test_layer_normalization_3d_axis_negative_3_epsilonZ +X + + + +Z +W + + + +Z +B + + + +b +Y + + + +b +Mean + + + +b + InvStdDev + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ceb27708a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJx5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0acbab48ce --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJxÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿Ì9¾rÌÞ¾­´ì?‚,?ÖžÐ>8E¿< +?¡,¿Â`=ÏÆ"¿»*-?u›?ELU¾dÁÊ>qé‹¿‡á¾¿ó÷à>u¬*>l‘"?r…@hÉq?¸®i¿dúŽ?§o¨¿ÑTì¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..143aa8d711 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJx„yí½/æ’¿…Í>æÅ<@zªf¾@à‰¿,GܾLL^?6µ?Á{Ê>Ÿ ¥¿ê„8¿Ä$†¿Pƒ¾[#¿öæõ>šÞ2>+u>G)>´Œ7ÀÁ6ÕÀ¬?‹ý,¾Ü…º¿Ü÷?¼òì¾°X¡¿ƒˆš?F~2¿×¯Ó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0106db6a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾â> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..0230503de6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJX¢l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/model.onnx new file mode 100644 index 0000000000..5e876f3a49 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2dbaaccad0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJxxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ceb27708a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJx5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0acbab48ce --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJxÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿Ì9¾rÌÞ¾­´ì?‚,?ÖžÐ>8E¿< +?¡,¿Â`=ÏÆ"¿»*-?u›?ELU¾dÁÊ>qé‹¿‡á¾¿ó÷à>u¬*>l‘"?r…@hÉq?¸®i¿dúŽ?§o¨¿ÑTì¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..143aa8d711 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJx„yí½/æ’¿…Í>æÅ<@zªf¾@à‰¿,GܾLL^?6µ?Á{Ê>Ÿ ¥¿ê„8¿Ä$†¿Pƒ¾[#¿öæõ>šÞ2>+u>G)>´Œ7ÀÁ6ÕÀ¬?‹ý,¾Ü…º¿Ü÷?¼òì¾°X¡¿ƒˆš?F~2¿×¯Ó> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0106db6a9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾â> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..0230503de6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_3d_axis_negative_3_epsilon_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJX¢l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/model.onnx new file mode 100644 index 0000000000..79e979903e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..177f4201f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..bda17879f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJà/#¿6g˾Ù¾ x˜¾ó6ž¾K‡Ö¿š“?ñ0Š?¤8P¿Ë³»¿‚d?×f¿,\>£¾¯1?Û1?ÀÀ9¿±¿ºÊ¿ÓA?Š,˜¿·¾¿ ¨¿ÎPW½Ø÷¿-OA>¹?¤µ=y,Ÿ¾½yÇ=ÍOÌ>)r1ÀV[ú?PºÇ>@'¿ ++Ⱦ¹Ëü>çÇí½¼öÀ§ @$c⽕‚?.*1¿¨Ä?¤›’>1Ý?ÝÊ…¿Ï›?ì—0?梦?YÊ ¿0Iö¾_s@™®‡¿f6 ¾¨…‘?$È=t<?•„̾÷w½>F<§¿ =Ô?þÿñ½) .¿˜*?wãë¾ûȪ¿=a¬¿›1?8g#¾é¾‚ó‰?Ô;¿² ;¿÷žh;Á=ù»,½áâ’¾÷k|½ÞÂÛ½þ78¿O P¿hŒ>d¿8$”¿Å䟾vs!¾(n@=g4¿‰yq?¼G??Y/˜¿èóE?g‰—¿á/*ÀÂ7?Áà¿âàæ>W/¿)lÔ?êĈ?/"è¾ 0¿ãf›¿œÀá¾Áо¹º¾úv >ü?é³>ðžC¿ ¸¿û¨®?¾0¿·ü&¿ªl¿´é뿹ô¾r•õ¾ÍÏ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..252bdd8744 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c4a329dc7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ`Ë> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3c75e1e5c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJóït? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/model.onnx new file mode 100644 index 0000000000..b83a0f06d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..177f4201f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..bda17879f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJà/#¿6g˾Ù¾ x˜¾ó6ž¾K‡Ö¿š“?ñ0Š?¤8P¿Ë³»¿‚d?×f¿,\>£¾¯1?Û1?ÀÀ9¿±¿ºÊ¿ÓA?Š,˜¿·¾¿ ¨¿ÎPW½Ø÷¿-OA>¹?¤µ=y,Ÿ¾½yÇ=ÍOÌ>)r1ÀV[ú?PºÇ>@'¿ ++Ⱦ¹Ëü>çÇí½¼öÀ§ @$c⽕‚?.*1¿¨Ä?¤›’>1Ý?ÝÊ…¿Ï›?ì—0?梦?YÊ ¿0Iö¾_s@™®‡¿f6 ¾¨…‘?$È=t<?•„̾÷w½>F<§¿ =Ô?þÿñ½) .¿˜*?wãë¾ûȪ¿=a¬¿›1?8g#¾é¾‚ó‰?Ô;¿² ;¿÷žh;Á=ù»,½áâ’¾÷k|½ÞÂÛ½þ78¿O P¿hŒ>d¿8$”¿Å䟾vs!¾(n@=g4¿‰yq?¼G??Y/˜¿èóE?g‰—¿á/*ÀÂ7?Áà¿âàæ>W/¿)lÔ?êĈ?/"è¾ 0¿ãf›¿œÀá¾Áо¹º¾úv >ü?é³>ðžC¿ ¸¿û¨®?¾0¿·ü&¿ªl¿´é뿹ô¾r•õ¾ÍÏ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..252bdd8744 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c4a329dc7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ`Ë> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3c75e1e5c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis0_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJóït? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/model.onnx new file mode 100644 index 0000000000..1f1a03ee01 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/model.onnx @@ -0,0 +1,40 @@ + backend-test:” +> +X +W +BYMean InvStdDev"LayerNormalization* +axis !test_layer_normalization_4d_axis1Z +X + + + + +Z +W + + + +Z +B + + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0bafab8fb2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..12cf194141 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2fc4e5310c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..cfe5baabaa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾=áA> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3f98a1912f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJm‹q?„6y? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/model.onnx new file mode 100644 index 0000000000..d51ba6ae42 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0bafab8fb2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..12cf194141 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2fc4e5310c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..cfe5baabaa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾=áA> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3f98a1912f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis1_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJm‹q?„6y? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/model.onnx new file mode 100644 index 0000000000..b5e4083e62 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/model.onnx @@ -0,0 +1,38 @@ + backend-test:Œ +> +X +W +BYMean InvStdDev"LayerNormalization* +axis !test_layer_normalization_4d_axis2Z +X + + + + +Z +W +  + +Z +B +  + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6c525c00a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJP/Uu>”V½¾øx?L‘@±Ð>ÐE¾2xA?™ +¿µë?¿wb=ŠL%À¥´“¿(²¾Ù;­¿¦-„¿zß¾°LÒ¿¤èϾw ¿•Ð< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5bd79dbf2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJPM¼“?ÿ¤0>CЬ<Ç®Ë=§Ùh>~$‚¿Së½¥ž>u¯¿n›]?ˆjŠ?Û¡!¿A!w¾Ñ`¿™ +3?"Ö‡¿Ñc¾-â[¿oµP=N©å¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..75e5a26cb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2226bc2ce3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJê¿?~Zd=SHʾÄO´¾»¨×>XFþ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..4b0b73a6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJŽ–?…W?ÓÕ‘?¢ô­?ç|‰?»'_? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/model.onnx new file mode 100644 index 0000000000..15ade9d8bf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6c525c00a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJP/Uu>”V½¾øx?L‘@±Ð>ÐE¾2xA?™ +¿µë?¿wb=ŠL%À¥´“¿(²¾Ù;­¿¦-„¿zß¾°LÒ¿¤èϾw ¿•Ð< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5bd79dbf2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJPM¼“?ÿ¤0>CЬ<Ç®Ë=§Ùh>~$‚¿Së½¥ž>u¯¿n›]?ˆjŠ?Û¡!¿A!w¾Ñ`¿™ +3?"Ö‡¿Ñc¾-â[¿oµP=N©å¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..75e5a26cb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2226bc2ce3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJê¿?~Zd=SHʾÄO´¾»¨×>XFþ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..4b0b73a6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis2_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJŽ–?…W?ÓÕ‘?¢ô­?ç|‰?»'_? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/model.onnx new file mode 100644 index 0000000000..f34f8f84ca --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/model.onnx @@ -0,0 +1,38 @@ + backend-test:„ +> +X +W +BYMean InvStdDev"LayerNormalization* +axis !test_layer_normalization_4d_axis3Z +X + + + + +Z +W + + +Z +B + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..14c9a9fa25 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ^;¦¿pV£?š©?³BR>rÞ8= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b2f8e3d53d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJj¼@›ˆ¾F焾Iº>GT¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..79de966056 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/model.onnx new file mode 100644 index 0000000000..9fdc3c119f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..14c9a9fa25 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ^;¦¿pV£?š©?³BR>rÞ8= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b2f8e3d53d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJj¼@›ˆ¾F焾Iº>GT¼? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..79de966056 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis3_expanded/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/model.onnx new file mode 100644 index 0000000000..43e06f3ab1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/model.onnx @@ -0,0 +1,38 @@ + backend-test:— +G +X +W +BYMean InvStdDev"LayerNormalization* +axisÿÿÿÿÿÿÿÿÿ +test_layer_normalization_4d_axis_negative_1Z +X + + + + +Z +W + + +Z +B + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..60203fb579 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJéßË?¢c„¾˜Ý> +e°¿U»Ÿ¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..51f7304cb6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJEW¿Ý߀¿è=×?LÓJ¿S¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9b6c764bca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/model.onnx new file mode 100644 index 0000000000..fa3573a332 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..60203fb579 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJéßË?¢c„¾˜Ý> +e°¿U»Ÿ¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..51f7304cb6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJEW¿Ý߀¿è=×?LÓJ¿S¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9b6c764bca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_1_expanded/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/model.onnx new file mode 100644 index 0000000000..9ba4d2ed7d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/model.onnx @@ -0,0 +1,38 @@ + backend-test:Ÿ +G +X +W +BYMean InvStdDev"LayerNormalization* +axisþÿÿÿÿÿÿÿÿ +test_layer_normalization_4d_axis_negative_2Z +X + + + + +Z +W +  + +Z +B +  + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0df36139f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJPÉ©?rðv¿!Tu=¤ŸY¾ðC¿Ec¿Ñ·o?b¿ÒÖŠ>æ.M¿¯­%¿aÊñ>@/n?%†3¾x¶¿½ÿ?ÑF[¿¼RÅ¿ &@RÝξ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..05c71f1972 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJP»¿éõ.¿Ø.¼>áB>í +Z¿Oé??†¿Ï£—¿ðu?»ª?:GQ¿Y_³¿gåƒ?ZÀð¿ªw?Z¹b½Ì"‡¾a¤´>æp¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..beb6c1986e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2226bc2ce3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJê¿?~Zd=SHʾÄO´¾»¨×>XFþ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..4b0b73a6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJŽ–?…W?ÓÕ‘?¢ô­?ç|‰?»'_? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/model.onnx new file mode 100644 index 0000000000..28acfd4187 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0df36139f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJPÉ©?rðv¿!Tu=¤ŸY¾ðC¿Ec¿Ñ·o?b¿ÒÖŠ>æ.M¿¯­%¿aÊñ>@/n?%†3¾x¶¿½ÿ?ÑF[¿¼RÅ¿ &@RÝξ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..05c71f1972 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BBJP»¿éõ.¿Ø.¼>áB>í +Z¿Oé??†¿Ï£—¿ðu?»ª?:GQ¿Y_³¿gåƒ?ZÀð¿ªw?Z¹b½Ì"‡¾a¤´>æp¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..beb6c1986e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2226bc2ce3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJê¿?~Zd=SHʾÄO´¾»¨×>XFþ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..4b0b73a6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_2_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJŽ–?…W?ÓÕ‘?¢ô­?ç|‰?»'_? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/model.onnx new file mode 100644 index 0000000000..dbb6d22c17 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/model.onnx @@ -0,0 +1,40 @@ + backend-test:§ +G +X +W +BYMean InvStdDev"LayerNormalization* +axisýÿÿÿÿÿÿÿÿ +test_layer_normalization_4d_axis_negative_3Z +X + + + + +Z +W + + + +Z +B + + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..467f7cc141 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJððƾŒ¢¿÷V<>ê^ž÷Í¿Jc¿CËn¿%Ÿ?h P?¡V?*_¿·×P¿¬ì¿¤†¿"Ò@Z³ÀÝb?6l¤¿ +²Õ½²í|¿Œ¼–¿ôñ‘¿c£à?.¾D¿H?,)<"T8?>é¿ùq›>TÏE?A¯Ô¿Úyå>zÙ?ºms¼©GR?ª+?5¿râ"=H“È¿1ç¾Aˆ>9?^ŸÉ<ÛP8?,¿©FнÍï„躾9Jå¿tøo½•¢¾?óп¢}‰½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..50ca1fe118 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ee4368eae7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..cfe5baabaa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾=áA> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3f98a1912f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJm‹q?„6y? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/model.onnx new file mode 100644 index 0000000000..d269dfbf19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..467f7cc141 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ +BWJððƾŒ¢¿÷V<>ê^ž÷Í¿Jc¿CËn¿%Ÿ?h P?¡V?*_¿·×P¿¬ì¿¤†¿"Ò@Z³ÀÝb?6l¤¿ +²Õ½²í|¿Œ¼–¿ôñ‘¿c£à?.¾D¿H?,)<"T8?>é¿ùq›>TÏE?A¯Ô¿Úyå>zÙ?ºms¼©GR?ª+?5¿râ"=H“È¿1ç¾Aˆ>9?^ŸÉ<ÛP8?,¿©FнÍï„躾9Jå¿tøo½•¢¾?óп¢}‰½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..50ca1fe118 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ee4368eae7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..cfe5baabaa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ¾=áA> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3f98a1912f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_3_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJm‹q?„6y? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/model.onnx new file mode 100644 index 0000000000..8400323328 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/model.onnx @@ -0,0 +1,42 @@ + backend-test:¯ +G +X +W +BYMean InvStdDev"LayerNormalization* +axisüÿÿÿÿÿÿÿÿ +test_layer_normalization_4d_axis_negative_4Z +X + + + + +Z +W + + + + +Z +B + + + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1256426bbc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c7e2452a70 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..67de1dc96b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c4a329dc7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ`Ë> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3c75e1e5c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJóït? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/model.onnx new file mode 100644 index 0000000000..96d1cb4061 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1256426bbc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c7e2452a70 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..67de1dc96b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c4a329dc7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BMeanJ`Ë> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..3c75e1e5c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_4d_axis_negative_4_expanded/test_data_set_0/output_2.pb @@ -0,0 +1 @@ +B InvStdDevJóït? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/model.onnx new file mode 100644 index 0000000000..d56e4e1279 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/model.onnx @@ -0,0 +1,37 @@ + backend-test:û +1 +X +W +BYMean InvStdDev"LayerNormalization%test_layer_normalization_default_axisZ +X + + + + +Z +W + + +Z +B + + +b +Y + + + + +b +Mean + + + + +b# + InvStdDev + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2664d330b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0c61766833 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJÌ9¾rÌÞ¾­´ì?‚,?ÖžÐ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3857c14ca7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/model.onnx new file mode 100644 index 0000000000..c6aec2477e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..703fd46ab5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BXJàxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2664d330b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0c61766833 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BBJÌ9¾rÌÞ¾­´ì?‚,?ÖžÐ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3857c14ca7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..f1d0d7f58a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..996fa15b24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_layer_normalization_default_axis_expanded/test_data_set_0/output_2.pb @@ -0,0 +1,2 @@ +B InvStdDevJ`”ù¿?‰”Ç?ðÊ@ Ò¥?æ°?é±d?Z³—?²â´?°8C?O­˜?èEá?€v@gñÌ?a¹®?’zž?eF@, +Y?o„q?­²Ý?‡ûÈ?]–=?ñ Z?0e?¡Þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/model.onnx new file mode 100644 index 0000000000..49ffc8b3e7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/model.onnx @@ -0,0 +1,14 @@ + backend-test:f +" +xy" LeakyRelu* +alphaÍÌÌ= test_leakyreluZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5680514b26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/model.onnx new file mode 100644 index 0000000000..fe3778b690 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:] + +xy" LeakyRelutest_leakyrelu_defaultZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5fd7f400c8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/model.onnx new file mode 100644 index 0000000000..55d9fdb730 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/model.onnx @@ -0,0 +1,12 @@ + backend-test:^ +" +xy" LeakyRelu* +alphaÍÌÌ= test_leakyrelu_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..976f75bb37 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_leakyrelu_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less/model.onnx new file mode 100644 index 0000000000..b86e75c96d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less/model.onnx @@ -0,0 +1,19 @@ + backend-test:m + +x +yless"Less test_lessZ +x + + + +Z +y + + + +b +less +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..832abe84b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/model.onnx new file mode 100644 index 0000000000..0542f71601 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:k + +x +yless"Lesstest_less_bcastZ +x + + + +Z +y + + +b +less +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..63d73107d6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/model.onnx new file mode 100644 index 0000000000..3ca38c6b54 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/model.onnx @@ -0,0 +1,21 @@ + backend-test:† + +x +y +less_equal" LessOrEqualtest_less_equalZ +x + + + +Z +y + + + +b + +less_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c300263c6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less_equal/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/model.onnx new file mode 100644 index 0000000000..5bf56ea721 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/model.onnx @@ -0,0 +1,20 @@ + backend-test:„ + +x +y +less_equal" LessOrEqualtest_less_equal_bcastZ +x + + + +Z +y + + +b + +less_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..00bd1b0525 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/model.onnx new file mode 100644 index 0000000000..e74a07dfcf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/model.onnx @@ -0,0 +1,26 @@ + backend-test:÷ +C +x +y5LessOrEqual_test_less_equal_bcast_expanded_functionO1"Less +D +x +y5LessOrEqual_test_less_equal_bcast_expanded_functionO2"Equal +~ +5LessOrEqual_test_less_equal_bcast_expanded_functionO1 +5LessOrEqual_test_less_equal_bcast_expanded_functionO2 +less_equal"Ortest_less_equal_bcast_expandedZ +x + + + +Z +y + + +b + +less_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..00bd1b0525 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_bcast_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/model.onnx new file mode 100644 index 0000000000..a943e7fe98 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/model.onnx @@ -0,0 +1,27 @@ + backend-test:á += +x +y/LessOrEqual_test_less_equal_expanded_functionO1"Less +> +x +y/LessOrEqual_test_less_equal_expanded_functionO2"Equal +r +/LessOrEqual_test_less_equal_expanded_functionO1 +/LessOrEqual_test_less_equal_expanded_functionO2 +less_equal"Ortest_less_equal_expandedZ +x + + + +Z +y + + + +b + +less_equal +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c300263c6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_less_equal_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_log/model.onnx new file mode 100644 index 0000000000..6ab18d29f3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_log/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Logtest_logZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..78488599c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ffa52800d0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_log/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_log_example/model.onnx new file mode 100644 index 0000000000..9b3de4b959 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_log_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Logtest_log_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e410a4851a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d6c12876bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_log_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/model.onnx new file mode 100644 index 0000000000..1c7ccb961e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ae044b31c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/model.onnx new file mode 100644 index 0000000000..9da991ad5a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ae044b31c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_0_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/model.onnx new file mode 100644 index 0000000000..779045fc0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/model.onnx @@ -0,0 +1,15 @@ + backend-test:k + +xy" +LogSoftmax* +axis test_logsoftmax_axis_1Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c9e960ab6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/model.onnx new file mode 100644 index 0000000000..b85cb90158 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/model.onnx @@ -0,0 +1,31 @@ + backend-test:ì +X7LogSoftmax_test_logsoftmax_axis_1_expanded_functionaxes"Constant* +value*:  +l +x>LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_ReduceMax" ReduceMax* +axes@ * +keepdims  +‚ +x +>LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_ReduceMax8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Sub"Sub +y +8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Sub8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Exp"Exp +Ï +8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Exp +7LogSoftmax_test_logsoftmax_axis_1_expanded_functionaxes>LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_ReduceSum" ReduceSum* +keepdims  + +>LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_ReduceSum8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Log"Log +| +8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Sub +8LogSoftmax_test_logsoftmax_axis_1_expanded_functionX_Logy"Subtest_logsoftmax_axis_1_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c9e960ab6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_1_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/model.onnx new file mode 100644 index 0000000000..5a4a79df3b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/model.onnx @@ -0,0 +1,15 @@ + backend-test:k + +xy" +LogSoftmax* +axis test_logsoftmax_axis_2Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/model.onnx new file mode 100644 index 0000000000..332528f20a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/model.onnx @@ -0,0 +1,31 @@ + backend-test:ì +X7LogSoftmax_test_logsoftmax_axis_2_expanded_functionaxes"Constant* +value*:  +l +x>LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_ReduceMax" ReduceMax* +axes@ * +keepdims  +‚ +x +>LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_ReduceMax8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Sub"Sub +y +8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Sub8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Exp"Exp +Ï +8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Exp +7LogSoftmax_test_logsoftmax_axis_2_expanded_functionaxes>LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_ReduceSum" ReduceSum* +keepdims  + +>LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_ReduceSum8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Log"Log +| +8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Sub +8LogSoftmax_test_logsoftmax_axis_2_expanded_functionX_Logy"Subtest_logsoftmax_axis_2_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_axis_2_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/model.onnx new file mode 100644 index 0000000000..04284e55ce --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/model.onnx @@ -0,0 +1,14 @@ + backend-test:d + +xy" +LogSoftmaxtest_logsoftmax_default_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/model.onnx new file mode 100644 index 0000000000..a03c182328 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/model.onnx @@ -0,0 +1,32 @@ + backend-test:Õ +g=LogSoftmax_test_logsoftmax_default_axis_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +{ +xDLogSoftmax_test_logsoftmax_default_axis_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +Ž +x +DLogSoftmax_test_logsoftmax_default_axis_expanded_functionX_ReduceMax>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Sub"Sub +… +>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Sub>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Exp"Exp +á +>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Exp +=LogSoftmax_test_logsoftmax_default_axis_expanded_functionaxesDLogSoftmax_test_logsoftmax_default_axis_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +‹ +DLogSoftmax_test_logsoftmax_default_axis_expanded_functionX_ReduceSum>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Log"Log +ˆ +>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Sub +>LogSoftmax_test_logsoftmax_default_axis_expanded_functionX_Logy"Sub%test_logsoftmax_default_axis_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_default_axis_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/model.onnx new file mode 100644 index 0000000000..a53afac6b0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/model.onnx @@ -0,0 +1,12 @@ + backend-test:Y + +xy" +LogSoftmaxtest_logsoftmax_example_1Z +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a00f7191aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e8f74f0e22 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ 7Àn,´¿º±Ð¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/model.onnx new file mode 100644 index 0000000000..5a03a9ade2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/model.onnx @@ -0,0 +1,30 @@ + backend-test:¢ +d:LogSoftmax_test_logsoftmax_example_1_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +x +xALogSoftmax_test_logsoftmax_example_1_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +ˆ +x +ALogSoftmax_test_logsoftmax_example_1_expanded_functionX_ReduceMax;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Sub"Sub + +;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Sub;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Exp"Exp +Ø +;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Exp +:LogSoftmax_test_logsoftmax_example_1_expanded_functionaxesALogSoftmax_test_logsoftmax_example_1_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +… +ALogSoftmax_test_logsoftmax_example_1_expanded_functionX_ReduceSum;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Log"Log +‚ +;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Sub +;LogSoftmax_test_logsoftmax_example_1_expanded_functionX_Logy"Sub"test_logsoftmax_example_1_expandedZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a00f7191aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e8f74f0e22 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_example_1_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ 7Àn,´¿º±Ð¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/model.onnx new file mode 100644 index 0000000000..9b326ef15a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/model.onnx @@ -0,0 +1,12 @@ + backend-test:\ + +xy" +LogSoftmaxtest_logsoftmax_large_numberZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..559a11acd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cde31c1aea --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ ,\À,À#X¸¿‹`á¾,\À,À#X¸¿‹`á¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/model.onnx new file mode 100644 index 0000000000..414b1878e7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/model.onnx @@ -0,0 +1,30 @@ + backend-test:Í +g=LogSoftmax_test_logsoftmax_large_number_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +{ +xDLogSoftmax_test_logsoftmax_large_number_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +Ž +x +DLogSoftmax_test_logsoftmax_large_number_expanded_functionX_ReduceMax>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Sub"Sub +… +>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Sub>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Exp"Exp +á +>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Exp +=LogSoftmax_test_logsoftmax_large_number_expanded_functionaxesDLogSoftmax_test_logsoftmax_large_number_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +‹ +DLogSoftmax_test_logsoftmax_large_number_expanded_functionX_ReduceSum>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Log"Log +ˆ +>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Sub +>LogSoftmax_test_logsoftmax_large_number_expanded_functionX_Logy"Sub%test_logsoftmax_large_number_expandedZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..559a11acd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cde31c1aea --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_large_number_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ ,\À,À#X¸¿‹`á¾,\À,À#X¸¿‹`á¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/model.onnx new file mode 100644 index 0000000000..51a6bc8800 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/model.onnx @@ -0,0 +1,15 @@ + backend-test:{ +( +xy" +LogSoftmax* +axisÿÿÿÿÿÿÿÿÿ test_logsoftmax_negative_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/model.onnx new file mode 100644 index 0000000000..e30293350d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/model.onnx @@ -0,0 +1,32 @@ + backend-test:ã +h>LogSoftmax_test_logsoftmax_negative_axis_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +| +xELogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  + +x +ELogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_ReduceMax?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Sub"Sub +‡ +?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Sub?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Exp"Exp +ä +?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Exp +>LogSoftmax_test_logsoftmax_negative_axis_expanded_functionaxesELogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_ReduceSum" ReduceSum* +keepdims  + +ELogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_ReduceSum?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Log"Log +Š +?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Sub +?LogSoftmax_test_logsoftmax_negative_axis_expanded_functionX_Logy"Sub&test_logsoftmax_negative_axis_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf0547d7e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_logsoftmax_negative_axis_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_loop11/model.onnx new file mode 100644 index 0000000000..5807fad5d3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop11/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d5d9bc105f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a61228b1bf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BcondJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cd343fdd06 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..00e8d524fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..ad9be2d9e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop11/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/model.onnx new file mode 100644 index 0000000000..6ebd929c32 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d5d9bc105f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a61228b1bf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BcondJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..943fd7cd77 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ + + seq_empty \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c750696e79 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop13_seq/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/model.onnx new file mode 100644 index 0000000000..7f379ed7eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d5d9bc105f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a61228b1bf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BcondJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..56d0dafb46 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..326e70c018 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_loop16_seq_none/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lrn/model.onnx new file mode 100644 index 0000000000..c5fe791017 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lrn/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..93a434a694 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9ff5b9954d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lrn/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/model.onnx new file mode 100644 index 0000000000..872bf28710 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/model.onnx @@ -0,0 +1,16 @@ + backend-test:f + +xy"LRN* +size test_lrn_defaultZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..93a434a694 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..99db039514 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lrn_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/model.onnx new file mode 100644 index 0000000000..6953642671 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/model.onnx @@ -0,0 +1,33 @@ + backend-test:Ô +: +X +W +RYY_h"LSTM* + hidden_size * +layout test_lstm_batchwiseZ +X + + + +Z +W + + + +Z +R + + + +b +Y + + + + +b +Y_h + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a4c92c6a4c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e430e38559 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJàš™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..84928826f7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJš™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™>š™™> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..63506ae969 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJTÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>)U?)U?)U?)U?)U?)U?)U?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..745611e70b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_batchwise/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BY_hJTÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>ÂÙª>)U?)U?)U?)U?)U?)U?)U?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7?Ìô7? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/model.onnx new file mode 100644 index 0000000000..cfca8879b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..17423bca02 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9487638350 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BWJ`ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a5e32c2812 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BRJÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..171844876f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_defaults/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ$Ð Ã=Ð Ã=Ð Ã=áƒ>áƒ>áƒ>.uÎ>.uÎ>.uÎ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/model.onnx new file mode 100644 index 0000000000..0d19414a61 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cb9bf0ac3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..35cc03f446 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJÀÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ac89f6caab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJ€ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..8be234c453 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..502aec9b72 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_initial_bias/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ0áƒ>áƒ>áƒ>áƒ>þf ?þf ?þf ?þf ?|Î*?|Î*?|Î*?|Î*? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/model.onnx new file mode 100644 index 0000000000..018ea942df Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..344fd4ebf0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..463c96f583 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_1.pb @@ -0,0 +1 @@ + BWJÀÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a5e32c2812 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BRJÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..4b588553aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..bcc1b19a5a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..174d35fe29 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_5.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..9f828ddbcf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_6.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..78aa76a959 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/input_7.pb @@ -0,0 +1 @@ + BPJ$ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dceba3e67b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_lstm_with_peepholes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ À> À> À>.?.?.? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/model.onnx new file mode 100644 index 0000000000..088124bd48 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/model.onnx @@ -0,0 +1,16 @@ + backend-test:b + +a +bc"MatMultest_matmul_2dZ +a +  + +Z +b +  + +b +c +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8478b72adf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ0xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f062118b0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ0^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a3e5cad223 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_2d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BcJ$ÑO@~óô?¯]À˜¥?|6 ÀwS¤¿]ì†?·Þ?—ÞÉ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/model.onnx new file mode 100644 index 0000000000..754636016d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/model.onnx @@ -0,0 +1,19 @@ + backend-test:n + +a +bc"MatMultest_matmul_3dZ +a + + + +Z +b + + + +b +c + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1469c695fc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ`©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c35dcb6e84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ`4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e35af96b7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BcJH‰‰ÀZöË>¶Wz¾6Êå¿Ø ¿ýNÀ_89?)Õs?pC@ZbÀÞ𠿣啿fBÁ@úA?šCN@4 K@¬ª½=cçé? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/model.onnx new file mode 100644 index 0000000000..37f261f32a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/model.onnx @@ -0,0 +1,22 @@ + backend-test:z + +a +bc"MatMultest_matmul_4dZ +a + + + + +Z +b + + + + +b +c + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..575a605e61 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BaJ`âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3e4b0b6bf6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BbJ`G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..02d669ef4f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmul_4d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BcJHçÀBöÃ>Ø¢ì?⻆>µ>À«>~?‘NÀ’Ñ3?ÀB¿mT‰@ˆø³?5>ë@Õ¯—¿D=À3ƒB?ÇHŠ?D™?>æ–O@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/model.onnx new file mode 100644 index 0000000000..227661bbb8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/model.onnx @@ -0,0 +1,26 @@ + backend-test:Á +4 +A +B + a_zero_point + b_zero_pointY" MatMulIntegertest_matmulintegerZ +A +  + +Z +B +  + +Z + a_zero_point + + +Z + b_zero_point + + +b +Y +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..abf965a206 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..997a12d342 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BBJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7910a57feb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B a_zero_pointJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b163ba9bcb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad39e94c6c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_matmulinteger/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ Úÿÿÿ­ÿÿÿÔÿÿÿžÿÿÿÎÿÿÿÿÿÿÈÿÿÿ€ÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_example/model.onnx new file mode 100644 index 0000000000..ee71640e80 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_example/model.onnx @@ -0,0 +1,21 @@ + backend-test:‘ +% +data_0 +data_1 +data_2result"Maxtest_max_exampleZ +data_0 + + +Z +data_1 + + +Z +data_2 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f1bf1d2013 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2057c5b456 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/model.onnx new file mode 100644 index 0000000000..a2f93cacac --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/model.onnx @@ -0,0 +1,19 @@ + backend-test:s + +data_0 +data_1result"Maxtest_max_float16Z +data_0 + + + +Z +data_1 + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..560f20f37a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0ebf1b0043 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cf0575b51f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/model.onnx new file mode 100644 index 0000000000..c82924a59c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/model.onnx @@ -0,0 +1,16 @@ + backend-test:s + +data_0 +data_1result"Maxtest_max_float32Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..928c1dff7b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/model.onnx new file mode 100644 index 0000000000..e17e524355 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/model.onnx @@ -0,0 +1,16 @@ + backend-test:s + +data_0 +data_1result"Maxtest_max_float64Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fffda54821 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3bc1918608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c7e7d314e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_float64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/model.onnx new file mode 100644 index 0000000000..0d53dd64a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Maxtest_max_int16Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f4d1329514 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d800761087 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8bc974598b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/model.onnx new file mode 100644 index 0000000000..883de01038 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Maxtest_max_int32Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..136f93fa62 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d0c6f07990 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f17e085356 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/model.onnx new file mode 100644 index 0000000000..d1dbace3f3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Maxtest_max_int64Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..09588d06e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c5db1a476e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3a11a5bb63 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_int64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/model.onnx new file mode 100644 index 0000000000..886c7bcfcf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/model.onnx @@ -0,0 +1,16 @@ + backend-test:p + +data_0 +data_1result"Max test_max_int8Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33768d3cb8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +Bdata_0J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..26608b19b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bdata_1J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cc7d499c3a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_int8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BresultJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/model.onnx new file mode 100644 index 0000000000..9050fd712a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/model.onnx @@ -0,0 +1,11 @@ + backend-test:W + +data_0result"Maxtest_max_one_inputZ +data_0 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0e49b0c7e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_one_input/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/model.onnx new file mode 100644 index 0000000000..42e66dc650 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/model.onnx @@ -0,0 +1,16 @@ + backend-test:v + +data_0 +data_1result"Maxtest_max_two_inputsZ +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..928c1dff7b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_two_inputs/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/model.onnx new file mode 100644 index 0000000000..866cd253f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Maxtest_max_uint16Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e0f4892347 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..04f20f0f07 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..59382f5178 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/model.onnx new file mode 100644 index 0000000000..efc5a526f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Maxtest_max_uint32Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3320c87965 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d4f4b39f38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6901d13cb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/model.onnx new file mode 100644 index 0000000000..e3164b9dbc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Maxtest_max_uint64Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7925e46d9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5c4afccbde Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ec8bba3b9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_max_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/model.onnx new file mode 100644 index 0000000000..f80f70d927 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Maxtest_max_uint8Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3cae306a43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +Bdata_0J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3fd882d375 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bdata_1J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c3de218cba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_max_uint8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BresultJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/model.onnx new file mode 100644 index 0000000000..5d764e8d91 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/model.onnx @@ -0,0 +1,14 @@ + backend-test:q +$ +xy"MaxPool* + kernel_shape@ test_maxpool_1d_defaultZ +x + + + + b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..04d0812b47 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BxJ€xÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0d8a86d6e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_1d_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJôxÌá?“Žz?Ëj@Ëj@$ ï?ÿ8s?ÿ8s?hdÓ½ø9Ò>ø9Ò>¢%º?¢%º?^ÓB? Bã> Bã>ü=¿?ü=¿?iJ >iJ >¦Z¿ŒS'?±K]?±K]?©C@©C@Hm;=Hm;=2Ä?2Ä?ó¼?…žÁ>íEc¿‹!²¾ò >*z?*z?•ç™?mÇš¾mÇš¾ü6†¿&õ¿³ù?³ù?FKà¾FKྜ G?œ G?—ØY¾—ØY¾Æ>Æ> Ä¿kÞæ¼QNÛ>QNÛ>™Ýš>™Ýš>6¹¹¾6¹¹¾Z¸¾Z¸¾[*P¿3¯5>;¶Í¾Ìñì>Ìñì>²ÄT=®¥:?®¥:?âב?âב?¹ÿÍ>¹ÿÍ>·O/¿~/¿ÐƒŸ¾¡ f=¡ f=‘œf?‘œf?Okî> ¾?¬ò?¬ò?@â–?7>8¾Fø†?Fø†?yœ?yœ?z?z?ûá4? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/model.onnx new file mode 100644 index 0000000000..ec830d1e60 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/model.onnx @@ -0,0 +1,18 @@ + backend-test:œ +J +xy"MaxPool* + ceil_mode * + kernel_shape@@ * +strides@@ test_maxpool_2d_ceilZ +x + + + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7ef45fc816 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2489db840d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_ceil/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/model.onnx new file mode 100644 index 0000000000..e88e727427 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/model.onnx @@ -0,0 +1,16 @@ + backend-test:{ +& +xy"MaxPool* + kernel_shape@@ test_maxpool_2d_defaultZ +x + + + + + b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c1caa66b96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/model.onnx new file mode 100644 index 0000000000..61d0c30c60 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/model.onnx @@ -0,0 +1,18 @@ + backend-test:£ +L +xy"MaxPool* + dilations@@ * + kernel_shape@@ * +strides@@ test_maxpool_2d_dilationsZ +x + + + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7ef45fc816 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2489db840d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_dilations/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/model.onnx new file mode 100644 index 0000000000..6fe20b5abb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/model.onnx @@ -0,0 +1,17 @@ + backend-test:‹ +9 +xy"MaxPool* + kernel_shape@@ * +pads@@@@ test_maxpool_2d_padsZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5309700dbf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6e472f4a7d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/model.onnx new file mode 100644 index 0000000000..1a4728a2d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/model.onnx @@ -0,0 +1,17 @@ + backend-test:— +9 +xy"MaxPool* + kernel_shape@@ * +pads@@@@  test_maxpool_2d_precomputed_padsZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fd51891613 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/model.onnx new file mode 100644 index 0000000000..c0e5ec3a5d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/model.onnx @@ -0,0 +1,19 @@ + backend-test:· +S +xy"MaxPool* +auto_pad" +SAME_UPPER * + kernel_shape@@ * +strides@@ &test_maxpool_2d_precomputed_same_upperZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5057808eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_same_upper/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/model.onnx new file mode 100644 index 0000000000..1f9dba1ef7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/model.onnx @@ -0,0 +1,17 @@ + backend-test:™ +8 +xy"MaxPool* + kernel_shape@@ * +strides@@ #test_maxpool_2d_precomputed_stridesZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5570ba5b84 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_precomputed_strides/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/model.onnx new file mode 100644 index 0000000000..2cfab8f417 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/model.onnx @@ -0,0 +1,18 @@ + backend-test:™ +A +xy"MaxPool* +auto_pad" +SAME_LOWER * + kernel_shape@@ test_maxpool_2d_same_lowerZ +x + + + + + b +y + + + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de74b2768b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_lower/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/model.onnx new file mode 100644 index 0000000000..ee5e30fc67 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/model.onnx @@ -0,0 +1,18 @@ + backend-test:™ +A +xy"MaxPool* +auto_pad" +SAME_UPPER * + kernel_shape@@ test_maxpool_2d_same_upperZ +x + + + + + b +y + + + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..facc6e7b4a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_same_upper/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/model.onnx new file mode 100644 index 0000000000..286ad1a47b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/model.onnx @@ -0,0 +1,19 @@ + backend-test: +8 +xy"MaxPool* + kernel_shape@@ * +strides@@ test_maxpool_2d_stridesZ +x + + + + + b +y + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3530a84348 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..58204a6d0e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_strides/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/model.onnx new file mode 100644 index 0000000000..a7a1a5eddb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/model.onnx @@ -0,0 +1,17 @@ + backend-test:Œ +9 +xy"MaxPool* + kernel_shape@@ * +pads@@@@ test_maxpool_2d_uint8Z +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..24dc63ef86 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +BxJ +  \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1879dc2918 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_2d_uint8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ  \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/model.onnx new file mode 100644 index 0000000000..4e3596e084 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/model.onnx @@ -0,0 +1,18 @@ + backend-test:… +( +xy"MaxPool* + kernel_shape@@@ test_maxpool_3d_defaultZ +x + + + + + + b +y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1f024e54b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..991fc51ac0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_3d_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/model.onnx new file mode 100644 index 0000000000..82f9379d20 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/model.onnx @@ -0,0 +1,23 @@ + backend-test:à +< +xyz"MaxPool* + kernel_shape@@ * +pads@@@@ ,test_maxpool_with_argmax_2d_precomputed_padsZ +x + + + + +b +y + + + + +b +z + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fd51891613 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..07a2b6f2dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_pads/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/model.onnx new file mode 100644 index 0000000000..27682bcb2f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/model.onnx @@ -0,0 +1,24 @@ + backend-test:Û +Q +xyz"MaxPool* + kernel_shape@@ * + storage_order * +strides@@ /test_maxpool_with_argmax_2d_precomputed_stridesZ +x + + + + +b +y + + + + +b +z + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb22a530a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5570ba5b84 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..e0fe8526af Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxpool_with_argmax_2d_precomputed_strides/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/model.onnx new file mode 100644 index 0000000000..ee44d006b0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/model.onnx @@ -0,0 +1,29 @@ + backend-test:í +M +xT +xI + output_shapey" MaxUnpool* + kernel_shape@@ * +strides@@ 'test_maxunpool_export_with_output_shapeZ +xT + + + + +Z +xI + + + + +Z + output_shape + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2be0ec8959 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e44498d0fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a0a2f9dea2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5d2d8b63a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_with_output_shape/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/model.onnx new file mode 100644 index 0000000000..9635946343 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/model.onnx @@ -0,0 +1,24 @@ + backend-test:Æ +? +xT +xIy" MaxUnpool* + kernel_shape@@ * +strides@@ *test_maxunpool_export_without_output_shapeZ +xT + + + + +Z +xI + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6298c08ea7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e44498d0fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..846f124392 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_maxunpool_export_without_output_shape/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/model.onnx new file mode 100644 index 0000000000..e9a1af9113 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/model.onnx @@ -0,0 +1,21 @@ + backend-test:“ +& +data_0 +data_1 +data_2result"Meantest_mean_exampleZ +data_0 + + +Z +data_1 + + +Z +data_2 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e6c4d118d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..81b00338e8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..23324b0d88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/model.onnx new file mode 100644 index 0000000000..9b467b4119 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/model.onnx @@ -0,0 +1,11 @@ + backend-test:Y + +data_0result"Meantest_mean_one_inputZ +data_0 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf4d7ffcfd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_one_input/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/model.onnx new file mode 100644 index 0000000000..d9f2c5a8d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/model.onnx @@ -0,0 +1,16 @@ + backend-test:x + +data_0 +data_1result"Meantest_mean_two_inputsZ +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e6c4d118d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7ad6136e69 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mean_two_inputs/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_example/model.onnx new file mode 100644 index 0000000000..04b6c80f59 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_example/model.onnx @@ -0,0 +1,21 @@ + backend-test:‘ +% +data_0 +data_1 +data_2result"Mintest_min_exampleZ +data_0 + + +Z +data_1 + + +Z +data_2 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..da03dc8ce1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fe406eee51 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/model.onnx new file mode 100644 index 0000000000..34db144c8a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/model.onnx @@ -0,0 +1,19 @@ + backend-test:s + +data_0 +data_1result"Mintest_min_float16Z +data_0 + + + +Z +data_1 + + + +b +result + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..560f20f37a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0ebf1b0043 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f0e54246bf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/model.onnx new file mode 100644 index 0000000000..2d997033c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/model.onnx @@ -0,0 +1,16 @@ + backend-test:s + +data_0 +data_1result"Mintest_min_float32Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3df9a38731 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/model.onnx new file mode 100644 index 0000000000..08db1c5ff4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/model.onnx @@ -0,0 +1,16 @@ + backend-test:s + +data_0 +data_1result"Mintest_min_float64Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fffda54821 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3bc1918608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..98fc1974a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_float64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/model.onnx new file mode 100644 index 0000000000..504aa52504 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Mintest_min_int16Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f4d1329514 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d800761087 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f0d23fb9d0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/model.onnx new file mode 100644 index 0000000000..f97ce48cf6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Mintest_min_int32Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..136f93fa62 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d0c6f07990 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e9ae1d8455 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/model.onnx new file mode 100644 index 0000000000..502e33a77f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Mintest_min_int64Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..09588d06e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c5db1a476e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..875ced6bc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_int64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/model.onnx new file mode 100644 index 0000000000..8a4158884d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/model.onnx @@ -0,0 +1,16 @@ + backend-test:p + +data_0 +data_1result"Min test_min_int8Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33768d3cb8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +Bdata_0J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..26608b19b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bdata_1J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..56666abe8e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_int8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BresultJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/model.onnx new file mode 100644 index 0000000000..7e2eb72317 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/model.onnx @@ -0,0 +1,11 @@ + backend-test:W + +data_0result"Mintest_min_one_inputZ +data_0 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0e49b0c7e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_one_input/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/model.onnx new file mode 100644 index 0000000000..f7f7d0ec21 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/model.onnx @@ -0,0 +1,16 @@ + backend-test:v + +data_0 +data_1result"Mintest_min_two_inputsZ +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6b1c568f05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e411be9680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3df9a38731 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_two_inputs/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/model.onnx new file mode 100644 index 0000000000..b525b4c24e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Mintest_min_uint16Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e0f4892347 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..04f20f0f07 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..df02e202d0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/model.onnx new file mode 100644 index 0000000000..6c2d76dd87 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Mintest_min_uint32Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3320c87965 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d4f4b39f38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..65fd206698 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/model.onnx new file mode 100644 index 0000000000..1c7e143e40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/model.onnx @@ -0,0 +1,16 @@ + backend-test:r + +data_0 +data_1result"Mintest_min_uint64Z +data_0 + +  +Z +data_1 + +  +b +result + +  +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7925e46d9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5c4afccbde Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dd299620cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_min_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/model.onnx new file mode 100644 index 0000000000..a23f02e631 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/model.onnx @@ -0,0 +1,16 @@ + backend-test:q + +data_0 +data_1result"Mintest_min_uint8Z +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3cae306a43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +Bdata_0J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3fd882d375 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bdata_1J \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..df3ec96c3a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_min_uint8/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BresultJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/model.onnx new file mode 100644 index 0000000000..5cf0aa3b3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:g + +x +yz"Modtest_mod_broadcastZ +x + + + +Z +y + + +b +z + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..63db997f26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e299f92de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4a2cb529c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_broadcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/model.onnx new file mode 100644 index 0000000000..15a1e3f9d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/model.onnx @@ -0,0 +1,17 @@ + backend-test:e + +x +yz"Mod* +fmod test_mod_int64_fmodZ +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c7887f4d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..eb8b6e0179 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6299985a6f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_int64_fmod/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/model.onnx new file mode 100644 index 0000000000..03fa86146b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/model.onnx @@ -0,0 +1,20 @@ + backend-test:m + +x +yz"Mod* +fmod test_mod_mixed_sign_float16Z +x + + + +Z +y + + + +b +z + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..00344a5915 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0a417c09ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf93e49d21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/model.onnx new file mode 100644 index 0000000000..1e61f440bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/model.onnx @@ -0,0 +1,17 @@ + backend-test:m + +x +yz"Mod* +fmod test_mod_mixed_sign_float32Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..327456fb22 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c701f04255 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d6c064b680 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/model.onnx new file mode 100644 index 0000000000..2b392f270e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/model.onnx @@ -0,0 +1,17 @@ + backend-test:m + +x +yz"Mod* +fmod test_mod_mixed_sign_float64Z +x + +  +Z +y + +  +b +z + +  +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6381f6fded Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..59f28eae90 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..94c868a9a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_float64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/model.onnx new file mode 100644 index 0000000000..3bc75b0b40 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/model.onnx @@ -0,0 +1,16 @@ + backend-test:^ + +x +yz"Modtest_mod_mixed_sign_int16Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..824d736c7b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f0f16f4367 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80ac5b12d2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/model.onnx new file mode 100644 index 0000000000..098d80ef8d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:^ + +x +yz"Modtest_mod_mixed_sign_int32Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..646a577416 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5a7f95b4a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b2f250e3b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/model.onnx new file mode 100644 index 0000000000..cbe057864c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/model.onnx @@ -0,0 +1,16 @@ + backend-test:^ + +x +yz"Modtest_mod_mixed_sign_int64Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7c7887f4d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..eb8b6e0179 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..99c107e718 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/model.onnx new file mode 100644 index 0000000000..d15d9b1e43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/model.onnx @@ -0,0 +1,16 @@ + backend-test:] + +x +yz"Modtest_mod_mixed_sign_int8Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..06afc2e221 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJüù \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8db8016191 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJýþ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..129a893b22 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_mixed_sign_int8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/model.onnx new file mode 100644 index 0000000000..87a2fac04d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/model.onnx @@ -0,0 +1,16 @@ + backend-test:T + +x +yz"Modtest_mod_uint16Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ebeefafac9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1aacd1c70a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2397054539 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint16/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/model.onnx new file mode 100644 index 0000000000..df074b48f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/model.onnx @@ -0,0 +1,16 @@ + backend-test:T + +x +yz"Modtest_mod_uint32Z +x + +  +Z +y + +  +b +z + +  +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d04eb642d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ecd08b25b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f1e7b2d2d9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/model.onnx new file mode 100644 index 0000000000..9125564bef --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/model.onnx @@ -0,0 +1,16 @@ + backend-test:T + +x +yz"Modtest_mod_uint64Z +x + +  +Z +y + +  +b +z + +  +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4333af7002 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..39e586b6bb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..000841faf3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/model.onnx new file mode 100644 index 0000000000..ef6a32dffb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/model.onnx @@ -0,0 +1,16 @@ + backend-test:S + +x +yz"Modtest_mod_uint8Z +x + + +Z +y + + +b +z + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5f1674888c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a963b731e3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3df8e11e5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mod_uint8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_momentum/model.onnx new file mode 100644 index 0000000000..674a5faec9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_momentum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..15244fd4b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BXJš™™?333@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..439d577ffb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e3f3aa94fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BVJš™Ù?fff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cb0f2fd61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX_newJÔñ?IK-@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2602dc11a4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_momentum/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BV_newJr-?œ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2c2b54e461 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +BzJð8×—¿³T¾L½K¿”wÀ.§©>¢ É>&@Æ¿ús½ºË¿=ˆ¹®<&×= @>ü]?xÚ¾æÞ6>Öüi¾yˆ¦¿=6ó=ÁǽÌ|D½`>@e»?!Î>Qð‘?ž0X@Þw0À[ï\=ó =½Ò¿°QÆ?Õá½X°ì>[W=¾tž÷¿nëý½$?â=W¦Sÿ<á>MSÀ—~÷;Ãû¯>£ +=¾ @½´oǾƒF«¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/model.onnx new file mode 100644 index 0000000000..00d063f195 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:c + +x +yz"Multest_mul_bcastZ +x + + + +Z +y + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..966fee747d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_bcast/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BzJð8×—¿³T¾L½K¿”wÀ.§©>ÿ<(?'箾 ü=v6>Ü2•=l`ƽÜ¿øk¿(W¾9I¡=šÄe¾ÿ… ¿ÔÓ*>~Z +¿-¾™¿Û? ¦p¾ò3¿ìý£?0Î>o^z?¤Ç†¼aÜ>;X)ÀÒz…>¹dÕ½™; ¾kÎ8?°×Z@?×|½ÚR×½W|â¾@Kz¿³++?Ú±[½‚4?Ø´?à—±?—†WÀ1¹½1Ô–>í æ>½Ø!¿ŠN2@9›½Š'?bs¾ù©Ô>Op@BÙ£»}y“¾|ìüWÛ{¾—)Œ?σ½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/model.onnx new file mode 100644 index 0000000000..8f8bed98b2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:U + +x +yz"Multest_mul_exampleZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a760307aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..132af70732 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/model.onnx new file mode 100644 index 0000000000..18b56b25b8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/model.onnx @@ -0,0 +1,19 @@ + backend-test:k + +x +yz"Multest_mul_uint8Z +x + + + +Z +y + + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..29de599c0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..42005d5176 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5091df3d19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mul_uint8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mvn/model.onnx new file mode 100644 index 0000000000..54494cb760 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mvn/model.onnx @@ -0,0 +1,15 @@ + backend-test:g +! +XY"MeanVarianceNormalizationtest_mvnZ +X + + + + +b +Y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb4a0b06b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +BXJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8725733af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mvn/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJlëd­?á;©>:ÅÅ¿r÷š¿d¿ú™>DüÂ>6nQ?çÐ[?:“¿#rc½vyH¿E3U?>  ¿¼·,?ÿUD?§Pi?à»Ò¿ñ¤o¾²úÍ?ÛÛ>Ö2¥?¦Ï—?úðm¿­º“=msþÛÔã¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/model.onnx new file mode 100644 index 0000000000..88223e3294 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb4a0b06b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +BXJlNX??šo=¦èî<Á>‚Š?9žK?2îp?ldt?š5>ç€ì>t”‡>¸,?øjˆ<[î?Ìl?Uäx?¹õ=W¾Ó>B¶i?â?š½Q?]HI?î¨ñ=©F1?³‹ +?íÞ™= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8725733af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_mvn_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJlëd­?á;©>:ÅÅ¿r÷š¿d¿ú™>DüÂ>6nQ?çÐ[?:“¿#rc½vyH¿E3U?>  ¿¼·,?ÿUD?§Pi?à»Ò¿ñ¤o¾²úÍ?ÛÛ>Ö2¥?¦Ï—?úðm¿­º“=msþÛÔã¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_neg/model.onnx new file mode 100644 index 0000000000..26bf4ade72 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_neg/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Negtest_negZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7eddb27583 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_neg/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá¿há̾“Žz¿ËjÀ$ ï¿â.z?ÿ8s¿bý>hdÓ=ø9Ò¾(€¾¢%º¿^ÓB¿À0ù½ Bã¾]ת¾ü=¿¿R>iJ ¾¦Z?/d#@ŒS'¿±K]¿‡þ=?©CÀ¨(º?Hm;½ ­?>2Ŀ󼿊ª¾…žÁ¾íEc?½Šý?‹!²>ò ¾*z¿•癿³OÆ>mÇš>ü6†?&õ?gÚ?³ù¿‘x?FKà>™[ ?œ G¿4”Î?—ØY>L=e?ƾ Ä?õ—?kÞæ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/model.onnx new file mode 100644 index 0000000000..e65786e29b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Negtest_neg_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a24b07662f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1232f9a9e8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_neg_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/model.onnx new file mode 100644 index 0000000000..defcd311e1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d0483cc61f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BRJÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..54656de61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..15244fd4b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BXJš™™?333@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..439d577ffb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e3f3aa94fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BVJš™Ù?fff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..96bad14b32 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BX_newJÞ?ÈA=@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..ae87a60ae6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nesterov_momentum/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BV_newJ<ß/? °r? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/model.onnx new file mode 100644 index 0000000000..01157daefa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/model.onnx @@ -0,0 +1,17 @@ + backend-test:œ +F +input +targetloss"NegativeLogLikelihoodLoss* + reduction"none test_nllloss_NCZ +input +  + +Z +target + + +b +loss + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16567c3280 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..61a5b90534 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..390025f316 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ ¦7¿rRľçól¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/model.onnx new file mode 100644 index 0000000000..e672a8bd4b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16567c3280 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..61a5b90534 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..390025f316 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NC_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ ¦7¿rRľçól¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/model.onnx new file mode 100644 index 0000000000..4f6137dafc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8f1eef3454 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab2f5e6a24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ»¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/model.onnx new file mode 100644 index 0000000000..719ace1063 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8f1eef3454 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab2f5e6a24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ»¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/model.onnx new file mode 100644 index 0000000000..1da310f0db Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0025f55b9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..99215cae6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ"Ð ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/model.onnx new file mode 100644 index 0000000000..12715a249b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0025f55b9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..99215cae6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ"Ð ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/model.onnx new file mode 100644 index 0000000000..52c2f55b1c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ecdd53bbb3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..936a645875 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ef7d70be39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ba805e464b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJI¤â¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/model.onnx new file mode 100644 index 0000000000..4df302ec2d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ecdd53bbb3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..936a645875 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ef7d70be39 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ba805e464b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJI¤â¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/model.onnx new file mode 100644 index 0000000000..7d16e9f2a2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8f1eef3454 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..64acbc99b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJí™<\?N²?cï?y™q? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a6fd092576 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ럿 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/model.onnx new file mode 100644 index 0000000000..863856b13c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8f1eef3454 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..64acbc99b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJí™<\?N²?cï?y™q? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a6fd092576 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJ럿 \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/model.onnx new file mode 100644 index 0000000000..d405d7db06 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0025f55b9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..64acbc99b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJí™<\?N²?cï?y™q? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..79596bce57 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJz( ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/model.onnx new file mode 100644 index 0000000000..3a91a65407 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..91bd67770f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..0025f55b9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..64acbc99b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJí™<\?N²?cï?y™q? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..79596bce57 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1_weight_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJz( ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/model.onnx new file mode 100644 index 0000000000..d75415b337 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/model.onnx @@ -0,0 +1,21 @@ + backend-test:¸ +F +input +targetloss"NegativeLogLikelihoodLoss* + reduction"none test_nllloss_NCd1d2Z +input + + + + +Z +target + + + +b +loss + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c16e700ed7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/model.onnx new file mode 100644 index 0000000000..294fedf459 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c16e700ed7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/model.onnx new file mode 100644 index 0000000000..208c38971d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1af101da92 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJƒ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/model.onnx new file mode 100644 index 0000000000..e3d7ca53c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1af101da92 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_no_weight_reduction_mean_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJƒ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/model.onnx new file mode 100644 index 0000000000..78407a9561 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0fd331f836 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJx ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/model.onnx new file mode 100644 index 0000000000..ec9cfb12de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0fd331f836 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_mean_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJx ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/model.onnx new file mode 100644 index 0000000000..aabd4ce6eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e2e31eb343 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJZk \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/model.onnx new file mode 100644 index 0000000000..ae39a14c90 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e2e31eb343 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_reduction_sum_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJZk \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/model.onnx new file mode 100644 index 0000000000..edad33f00f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/model.onnx @@ -0,0 +1,26 @@ + backend-test:â +N +input +target +weightloss"NegativeLogLikelihoodLoss* + reduction"none test_nllloss_NCd1d2_with_weightZ +input + + + + +Z +target + + + +Z +weight + + +b +loss + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49a0351073 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/model.onnx new file mode 100644 index 0000000000..7ccb4bb883 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..49a0351073 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/model.onnx new file mode 100644 index 0000000000..6a5320b09b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..20aaf18c83 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BlossJN© +¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/model.onnx new file mode 100644 index 0000000000..961900b165 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..20aaf18c83 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_mean_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BlossJN© +¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/model.onnx new file mode 100644 index 0000000000..f5dc9a1af6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2bfdf2658 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJÏ0  \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/model.onnx new file mode 100644 index 0000000000..e32aac19a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7a4d9cddb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2bfdf2658 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJÏ0  \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/model.onnx new file mode 100644 index 0000000000..227b2f66b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b16c52b5b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d97cebfae6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJbÚ¿Á \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/model.onnx new file mode 100644 index 0000000000..47e43070ba Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1a71820b36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b16c52b5b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6d74ae4374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJúY?`¼o?×p?ÎW=K¡? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d97cebfae6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2_with_weight_reduction_sum_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJbÚ¿Á \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/model.onnx new file mode 100644 index 0000000000..6deb40d831 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/model.onnx @@ -0,0 +1,25 @@ + backend-test:ÿ +d +input +targetloss"NegativeLogLikelihoodLoss* + ignore_indexûÿÿÿÿÿÿÿÿ * + reduction"none 0test_nllloss_NCd1d2d3_none_no_weight_negative_iiZ# +input + + + + + +Z +target + + + + +b +loss + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4563573203 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..93aec7eda2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b60da8532c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx new file mode 100644 index 0000000000..284d0cb503 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4563573203 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..93aec7eda2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b60da8532c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/model.onnx new file mode 100644 index 0000000000..0d076cff7f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16567c3280 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbae584764 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6b2ee34cc8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BweightJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..810d9d387c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJШ|¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx new file mode 100644 index 0000000000..443b922688 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16567c3280 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BinputJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbae584764 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..6b2ee34cc8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BweightJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..810d9d387c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJШ|¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/model.onnx new file mode 100644 index 0000000000..114b63bd6a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b5b9d5aedb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ea11374d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9bcb44d188 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJ³ ‰=µà?Ë@?£oÊ>id> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d7af6c1508 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJËpý¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/model.onnx new file mode 100644 index 0000000000..e454fb6070 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b5b9d5aedb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ea11374d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9bcb44d188 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BweightJ³ ‰=µà?Ë@?£oÊ>id> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d7af6c1508 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BlossJËpý¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/model.onnx new file mode 100644 index 0000000000..0b2373cd6e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/model.onnx @@ -0,0 +1,30 @@ + backend-test:ñ +F +input +targetloss"NegativeLogLikelihoodLoss* + reduction"none (test_nllloss_NCd1d2d3d4d5_none_no_weightZ+ +input" +  + + + + + + +Z( +target + + + + + + +b& +loss + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b5b9d5aedb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ea11374d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..503a1db448 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx new file mode 100644 index 0000000000..19c2728fbe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b5b9d5aedb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ea11374d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..503a1db448 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nllloss_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/model.onnx new file mode 100644 index 0000000000..5bb45257a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/model.onnx @@ -0,0 +1,34 @@ + backend-test: +‰ +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression* +center_point_box .test_nonmaxsuppression_center_point_box_formatZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d82b5c12ea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f22f0f9d66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7744c3fc42 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_center_point_box_format/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/model.onnx new file mode 100644 index 0000000000..5aa922db49 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/model.onnx @@ -0,0 +1,33 @@ + backend-test:ã +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression*test_nonmaxsuppression_flipped_coordinatesZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a0d291bc9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f22f0f9d66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7744c3fc42 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_flipped_coordinates/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/model.onnx new file mode 100644 index 0000000000..e88b531323 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/model.onnx @@ -0,0 +1,35 @@ + backend-test:ß +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression&test_nonmaxsuppression_identical_boxesZ +boxes + + + + +Z +scores + + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8e00a9ee3e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dee3a2dd7f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +BscoresJ(fff?fff?fff?fff?fff?fff?fff?fff?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c5ef6adf9d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_identical_boxes/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/model.onnx new file mode 100644 index 0000000000..5998994cc7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/model.onnx @@ -0,0 +1,33 @@ + backend-test:á +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression(test_nonmaxsuppression_limit_output_sizeZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aae6e114b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f22f0f9d66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b66f8f25ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d188a28a6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_limit_output_size/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/model.onnx new file mode 100644 index 0000000000..eb28b883da --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/model.onnx @@ -0,0 +1,33 @@ + backend-test:Ú +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression!test_nonmaxsuppression_single_boxZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..485de5df73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..869fd92afa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BscoresJfff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c5ef6adf9d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_single_box/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/model.onnx new file mode 100644 index 0000000000..94bd91c839 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/model.onnx @@ -0,0 +1,33 @@ + backend-test:ß +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression&test_nonmaxsuppression_suppress_by_IOUZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aae6e114b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f22f0f9d66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7744c3fc42 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/model.onnx new file mode 100644 index 0000000000..5da2305f1f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/model.onnx @@ -0,0 +1,33 @@ + backend-test:ê +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression1test_nonmaxsuppression_suppress_by_IOU_and_scoresZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aae6e114b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f22f0f9d66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0120421f27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..d4d71e25bb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +Bscore_thresholdJÍÌÌ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d188a28a6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_suppress_by_IOU_and_scores/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/model.onnx new file mode 100644 index 0000000000..1e042f9847 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/model.onnx @@ -0,0 +1,33 @@ + backend-test:Û +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression"test_nonmaxsuppression_two_batchesZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..94fcdf5c0a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5835690d41 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b66f8f25ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dab25d5f43 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_batches/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/model.onnx new file mode 100644 index 0000000000..c48857bc12 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/model.onnx @@ -0,0 +1,33 @@ + backend-test:Û +p +boxes +scores +max_output_boxes_per_class + iou_threshold +score_thresholdselected_indices"NonMaxSuppression"test_nonmaxsuppression_two_classesZ +boxes + + + +Z +scores + + + +Z( +max_output_boxes_per_class + + +Z + iou_threshold + + +Z +score_threshold + + +b" +selected_indices +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aae6e114b5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2764bfae0c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b66f8f25ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..b9ce4bd076 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e9d05f83c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f66c0f95fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonmaxsuppression_two_classes/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/model.onnx new file mode 100644 index 0000000000..9cdd446387 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:k + + conditionresult"NonZerotest_nonzero_exampleZ + condition +   + +b +result +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..deccba9827 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c3c3c460c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_nonzero_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/model.onnx new file mode 100644 index 0000000000..ff72c264d2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/model.onnx @@ -0,0 +1,11 @@ + backend-test:H + +xnot"Not test_not_2dZ +x +   + +b +not +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d9541774b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0ca32c63e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/model.onnx new file mode 100644 index 0000000000..166007f42a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/model.onnx @@ -0,0 +1,13 @@ + backend-test:P + +xnot"Not test_not_3dZ +x +  + + +b +not +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..55314312cf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..684f874e01 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/model.onnx new file mode 100644 index 0000000000..dd23efe0aa --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/model.onnx @@ -0,0 +1,15 @@ + backend-test:X + +xnot"Not test_not_4dZ +x +  + + + +b +not +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..482239dd0d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f663b0f120 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_not_4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/model.onnx new file mode 100644 index 0000000000..cb07971ea7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/model.onnx @@ -0,0 +1,23 @@ + backend-test:§ +0 +indices +depth +valuesy"OneHot* +axis test_onehot_negative_indicesZ +indices + + +Z +depth + + +Z +values + + +b +y +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..71291b6dea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf79c28c38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..db6d62a7d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5b52b455c2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_negative_indices/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/model.onnx new file mode 100644 index 0000000000..101ca2503a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/model.onnx @@ -0,0 +1,24 @@ + backend-test:¨ +0 +indices +depth +valuesy"OneHot* +axis test_onehot_with_axisZ +indices +  + +Z +depth + + +Z +values + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..446e8a98ee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf79c28c38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..db6d62a7d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..12db9396b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/model.onnx new file mode 100644 index 0000000000..23cd5a5999 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/model.onnx @@ -0,0 +1,24 @@ + backend-test:º +9 +indices +depth +valuesy"OneHot* +axisþÿÿÿÿÿÿÿÿ test_onehot_with_negative_axisZ +indices +  + +Z +depth + + +Z +values + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..446e8a98ee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf79c28c38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..db6d62a7d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..12db9396b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_with_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/model.onnx new file mode 100644 index 0000000000..c6facf0949 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e27319bdaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..434a8bac9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..3501035f55 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..063234c0ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_onehot_without_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/model.onnx new file mode 100644 index 0000000000..eeb3bb89dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/model.onnx @@ -0,0 +1,12 @@ + backend-test: +, +optional_inputoutput"OptionalGetElementtest_optional_get_elementZ +optional_inputJ + + + +b +output + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f8f5e54fd1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be680bf495 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/model.onnx new file mode 100644 index 0000000000..0468db1b13 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/model.onnx @@ -0,0 +1,14 @@ + backend-test:’ +, +optional_inputoutput"OptionalGetElement"test_optional_get_element_sequenceZ$ +optional_inputJ +" + + + +b +output" + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b8e0b61f76 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3475414cfa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_get_element_sequence/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/model.onnx new file mode 100644 index 0000000000..7f0c4aa6a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f8f5e54fd1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..629c2d212e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + BoutputJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/model.onnx new file mode 100644 index 0000000000..c4528e05f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d9a1909a1c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..730a379973 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_optional_has_element_empty/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or2d/model.onnx new file mode 100644 index 0000000000..d6a73ec438 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or2d/model.onnx @@ -0,0 +1,16 @@ + backend-test:[ + +x +yor"Or test_or2dZ +x +   + +Z +y +   + +b +or +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d9541774b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f37772a3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d18524377f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or3d/model.onnx new file mode 100644 index 0000000000..aa58c2a532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or3d/model.onnx @@ -0,0 +1,19 @@ + backend-test:g + +x +yor"Or test_or3dZ +x +  + + +Z +y +  + + +b +or +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..402cb458fe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..825b4f452a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a15fa6c04f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or4d/model.onnx new file mode 100644 index 0000000000..5ee052d4a7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or4d/model.onnx @@ -0,0 +1,22 @@ + backend-test:s + +x +yor"Or test_or4dZ +x +  + + + +Z +y +  + + + +b +or +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3c2fb94d85 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..925bab6960 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d31d551250 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/model.onnx new file mode 100644 index 0000000000..d1ddad4101 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/model.onnx @@ -0,0 +1,18 @@ + backend-test:g + +x +yor"Ortest_or_bcast3v1dZ +x +  + + +Z +y + +  +b +or +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5cc32fe100 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1500686f96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..309a335503 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/model.onnx new file mode 100644 index 0000000000..64ef93b653 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/model.onnx @@ -0,0 +1,18 @@ + backend-test:k + +x +yor"Ortest_or_bcast3v2dZ +x +  + + +Z +y +   + +b +or +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d784193ad4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8bab0d309c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2721aa9a6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast3v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/model.onnx new file mode 100644 index 0000000000..453376af59 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/model.onnx @@ -0,0 +1,20 @@ + backend-test:s + +x +yor"Ortest_or_bcast4v2dZ +x +  + + + +Z +y +   + +b +or +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..22944e3243 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d7cba2c1a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1b8a57df6f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/model.onnx new file mode 100644 index 0000000000..e1302e7e54 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/model.onnx @@ -0,0 +1,21 @@ + backend-test:w + +x +yor"Ortest_or_bcast4v3dZ +x +  + + + +Z +y +  + + +b +or +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..70f33b925d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7e83c141eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e9785a10c9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/model.onnx new file mode 100644 index 0000000000..877dd603ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/model.onnx @@ -0,0 +1,22 @@ + backend-test:{ + +x +yor"Ortest_or_bcast4v4dZ +x +  + + + +Z +y +  + + + +b +or +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..024a3481cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8e18502fa2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc779441ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_or_bcast4v4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow/model.onnx new file mode 100644 index 0000000000..b79fad4015 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow/model.onnx @@ -0,0 +1,19 @@ + backend-test:e + +x +yz"Powtest_powZ +x + + + +Z +y + + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..24e36372b7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..68db533213 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/model.onnx new file mode 100644 index 0000000000..0edfc2fb0e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/model.onnx @@ -0,0 +1,16 @@ + backend-test:a + +x +yz"Powtest_pow_bcast_arrayZ +x +  + +Z +y + + +b +z +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9a18aeeb9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b32d5d742 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..33eb805908 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_array/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/model.onnx new file mode 100644 index 0000000000..bea5d68cad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..edee9f4fbd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad82105045 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_bcast_scalar/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/model.onnx new file mode 100644 index 0000000000..a4aa9a398b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:U + +x +yz"Powtest_pow_exampleZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a760307aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/model.onnx new file mode 100644 index 0000000000..c0fd50393c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/model.onnx @@ -0,0 +1,16 @@ + backend-test:Y + +x +yz"Powtest_pow_types_floatZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d91963f15c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a760307aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c77d2103a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/model.onnx new file mode 100644 index 0000000000..fd29f330a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:a + +x +yz"Powtest_pow_types_float32_int32Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..194c2ad3ae Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/model.onnx new file mode 100644 index 0000000000..9fe81897e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/model.onnx @@ -0,0 +1,16 @@ + backend-test:a + +x +yz"Powtest_pow_types_float32_int64Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2a77616549 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_int64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/model.onnx new file mode 100644 index 0000000000..110e4dc2fc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/model.onnx @@ -0,0 +1,16 @@ + backend-test:b + +x +yz"Powtest_pow_types_float32_uint32Z +x + + +Z +y + +  +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7918aa428c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/model.onnx new file mode 100644 index 0000000000..46cdbc7e25 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/model.onnx @@ -0,0 +1,16 @@ + backend-test:b + +x +yz"Powtest_pow_types_float32_uint64Z +x + + +Z +y + +  +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..015d9afbac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_float32_uint64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/model.onnx new file mode 100644 index 0000000000..2e62ba5ad4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/model.onnx @@ -0,0 +1,16 @@ + backend-test:W + +x +yz"Powtest_pow_types_intZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2a77616549 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cc39708ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/model.onnx new file mode 100644 index 0000000000..bc90f825a4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/model.onnx @@ -0,0 +1,16 @@ + backend-test:a + +x +yz"Powtest_pow_types_int32_float32Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb7ca3491e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a760307aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..67fd11d871 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/model.onnx new file mode 100644 index 0000000000..ee0ccee1ac --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/model.onnx @@ -0,0 +1,16 @@ + backend-test:_ + +x +yz"Powtest_pow_types_int32_int32Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb7ca3491e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..194c2ad3ae Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..67fd11d871 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int32_int32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/model.onnx new file mode 100644 index 0000000000..3aa62ec7f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/model.onnx @@ -0,0 +1,16 @@ + backend-test:a + +x +yz"Powtest_pow_types_int64_float32Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d91963f15c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a760307aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c77d2103a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_float32/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/model.onnx new file mode 100644 index 0000000000..6f95347f43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/model.onnx @@ -0,0 +1,16 @@ + backend-test:_ + +x +yz"Powtest_pow_types_int64_int64Z +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d91963f15c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2a77616549 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c77d2103a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_pow_types_int64_int64/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/model.onnx new file mode 100644 index 0000000000..6ae7c14afc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:s + +x +slopey"PRelutest_prelu_broadcastZ +x + + + +Z +slope + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..9ba86eef97 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BslopeJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cfbf6fc677 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_broadcast/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?ÿ<(?ÿ8s? ü=v6>ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?ÔÓ*>iJ >-¾™¿Û?ŒS'?±K]?ìý£?©C@o^z?Hm;=aÜ>2Ä?ó¼?Šª>…žÁ>kÎ8?°×Z@?×|½ò >*z?•ç™?³++?Ú±[½‚4?Ø´?à—±?³ù?1¹½1Ô–>í æ>œ G?ŠN2@9›½Š'?Æ>ù©Ô>Op@BÙ£»QNÛ>.:ˆ=™Ýš>—)Œ?σ½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/model.onnx new file mode 100644 index 0000000000..6c0fda53f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/model.onnx @@ -0,0 +1,19 @@ + backend-test:y + +x +slopey"PRelutest_prelu_exampleZ +x + + + +Z +slope + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8e8f7df3b3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BslopeJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c8a3558427 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_prelu_example/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?¢ É>ÿ8s?ús½ºË¿=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?=6ó=iJ >Ì|D½`>@ŒS'?±K]?Qð‘?©C@Þw0ÀHm;=ó =2Ä?ó¼?Šª>…žÁ>[W=¾tž÷¿nëý½ò >*z?•ç™?GXI½Éàø½%¿ü¿Æøô?½ +@³ù?ü?¨øY¿q§?œ G?¡žFÀC¡¾ Ö¿Æ>ÿ<á>MSÀ—~÷;QNÛ>.:ˆ=™Ýš>´oǾƒF«¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/model.onnx new file mode 100644 index 0000000000..bb712786ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8e5c824a88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a0312d3ed9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bx_scaleJEöq; \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..19abda9569 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B x_zero_pointJ„ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..8f7a61c8d4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f4956fc974 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +Bw_scaleJ=|â: \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..4af6cdbaa1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_5.pb @@ -0,0 +1 @@ +B w_zero_pointJÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..b12e3ad27a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_6.pb @@ -0,0 +1 @@ +By_scaleJÆ:Õ: \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..dd078c627a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/input_7.pb @@ -0,0 +1 @@ +B y_zero_pointJ{ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e5199790d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearconv/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/model.onnx new file mode 100644 index 0000000000..61abcb4abc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/model.onnx @@ -0,0 +1,46 @@ + backend-test:Î +] +a +a_scale + a_zero_point +b +b_scale + b_zero_point +y_scale + y_zero_pointy" QLinearMatMultest_qlinearmatmul_2DZ +a +  + +Z +a_scale + + +Z + a_zero_point + + +Z +b +  + +Z +b_scale + + +Z + b_zero_point + + +Z +y_scale + + +Z + y_zero_point + + +b +y +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb9265d86e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53c894041c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Ba_scaleJÐDØ; \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9cc71b9575 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B a_zero_pointJq \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..ea04e209a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e5f59fb92a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +Bb_scaleJ°ç; \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..db93763b2d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_5.pb @@ -0,0 +1 @@ +B b_zero_pointJr \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..3128ded3d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_6.pb @@ -0,0 +1 @@ +By_scaleJO/< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..521faf834e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/input_7.pb @@ -0,0 +1 @@ +B y_zero_pointJv \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..91b23e0abe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_2D/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ¨sÿB— \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/model.onnx new file mode 100644 index 0000000000..7681e9163c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/model.onnx @@ -0,0 +1,49 @@ + backend-test:Ú +] +a +a_scale + a_zero_point +b +b_scale + b_zero_point +y_scale + y_zero_pointy" QLinearMatMultest_qlinearmatmul_3DZ +a + + + +Z +a_scale + + +Z + a_zero_point + + +Z +b + + + +Z +b_scale + + +Z + b_zero_point + + +Z +y_scale + + +Z + y_zero_point + + +b +y + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6e19bf745c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53c894041c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Ba_scaleJÐDØ; \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9cc71b9575 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B a_zero_pointJq \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..4ff4f2ea7b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..e5f59fb92a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +Bb_scaleJ°ç; \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_5.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_5.pb new file mode 100644 index 0000000000..db93763b2d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_5.pb @@ -0,0 +1 @@ +B b_zero_pointJr \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_6.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_6.pb new file mode 100644 index 0000000000..3128ded3d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_6.pb @@ -0,0 +1 @@ +By_scaleJO/< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_7.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_7.pb new file mode 100644 index 0000000000..521faf834e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/input_7.pb @@ -0,0 +1 @@ +B y_zero_pointJv \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e69395115e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_qlinearmatmul_3D/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ ¨sÿB—¨sÿB— \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/model.onnx new file mode 100644 index 0000000000..ae6d821005 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c1a28ac2dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c2965adb8f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2119acc778 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B y_zero_pointJ€ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5703f727f4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/model.onnx new file mode 100644 index 0000000000..318351585b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/model.onnx @@ -0,0 +1,25 @@ + backend-test:¶ +- +x +y_scale + y_zero_pointy"QuantizeLineartest_quantizelinear_axisZ +x + + + + +Z +y_scale + + +Z + y_zero_point + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a72a063a19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..52db106c80 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..063961847b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +B y_zero_pointJTÄ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..36b3f93883 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_quantizelinear_axis/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJY"ÈJ;W õcŽyf \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/model.onnx new file mode 100644 index 0000000000..cbcb35daae Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d12d9e06c3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fc750f08e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..bf19463f26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26e23a8555 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/model.onnx new file mode 100644 index 0000000000..0f26bf349d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d12d9e06c3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fc750f08e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..bf19463f26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26e23a8555 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_float_type_positive_delta_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/model.onnx new file mode 100644 index 0000000000..dbdcc85157 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5709b8713f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e269978d9d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..07ccefab4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BdeltaJýÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..23aa3933ee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/model.onnx new file mode 100644 index 0000000000..9a31da0668 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5709b8713f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e269978d9d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..07ccefab4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BdeltaJýÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..23aa3933ee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_range_int32_type_negative_delta_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/model.onnx new file mode 100644 index 0000000000..437d25f00f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/model.onnx @@ -0,0 +1,14 @@ + backend-test:W + +xy" +Reciprocaltest_reciprocalZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..851a5f8734 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJð†?†?S‹›?Z'?¼¾…?¤tl?¨¬’?·p?ž%²?MY»?9)b??W¥?Ô²ƒ?¯µˆ?ôy¶?k/?N?-?J“ª?¤š£?\¯?^C½?ÔJ¦?ƒ#v?bè£?? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de5edfb561 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/model.onnx new file mode 100644 index 0000000000..93c665b457 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/model.onnx @@ -0,0 +1,12 @@ + backend-test:O + +xy" +Reciprocaltest_reciprocal_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a24b07662f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9884413339 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reciprocal_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..0f31aab1fc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:• +* +datareduced"ReduceL1* +keepdims ,test_reduce_l1_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..72345560f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..9682ec82f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:” +* +datareduced"ReduceL1* +keepdims +test_reduce_l1_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5c62600eab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJþB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..0fa4dd2e8c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5864c47c18 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..92f9c1fbcc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d64a1b9501 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ;ö¨@Óü<@°;Ž@æVAº«9A`2Í@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/model.onnx new file mode 100644 index 0000000000..cdf7778271 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:– +7 +datareduced"ReduceL1* +axes@ * +keepdims  test_reduce_l1_keep_dims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..187306a182 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/model.onnx new file mode 100644 index 0000000000..9b401cf38a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:• +7 +datareduced"ReduceL1* +axes@ * +keepdims test_reduce_l1_keep_dims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1ce97738ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_keep_dims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ;ö¨@Óü<@°;Ž@æVAº«9A`2Í@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/model.onnx new file mode 100644 index 0000000000..d144258700 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:­ +@ +datareduced"ReduceL1* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_l1_negative_axes_keep_dims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..187306a182 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/model.onnx new file mode 100644 index 0000000000..8d76c7b8b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:¬ +@ +datareduced"ReduceL1* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims -test_reduce_l1_negative_axes_keep_dims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1ce97738ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l1_negative_axes_keep_dims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ;ö¨@Óü<@°;Ž@æVAº«9A`2Í@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..46872d7218 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:• +* +datareduced"ReduceL2* +keepdims ,test_reduce_l2_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9369f0f092 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_example/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJöõËA \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..b243fb95f6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:” +* +datareduced"ReduceL2* +keepdims +test_reduce_l2_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..83dff2bd16 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJè…oA \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..895b92038e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..307fc64719 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..8383af96ac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a479d93522 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJV8@5‰@ÄR@‚åý@ ýAž»@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/model.onnx new file mode 100644 index 0000000000..f8f0ef6ee5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:– +7 +datareduced"ReduceL2* +axes@ * +keepdims  test_reduce_l2_keep_dims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..60a0c66e80 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/model.onnx new file mode 100644 index 0000000000..3ebd0e25c0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:• +7 +datareduced"ReduceL2* +axes@ * +keepdims test_reduce_l2_keep_dims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3001214434 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_keep_dims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJV8@5‰@ÄR@‚åý@ ýAž»@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/model.onnx new file mode 100644 index 0000000000..0cc2989e43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:­ +@ +datareduced"ReduceL2* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_l2_negative_axes_keep_dims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..60a0c66e80 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/model.onnx new file mode 100644 index 0000000000..eacb2fd38a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:¬ +@ +datareduced"ReduceL2* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims -test_reduce_l2_negative_axes_keep_dims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3001214434 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_l2_negative_axes_keep_dims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJV8@5‰@ÄR@‚åý@ ýAž»@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/model.onnx new file mode 100644 index 0000000000..2d4f60fce2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..913f023fdc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b1470001e9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ ! @F‚@þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/model.onnx new file mode 100644 index 0000000000..054e73bb13 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3cc3bc3168 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJðìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cab8e98af3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_asc_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÚËÆ?Tàî?|gÇ?*ú?4žÝ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/model.onnx new file mode 100644 index 0000000000..8674eb79c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:w + +datareduced" ReduceLogSumtest_reduce_log_sum_defaultZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..913f023fdc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6b7b454baf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJh¾[@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/model.onnx new file mode 100644 index 0000000000..5bdd032faa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..913f023fdc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b1470001e9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_desc_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ ! @F‚@þ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..c049f9e120 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:¥ +1 +datareduced"ReduceLogSumExp* +keepdims 5test_reduce_log_sum_exp_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a8a3e2e5fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_example/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJàpB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..b6d1232b34 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:¤ +1 +datareduced"ReduceLogSumExp* +keepdims 4test_reduce_log_sum_exp_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fa571dd156 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ[QA \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..276f74553d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..db3d09770a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..96d0a9e72b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8b65f4b068 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÒC@ñÊ@RL/¿Ð÷ú@°àA”ˆ!? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/model.onnx new file mode 100644 index 0000000000..85bdd1cbed --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:¥ +> +datareduced"ReduceLogSumExp* +axes@ * +keepdims (test_reduce_log_sum_exp_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4196e6ca26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/model.onnx new file mode 100644 index 0000000000..2a0c14adf7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:¤ +> +datareduced"ReduceLogSumExp* +axes@ * +keepdims 'test_reduce_log_sum_exp_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..238ac3561c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÒC@ñÊ@RL/¿Ð÷ú@°àA”ˆ!? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..621850ad0e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:¼ +G +datareduced"ReduceLogSumExp* +axes@þÿÿÿÿÿÿÿÿ * +keepdims 6test_reduce_log_sum_exp_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4196e6ca26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..43a0e724f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:» +G +datareduced"ReduceLogSumExp* +axes@þÿÿÿÿÿÿÿÿ * +keepdims 5test_reduce_log_sum_exp_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..92f05c2a9d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_exp_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÓC@ñÊ@RL/¿Ð÷ú@°àA”ˆ!? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/model.onnx new file mode 100644 index 0000000000..1597c018b2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/model.onnx @@ -0,0 +1,14 @@ + backend-test:“ +3 +datareduced" ReduceLogSum* +axes@þÿÿÿÿÿÿÿÿ !test_reduce_log_sum_negative_axesZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..913f023fdc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJð  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..158e493023 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_log_sum_negative_axes/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BreducedJäõ?lª ?W:? +l½Ê> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/model.onnx new file mode 100644 index 0000000000..aa3f19ac34 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:– ++ +datareduced" ReduceMax* +keepdims ,test_reduce_max_default_axes_keepdim_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0c997f0b52 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdim_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..492a1f3d6c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:– ++ +datareduced" ReduceMax* +keepdims ,test_reduce_max_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e35000314b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJA_A \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..f37b07fedd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..baa4437987 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..79403846b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1cae778219 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ‰@ ¸‰@ØÆŸ¿¼ú@A_A&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/model.onnx new file mode 100644 index 0000000000..8a6e5c1560 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:— +8 +datareduced" ReduceMax* +axes@ * +keepdims  test_reduce_max_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7074788dc6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/model.onnx new file mode 100644 index 0000000000..e144df5e14 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:– +8 +datareduced" ReduceMax* +axes@ * +keepdims test_reduce_max_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..078ea58e05 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ‰@ ¸‰@ØÆŸ¿¼ú@A_A&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..e9094e718a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:® +A +datareduced" ReduceMax* +axes@þÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_max_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7074788dc6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..b00033b234 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:­ +A +datareduced" ReduceMax* +axes@þÿÿÿÿÿÿÿÿ * +keepdims -test_reduce_max_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..078ea58e05 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_max_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ‰@ ¸‰@ØÆŸ¿¼ú@A_A&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..f1edf54a76 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:™ +, +datareduced" +ReduceMean* +keepdims .test_reduce_mean_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..05bd7f0cab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..f1e4f01fe6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:˜ +, +datareduced" +ReduceMean* +keepdims -test_reduce_mean_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b39404168f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJù®@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..f51551ecb4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..28ac847845 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..ca41aa0547 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be01437220 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ¶Â?Ir&@8œ±¿± ¬@^¹ñ@1k`¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/model.onnx new file mode 100644 index 0000000000..064167c054 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:™ +9 +datareduced" +ReduceMean* +axes@ * +keepdims !test_reduce_mean_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5a14b8a3ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/model.onnx new file mode 100644 index 0000000000..4c1fba9b1f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/model.onnx @@ -0,0 +1,16 @@ + backend-test:˜ +9 +datareduced" +ReduceMean* +axes@ * +keepdims  test_reduce_mean_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6b871c6649 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ¶Â?Ir&@8œ±¿± ¬@^¹ñ@1k`¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..2bdf1930d5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:° +B +datareduced" +ReduceMean* +axes@þÿÿÿÿÿÿÿÿ * +keepdims /test_reduce_mean_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5a14b8a3ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..45674aa78e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,16 @@ + backend-test:¯ +B +datareduced" +ReduceMean* +axes@þÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_mean_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6b871c6649 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_mean_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ¶Â?Ir&@8œ±¿± ¬@^¹ñ@1k`¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..0e11b39b7e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:— ++ +datareduced" ReduceMin* +keepdims -test_reduce_min_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b5a42c567b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..abbb09f07c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:– ++ +datareduced" ReduceMin* +keepdims ,test_reduce_min_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a4533862d0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJâ1À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..29498cb011 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..61f74f2e9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..be8a46f9b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..02651dcf6c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÖìy?IÍe?—qÿ•¾:@;´º@â1À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/model.onnx new file mode 100644 index 0000000000..f7b2b5509d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:— +8 +datareduced" ReduceMin* +axes@ * +keepdims  test_reduce_min_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..eb58276c49 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/model.onnx new file mode 100644 index 0000000000..2ccccd30a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:– +8 +datareduced" ReduceMin* +axes@ * +keepdims test_reduce_min_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8adff16b95 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÖìy?IÍe?—qÿ•¾:@;´º@â1À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..1473f1d7e8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:® +A +datareduced" ReduceMin* +axes@þÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_min_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a47cf387a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..eb58276c49 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..dcc386fca3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:­ +A +datareduced" ReduceMin* +axes@þÿÿÿÿÿÿÿÿ * +keepdims -test_reduce_min_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8adff16b95 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_min_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÖìy?IÍe?—qÿ•¾:@;´º@â1À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..c8cbdaa67f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:™ +, +datareduced" +ReduceProd* +keepdims .test_reduce_prod_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..06c2b1a190 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_example/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJàgäM \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..8b02692435 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:˜ +, +datareduced" +ReduceProd* +keepdims -test_reduce_prod_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..925f922a71 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ­ZÀÆ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..8c3fbd564e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ea6f56ba78 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..f469828e70 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a769a4af8d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_do_not_keepdims_random/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/model.onnx new file mode 100644 index 0000000000..4ed74801b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:™ +9 +datareduced" +ReduceProd* +axes@ * +keepdims !test_reduce_prod_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bdead6054c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/model.onnx new file mode 100644 index 0000000000..3117112fdb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/model.onnx @@ -0,0 +1,16 @@ + backend-test:˜ +9 +datareduced" +ReduceProd* +axes@ * +keepdims  test_reduce_prod_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc0e85ce9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_keepdims_random/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..0a8ae3b531 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:° +B +datareduced" +ReduceProd* +axes@þÿÿÿÿÿÿÿÿ * +keepdims /test_reduce_prod_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bdead6054c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..ee1c9e4ea0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,16 @@ + backend-test:¯ +B +datareduced" +ReduceProd* +axes@þÿÿÿÿÿÿÿÿ * +keepdims .test_reduce_prod_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc0e85ce9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_prod_negative_axes_keepdims_random/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..c1b1f6ad0c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f3f037e95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..72345560f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..ec8197106e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f3f037e95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3ae4f69a84 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJv†ìA \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..faec5e2fd3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73ce772341 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..d49cc780bd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e17090bf09 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ¶B@Ir¦@8œ1À± ,A^¹qA1kà¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/model.onnx new file mode 100644 index 0000000000..fc179e4443 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f3f037e95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..271a1516aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/model.onnx new file mode 100644 index 0000000000..e69caaee69 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f3f037e95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..63d96ff695 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_empty_axes_input_noop_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/model.onnx new file mode 100644 index 0000000000..81394f94a3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/model.onnx @@ -0,0 +1,19 @@ + backend-test:¤ +1 +data +axesreduced" ReduceSum* +keepdims  test_reduce_sum_keepdims_exampleZ +data + + + +Z +axes + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a39080e265 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/model.onnx new file mode 100644 index 0000000000..b97004a3e4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/model.onnx @@ -0,0 +1,19 @@ + backend-test:£ +1 +data +axesreduced" ReduceSum* +keepdims test_reduce_sum_keepdims_randomZ +data + + + +Z +axes + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..76c670d2bc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ¶B@Ir¦@8œ1À± ,A^¹qA1kà¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..f82f1f72fb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,19 @@ + backend-test:² +1 +data +axesreduced" ReduceSum* +keepdims .test_reduce_sum_negative_axes_keepdims_exampleZ +data + + + +Z +axes + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f4bbd39a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BaxesJþÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a39080e265 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..40d6b4a266 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f3f037e95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..63d96ff695 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..dd1deadbcf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/model.onnx @@ -0,0 +1,14 @@ + backend-test:¤ +1 +datareduced"ReduceSumSquare* +keepdims 4test_reduce_sum_square_default_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5086a99987 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..f5e7201c2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/model.onnx @@ -0,0 +1,14 @@ + backend-test:£ +1 +datareduced"ReduceSumSquare* +keepdims 3test_reduce_sum_square_default_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3e95228201 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_default_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJN`C \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/model.onnx new file mode 100644 index 0000000000..c94cf68103 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a63a3bada1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/model.onnx new file mode 100644 index 0000000000..949d7f58fc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fc88d339fd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_do_not_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÚ«¥@ˆ šAÙîx@#Ñ‹BÀðB–¸@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/model.onnx new file mode 100644 index 0000000000..8f8d08f877 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:¤ +> +datareduced"ReduceSumSquare* +axes@ * +keepdims 'test_reduce_sum_square_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d1fa987e2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/model.onnx new file mode 100644 index 0000000000..dfd66bc24f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:£ +> +datareduced"ReduceSumSquare* +axes@ * +keepdims &test_reduce_sum_square_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c18ae9b3db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÚ«¥@ˆ šAÙîx@#Ñ‹BÀðB–¸@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/model.onnx new file mode 100644 index 0000000000..be342cac9b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/model.onnx @@ -0,0 +1,15 @@ + backend-test:» +G +datareduced"ReduceSumSquare* +axes@þÿÿÿÿÿÿÿÿ * +keepdims 5test_reduce_sum_square_negative_axes_keepdims_exampleZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ba94696c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d1fa987e2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/model.onnx new file mode 100644 index 0000000000..5c2c8c3807 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/model.onnx @@ -0,0 +1,15 @@ + backend-test:º +G +datareduced"ReduceSumSquare* +axes@þÿÿÿÿÿÿÿÿ * +keepdims 4test_reduce_sum_square_negative_axes_keepdims_randomZ +data + + + +b +reduced + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7154933593 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ0Öìy? ¸‰@‰@IÍe?—qÿ•¾:@ØÆŸ¿¼ú@A_Aâ1À;´º@&ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c18ae9b3db --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reduce_sum_square_negative_axes_keepdims_random/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreducedJÚ«¥@ˆ šAÙîx@#Ñ‹BÀðB–¸@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/model.onnx new file mode 100644 index 0000000000..55c1776a1c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/model.onnx @@ -0,0 +1,21 @@ + backend-test:‡ +% +x +padsy"Pad* +mode"reflect test_reflect_padZ +x + + + + +Z +pads + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3737f7c750 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..131ea5f957 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1827c78806 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reflect_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_relu/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_relu/model.onnx new file mode 100644 index 0000000000..f7a39f8d16 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_relu/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Relu test_reluZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9210c945eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_relu/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/model.onnx new file mode 100644 index 0000000000..3fbdd306a2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7f0a44b5a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4a499afc47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..92fa62edc9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/model.onnx new file mode 100644 index 0000000000..48b7362763 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/model.onnx @@ -0,0 +1,19 @@ + backend-test:“ + +data +shapereshaped"Reshapetest_reshape_extended_dimsZ +data + + + +Z +shape + + +b" +reshaped + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6febe463bd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..23118a426d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_extended_dims/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/model.onnx new file mode 100644 index 0000000000..cf7cd55c4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/model.onnx @@ -0,0 +1,18 @@ + backend-test:Ž + +data +shapereshaped"Reshapetest_reshape_negative_dimZ +data + + + +Z +shape + + +b +reshaped + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1f500c3582 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3b8f76a72e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_dim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/model.onnx new file mode 100644 index 0000000000..a6ca3ffa09 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/model.onnx @@ -0,0 +1,19 @@ + backend-test:œ + +data +shapereshaped"Reshape#test_reshape_negative_extended_dimsZ +data + + + +Z +shape + + +b" +reshaped + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e2cc6aa5e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..86c7f3e2e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_negative_extended_dims/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/model.onnx new file mode 100644 index 0000000000..aea581d96d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/model.onnx @@ -0,0 +1,17 @@ + backend-test: + +data +shapereshaped"Reshapetest_reshape_one_dimZ +data + + + +Z +shape + + +b +reshaped + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1c7276f8fc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..caecce4a3e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_one_dim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/model.onnx new file mode 100644 index 0000000000..ffc27ec009 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/model.onnx @@ -0,0 +1,17 @@ + backend-test:Š + +data +shapereshaped"Reshapetest_reshape_reduced_dimsZ +data + + + +Z +shape + + +b +reshaped +  + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..36ae1cd665 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..515d48c1d3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reduced_dims/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/model.onnx new file mode 100644 index 0000000000..5095951d43 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/model.onnx @@ -0,0 +1,18 @@ + backend-test:” + +data +shapereshaped"Reshapetest_reshape_reordered_all_dimsZ +data + + + +Z +shape + + +b +reshaped + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..15b5542474 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..12748ef853 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_all_dims/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/model.onnx new file mode 100644 index 0000000000..e4fd33a522 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/model.onnx @@ -0,0 +1,18 @@ + backend-test:• + +data +shapereshaped"Reshape test_reshape_reordered_last_dimsZ +data + + + +Z +shape + + +b +reshaped + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dd88ffb7e6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..651078ed9f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_reordered_last_dims/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/model.onnx new file mode 100644 index 0000000000..c9c22ccd5f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/model.onnx @@ -0,0 +1,19 @@ + backend-test:› + +data +shapereshaped"Reshape"test_reshape_zero_and_negative_dimZ +data + + + +Z +shape + + +b" +reshaped + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ff09fd3ace Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..57f7584da1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_and_negative_dim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/model.onnx new file mode 100644 index 0000000000..96d27fe404 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/model.onnx @@ -0,0 +1,19 @@ + backend-test:Ž + +data +shapereshaped"Reshapetest_reshape_zero_dimZ +data + + + +Z +shape + + +b" +reshaped + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..17ddeb33aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e4d5bf5cc8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_reshape_zero_dim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BreshapedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/model.onnx new file mode 100644 index 0000000000..f517358869 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bed53be8c1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..23a0313465 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/model.onnx new file mode 100644 index 0000000000..2a52c9dc6e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bed53be8c1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e90ac9a7e1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/model.onnx new file mode 100644 index 0000000000..5e5ac1f30b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bed53be8c1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5255d0f534 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_cubic_align_corners/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/model.onnx new file mode 100644 index 0000000000..153921f562 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ba20d26bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2714f66f92 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0b5f698f3a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJªª*@ªªŠ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/model.onnx new file mode 100644 index 0000000000..3ebabc3952 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ba20d26bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2714f66f92 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..862210fd2c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_linear_align_corners/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/model.onnx new file mode 100644 index 0000000000..650f5f17a6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ba20d26bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2714f66f92 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..22295fc573 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_scales_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/model.onnx new file mode 100644 index 0000000000..739c2c5861 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c028168258 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e9a6d91391 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_cubic/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/model.onnx new file mode 100644 index 0000000000..f4553ea1f9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1761b4d08a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..18da7b725b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_linear_pytorch_half_pixel/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/model.onnx new file mode 100644 index 0000000000..9ae5888597 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ba20d26bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbab6e4931 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab23a3f490 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/model.onnx new file mode 100644 index 0000000000..be98818752 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1c3e3996ac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a8d6605b0d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_downsample_sizes_nearest_tf_half_pixel_for_nn/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/model.onnx new file mode 100644 index 0000000000..c76fff9f5f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5f7472df11 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..c028168258 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0119c6bb47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_tf_crop_and_resize/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/model.onnx new file mode 100644 index 0000000000..c5262c6cfa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab475cb7ee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/model.onnx new file mode 100644 index 0000000000..32c93a7727 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5dad368427 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_A_n0p5_exclude_outside/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/model.onnx new file mode 100644 index 0000000000..221c697a5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..98130c7904 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_align_corners/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/model.onnx new file mode 100644 index 0000000000..4161b304cf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2b849dd80d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_cubic_asymmetric/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/model.onnx new file mode 100644 index 0000000000..f87808b116 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b41f51bede Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1df9afed8a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/model.onnx new file mode 100644 index 0000000000..9a90a83f1d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b41f51bede Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..87cd42cbb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e3577687c7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_linear_align_corners/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/model.onnx new file mode 100644 index 0000000000..7921fec040 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b41f51bede Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c1adc83436 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..617f127922 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_scales_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/model.onnx new file mode 100644 index 0000000000..b959499466 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f07c6b4dab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1c3c5c1cf7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_cubic/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/model.onnx new file mode 100644 index 0000000000..2f49a5ae84 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b41f51bede Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dae9d7bd31 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3455f38641 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/model.onnx new file mode 100644 index 0000000000..b631c4bb2d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dbc7c2c148 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f570dcd22e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_ceil_half_pixel/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/model.onnx new file mode 100644 index 0000000000..0bbf247d4f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dbc7c2c148 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1f3bda5f9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_floor_align_corners/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/model.onnx new file mode 100644 index 0000000000..ebf358bab0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..97596cc6be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dbc7c2c148 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f570dcd22e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_resize_upsample_sizes_nearest_round_prefer_ceil_asymmetric/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/model.onnx new file mode 100644 index 0000000000..cf7e37b9e6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..624b0f51d9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..239f9c12d3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a98ca22fa4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_batch/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/model.onnx new file mode 100644 index 0000000000..74114ec974 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edef4e7b58 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6180380f0e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ce39dc5e6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_reversesequence_time/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/model.onnx new file mode 100644 index 0000000000..a40ec354da Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0879670028 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..481acbc8d4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..4f52fb9bca --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJd]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..88f54cf033 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/input_3.pb @@ -0,0 +1,2 @@ + +BBJ(ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a6aa8bd71f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_rnn_seq_length/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/model.onnx new file mode 100644 index 0000000000..4b70beff98 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b50b5576c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bb14c14c86 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7e24ffa046 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..951f415167 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_false/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +BYJ¬ûËî>Á¨ä>V®>àœ??W?$(¾>ˆôÛ>ZÄ> c?F¶³>»¸>uú>æ®?M„ ?"ŽÕ>Gø>¾0?mçû>I`?é·?ff6?—ÿ ?¨Æ«>ªñ²>õ¹š>jÜ>ioð>q¬Ë>,Ô +?ì/»>áz4?X9? +h¢>•3?+•>ª‚?É%?²?TtT?s?(=?Æm4?½RV?*©c?Di?M„?æ®5?ÛŠ?ƒÀê>!t>;­>vO¾>ö(?ê•B?ÓÞÀ>ÁÊÁ>”ö6?ížl?Þy?¥,?F%?&?á C?ƒ`?‡ ?aƒ>=[>»'>ìQ¸>î|ß>¡g³>}Г>vq»> ‰p> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/model.onnx new file mode 100644 index 0000000000..01c8ced9d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b50b5576c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bb14c14c86 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..7e24ffa046 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..597556bfee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_roialign_aligned_true/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +BYJ¬ŠŽ? Ò¯>&S¥>å> +h"? cÎ>ž^ ?®¶â>âø>DúÍ>I€>çÌ>Ï÷?¼2?sh±>…«>:’ë>¹?©°>›U/?¶„ü>BÏ6?îZR?àœñ>ûËÎ>/>åò_>ºÚª>#Ûù>Xù>$—?>Șû>’\?b¡Ö>$¹¼><½>úíë>ŒÛ?žï?ÿ>ྎ>.à>Ç)?333?I@?}Ð?}Ð3?' 9?QÚ;? ùP? u>×£Ð>;­>®G>s×ò>ˆô»>¨WŠ>-Ò>S$?O¯T?Í;?šè>;p? @?{n?' )?’Ë?ôlö>¥ý>£’*?±á)?䃾>ΈR>]mE>H¿}> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_round/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_round/model.onnx new file mode 100644 index 0000000000..e989888e4a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_round/model.onnx @@ -0,0 +1,12 @@ + backend-test:= + +xy"Round +test_roundZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2638e9cfde Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..97748c1261 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_round/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/model.onnx new file mode 100644 index 0000000000..6b665b65f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4e664a23ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..da6e540872 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cecc069bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..8d6db104ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan9_sum/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/model.onnx new file mode 100644 index 0000000000..e3b782f272 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7bf107759e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8421af83cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab08a5f2a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..76bc629679 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scan_sum/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/model.onnx new file mode 100644 index 0000000000..b1eb70046b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/model.onnx @@ -0,0 +1,22 @@ + backend-test:¿ +9 +data +indices +updatesy"ScatterElements* +axis test_scatter_elements_with_axisZ +data +  + +Z +indices +  + +Z +updates +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..661309dcc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ffdfd30e67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..1fdaa8cfec --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BupdatesJÍÌŒ?ff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0e60ea327 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/model.onnx new file mode 100644 index 0000000000..9a6401b45f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/model.onnx @@ -0,0 +1,23 @@ + backend-test:á +N +data +indices +updatesy"ScatterElements* +axis * + reduction"add ,test_scatter_elements_with_duplicate_indicesZ +data +  + +Z +indices +  + +Z +updates +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..661309dcc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..989ee890a6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..1fdaa8cfec --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BupdatesJÍÌŒ?ff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0733c0f998 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_duplicate_indices/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/model.onnx new file mode 100644 index 0000000000..c6d83932fe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/model.onnx @@ -0,0 +1,22 @@ + backend-test:Ë +9 +data +indices +updatesy"ScatterElements* +axis +test_scatter_elements_with_negative_indicesZ +data +  + +Z +indices +  + +Z +updates +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..661309dcc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..97a7da2ef9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..1fdaa8cfec --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BupdatesJÍÌŒ?ff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..115d80f81e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_with_negative_indices/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/model.onnx new file mode 100644 index 0000000000..b5d10efd28 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/model.onnx @@ -0,0 +1,21 @@ + backend-test:µ +, +data +indices +updatesy"ScatterElements"test_scatter_elements_without_axisZ +data +  + +Z +indices +  + +Z +updates +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c063bb7315 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be4025fbee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..e50cacbb38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d5e565d083 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_elements_without_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/model.onnx new file mode 100644 index 0000000000..c1898b8c2c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..661309dcc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ffdfd30e67 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..1fdaa8cfec --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BupdatesJÍÌŒ?ff@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c0e60ea327 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_with_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/model.onnx new file mode 100644 index 0000000000..f7fadac0da Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c063bb7315 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be4025fbee Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..e50cacbb38 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d5e565d083 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatter_without_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/model.onnx new file mode 100644 index 0000000000..ddd47e51f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/model.onnx @@ -0,0 +1,24 @@ + backend-test:§ +& +data +indices +updatesy" ScatterNDtest_scatterndZ +data + + + +Z +indices +  + +Z +updates + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8f14eaeb3e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1b015266ff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ed14664d7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2357108760 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/model.onnx new file mode 100644 index 0000000000..9837a5da04 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/model.onnx @@ -0,0 +1,25 @@ + backend-test:À +; +data +indices +updatesy" ScatterND* + reduction"add test_scatternd_addZ +data + + + +Z +indices +  + +Z +updates + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8f14eaeb3e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5637149da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ed14664d7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cd316b9776 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_add/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/model.onnx new file mode 100644 index 0000000000..fa3aec51b7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/model.onnx @@ -0,0 +1,25 @@ + backend-test:Å +; +data +indices +updatesy" ScatterND* + reduction"mul test_scatternd_multiplyZ +data + + + +Z +indices +  + +Z +updates + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8f14eaeb3e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5637149da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..ed14664d7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2b812a9ca3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_scatternd_multiply/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/model.onnx new file mode 100644 index 0000000000..5ed9c98b58 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cc7c7465f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b03b0826e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..94db59b309 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4f60538903 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ(»Ö? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/model.onnx new file mode 100644 index 0000000000..527cc0d7e2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cc7c7465f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b03b0826e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..94db59b309 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4f60538903 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ(»Ö? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/model.onnx new file mode 100644 index 0000000000..f0a70b2916 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cc7c7465f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b03b0826e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..94db59b309 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4f60538903 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ(»Ö? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..ede2e50a4e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..3a3cf8269a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cc7c7465f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJè  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b03b0826e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..94db59b309 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ/³“>ï×Ý>5A?eÍÊ>Æbe? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4f60538903 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ(»Ö? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..ede2e50a4e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1_mean_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/model.onnx new file mode 100644 index 0000000000..a0ed2486af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/model.onnx @@ -0,0 +1,25 @@ + backend-test:á +V +x +yz"SoftmaxCrossEntropyLoss* + ignore_indexûÿÿÿÿÿÿÿÿ * + reduction"none ,test_sce_NCd1d2d3_none_no_weight_negative_iiZ +x + + + + + +Z +y + + + + +b +z + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..05f2333c14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4c3b6643f8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0af5e50440 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx new file mode 100644 index 0000000000..1a3f4737fe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..05f2333c14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4c3b6643f8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0af5e50440 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/model.onnx new file mode 100644 index 0000000000..3315ea9f36 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/model.onnx @@ -0,0 +1,32 @@ + backend-test:œ +` +x +yzlog_prob"SoftmaxCrossEntropyLoss* + ignore_indexûÿÿÿÿÿÿÿÿ * + reduction"none 5test_sce_NCd1d2d3_none_no_weight_negative_ii_log_probZ +x + + + + + +Z +y + + + + +b +z + + + + +b& +log_prob + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..05f2333c14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4c3b6643f8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0af5e50440 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..e9bbe9d1f7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..a6eca5e22c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..05f2333c14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4c3b6643f8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0af5e50440 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..e9bbe9d1f7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_none_no_weight_negative_ii_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/model.onnx new file mode 100644 index 0000000000..db9676f5e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d6912d0e73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..199d6e353c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BwJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..74b8cbdafe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJîŽ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx new file mode 100644 index 0000000000..eacdcc7509 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d6912d0e73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..199d6e353c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BwJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..74b8cbdafe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJîŽ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/model.onnx new file mode 100644 index 0000000000..fdf4265e83 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d6912d0e73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..199d6e353c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BwJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..74b8cbdafe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJîŽ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d6912d0e73 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..199d6e353c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1,2 @@ +BwJ(м>u?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..74b8cbdafe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJîŽ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3_sum_weight_high_ii_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJid> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2d53399ff0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJXÒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/model.onnx new file mode 100644 index 0000000000..01adc8ad5e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cb79a6e2ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ³ ‰=µà?Ë@?£oÊ>id> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2d53399ff0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJXÒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/model.onnx new file mode 100644 index 0000000000..cd7b2dbd8b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cb79a6e2ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ³ ‰=µà?Ë@?£oÊ>id> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2d53399ff0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJXÒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..5f4a11acb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..2875ee35f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..cb79a6e2ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJ³ ‰=µà?Ë@?£oÊ>id> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2d53399ff0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJXÒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..5f4a11acb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/model.onnx new file mode 100644 index 0000000000..fe5a8fee16 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/model.onnx @@ -0,0 +1,30 @@ + backend-test:Ó +8 +x +yz"SoftmaxCrossEntropyLoss* + reduction"none $test_sce_NCd1d2d3d4d5_none_no_weightZ' +x" +  + + + + + + +Z# +y + + + + + + +b# +z + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73961bf608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx new file mode 100644 index 0000000000..41778db519 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73961bf608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/model.onnx new file mode 100644 index 0000000000..02a48e0810 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/model.onnx @@ -0,0 +1,39 @@ + backend-test:– +B +x +yzlog_prob"SoftmaxCrossEntropyLoss* + reduction"none -test_sce_NCd1d2d3d4d5_none_no_weight_log_probZ' +x" +  + + + + + + +Z# +y + + + + + + +b# +z + + + + + + +b. +log_prob" +  + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73961bf608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..5f4a11acb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..d41c5a8d99 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f77b9aa23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..181fd66da1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..73961bf608 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..5f4a11acb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_NCd1d2d3d4d5_none_no_weight_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/model.onnx new file mode 100644 index 0000000000..45603d6b91 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9109ee682c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJuÛÇ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/model.onnx new file mode 100644 index 0000000000..b141f93b5e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd3dd54a5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e8ae88b8c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJë¦Ø? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/model.onnx new file mode 100644 index 0000000000..10227b3213 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd3dd54a5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e8ae88b8c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJë¦Ø? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/model.onnx new file mode 100644 index 0000000000..b4a2c3818e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd3dd54a5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e8ae88b8c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJë¦Ø? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..e115091f98 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd3dd54a5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e8ae88b8c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJë¦Ø? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_3d_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/model.onnx new file mode 100644 index 0000000000..a67ed2139c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9109ee682c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJuÛÇ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/model.onnx new file mode 100644 index 0000000000..c411b32f6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9109ee682c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJuÛÇ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9109ee682c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJuÛÇ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2705ae5305 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c97c11c412 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÞùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/model.onnx new file mode 100644 index 0000000000..d8e7206cdf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5e4604b765 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a2101ef71d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÔC¹? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/model.onnx new file mode 100644 index 0000000000..fd82b193c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5e4604b765 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a2101ef71d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÔC¹? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/model.onnx new file mode 100644 index 0000000000..c49772c130 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5e4604b765 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a2101ef71d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÔC¹? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..8d2e890b3b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5e4604b765 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a2101ef71d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÔC¹? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/model.onnx new file mode 100644 index 0000000000..7c1ac1a089 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51ae4ed356 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJhë×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/model.onnx new file mode 100644 index 0000000000..b631668302 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51ae4ed356 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJhë×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/model.onnx new file mode 100644 index 0000000000..08b334c8da Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51ae4ed356 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJhë×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..9d79cec66d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..9ad1f3d578 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51ae4ed356 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJhë×? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..9d79cec66d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/model.onnx new file mode 100644 index 0000000000..a345bf7fcb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2705ae5305 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c97c11c412 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÞùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/model.onnx new file mode 100644 index 0000000000..f2f78563a8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2705ae5305 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c97c11c412 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÞùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2705ae5305 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c97c11c412 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÞùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_no_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5cf9d94f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÖÈ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/model.onnx new file mode 100644 index 0000000000..6d88520344 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5cf9d94f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÖÈ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/model.onnx new file mode 100644 index 0000000000..1290d74cc6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a8a859fc9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..840b42e6bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJßùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/model.onnx new file mode 100644 index 0000000000..e633efa107 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3dedbc0d54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2f7b97532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJAéä? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/model.onnx new file mode 100644 index 0000000000..851e3b0355 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3dedbc0d54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2f7b97532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJAéä? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/model.onnx new file mode 100644 index 0000000000..f9b7d9d6ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3dedbc0d54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2f7b97532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJAéä? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..55f1bd5f21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb26b51b41 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJx  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3dedbc0d54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2f7b97532 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJAéä? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..6756c5d312 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_3d_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/model.onnx new file mode 100644 index 0000000000..863b6a7840 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..83911ce44f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ¼+Ü? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/model.onnx new file mode 100644 index 0000000000..32e211cf7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..83911ce44f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ¼+Ü? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/model.onnx new file mode 100644 index 0000000000..19aab8e998 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..83911ce44f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ¼+Ü? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..9d79cec66d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/model.onnx new file mode 100644 index 0000000000..16ffe24c2a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..52d38167bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6e79fac541 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5c06a8d20c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..83911ce44f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ¼+Ü? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..9d79cec66d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_4d_log_prob_expanded/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/model.onnx new file mode 100644 index 0000000000..b38544ee9e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a8a859fc9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..840b42e6bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJßùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/model.onnx new file mode 100644 index 0000000000..236ba3608a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a8a859fc9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..840b42e6bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJßùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a8a859fc9a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..840b42e6bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJßùÍ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_ii_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5cf9d94f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÖÈ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a5cf9d94f1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJÖÈ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_mean_weight_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0eb5d24307 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ ¢ž»?_tõ?^¦? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/model.onnx new file mode 100644 index 0000000000..5cec3cb1d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0eb5d24307 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ ¢ž»?_tõ?^¦? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/model.onnx new file mode 100644 index 0000000000..036b298314 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/model.onnx @@ -0,0 +1,21 @@ + backend-test:¯ +B +x +yzlog_prob"SoftmaxCrossEntropyLoss* + reduction"none test_sce_none_log_probZ +x +  + +Z +y + + +b +z + + +b +log_prob +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0eb5d24307 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ ¢ž»?_tõ?^¦? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0eb5d24307 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ ¢ž»?_tõ?^¦? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cc4d3052e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ qUƒ?¼èÜ?Ù•? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/model.onnx new file mode 100644 index 0000000000..2a41e42ffb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cc4d3052e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ qUƒ?¼èÜ?Ù•? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/model.onnx new file mode 100644 index 0000000000..3b29ead5ea --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/model.onnx @@ -0,0 +1,26 @@ + backend-test:Ë +E +x +y +wzlog_prob"SoftmaxCrossEntropyLoss* + reduction"none test_sce_none_weights_log_probZ +x +  + +Z +y + + +Z +w + + +b +z + + +b +log_prob +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cc4d3052e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ qUƒ?¼èÜ?Ù•? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..2186ff73f9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BwJfff?333?ÍÌL?fff?fff? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cc4d3052e5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ qUƒ?¼èÜ?Ù•? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_none_weights_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f20e8e5bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ˜ä•@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/model.onnx new file mode 100644 index 0000000000..a79a7c9700 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f20e8e5bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ˜ä•@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/model.onnx new file mode 100644 index 0000000000..822b4099f7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aeb52e93c1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f20e8e5bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ˜ä•@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJQY%?n à>~®J?¨e?^k?çól?Z{‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6251a1cdb8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f20e8e5bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJ˜ä•@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..935f07e828 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sce_sum_log_prob_expanded/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +Blog_probJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_selu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b26ac2857c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_selu/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +ByJðZY©@©™?îê;@0 ×@I³@Ú|oÀ¿j6@Þ¾W¿Þ¢¿z«?<@Ý>:œ‹@†@äº>ˆqª?†!€?}n@+sŽ¿žop?%‹\À– ±ÀRýú?Åø%@:/IÀ~åÙ@ (“Àö‘ >¶ƒ¿•%“@ö@Ïÿí>ä6‘?jõaÀƒ¥À«á¿ë&ð>?7l@`Ûf@ã ö¿8\È¿émyÀ|—‘ÀÞ$ÀBF»@XTÀ›6À%‰À5G@XÅ™ÀÄ,“¿ú*cÀ’”?d˜À. +…À¼*¾½z¤?EWL>fLh?æ]4À½¦é¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/model.onnx new file mode 100644 index 0000000000..1ad23583af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:S + +xy"Selutest_selu_defaultZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4773aecba4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_selu_default/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð7?í?¥D×>V¡ƒ?E°@Ù*û?YŒ¿å?<Þ|¾<Ž0¾˜âÜ>£ú>¹•Ã?´L?Žé>»Çî>Ê€³>4ðÈ?ïõ¦¾æj¨>î>¿˜„Ï¿ZÏ/?ýƒh?1Ík¿¡@Ðz¬¿ûíD=¹©™¾ $Î?Å?ñµ&>˜oË>Tk„¿¦ýÁ¿É?¿ú7(>"v¥?.µ¡?Nˆ¿áÕ꾂,’¿¦¤ª¿å.¸¿ü-@Y¶3¿©¦¿¾ ¿!Q?Ê:´¿ª¬¾¾ …¿>#Ð>4¿qµH½Êlæ>V"=¬·¢>ÝfS¿kí¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/model.onnx new file mode 100644 index 0000000000..d5a7950e0e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2db88161fa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_selu_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/model.onnx new file mode 100644 index 0000000000..c6986f9624 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/model.onnx @@ -0,0 +1,14 @@ + backend-test:œ +3 +sequence +tensoroutput_sequence"SequenceInserttest_sequence_insert_at_backZ +sequence" + +Z +tensor + + +b +output_sequence" + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f50d4505ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5c8ecf619d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..92fc868f2a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_back/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/model.onnx new file mode 100644 index 0000000000..884eacd570 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/model.onnx @@ -0,0 +1,19 @@ + backend-test:¿ += +sequence +tensor +positionoutput_sequence"SequenceInserttest_sequence_insert_at_frontZ +sequence" + +Z +tensor + + +Z +position + + +b +output_sequence" + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f50d4505ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ea9b4f3441 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..5da53eb74c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..680e29e09f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/model.onnx new file mode 100644 index 0000000000..736b81c5b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/model.onnx @@ -0,0 +1,28 @@ + backend-test:÷ +ˆ +x0 +x1y0" SequenceMap*m +body2b + +in0 +in1out0"Add seq_map_bodyZ +in0 +  +NZ +in1 +  +Nb +out0 +  +N )test_sequence_map_add_1_sequence_1_tensorZ +x0" + +  +NZ +x1 +  +Nb +y0" + +  +NB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fd31b6465b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_0.pb @@ -0,0 +1,5 @@ + +x0. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..497228ce03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +Bx1J(Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5cd6cbb0d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor/test_data_set_0/output_0.pb @@ -0,0 +1,6 @@ + +y0. +J(ö8P?j¥¾?|Ї?-Ž?ˆâ>V»¡?\†?PÁ? +&ô?€Zˆ?. +J(44‡?ë̦?у?e<¿?žö·=wk4?Vß!?ûй?`gÜ?r¢Æ?. +J(S Ÿ?ëdÉ?Èéj?Óª¬?‘Z >œ÷ ?eA?šâÇ?ª˜»?ˆYŒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/model.onnx new file mode 100644 index 0000000000..d0fcda83bc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fd31b6465b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,5 @@ + +x0. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..497228ce03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,2 @@ + +Bx1J(Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5cd6cbb0d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,6 @@ + +y0. +J(ö8P?j¥¾?|Ї?-Ž?ˆâ>V»¡?\†?PÁ? +&ô?€Zˆ?. +J(44‡?ë̦?у?e<¿?žö·=wk4?Vß!?ûй?`gÜ?r¢Æ?. +J(S Ÿ?ëdÉ?Èéj?Óª¬?‘Z >œ÷ ?eA?šâÇ?ª˜»?ˆYŒ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/model.onnx new file mode 100644 index 0000000000..5282022faf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/model.onnx @@ -0,0 +1,29 @@ + backend-test:ó +ˆ +x0 +x1y0" SequenceMap*m +body2b + +in0 +in1out0"Add seq_map_bodyZ +in0 +  +NZ +in1 +  +Nb +out0 +  +N !test_sequence_map_add_2_sequencesZ +x0" + +  +NZ +x1" + +  +Nb +y0" + +  +NB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16846836d8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JS¢[?}åX?ß¡?®ÍÄ>uV˜>ÞKh= +J›™‹>J†ô>JêO?‘¿õ>É> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8a6f6cc394 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/input_1.pb @@ -0,0 +1,4 @@ + +x1JB V?1¿¬>˜î%?(м>u?¸> +J +¾^?JÁ|ò>}M?>? Ë-? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..19c75ae416 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÊÕØ?‹¢—?<È¢?ë«@?­™ ?ËI> +JlE’?J¤†s?dyÎ?æ€?L,‰? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/model.onnx new file mode 100644 index 0000000000..8a4026c321 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16846836d8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JS¢[?}åX?ß¡?®ÍÄ>uV˜>ÞKh= +J›™‹>J†ô>JêO?‘¿õ>É> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8a6f6cc394 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,4 @@ + +x1JB V?1¿¬>˜î%?(м>u?¸> +J +¾^?JÁ|ò>}M?>? Ë-? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..19c75ae416 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_add_2_sequences_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÊÕØ?‹¢—?<È¢?ë«@?­™ ?ËI> +JlE’?J¤†s?dyÎ?æ€?L,‰? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/model.onnx new file mode 100644 index 0000000000..445c55ccca --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/model.onnx @@ -0,0 +1,26 @@ + backend-test:ß +| +in_seqshapes" SequenceMap*] +body2R + +xshape"Shape seq_map_bodyZ +x + +H +W +Cb +shape + + +  test_sequence_map_extract_shapesZ# +in_seq" + + +H +W +Cb +shapes" + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1d9ade7c08 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..705f76b579 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/model.onnx new file mode 100644 index 0000000000..dd35b3d16a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1d9ade7c08 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..705f76b579 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_extract_shapes_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/model.onnx new file mode 100644 index 0000000000..200e1a5c9e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/model.onnx @@ -0,0 +1,20 @@ + backend-test:à +n +xy" SequenceMap*Y +body2N + +in0out0"Identity seq_map_bodyZ +in0 +  +Nb +out0 +  +M %test_sequence_map_identity_1_sequenceZ +x" + +  +Nb +y" + +  +NB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8c9410d4f7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/input_0.pb @@ -0,0 +1,5 @@ + +x. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7ae380183 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence/test_data_set_0/output_0.pb @@ -0,0 +1,5 @@ + +y. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/model.onnx new file mode 100644 index 0000000000..65bb2f2a6a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/model.onnx @@ -0,0 +1,36 @@ + backend-test:Å +º +x0 +x1y0y1" SequenceMap*š +body2Ž + +in0out0"Identity + +in1out1"Identity seq_map_bodyZ +in0 +  +NZ +in1 +  +Mb +out0 +  +Nb +out1 +  +M .test_sequence_map_identity_1_sequence_1_tensorZ +x0" + +  +NZ +x1 +  +Mb +y0" + +  +Nb +y1" + +  +MB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e212b2b784 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..92a7bbb929 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bx1JGì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f80a82295b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..fb519d2ddb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor/test_data_set_0/output_1.pb @@ -0,0 +1,2 @@ + +y1JGì>ÃÐG?JGì>ÃÐG?JGì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/model.onnx new file mode 100644 index 0000000000..f4eb2c0469 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e212b2b784 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..92a7bbb929 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +Bx1JGì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f80a82295b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..fb519d2ddb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_1_tensor_expanded/test_data_set_0/output_1.pb @@ -0,0 +1,2 @@ + +y1JGì>ÃÐG?JGì>ÃÐG?JGì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/model.onnx new file mode 100644 index 0000000000..2dd21122dd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8c9410d4f7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,5 @@ + +x. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7ae380183 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_1_sequence_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,5 @@ + +y. +J(  ?¦7?³N?w} ?HéØ>QY%?n à>. +J(~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?. +J(»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/model.onnx new file mode 100644 index 0000000000..50d882e4f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/model.onnx @@ -0,0 +1,37 @@ + backend-test:Á +º +x0 +x1y0y1" SequenceMap*š +body2Ž + +in0out0"Identity + +in1out1"Identity seq_map_bodyZ +in0 +  +NZ +in1 +  +Mb +out0 +  +Nb +out1 +  +M &test_sequence_map_identity_2_sequencesZ +x0" + +  +NZ +x1" + +  +Mb +y0" + +  +Nb +y1" + +  +MB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e212b2b784 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c903c9f120 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/input_1.pb @@ -0,0 +1,3 @@ + +x1JGì>ÃÐG?&J ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>J ¢v +>Ïõ¥>^D> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f80a82295b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c0f023f1c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences/test_data_set_0/output_1.pb @@ -0,0 +1,3 @@ + +y1JGì>ÃÐG?&J ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>J ¢v +>Ïõ¥>^D> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/model.onnx new file mode 100644 index 0000000000..d44df3bd21 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e212b2b784 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +x0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c903c9f120 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/input_1.pb @@ -0,0 +1,3 @@ + +x1JGì>ÃÐG?&J ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>J ¢v +>Ïõ¥>^D> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f80a82295b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +y0JÍ!X?S¢[?}åX?ß¡?®ÍÄ>uV˜>* J$š²v?rRÄ>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<Ju?¸> +¾^?Á|ò> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..0c0f023f1c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sequence_map_identity_2_sequences_expanded/test_data_set_0/output_1.pb @@ -0,0 +1,3 @@ + +y1JGì>ÃÐG?&J ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>J ¢v +>Ïõ¥>^D> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape/model.onnx new file mode 100644 index 0000000000..2ced588748 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape/model.onnx @@ -0,0 +1,13 @@ + backend-test:E + +xy"Shape +test_shapeZ +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7a659f383d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/model.onnx new file mode 100644 index 0000000000..9df1fba38e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/model.onnx @@ -0,0 +1,15 @@ + backend-test:Z + +xy"Shape* + +end + test_shape_clip_endZ +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7a659f383d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_end/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/model.onnx new file mode 100644 index 0000000000..6276b367dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/model.onnx @@ -0,0 +1,13 @@ + backend-test:g +$ +xy"Shape* +startöÿÿÿÿÿÿÿÿ test_shape_clip_startZ +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7a659f383d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_clip_start/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/model.onnx new file mode 100644 index 0000000000..62bb41ca68 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/model.onnx @@ -0,0 +1,14 @@ + backend-test:W + +xy"Shape* + +end test_shape_end_1Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e1731c0aaa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/model.onnx new file mode 100644 index 0000000000..974845e56c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/model.onnx @@ -0,0 +1,13 @@ + backend-test:i +" +xy"Shape* +endÿÿÿÿÿÿÿÿÿ test_shape_end_negative_1Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9fe08acfb0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_end_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/model.onnx new file mode 100644 index 0000000000..b8f5874c07 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:I + +xy"Shapetest_shape_exampleZ +x +  + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9a18aeeb9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..460c22080f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/model.onnx new file mode 100644 index 0000000000..881ced29de --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/model.onnx @@ -0,0 +1,13 @@ + backend-test:[ + +xy"Shape* +start test_shape_start_1Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2f337159bf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/model.onnx new file mode 100644 index 0000000000..9929f60d22 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/model.onnx @@ -0,0 +1,15 @@ + backend-test:m +' +xy"Shape* + +end * +start test_shape_start_1_end_2Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2b96782f6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/model.onnx new file mode 100644 index 0000000000..c7db7f4abc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/model.onnx @@ -0,0 +1,14 @@ + backend-test: +0 +xy"Shape* +endÿÿÿÿÿÿÿÿÿ * +start !test_shape_start_1_end_negative_1Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d2b96782f6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_1_end_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/model.onnx new file mode 100644 index 0000000000..512f6d72bb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/model.onnx @@ -0,0 +1,13 @@ + backend-test:m +$ +xy"Shape* +startÿÿÿÿÿÿÿÿÿ test_shape_start_negative_1Z +x + + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..149ec66017 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shape_start_negative_1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/model.onnx new file mode 100644 index 0000000000..3a4f933eff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..79ecbb47a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1a4b178ab3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_hard/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/model.onnx new file mode 100644 index 0000000000..ffa28f8383 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..79ecbb47a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..236d0ac30e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_shrink_soft/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/model.onnx new file mode 100644 index 0000000000..f03fcd156a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/model.onnx @@ -0,0 +1,13 @@ + backend-test:Q + +xy"Sigmoid test_sigmoidZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..498ddbf271 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/model.onnx new file mode 100644 index 0000000000..685eb24b72 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:I + +xy"Sigmoidtest_sigmoid_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..82f3b77551 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sigmoid_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sign/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sign/model.onnx new file mode 100644 index 0000000000..8ff938610f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sign/model.onnx @@ -0,0 +1,11 @@ + backend-test:; + +xy"Sign test_signZ +x + + + b +y + + + B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..edc96c8d69 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b508c532b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sign/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/model.onnx new file mode 100644 index 0000000000..e8c9cf7b7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/model.onnx @@ -0,0 +1,33 @@ + backend-test:Ù +9 +X +W +RYY_h"RNN* + hidden_size * +layout test_simple_rnn_batchwiseZ +X + + + +Z +W + + + +Z +R + + + +b +Y + + + + +b +Y_h + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a4c92c6a4c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b5abd705bd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..b7c321d162 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..69704298bb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BYJ0Ì·g?Ì·g?Ì·g?Ì·g?–ˆ?–ˆ?–ˆ?–ˆ?Ðý?Ðý?Ðý?Ðý? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..22c3315f03 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_batchwise/test_data_set_0/output_1.pb @@ -0,0 +1 @@ +BY_hJ0Ì·g?Ì·g?Ì·g?Ì·g?–ˆ?–ˆ?–ˆ?–ˆ?Ðý?Ðý?Ðý?Ðý? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/model.onnx new file mode 100644 index 0000000000..85d46f50b8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..17423bca02 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..973f82b201 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a8590fb2a3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJ@ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d3ae343ac8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_defaults/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ0í&•>í&•>í&•>í&•>Ù·?Ù·?Ù·?Ù·?íL?íL?íL?íL? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/model.onnx new file mode 100644 index 0000000000..450d4b03f6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9cb9bf0ac3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..156d7267d2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BWJ<ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..0403b66bf3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BRJdÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ=ÍÌÌ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..508d52daa5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..34c0d4855c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_simple_rnn_with_initial_bias/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BY_hJ<Ù·?Ù·?Ù·?Ù·?Ù·?xòk?xòk?xòk?xòk?xòk?Á’|?Á’|?Á’|?Á’|?Á’|? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sin/model.onnx new file mode 100644 index 0000000000..893c0a845a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sin/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Sintest_sinZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..29e4a9110b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sin/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðý;{?ÒtÇ>]mT?™¤H?RÏt?ç7T¿_?P?f¾]Ó½v^Ì>·ý>˜C~?mŽ0?v“ø=tÞÛ>L°§>=??‡œP¾a¯>§A¿!¿ª?*¿B?Ï-¿¦øC?LD~¿Š\;=>¾¥Ð?¯~?3>Œ ½>¶’F¿mÈj¿#®¾*s>OMq?uÒn?ÏcÁ¾«n˜¾4à]¿u}¿†§}¿z½m?”Êù¾E0Ù¾.*s¿ •3?#ÿà4X¾çÎG¿O0Á>sNú¾ÀÂl¿˜Öæ¼F©Ô>x ˆ=Õƒ˜>µ¶¿`­µ¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/model.onnx new file mode 100644 index 0000000000..89af4cae8e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Sintest_sin_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be8a83c2a7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sin_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sinh/model.onnx new file mode 100644 index 0000000000..7536ba127d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sinh/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Sinh test_sinhZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..335d9cf7f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sinh/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð%E5@hdÒ>ˆB’?̹”@Ñ,J@ìù‘¿6ÀŒ? •¾ÄÓ½ù.Ø>ß>˜‡@//V?FÎù=EËê>w®>†b@S¾ì¢>é7v¿HÌÀa3?Šçy?6ìO¿Ô-™@‹À~;=,Ì@¾uH @W¹@DM>cDÆ>Ò)¿ª‰cÀ¿µ¾"Á >0RÈ?^ÃÁ?¢N˾³%¾`2 ¿¡Où¿ru*À‹\@g1¿†‰ç¾Ý¸Í¿…´[?úWÀ6~[¾\‚¿ÍË>‡¿¼¿>ææ¼Ûâ>çSˆ=å<>V-¿ÅÒ½¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/model.onnx new file mode 100644 index 0000000000..db291c42e9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Sinhtest_sinh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4cb4991cd5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sinh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_size/model.onnx new file mode 100644 index 0000000000..11c8ac69c3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_size/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2355ec3529 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_size/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_size_example/model.onnx new file mode 100644 index 0000000000..bf8240ea5b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_size_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9a18aeeb9b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6ca8cb761a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_size_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice/model.onnx new file mode 100644 index 0000000000..8c9a0407e9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice/model.onnx @@ -0,0 +1,36 @@ + backend-test:» +( +x +starts +ends +axes +stepsy"Slice +test_sliceZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +Z +steps + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..fcc1054b6d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f5957cc580 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..a067b9907e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..8a16805e8a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ab98615155 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +ByJØxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l?ÙºÀ>*¹Œ¿­²˜>Ç©?3Ï1¿Ì9¾rÌÞ¾­´ì?‚,?ÖžÐ>8E¿< +?¡,¿Â`=ÏÆ"¿»*-?u›?ELU¾dÁÊ>qé‹¿‡á¾¿ó÷à>u¬*>l‘"?r…@hÉq?¸®i¿dúŽ?§o¨¿ÑTì¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/model.onnx new file mode 100644 index 0000000000..37579effbe --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/model.onnx @@ -0,0 +1,25 @@ + backend-test:’ + +x +starts +endsy"Slicetest_slice_default_axesZ +x + + + + +Z +starts + + +Z +ends + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d407e45907 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..8235cfa62f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3bc16d58b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_axes/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/model.onnx new file mode 100644 index 0000000000..80211fa487 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/model.onnx @@ -0,0 +1,30 @@ + backend-test:­ +! +x +starts +ends +axesy"Slicetest_slice_default_stepsZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +b +y + + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d407e45907 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..8235cfa62f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..f0febb06e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3bc16d58b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_default_steps/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/model.onnx new file mode 100644 index 0000000000..5fb569184c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/model.onnx @@ -0,0 +1,34 @@ + backend-test:Í +( +x +starts +ends +axes +stepsy"Slicetest_slice_end_out_of_boundsZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +Z +steps + + +b +y + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..f6355e9ab2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..e69ecf6bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f2b5359368 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de6ff73b88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_end_out_of_bounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/model.onnx new file mode 100644 index 0000000000..f0d9bb4fbb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/model.onnx @@ -0,0 +1,34 @@ + backend-test:¿ +( +x +starts +ends +axes +stepsy"Slicetest_slice_negZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +Z +steps + + +b +y + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..6993ea4ef8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..9f204f888c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +BendsJÿÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f2b5359368 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6512db50db Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/model.onnx new file mode 100644 index 0000000000..2f1b8eb45c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/model.onnx @@ -0,0 +1,34 @@ + backend-test:Å +( +x +starts +ends +axes +stepsy"Slicetest_slice_neg_stepsZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +Z +steps + + +b +y + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5ad173903f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..1cefc061b8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..f0febb06e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..b9a2bbfadd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/input_4.pb @@ -0,0 +1 @@ +BstepsJÿÿÿÿÿÿÿÿýÿÿÿÿÿÿÿþÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fe91b5eacf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_neg_steps/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +ByJȺZ·¾åçÀ=ëp¿Š#¹¾´òK?€ÝÈ?Ö î½³¯·?U»Ÿ¾˜Ý>æp¾Ì"‡¾RÝξ¼RÅ¿ðC¿!Tu=n›]?¥ž>wb=™ +¿?@S=­°ú<¼<6I×?xT¿bÞ‰¿,ô>C§?N[¾Íï<ùq›>"T8?"Ò@¬ì¿Ns ¿«½í¾Ú|Š?ImK¿(¿aA?öõÀ>#Š?è¯Æ?6 ”½Yè¾^­î>SåÀ¿XĨ>à6¾Ûî]¾<ç ¿ å‘¿¿é?Gì?rÄ!¿®É#ÀÛÌ£¿Èœ?Åß?ô#†?PrŸ½Ö¤¿Ó\?µ¤h¿‘€>½ K¿Éâ½Ððv¿Ošx¿dt^?Ü?¦x>Ø@Z? ’?;=*[À­b¿·)ʾé³>úv >á/*ÀèóE?ÞÂÛ½áâ’¾÷w½>t<?¤›’>.*1¿½yÇ=¤µ=˳»¿ñ0Š?Éý“¿øø +¿Ö-½- Â>Y«?+ÑR?+ ?-Ä$¿MF¢>»Å¿ÑTì¾dúŽ?ÏÆ"¿¡,¿½l?÷º¾ÑÍ>h—ä? ¾?Okî>²ÄT=Ìñì> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/model.onnx new file mode 100644 index 0000000000..d01aa2a181 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/model.onnx @@ -0,0 +1,30 @@ + backend-test:­ +! +x +starts +ends +axesy"Slicetest_slice_negative_axesZ +x + + + + +Z +starts + + +Z +ends + + +Z +axes + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d407e45907 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..8235cfa62f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..0a4bfd11f5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3bc16d58b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_negative_axes/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/model.onnx new file mode 100644 index 0000000000..3d995f38d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dbead81fac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cd22222d0c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..e69ecf6bff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_3.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_3.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_3.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_4.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_4.pb new file mode 100644 index 0000000000..f2b5359368 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/input_4.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f3f730287a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_slice_start_out_of_bounds/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/model.onnx new file mode 100644 index 0000000000..6ae888a439 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dd62065039 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðÔÀŠ>óQJ>¨:>/Ø?¥º>eE >˜ž¹>\ ƒ>/ýÒ=i¸Y>âw>°ñ?ò·¯>‹ÎÆ=‘XÇ> W®>óùþ>oÂT>&”>Éê>¬³?¬W‚>¸Šf>Ÿè=o ?ß ?KH>Õ‡>iQÜ>)é?Йz>Ð3O>«vÇ>Á~?…µ>Ô’>FÛÃ>/?)’Ÿ>ÀȆ>«¯>­? ?þ¿?ûJÂ>ôa¿=¸ñ:>B=û>‡õ>Nïî>õ¢2>a?rQ>bш>ÛN>ꋃ> ¦¿>«ô=GGÌ>x.> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/model.onnx new file mode 100644 index 0000000000..1092330ae7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dd62065039 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_0_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðÔÀŠ>óQJ>¨:>/Ø?¥º>eE >˜ž¹>\ ƒ>/ýÒ=i¸Y>âw>°ñ?ò·¯>‹ÎÆ=‘XÇ> W®>óùþ>oÂT>&”>Éê>¬³?¬W‚>¸Šf>Ÿè=o ?ß ?KH>Õ‡>iQÜ>)é?Йz>Ð3O>«vÇ>Á~?…µ>Ô’>FÛÃ>/?)’Ÿ>ÀȆ>«¯>­? ?þ¿?ûJÂ>ôa¿=¸ñ:>B=û>‡õ>Nïî>õ¢2>a?rQ>bш>ÛN>ꋃ> ¦¿>«ô=GGÌ>x.> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/model.onnx new file mode 100644 index 0000000000..6b0e9ec2cc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/model.onnx @@ -0,0 +1,14 @@ + backend-test:e + +xy"Softmax* +axis test_softmax_axis_1Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d61d8aa11d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð¬F?uî=Çl½> 9?á` ?è^v>­£N>e¡%>n‘®=‚Þ>p*Ö=K«>÷]˜>âѱ= C>/q>˜²>É.>T×=òZJ>þò(?|¾z>P(‚>G0 >\†?QCa>¬ˆ>*>>#p™>›…„>Kµu=_>>z;…>~)ð>ô´¬=‚ v=ã,ß> }¶>ç8Ã=·¥=è5®>Ð>ü?“gÑ>Êž>n9=>&°>æ)P>›ƒ•>¶ÿk>|{•>†!>|o>éâA>õ9D>Èc;># ×=”s>oà=‰> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/model.onnx new file mode 100644 index 0000000000..c1ae594724 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/model.onnx @@ -0,0 +1,29 @@ + backend-test:« +R1Softmax_test_softmax_axis_1_expanded_functionaxes"Constant* +value*:  +f +x8Softmax_test_softmax_axis_1_expanded_functionX_ReduceMax" ReduceMax* +axes@ * +keepdims  +v +x +8Softmax_test_softmax_axis_1_expanded_functionX_ReduceMax2Softmax_test_softmax_axis_1_expanded_functionX_Sub"Sub +m +2Softmax_test_softmax_axis_1_expanded_functionX_Sub2Softmax_test_softmax_axis_1_expanded_functionX_Exp"Exp +½ +2Softmax_test_softmax_axis_1_expanded_functionX_Exp +1Softmax_test_softmax_axis_1_expanded_functionaxes8Softmax_test_softmax_axis_1_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +v +2Softmax_test_softmax_axis_1_expanded_functionX_Exp +8Softmax_test_softmax_axis_1_expanded_functionX_ReduceSumy"Divtest_softmax_axis_1_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d61d8aa11d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_1_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJð¬F?uî=Çl½> 9?á` ?è^v>­£N>e¡%>n‘®=‚Þ>p*Ö=K«>÷]˜>âѱ= C>/q>˜²>É.>T×=òZJ>þò(?|¾z>P(‚>G0 >\†?QCa>¬ˆ>*>>#p™>›…„>Kµu=_>>z;…>~)ð>ô´¬=‚ v=ã,ß> }¶>ç8Ã=·¥=è5®>Ð>ü?“gÑ>Êž>n9=>&°>æ)P>›ƒ•>¶ÿk>|{•>†!>|o>éâA>õ9D>Èc;># ×=”s>oà=‰> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/model.onnx new file mode 100644 index 0000000000..26164ecd24 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/model.onnx @@ -0,0 +1,14 @@ + backend-test:e + +xy"Softmax* +axis test_softmax_axis_2Z +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/model.onnx new file mode 100644 index 0000000000..dabe5ed518 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/model.onnx @@ -0,0 +1,29 @@ + backend-test:« +R1Softmax_test_softmax_axis_2_expanded_functionaxes"Constant* +value*:  +f +x8Softmax_test_softmax_axis_2_expanded_functionX_ReduceMax" ReduceMax* +axes@ * +keepdims  +v +x +8Softmax_test_softmax_axis_2_expanded_functionX_ReduceMax2Softmax_test_softmax_axis_2_expanded_functionX_Sub"Sub +m +2Softmax_test_softmax_axis_2_expanded_functionX_Sub2Softmax_test_softmax_axis_2_expanded_functionX_Exp"Exp +½ +2Softmax_test_softmax_axis_2_expanded_functionX_Exp +1Softmax_test_softmax_axis_2_expanded_functionaxes8Softmax_test_softmax_axis_2_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +v +2Softmax_test_softmax_axis_2_expanded_functionX_Exp +8Softmax_test_softmax_axis_2_expanded_functionX_ReduceSumy"Divtest_softmax_axis_2_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_axis_2_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/model.onnx new file mode 100644 index 0000000000..28c0875985 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/model.onnx @@ -0,0 +1,13 @@ + backend-test:^ + +xy"Softmaxtest_softmax_default_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/model.onnx new file mode 100644 index 0000000000..b742ad6d6c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/model.onnx @@ -0,0 +1,30 @@ + backend-test:‡ +a7Softmax_test_softmax_default_axis_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +u +x>Softmax_test_softmax_default_axis_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +‚ +x +>Softmax_test_softmax_default_axis_expanded_functionX_ReduceMax8Softmax_test_softmax_default_axis_expanded_functionX_Sub"Sub +y +8Softmax_test_softmax_default_axis_expanded_functionX_Sub8Softmax_test_softmax_default_axis_expanded_functionX_Exp"Exp +Ï +8Softmax_test_softmax_default_axis_expanded_functionX_Exp +7Softmax_test_softmax_default_axis_expanded_functionaxes>Softmax_test_softmax_default_axis_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +‚ +8Softmax_test_softmax_default_axis_expanded_functionX_Exp +>Softmax_test_softmax_default_axis_expanded_functionX_ReduceSumy"Div"test_softmax_default_axis_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_default_axis_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/model.onnx new file mode 100644 index 0000000000..689f0a7b86 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:Q + +xy"Softmaxtest_softmax_exampleZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a00f7191aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cf3e52ef0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ óa¸=šz>;M*? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/model.onnx new file mode 100644 index 0000000000..225b45fb26 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/model.onnx @@ -0,0 +1,28 @@ + backend-test:Á +\2Softmax_test_softmax_example_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +p +x9Softmax_test_softmax_example_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +x +x +9Softmax_test_softmax_example_expanded_functionX_ReduceMax3Softmax_test_softmax_example_expanded_functionX_Sub"Sub +o +3Softmax_test_softmax_example_expanded_functionX_Sub3Softmax_test_softmax_example_expanded_functionX_Exp"Exp +À +3Softmax_test_softmax_example_expanded_functionX_Exp +2Softmax_test_softmax_example_expanded_functionaxes9Softmax_test_softmax_example_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +x +3Softmax_test_softmax_example_expanded_functionX_Exp +9Softmax_test_softmax_example_expanded_functionX_ReduceSumy"Divtest_softmax_example_expandedZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a00f7191aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0cf3e52ef0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_example_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ óa¸=šz>;M*? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/model.onnx new file mode 100644 index 0000000000..108e775d96 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/model.onnx @@ -0,0 +1,11 @@ + backend-test:V + +xy"Softmaxtest_softmax_large_numberZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..559a11acd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7be3b88538 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ âO=¹x²=j‘r>‘×$?âO=¹x²=j‘r>‘×$? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/model.onnx new file mode 100644 index 0000000000..db3d34d318 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/model.onnx @@ -0,0 +1,28 @@ + backend-test:ÿ +a7Softmax_test_softmax_large_number_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +u +x>Softmax_test_softmax_large_number_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +‚ +x +>Softmax_test_softmax_large_number_expanded_functionX_ReduceMax8Softmax_test_softmax_large_number_expanded_functionX_Sub"Sub +y +8Softmax_test_softmax_large_number_expanded_functionX_Sub8Softmax_test_softmax_large_number_expanded_functionX_Exp"Exp +Ï +8Softmax_test_softmax_large_number_expanded_functionX_Exp +7Softmax_test_softmax_large_number_expanded_functionaxes>Softmax_test_softmax_large_number_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +‚ +8Softmax_test_softmax_large_number_expanded_functionX_Exp +>Softmax_test_softmax_large_number_expanded_functionX_ReduceSumy"Div"test_softmax_large_number_expandedZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..559a11acd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7be3b88538 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_large_number_expanded/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ âO=¹x²=j‘r>‘×$?âO=¹x²=j‘r>‘×$? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/model.onnx new file mode 100644 index 0000000000..87881ea152 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/model.onnx @@ -0,0 +1,14 @@ + backend-test:u +% +xy"Softmax* +axisÿÿÿÿÿÿÿÿÿ test_softmax_negative_axisZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/model.onnx new file mode 100644 index 0000000000..227ca5ac89 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/model.onnx @@ -0,0 +1,30 @@ + backend-test:“ +b8Softmax_test_softmax_negative_axis_expanded_functionaxes"Constant* +value*: +ÿÿÿÿÿÿÿÿÿ  +v +x?Softmax_test_softmax_negative_axis_expanded_functionX_ReduceMax" ReduceMax* +axes@ÿÿÿÿÿÿÿÿÿ * +keepdims  +„ +x +?Softmax_test_softmax_negative_axis_expanded_functionX_ReduceMax9Softmax_test_softmax_negative_axis_expanded_functionX_Sub"Sub +{ +9Softmax_test_softmax_negative_axis_expanded_functionX_Sub9Softmax_test_softmax_negative_axis_expanded_functionX_Exp"Exp +Ò +9Softmax_test_softmax_negative_axis_expanded_functionX_Exp +8Softmax_test_softmax_negative_axis_expanded_functionaxes?Softmax_test_softmax_negative_axis_expanded_functionX_ReduceSum" ReduceSum* +keepdims  +„ +9Softmax_test_softmax_negative_axis_expanded_functionX_Exp +?Softmax_test_softmax_negative_axis_expanded_functionX_ReduceSumy"Div#test_softmax_negative_axis_expandedZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26c97e6991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softmax_negative_axis_expanded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softplus/model.onnx new file mode 100644 index 0000000000..af145543a7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softplus/model.onnx @@ -0,0 +1,13 @@ + backend-test:S + +xy"Softplus test_softplusZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..279b05d942 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softplus/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/model.onnx new file mode 100644 index 0000000000..070aeb04d8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:K + +xy"Softplustest_softplus_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..38457adfc5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softplus_example/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ Õc >r1?õ¨? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softsign/model.onnx new file mode 100644 index 0000000000..8153b1eee5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softsign/model.onnx @@ -0,0 +1,13 @@ + backend-test:S + +xy"Softsign test_softsignZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a3f7ba64c8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softsign/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/model.onnx new file mode 100644 index 0000000000..ad246c5715 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:K + +xy"Softsigntest_softsign_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc3568ade0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_softsign_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/model.onnx new file mode 100644 index 0000000000..756c871f0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/model.onnx @@ -0,0 +1,16 @@ + backend-test:u +& +xy" SpaceToDepth* + blocksize test_spacetodepthZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..31fb558538 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ea1db0c8be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/model.onnx new file mode 100644 index 0000000000..c07aed1fbc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:} +& +xy" SpaceToDepth* + blocksize test_spacetodepth_exampleZ +x + + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..28c6996dc8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f71f647a4a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_spacetodepth_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/model.onnx new file mode 100644 index 0000000000..5f7be502e5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..547a3af79b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d8ae6a55e7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..69df4a67a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..645225b0b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_1d/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/model.onnx new file mode 100644 index 0000000000..0e5365f684 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/model.onnx @@ -0,0 +1,16 @@ + backend-test: +/ +inputoutput_1output_2"Split* +axis test_split_equal_parts_2dZ +input +  + +b +output_1 +  + +b +output_2 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8708fe5cdc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fef1d0db23 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..66077a2702 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_2d/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/model.onnx new file mode 100644 index 0000000000..3cee40bd10 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/model.onnx @@ -0,0 +1,19 @@ + backend-test:° +, +inputoutput_1output_2output_3"Split#test_split_equal_parts_default_axisZ +input + + +b +output_1 + + +b +output_2 + + +b +output_3 + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..547a3af79b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d8ae6a55e7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..69df4a67a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..645225b0b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_equal_parts_default_axis/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/model.onnx new file mode 100644 index 0000000000..d87fab03f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..547a3af79b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbfc1ff6b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d8ae6a55e7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..7debf1d829 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_1d/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/model.onnx new file mode 100644 index 0000000000..7b4ba520f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/model.onnx @@ -0,0 +1,21 @@ + backend-test:¼ +6 +input +splitoutput_1output_2"Split* +axis test_split_variable_parts_2dZ +input +  + +Z +split + + +b +output_1 +  + +b +output_2 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8708fe5cdc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbfc1ff6b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6316dcd25b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..7c0f7af5f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_2d/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/model.onnx new file mode 100644 index 0000000000..12e3bd0f3e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/model.onnx @@ -0,0 +1,20 @@ + backend-test:­ +) +input +splitoutput_1output_2"Split&test_split_variable_parts_default_axisZ +input + + +Z +split + + +b +output_1 + + +b +output_2 + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..547a3af79b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbfc1ff6b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d8ae6a55e7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..7debf1d829 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_variable_parts_default_axis/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/model.onnx new file mode 100644 index 0000000000..346c8f9b39 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..16d4ac7a39 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ff7ae24815 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..14aa56f56b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..2f700936b7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..f45e84e61d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_split_zero_size_splits/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/model.onnx new file mode 100644 index 0000000000..59b5f4b0ad --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Sqrt test_sqrtZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c3a1c952e0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z?ÿ8s?bý>hdÓ=ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R>iJ >¦Z?/d#@ŒS'?±K]?‡þ=?©C@¨(º?Hm;= ­?>2Ä?ó¼?Šª>…žÁ>íEc?½Šý?‹!²>ò >*z?•ç™?³OÆ>mÇš>ü6†?&õ?gÚ?³ù?‘x?FKà>™[ ?œ G?4”Î?—ØY>L=e?Æ> Ä?õ—?kÞæ.:ˆ=™Ýš>ïb"?6¹¹> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..292f9e1796 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sqrt/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/model.onnx new file mode 100644 index 0000000000..8236f8c454 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Sqrttest_sqrt_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a9e7f45d26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1b32d5d742 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sqrt_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/model.onnx new file mode 100644 index 0000000000..26798f82ed --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/model.onnx @@ -0,0 +1,19 @@ + backend-test:o + +x +axesy"Squeeze test_squeezeZ +x + + + + +Z +axes + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..09d5a14a4b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ec9874a7b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/model.onnx new file mode 100644 index 0000000000..e148d48ca6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/model.onnx @@ -0,0 +1,19 @@ + backend-test:} + +x +axesy"Squeezetest_squeeze_negative_axesZ +x + + + + +Z +axes + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..55c2bdcf0e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f4bbd39a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BaxesJþÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ed4b2d0f6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_squeeze_negative_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/model.onnx new file mode 100644 index 0000000000..07c9b4e374 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/model.onnx @@ -0,0 +1,14 @@ + backend-test:Å +j +xy"StringNormalizer* +case_change_action"LOWER * +is_case_sensitive * + stopwordsJmonday 5test_strnormalizer_export_monday_casesensintive_lowerZ +x + + +b +y + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..179b510f58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2tuesday2 wednesday2thursdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cdc27a745e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_lower/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2tuesday2 wednesday2thursdayBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_nochangecase/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_nochangecase/model.onnx new file mode 100644 index 0000000000..fa9c6e29d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_strnormalizer_export_monday_casesensintive_nochangecase/model.onnx @@ -0,0 +1,13 @@ + backend-test:¬ +J +xy"StringNormalizer* +is_case_sensitive * + stopwordsJmonday “Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1424d72971 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJð^&,¿Z¸¾[*P¿ÔöÜ¿3¯5>;¶Í¾WªÐ¿Ìñì>µDh¿²ÄT=®¥:?>âב?Æž¿¹ÿÍ>·O/¿ì^¿~/¿ÐƒŸ¾¡ f=¡#•¿‘œf?Okî>¢£Ä¿ ¾?¬ò?@â–?7>8¾l‰¿Fø†?5mξyœ? FU>z?¨u¶>ûá4?G,õ>ÑÍ> ñ?^ƒ¬¿AŸ¢¿b*x?è(–¿”Èø?ÞÅÓ¾3Y?¿÷"ö?‚½?, ï?‹òg?Iy\¿}ô?½7‰¾ÈmM?r?÷º¾N4?½l? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad0a46bf46 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +BzJðÔï@a|B?w\å?5æ}@>VØ?ÄS¿k#%@>8¿(ØM?b¡·>¤Å¿£©?̸Á¾Ò¡­?*=³]‚?"Z@{T¿>ç?ßi¿½¤±¿$}¾,Ì>½HK?ŒH?”jVÀÖ‘¿ Ýí»D &@´nÔ>=á?æ"X¿¸KŒ¿ F=ÀšK4¿~Û ¿"œ?¦_¿)¥¿}L4¿¡;À€ü“½<ß¾¢;{??Ù)?³mÀCÔV¿h1Ã?–[bÀ•¼Ø¿iÕ0À€æ¿Rj³>üÍEÀ­“u>?¿¾Õwa¿;ê>žËŸ¿,y¤¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/model.onnx new file mode 100644 index 0000000000..4cf126e7c9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/model.onnx @@ -0,0 +1,18 @@ + backend-test:c + +x +yz"Subtest_sub_bcastZ +x + + + +Z +y + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..dcbe531c44 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +ByJ^&,¿Z¸¾[*P¿ÔöÜ¿3¯5> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d037b77fc2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sub_bcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/model.onnx new file mode 100644 index 0000000000..8071c8ca5b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/model.onnx @@ -0,0 +1,16 @@ + backend-test:U + +x +yz"Subtest_sub_exampleZ +x + + +Z +y + + +b +z + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..62e4e87e30 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ce0065b385 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e2d7772386 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sub_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/model.onnx new file mode 100644 index 0000000000..fefec3b64b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/model.onnx @@ -0,0 +1,19 @@ + backend-test:k + +x +yz"Subtest_sub_uint8Z +x + + + +Z +y + + + +b +z + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8692875232 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ<      \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7066e13c27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..75d09ba75d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sub_uint8/test_data_set_0/output_0.pb @@ -0,0 +1,8 @@ +BzJ< +   +   +     + +  +    + \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/model.onnx new file mode 100644 index 0000000000..9423e1eb04 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/model.onnx @@ -0,0 +1,21 @@ + backend-test:‘ +% +data_0 +data_1 +data_2result"Sumtest_sum_exampleZ +data_0 + + +Z +data_1 + + +Z +data_2 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e6c4d118d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..81b00338e8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..17070ed435 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/model.onnx new file mode 100644 index 0000000000..ce89e7112b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/model.onnx @@ -0,0 +1,11 @@ + backend-test:W + +data_0result"Sumtest_sum_one_inputZ +data_0 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf4d7ffcfd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_one_input/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/model.onnx new file mode 100644 index 0000000000..29e94ea74b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/model.onnx @@ -0,0 +1,16 @@ + backend-test:v + +data_0 +data_1result"Sumtest_sum_two_inputsZ +data_0 + + +Z +data_1 + + +b +result + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..20406f1dc4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e6c4d118d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f7b367cec7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_sum_two_inputs/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tan/model.onnx new file mode 100644 index 0000000000..b08eca7a8f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tan/model.onnx @@ -0,0 +1,13 @@ + backend-test:I + +xy"Tantest_tanZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e1a4ad5cff --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tan/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðR„£À¥Ø>±R¾?=ˆ¡¿úJQÀf¹½¿Ä³?-/¾k%Ô½FåÞ>€‡>ª°A[Òs?pmú=Þuó>5z±>&PAzU¾Á½¥>sê’¿…ã*?üD?!–?ïÄj¿äI˜¿¥ÌÁÌŽ;=]òA¾‡TÒAñ0AÂò>ÄhË>´P¿P@@!¯¹¾6k!>†¢4@êÈ%@¨ÜоD¬Ÿ¾ëeÞ¿ ŸÒÀÔÂê@¸> À7¿Öï¾RmBÀŸû{?Y~¹Ap1]¾˜ÎŸ¿Ì›Ð>pw¿ÔŸÀîæ¼òÇé>´mˆ=˜ÄŸ>xZ<¿~R¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/model.onnx new file mode 100644 index 0000000000..ff7d2e6f37 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:A + +xy"Tantest_tan_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..92f2324117 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tan_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tanh/model.onnx new file mode 100644 index 0000000000..3fe77ec1ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tanh/model.onnx @@ -0,0 +1,13 @@ + backend-test:K + +xy"Tanh test_tanhZ +x + + + +b +y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..827ec7a1fb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tanh/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/model.onnx new file mode 100644 index 0000000000..0905997e38 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/model.onnx @@ -0,0 +1,11 @@ + backend-test:C + +xy"Tanhtest_tanh_exampleZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8a9445744b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0459e73b81 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tanh_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/model.onnx new file mode 100644 index 0000000000..c028e2e5e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c13901a20a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3cac8ee162 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/model.onnx new file mode 100644 index 0000000000..98940256cc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c13901a20a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1cf93cd8aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_onlybigrams_skip5/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/model.onnx new file mode 100644 index 0000000000..2bfadae723 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c13901a20a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..caacc1045d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_batch_uniandbigrams_skip5/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/model.onnx new file mode 100644 index 0000000000..96ee829721 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..26da97aeb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e536cb1bce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_only_bigrams_skip0/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/model.onnx new file mode 100644 index 0000000000..8f38db5aac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..26da97aeb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..de25e49487 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_levelempty/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/model.onnx new file mode 100644 index 0000000000..700c9a1f4c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..26da97aeb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..38d3b92211 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_onlybigrams_skip5/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/model.onnx new file mode 100644 index 0000000000..8466e72ec5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..26da97aeb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dee24140d7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tfidfvectorizer_tf_uniandbigrams_skip5/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/model.onnx new file mode 100644 index 0000000000..a4c19c220e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..785eddacc6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/model.onnx new file mode 100644 index 0000000000..9ff869e132 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/model.onnx @@ -0,0 +1,13 @@ + backend-test:i + +xy"ThresholdedRelutest_thresholdedrelu_defaultZ +x + + + +b +y + + + +B diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..199a6a1389 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/model.onnx new file mode 100644 index 0000000000..0f669d7e06 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..13c6863dca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1734d481ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_thresholdedrelu_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tile/model.onnx new file mode 100644 index 0000000000..1c48fb69b6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tile/model.onnx @@ -0,0 +1,21 @@ + backend-test:g + +x +yz"Tile test_tileZ +x + + + + +Z +y + + +b +z + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7a5f0f8742 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJà  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤Š>­5 ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..33f6604a92 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dc79fc5ec5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tile/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ + +BzJ€ì  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?  ?¦7?³N?w} ?HéØ>  ?¦7?³N?w} ?HéØ>QY%?n à>QY%?n à>~®J?¨e?^k?çól?Z{‘=~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?»†z?¨•L?Gì>ÃÐG?Ý9ò=»†z?¨•L?Gì>ÃÐG?Ý9ò=ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>ÝÑ#?4Ë>ÒÕq?Ú—?’NÔ>Õs‡>.4F?‰Œé>ã„?í™<Õs‡>.4F?‰Œé>ã„?í™<\?N²?cï?y™q?Æ‹.?\?N²?cï?y™q?Æ‹.?k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>k¸>§Âß>õ—2?ü®v=9±*?k¸>§Âß>õ—2?ü®v=9±*?ì®+?‡nW>A>Ó¡>L8º>ì®+?‡nW>A>Ó¡>L8º>jø?aà>}?ßüÐ=ÊãU>jø?aà>}?ßüÐ=ÊãU>R.%>2'?p¯>IÀî>´Jz>R.%>2'?p¯>IÀî>´Jz>ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=ìÈ">] â=7(?Õ >ãLI>ìÈ">] â=7(?Õ >ãLI>ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=ŒÉ¼>,R? ÝÆ=ƒV?>ÏÄ=?ùy? óï> z?(×?a@=??ùy? óï> z?(×?a@=?aƒ =Ì>)ö=°Ÿ—>…'ó=aƒ =Ì>)ö=°Ÿ—>…'ó=±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤GÔ>Ã_ƒ=ÚE1?Ë ?±Î¢>GÔ>Ã_ƒ=ÚE1?Ë ?"á‡>–ó?âcÀ=;q?[æm?"á‡>–ó?âcÀ=;q?[æm?x£>hÛ*?ö>8a7? -”>x£>hÛ*?ö>8a7? -”>„–;>¶%?•¸¤¶%?•¸¤Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1?b…-?|>Š>­5b…-?|>Š>­5 ???ƒod>\çs? ???ƒod>\çs?žíä>=®X?3?¨I˜>UP?žíä>=®X?3?¨I˜>UP?ÍË>ûa?MÎ?i¹a?ÀI1?ÍË>ûa?MÎ?i¹a?ÀI1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/model.onnx new file mode 100644 index 0000000000..ae4be32dab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/model.onnx @@ -0,0 +1,16 @@ + backend-test:c + +x +yz"Tiletest_tile_precomputedZ +x +  + +Z +y + + +b +z +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..188fd6ddef Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d57e6d6e9c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..449a9c05ca Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_tile_precomputed/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_top_k/model.onnx new file mode 100644 index 0000000000..79731ef9f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_top_k/model.onnx @@ -0,0 +1,22 @@ + backend-test:“ +* +x +kvaluesindices"TopK* +axis  +test_top_kZ +x +  + +Z +k + + +b +values +  + +b +indices +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3a5dd6da89 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1e2082fc75 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80bb4fae68 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..d21d60348d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/model.onnx new file mode 100644 index 0000000000..b664c269cf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/model.onnx @@ -0,0 +1,21 @@ + backend-test:ª +3 +x +kvaluesindices"TopK* +axisÿÿÿÿÿÿÿÿÿ test_top_k_negative_axisZ +x +  + +Z +k + + +b +values +  + +b +indices +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3a5dd6da89 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1e2082fc75 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80bb4fae68 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..d21d60348d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_negative_axis/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/model.onnx new file mode 100644 index 0000000000..583070805d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..82c518c36a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1e2082fc75 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..06b30d0ace Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..cd82f00d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_top_k_smallest/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/model.onnx new file mode 100644 index 0000000000..669ecbde0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2c1bf8de7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dcbd20d5a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/model.onnx new file mode 100644 index 0000000000..658a33ef49 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b5d0231aeb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..579996a550 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/model.onnx new file mode 100644 index 0000000000..27812e6ea1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b5d0231aeb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..579996a550 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..646972b754 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_default_mask/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/model.onnx new file mode 100644 index 0000000000..a66c08a6b3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2c1bf8de7e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dcbd20d5a9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..c1654771c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_mask/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/model.onnx new file mode 100644 index 0000000000..4530b6a4a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a1b82ab9d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/model.onnx new file mode 100644 index 0000000000..6731f32062 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..a1b82ab9d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..f66a23b9ba --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/input_2.pb @@ -0,0 +1 @@ + BtJ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ad67ee7f4d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..de98527e0f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_training_dropout_zero_ratio_mask/test_data_set_0/output_1.pb @@ -0,0 +1 @@ + BzJ< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/model.onnx new file mode 100644 index 0000000000..1b0e50c6d3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..36a37a6fe8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_0/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/model.onnx new file mode 100644 index 0000000000..0648cd5e35 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c4bed4b5b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_1/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?HéØ>š²v?¦7?QY%?rRÄ>³N?n à>~®J?w} ?Ùp²=¹^?ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/model.onnx new file mode 100644 index 0000000000..7971bc3f0a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..931c9d04d7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_2/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?¦7?³N?w} ?^k?çól?Z{‘=Ùp²=HéØ>QY%?n à>~®J?¨e?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/model.onnx new file mode 100644 index 0000000000..05e7a313a0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fcc0cd0dc2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_3/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?^k?¦7?çól?³N?Z{‘=w} ?Ùp²=HéØ> ¡¥H5G?¨•L?~®J?Gì>¨e?ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/model.onnx new file mode 100644 index 0000000000..36e66e8b59 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d80707af3f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BdataJ`  ?¦7?³N?w} ?HéØ>QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c17d014b8d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_4/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?HéØ>š²v?^k? ¡¥<»†z?¦7?QY%?rRÄ>çól?“&U?¨•L?³N?n à>~®J?Z{‘=H5G?Gì>w} ?QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cb9b3bab2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_all_permutations_5/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?^k?HéØ> ¡¥<š²v?»†z?¦7?çól?QY%?“&U?rRÄ>¨•L?³N?Z{‘=n à>H5G?~®J?Gì>w} ?Ùp²=QY%?n à>~®J?¨e?^k?çól?Z{‘=Ùp²= ¡¥<“&U?H5G?¹^?»†z?¨•L?Gì>ÃÐG? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_transpose_default/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_transpose_default/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cb9b3bab2e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_transpose_default/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +B +transposedJ`  ?^k?HéØ> ¡¥<š²v?»†z?¦7?çól?QY%?“&U?rRÄ>¨•L?³N?Z{‘=n à>H5G?~®J?Gì>w} ?Ùp²=“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ec9874a7b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5cfc6bead9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_0/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/model.onnx new file mode 100644 index 0000000000..8802e04112 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/model.onnx @@ -0,0 +1,19 @@ + backend-test:z + +x +axesy" Unsqueezetest_unsqueeze_axis_1Z +x + + + +Z +axes + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..3179943283 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..56042abfdb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/model.onnx new file mode 100644 index 0000000000..2a98581097 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/model.onnx @@ -0,0 +1,19 @@ + backend-test:z + +x +axesy" Unsqueezetest_unsqueeze_axis_2Z +x + + + +Z +axes + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e8256ea4de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4e331e4bdc --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_2/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/model.onnx new file mode 100644 index 0000000000..13437cae7c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/model.onnx @@ -0,0 +1,15 @@ + backend-test:m + +xy" Unsqueeze* +axes@ test_unsqueeze_axis_3Z +x + + + +b +y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5b5348d4f0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_axis_3/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/model.onnx new file mode 100644 index 0000000000..3ac7c8d948 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/model.onnx @@ -0,0 +1,21 @@ + backend-test:‰ + +x +axesy" Unsqueezetest_unsqueeze_negative_axesZ +x + + + + +Z +axes + + +b +y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..55c2bdcf0e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f4bbd39a8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +BaxesJþÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4ef93c72b4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_negative_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJ“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/model.onnx new file mode 100644 index 0000000000..4602f22464 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/model.onnx @@ -0,0 +1,21 @@ + backend-test:† + +x +axesy" Unsqueezetest_unsqueeze_three_axesZ +x + + + +Z +axes + + +b# +y + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7fff38d737 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c8b8816a6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_three_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/model.onnx new file mode 100644 index 0000000000..9c9e4100e9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/model.onnx @@ -0,0 +1,20 @@ + backend-test:€ + +x +axesy" Unsqueezetest_unsqueeze_two_axesZ +x + + + +Z +axes + + +b +y + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bcf4f4e739 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0f34445df7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_two_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/model.onnx new file mode 100644 index 0000000000..9b5f8bc12a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/model.onnx @@ -0,0 +1,21 @@ + backend-test:‰ + +x +axesy" Unsqueezetest_unsqueeze_unsorted_axesZ +x + + + +Z +axes + + +b# +y + + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bae0ffd632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..b22e7e7720 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c8b8816a6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_unsqueeze_unsorted_axes/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJðxÌá?háÌ>“Žz?Ëj@$ ï?â.z¿ÿ8s?bý¾hdÓ½ø9Ò>(€>¢%º?^ÓB?À0ù= Bã>]ת>ü=¿?R¾iJ >¦Z¿/d#ÀŒS'?±K]?‡þ=¿©C@¨(º¿Hm;= ­?¾2Ä?ó¼?Šª>…žÁ>íEc¿½Šý¿‹!²¾ò >*z?•ç™?³OƾmÇš¾ü6†¿&õ¿gÚ¿³ù?‘x¿FKྙ[ ¿œ G?4”ο—ØY¾L=e¿Æ> Ä¿õ—¿kÞæ¼QNÛ>.:ˆ=™Ýš>ïb"¿6¹¹¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/model.onnx new file mode 100644 index 0000000000..b049f22094 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..b41f51bede Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..c1adc83436 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..617f127922 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_upsample_nearest/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_where_example/model.onnx new file mode 100644 index 0000000000..94e4498181 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_where_example/model.onnx @@ -0,0 +1,21 @@ + backend-test: + + condition +x +yz"Wheretest_where_exampleZ + condition +   + +Z +x +  + +Z +y +  + +b +z +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..deccba9827 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f5057bfeb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..02ce320aac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..13d0f88991 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/model.onnx new file mode 100644 index 0000000000..bba9245092 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/model.onnx @@ -0,0 +1,21 @@ + backend-test:’ + + condition +x +yz"Wheretest_where_long_exampleZ + condition +   + +Z +x +  + +Z +y +  + +b +z +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..deccba9827 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..567dbebbab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..e4d7a0cbcf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..00461d26c2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_where_long_example/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/model.onnx new file mode 100644 index 0000000000..e17f63dfbb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/model.onnx @@ -0,0 +1,17 @@ + backend-test:_ + +x +yxor"Xor +test_xor2dZ +x +   + +Z +y +   + +b +xor +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d9541774b1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..2f37772a3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2ede816292 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/model.onnx new file mode 100644 index 0000000000..ce915d7b47 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/model.onnx @@ -0,0 +1,20 @@ + backend-test:k + +x +yxor"Xor +test_xor3dZ +x +  + + +Z +y +  + + +b +xor +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..402cb458fe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..825b4f452a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5aaed12726 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/model.onnx new file mode 100644 index 0000000000..c4ab09c457 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/model.onnx @@ -0,0 +1,23 @@ + backend-test:w + +x +yxor"Xor +test_xor4dZ +x +  + + + +Z +y +  + + + +b +xor +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3c2fb94d85 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..925bab6960 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4b38cb4546 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/model.onnx new file mode 100644 index 0000000000..57b7a689c6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/model.onnx @@ -0,0 +1,18 @@ + backend-test:k + +x +yxor"Xortest_xor_bcast3v1dZ +x +  + + +Z +y + +  +b +xor +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5cc32fe100 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1500686f96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..191b7b0ef6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/model.onnx new file mode 100644 index 0000000000..f7fc3df32e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/model.onnx @@ -0,0 +1,18 @@ + backend-test:o + +x +yxor"Xortest_xor_bcast3v2dZ +x +  + + +Z +y +   + +b +xor +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d784193ad4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8bab0d309c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..dadeaaadaf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast3v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/model.onnx new file mode 100644 index 0000000000..f9c7ccf72c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/model.onnx @@ -0,0 +1,20 @@ + backend-test:w + +x +yxor"Xortest_xor_bcast4v2dZ +x +  + + + +Z +y +   + +b +xor +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..22944e3243 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..d7cba2c1a1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..926665380a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/model.onnx new file mode 100644 index 0000000000..77dbcb6b52 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/model.onnx @@ -0,0 +1,21 @@ + backend-test:{ + +x +yxor"Xortest_xor_bcast4v3dZ +x +  + + + +Z +y +  + + +b +xor +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..70f33b925d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..7e83c141eb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..854b39a489 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/model.onnx b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/model.onnx new file mode 100644 index 0000000000..4e30fd1e50 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/model.onnx @@ -0,0 +1,22 @@ + backend-test: + +x +yxor"Xortest_xor_bcast4v4dZ +x +  + + + +Z +y +  + + + +b +xor +  + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..024a3481cd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..8e18502fa2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bb78baf438 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/node/test_xor_bcast4v4d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/model.onnx new file mode 100644 index 0000000000..a61f144602 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e0b0a859d9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +Jœ¡§¿_™º?}jê»ÏQT½…¨3¿n¬¾¾=Ž?ì¿!@Ä>ò™ù>ïQ?¿·fÓ? £Õ>×Ku=@f"=7 Ê>[¶y?þÙrÀ³p“¾A˘¾k>‘Þ¢?{.r>7˜ @¦|Ñ¿ØE‹¾^¡¢?ÕȾ† ¼=Í?ÐòÌ¿ßNd=¼Íྥ¿2Zš>IÑÃ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..03fd37f592 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +JH¾—=Ÿñ¼^ ¿a4> +íÞ>{ç>›Lt>ÿY^>gl´¿ú–¾V9C?»›?Nt¿Òúà>’N·>YÐE¿Â5¿¾¯> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/model.onnx new file mode 100644 index 0000000000..a61f144602 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..197e186856 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0fbcdcd1de --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool1d_stride/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JH}à?‡œÂ>X ?¦,á½}”¿£}+¿îÇ€¾ð¸Å¾™?§Íø¾Sd¿›ó>)ˆù¾@³"½p9J½r—?ß)?f¼Ö? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/model.onnx new file mode 100644 index 0000000000..c78cd2ff44 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7dcb965a27 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fd330e36e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/model.onnx new file mode 100644 index 0000000000..c78cd2ff44 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0240b9e6f2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3cd0ca3421 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool2d_stride/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/model.onnx new file mode 100644 index 0000000000..c63e3f7b65 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..35b2395bb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..106cb6812a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/model.onnx new file mode 100644 index 0000000000..4ca534c4c4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ab216b1e37 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d1cd503a60 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JÀŠbÒ½ç#?G ÷=?}‘‚¾\´? ا>nÒJ=T0r>à^°>'’‡>µÄ=ÿ5¾å5¿Æ=ç¾Êš>9Z>ÀÅ¾ÊØé½rl¿`­¾än½ s¾˜›+¾|ˆr=/f ¿Ç~¾ÊR÷¾¸º¾»(š¾’Ô<÷Ñ[¾:¾>_w€>a¸2¾ ‡Æ=–ž°>âù6?Lï¡>êõ>b¾l•¾Ïô·>Á»%¿#X~=ïù>н,…< \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/model.onnx new file mode 100644 index 0000000000..7a7de259ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1e043b4ce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f0a24db0d3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_AvgPool3d_stride1_pad0_gpu_input/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +JÀe8н­L¼½Æ;A¾Âp½\3†>g}%>q–A>S„ >?“¾Ça*<á; +¾_–¾ò(ͽ˜Añ<»Ú>¾ŽC¾5Õ?¡;¾>¿þì>Í.¼>œñ¸>Û–>…Bš> Vp>G\•>$uŽ>ë–£>‡m +>oÈ‹>®w»>qþÚ>YU>\@ÿnq¤½ùïZ½Ç£;œïŠ=Pἂjd<²Æ?ò¨<>ÀN>ko= Ò>Æé=r [>-íQ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/model.onnx new file mode 100644 index 0000000000..72e5c03fcd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7e3810638a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d080c146c7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm1d_3d_input_eval/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +Jð*F¯>Frä>ã\¾aX?¡ÝݾŒ…>£“¯<5?b„#¾Q=Ë€·<±¸Ó=rH¸< U·½’©¼E±µ¾s'7¾¾y—>yÚñ¾ñPæ¾Ê>•š–=®šd?©âÅ?šæÖ½"vö½D_§¼VJ²¼ópµ<R=óØò¾øg½`ÊD>}úʽÕi?=¶>œ¿1?ü%¯>²Ž«¾g€½-¬=Ú†r<wW¾ß~¼é[æ=Jhe½ ½D= !2¿UÔ¾=Ôá÷¿ WU> e"?‚¸<&p=Ó¬½c„›<}:ˆ;‚(Þ= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/model.onnx new file mode 100644 index 0000000000..c48391d443 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1797472e14 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c39a86ec2c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_eval/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +JàLý+¿³ÙU¾ˆÈ0?óËÅ?B"—½!Oå¾û¢§> ±J¿"W1?uâ-¿ªxŒ=ä>?»K’?8 ñ=Þ},?™gk¿Ç‡»¿Èz¾2ÆÛ?FdD><‚Ž=ûѦ>&)?çX¾808¾’¾g•›¿½¿Ê©/?òpY¿ ì?’³q¿°ê¤¾ ŠB=/„½ûø¤?n.¾> 8–¾´«ˆ¿"úMºÕRè>:þ3¿m’¸¾Ph½-Ô ¿Ê`ʽüÞà=  >CK?Sÿ¬¾!ºÉ>Ö–—>/Ï:=¾L¾=_‚¿…Yo>×¼£>O¿«+¿ %¾=ã…«¾=tú=‹”?õà¿Ðšq={º#?ý ×>Í_¿¸#T½=_lô>&y?2„7> 0ξKÍ•¼C^=ä¿*km?”Íd>‘p„:øµ¹¾×oH¿úG4>ár>Á)—=•˜7¿íLò>•—<ß‘ ¾}JŠ>u»>| ¾â$?€Ýo?÷Kû> ã¾í;¿ÉÕ¾N¿?ƒzÓ½Ãsç¾MgQ¾@0°¾G‚?™÷C?hû¹¾e9¿Ags>8v@¿ùú‰Ž?Žy(?sX?U}¿—F¿Ûè¾ùU¾½ +1¾ÿ˜1¿ÀÃ?³d¿?óˆŒ>Êb€¾Cq¿‰ð=O×ò>+@&?_Õ¿¾_6E?-Y¾hÈ­?Ô` ¿6æû>È÷¼¿_Êܾîg<¾Úò޾Õ(!>ôÄd?49¼¾Õ2Ž¿¬è>¿ë† ?wåÞ> ¹F?ÿؾ‹¿_n?Qbr?Δ>ñ#†?¶U:¿‹¯Â¾à5?0Dd>„n>4¬T?b§‰?˜¿¾IRZ¿F©¿Æü"?ñ€ÿ;\4¯>´Î¾“Oá>SU ?~ój½à.ê½`4?Äëç=(æ?ÁSƒ?¡E?&¿»d¾ø¤‰=ä²¾¨¼!¿Ëq?µñ@>*—>ùØ>½Îª¾Üõk¾&!Õ>†é¾³SL=ž§X>ÃÆŠ>U ?Zp*½G?£`¢¾"=•½Ž˜¾ç<¾mb—¾ï³®¾&Hß>êƒ>¿õ’Ž>ÉÕ¾*½1fì=9 ¿ +·á=í­H¾7ž”¾„·Ê½§Ú#¾0b¹>E…=¶0¾¾ñ6:?‘= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/model.onnx new file mode 100644 index 0000000000..ac74d9e43d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..aef7a400b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6c4c1458ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm2d_momentum_eval/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/model.onnx new file mode 100644 index 0000000000..4e4dcd4653 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..af6f3f561f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a3dba04f17 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_eval/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/model.onnx new file mode 100644 index 0000000000..bb99ae86d6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..48d2edc59a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7d83957a86 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_BatchNorm3d_momentum_eval/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/model.onnx new file mode 100644 index 0000000000..e5f864bc0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..57c22a7ed3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4ba361f50d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConstantPad2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/model.onnx new file mode 100644 index 0000000000..f9734dc361 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f8b50b0291 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26464d71a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/model.onnx new file mode 100644 index 0000000000..15e7716b6d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9f0198ef6b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ + +JÀZY>´ú¼–0a¾i§¿áËN¾3˜±?[ëS¾Ý{ù?c¨¾ô¾¦a?L"Ž> ÿ?â6?ëÚ?~Az?R瀿öy ¿3Ë/>w@¡Î¿®´ë>™Ì¾¿pÆ‘¾%Ú>ò–¾3¢=|Áí¾ªÀ—£?}$¿‰ ¦?€¿æ«;¾ò”­¿š^¥¾L[?sŒ>jI >ÉN.¿5öó;‹£(¿sd¾ýbz?O?¿zÀ£ß¿f•’>ã€>-½ûÏæ>™"¹>«&ú>œþš¿eœ/>(v¼µ?g¼GXó¿=i¿]+Ö?VÃ?2ƒ-¿®ƒ¾ÙŠ0¾§ûI>NÇ6?îX,¾¶Û§?èMŽÒ¾Hλ?9©e¾à¢ ¿æ“þ>€¾g<¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8e8c8eeb71 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_dilated/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/model.onnx new file mode 100644 index 0000000000..c94c054604 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..42b05e79b8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3ca22800a3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_groups/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/model.onnx new file mode 100644 index 0000000000..f67f087a55 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1921dc0c9c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a01d23daa1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/model.onnx new file mode 100644 index 0000000000..a4952d6caf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/model.onnx @@ -0,0 +1,31 @@ +pytorch0.3: +f +0 +1 +23"Conv* + dilations@ * +group * + kernel_shape@ * +pads@@ * +strides@ torch-jit-export*ÎB1JÀúF>,ÐȽó +¾Òûz¾:¶I> ÉP<¼!î=¿¢½b=N¾ðÓ¼Œç€> Œ‘>}†?¾/9J¾à2'½¯Œ¾ +’>ð7®<°£²¼®£°½#%=x1h=h±T=¨š)="¹><Ôú=œ¾R¾§¾pMH½š>’&>€Û—;@ ê¼xNÇ=G½š¶%>46>äW^>ÛY!¾s){¾¾í[¾ Õ =Ì‚–=6\à½èab>Àù…=²!ˆ>*B2JHá$>´Æu>!!¾ˆ'0½Z +0 + + + +Z +1 + + + +Z +2 + + +b +3 + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3ca9bc7a1a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +JË—?B̟ܿÀ¶µ¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8d22eed62f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad1size1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J¨÷‚¾ˆ˜7½I¼È¾\Øe= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/model.onnx new file mode 100644 index 0000000000..6cad902146 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9ce039ab94 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/input_0.pb @@ -0,0 +1,4 @@ + +JÀŸ(v=Z‡û¾Wn:¿ +ùƒ¿\€Ç>+mÛ>|1 Àtï)¿wæ¿ø‹Ž¿)1¾à;ß¿w ¿>Õ–?r³Ù¾)‰)?½ž¾Å§^?}"¥¿§ŽÊ¿Üi’¾Ã”G?Ëe?;j?ú¾Î*®?Â슾xÆ^?‰µ5¾ +ìà¼ä÷®¾Æbξ[“>2–[?¸êˆ?ú!&?&v–¿j*‰?8~?ýW?ñÜÐ?Ê?\à¡?QÕn>\n<ªf뾊 q¿íú5??ÙϾ…&E¿Žýw¿®¹2=~Ó¾w­Ç¿€Fš?æ™?ðÕ=òO—¾¬«¿L‚ì>‹5>R€¤¿{È?/}8¾àñ½5tÊ? gç=èT6?ÚZ›¿Î±E¿“¾×’Ú;€«¾võ>JÇ>ÕǾñ$ù>‘ê¿êb“?‘!¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..86801f6e85 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/model.onnx new file mode 100644 index 0000000000..f4c699d5e4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4582b0478b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +JÁv7¿å¿ðZ¿>ƒ´? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3db772df58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_pad2size1/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JVrA¾ÄK·>Xe@¾lü]= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/model.onnx new file mode 100644 index 0000000000..3b3b3345c3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..805c053fb3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1c4d08eee2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv1d_stride/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J Dö>dg¾B45?,îl=Ž‚>}¾Œ?2J?qp<¿ÆU¿èy¾Üº1¿~?žHv¿âi³¾Š’¾`èÓ¾RA¾â¥T¿)¾ª¿ât">t»õ¾ÆN?¸"½d>et?äÿ>(»^>hPb=†Pn?fæ¿64Õ>¢á.¿ãá?]¿Ò+\¿HR$¿ä¼0ù6¾0®‡¼h„D½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/model.onnx new file mode 100644 index 0000000000..8d726ddb32 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..796ab0d212 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..aaced42abe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/model.onnx new file mode 100644 index 0000000000..38bb3644c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..040d7b61b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a37070713e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/model.onnx new file mode 100644 index 0000000000..4f945f0b83 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..07c64eb89c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b1f7a357c3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_padded/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/model.onnx new file mode 100644 index 0000000000..1124f00a85 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..730c1a1e1e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ccd62e8622 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_strided/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J€4“š½ó‰¾¹ ½‡~¾ll¸=Œ`ƒ½±HÄ=XÚÞ0†Q<´¬ç< ×Y?´ ²>:¸û=•Ð^¾r¢ú=|;’><ž‚¾~!¾¡é~>È6 ¿G&>oÞ·>ô?ʳ彘û$<þ(¿‹P=޲½>†#ª>z2#¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/model.onnx new file mode 100644 index 0000000000..964382aac2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5b8e465623 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..621ce664e9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_depthwise_with_multiplier/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/model.onnx new file mode 100644 index 0000000000..21e16f2567 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5f8b5ca88b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..be46da4061 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_dilated/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/model.onnx new file mode 100644 index 0000000000..d70fea22cb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0d40425466 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c1539b0cf8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/model.onnx new file mode 100644 index 0000000000..e22d875549 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f1b2fde504 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..25c8320ae4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_groups_thnn/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/model.onnx new file mode 100644 index 0000000000..29dc21bf07 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..cfdddd4414 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +JÐ1{e¿öŠ©¿I(¾¬¶¿šÌ?ç2˜?É‚À¿îºR¿žd`> S#¾EÍ?†ù­>£)s>)ÿ‰>ï쀿CöI¿& W@|?kLA@†ÂÁ>„1Ö¿SÄ>k˜ú¾ã?Š–½àd&À +#?Ÿ:w¿×£·¿žDµ¿RìN¿Ÿ_{¿<,7?«u7?ómW?üX˜¿Á+ô?5ò¿NÂ^?ͪ?Û @_H?ºY”>3<§?‹Š'?Ä:U¾Õ½‡¾Üx?\Ö?AÛ¹¿85‡¿‹7ù>ô?«J½m\»?¬›¿wÖ¾IÌ¿‰šÀ?ïIÞ>É2|?ßøó>lä¿¡à?Êžr ø=¯Ú2¿¤VF>˜Ï>Úå)À@áå¿°òì?´œ ¿â±Õ?Ó›‰¿—µ8¾Ýû™? 'p?uÔ>­à“¿ºPh=†wc¿þú½D–%¿åÉJ¿®ÝÌ¿5IU=(—d>¡¥B¿Å/ì>þ)s¿Bç>;ú»¿1¼É¿LÛ¿ìA1?Èp™>ÿ}?>+ˆ ¿þ@7Õ>ä>>@†¶V?” _¾˜Û´¾$ì‚?Åû@–Δ¿Èž?…Vy¿k¨\<ÑÀ$þ¾Þÿ2Àf¡Ú¾¾°¢¾+>·€?aØó>ÜQ¿Œ¯@ƒêX; Z?5ƒÑ>ÃUR>Q)î¿QÀ¾¦J?èK> À¸‰>ˆƒ{?åu½×Ÿ:=0ZN¿ýë]>íãÍ?OÿÉ>ôü¤¼iC›>®7= ¾|?Œ8°¿ó¾ª¾Í6?T©1?«¿¿:M;>ýX’>ƒŽ‚?›Ó¾BåÏ¿Áµ–>ŸF¸¾Ö1»¾î)ÿYê¿?øì¾»?²»ì?{¡«¾±Ýâ?«…a?Gäý¿µEQ=Íc‡>˜0?nX@?­ÿJ=UIY?4q:¾MŒ·>äÉ’¿>ú ?ótÔ¿¶¿ÎžK?qžt¾ó׿Õù? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..81e66f3f2f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_no_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/model.onnx new file mode 100644 index 0000000000..40a5574c62 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..12dded9ccf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..25cda76699 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/model.onnx new file mode 100644 index 0000000000..688189ee97 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fc3f7a3899 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..664b0a3713 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv2d_strided/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +J€Éè¾.g? —«¾Î›d?dÖ>Þô¾bÀ?›Ó#?Z³ç¾¾oõ¾¢ãº¾žù@¾”ÿ¨>rÝL>†–¥?øQ>j +è¾`pû¾8ÄN¼I:1¿Áè?|Îì>ØW?œ{ª=~¤Ã?Xˆ+?@´;X +t?Ï\ ¿jµŸ?J×|>ç÷Y¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/model.onnx new file mode 100644 index 0000000000..4ed69108ec Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..31459d9f3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..400829c93c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J€gÈl¾­aI?’Ѿ¡d:?$7=”¸ ½¡r{¾vc¿?%Ìj¿¿ >S䯾ô‹Þ¾±•˜=œ­¿„5Ó>Jˆè¾ãÔÈ=rÏ@¿ƒÏ'?½³W?t@Ÿ½¼·?:µ>ƒ³S?´Ѿ“Ú‰>PŽV>'CÀ=j¿Ó¹?¤œ¬¿Ì‚Ͼ¤#‹>2Ǿ^Þ¿‡…Y¾h]g?–#­¾0œ>€o¤¾|hY¾F™<>±æ¾r‡L?l0{?j’ç¾n?j‹¢¿»I6?Ìþí>Ú¿>é¿*ÏŽ¿Íâ?. T¿qQ^!…?¬ê=‰{ɾ~›h¿ê¾'\? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/model.onnx new file mode 100644 index 0000000000..71b989918f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..53e728a282 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9b543bd594 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/model.onnx new file mode 100644 index 0000000000..3ffa618081 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..06d839e82f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..66cd9ff46f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_dilated_strided/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/model.onnx new file mode 100644 index 0000000000..51925558be Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..dade2b9602 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a47274428e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_groups/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JÀeÔv=&’›¾¬ð˜>‡·S?wXt¾Æó>`ôž:éêA¾®Ë¾G³s?³)|¾º´¾-®Æ=@¡>ƒ|>?h£>÷à>0œ¾Ö!d>Š•U=Gë¿>jµ´>ß*¦>zq;¾—‰¾îÒ¹¾T¶¿Ì*]<ÝaÍ>e >Ö¬û½ÞÏ>*yº¾‡ý?òý¿=•ÿå¾beK>ˆd5¾ ?QGÒ¾¢¼G¿&l¾ÞÍæ=‚„0> ‡<4éÖ>⯖¼7¡´>‡ÙB¾ÌÄ=¾$ˆÚ½ü­D<a¿„Y¾è3†>cð?7/”¾¼•á=èCÁ=s.¾ú >>X‚‡>î£q¾}·¼>™©¾Êe>ÒîS¾ùš¤¾{‡¾>¾?»Í¾Ð×¼q{ =äs>ÐmY½>à =ô0üÌݺ½MeÎ=p Ø>¨¨Ó=+'c¾·o%¿Œ«L½­Ñß½(¢?6Ó>¦MоÓ9ƒ>¶Cð>2²û=«¬‡=^ð¾–fx¾ÂÓ>(ÁW?¥¤J¾ ™“>Ù¶1>ˆ†&¿D)Ó=›ÙH¿Q÷¼Ä+¿€7´¹pl>ûKv½¬)ÿ=ÞÜ龬Yf¾ŽûB>©ð¾> iï¾òDH> ³¤>¶Gä>h镽/”Ñ=èÆf¾t+M½¯™=}£ë¾#?Ľ§Ýù¾”Ó(¿_æR¾²Š>Üèg>—î¾H~?ÃľÉÔ¿©@ϽìK¿%Z”>‹`ñ=Xª#¾Vóf=Eƒî>÷3!?Ngc=1j?½.> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/model.onnx new file mode 100644 index 0000000000..c67303441b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e5e14f43c7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..421613c060 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_no_bias/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +J€¦¿Öy¬¾›åÜ=´Ij=  +?ÔÜq¾¹«=üÎ3>´M⾂kÙ>¦¯½¨¾¾æ¿H…¿ø=.?uľV³+>ž·ª=šˆÝ¾rÀ¸>æU>}vv½Ñ ¿½:>Ö5>À!?1¾‡¾ÜÛ;=¸Ù?û.¾Êòp¿È~b¾|5K¿p£‰?9Ó>ªN}¾¤8#?ˆà¿¾>IºÐ>)Ⱦ¿â<~ïÆ½“NH?Ú)M=UF<{Ò×¼0Á?; S?ôÀ½þ¢–¾DŸØ=P]?nÊÔ=ò¨>·÷)¿Ü|H¼7B“¾:W@?]Gµ¾«z?cp¬¿Ò^>h/ľ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/model.onnx new file mode 100644 index 0000000000..8f23c1a2ff Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5c9d07bb26 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..32988e51bd Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/model.onnx new file mode 100644 index 0000000000..d4b4021f52 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..664147e8c6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..db2ecc8b2c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Conv3d_stride_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/model.onnx new file mode 100644 index 0000000000..63a9e92b6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..cc0efbf7c0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1638dbe4d8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/model.onnx new file mode 100644 index 0000000000..00dd792652 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..77f7709b80 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6ff7064a20 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ConvTranspose2d_no_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/model.onnx new file mode 100644 index 0000000000..06ea9dac6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..22f9b86c7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +JxUÑ?£­.>uÕ??ˆ ?(t?Å7½[ Ë¿ï!>ѾvæÀ\œ—¿—m?§Ñœ>xHô¿ýx¾öD!¿é †¿Üþ¿5Fƒ¾~¿¦è¾`ä¿¡?äxU?鸾ñu½éÖŽ¼ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a0c07ed9b4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ELU/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JxUÑ?£­.>uÕ??ˆ ?(t?ˆû²½õ˜Ë¿ï!>r ‰¾±&è¿È¯±¿—m?§Ñœ>vÚ¿#YܾÑCš¿BF±¿æ€B>b¿w,¦¿ D\¿y—ç¾ïJ¡¿wá÷¾BâR¿¡?äxU?Íù¾åÒí½õ™ ½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/model.onnx new file mode 100644 index 0000000000..c34571d980 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/model.onnx @@ -0,0 +1,17 @@ +pytorch0.3:¥ + +1 +02"Gathertorch-jit-export*;B1J0è®>OªÇ¾ÌÀø—?4Bõ?˜µÀ>ÀôL¿ÉVX?¿ÞÙ>`è?j––¾½>Z +0 +  + +Z +1 +  + +b +2 + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9ad425683c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9827178979 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J0è®>OªÇ¾ÌÀø—?4Bõ?˜µÀ>è®>OªÇ¾ÌÀø—?4Bõ?˜µÀ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding_sparse/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding_sparse/model.onnx new file mode 100644 index 0000000000..c1b34d50d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Embedding_sparse/model.onnx @@ -0,0 +1,17 @@ +pytorch0.3:¥ + +1 +02"Gathertorch-jit-export*;B1J0"K™¿ŠÜ忌®©?E7?ˆ+;¿ç® ¿¯Ôf?È~@§Eó>¨…¾Ág¾Éã]eFþ»’|)¼< óºMÞõ>›»üúl»^íM?¡¦°?y¨”?Ž’´º¢J!?œf ?Õtd¼«»·…K¼Q°?Ëüž»ö]0?Y¥Ë?ÕÕ >JŠ?Kþ,¼;É™».E‘º^š—?}k˜¼¾i©>Ó¤‹?ëo<¼ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/model.onnx new file mode 100644 index 0000000000..2179d51a6b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..709beb57af --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +Jx;EÈ¿ÍM¿ýÆø¾"Vù;Ù ¿ã>‡? +t ¾sêv?DÉ’?Ž59>ö– =G‡?M1ÀˆT­?!eþ??XÙ=ŠdS¿ØZÞ?w>©?Bæ…?Ä󳿺uá¿Dw>T:ˆ>mÍx? Q?¯'?žÈž!~&¿=q¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..668054235d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LeakyReLU_with_negval/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +Jx;EH¿ÍM‘¾ýÆx¾"Vù;Ù ¾ã>‡? +t ½sêv?DÉ’?Ž59>ö– =G‡?M1ƒ¿ˆT­?!eþ??XÙ=ŠdÓ¾ØZÞ?w>©?Bæ…?Äó3¿ºua¿Dw>T:ˆ>mÍx? Q?¯'?žÈE¾!~¦¾=q†¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/model.onnx new file mode 100644 index 0000000000..cb2d07eb66 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..74eb4ddf62 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ + +J ¨P8? @ˆ=’¤JÀ–>`õ?Óz?áaŠ?|B¹»[Â=Ådb¿‰Ê˽I0?DB¨¾žG…¿£J>ÆKÏ¿>,ó? D=?¢¿Ç°Ô¾ÖëÆU=ºR?b™3?Å ¾¾ +U”¿, Œ¿`žà>ù}?/)+?ª{›¿o—?CU>>Þ‚†¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8b63e1639a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/model.onnx new file mode 100644 index 0000000000..0eec363c79 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1ee643bfb7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..27e6172cbb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Linear_no_bias/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/model.onnx new file mode 100644 index 0000000000..d2873a7d0e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/model.onnx @@ -0,0 +1,15 @@ +pytorch0.3:] + +01" +LogSoftmax* +axis torch-jit-exportZ +0 +  + + +b +1 +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..feb3a9610c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5ebe29fc0f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_LogSoftmax/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/model.onnx new file mode 100644 index 0000000000..f13f33f0ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3e9a9c10ce Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e9a1974b30 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ + +JPvjF>·èx¾a +?Ð>«?оP?M*? ;@ÊÌ€?P+@‡Lþ?íñ!?ÚõÖ>vxt?€,?”vÂ>¡?»? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/model.onnx new file mode 100644 index 0000000000..f13f33f0ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4f1303d768 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/input_0.pb @@ -0,0 +1,4 @@ + +JÀ>@ó?Sðé¾ÐƒÇ?ódm»Á)!??2C¿ÿ–;¼°}ê¾ + Þ¾£²!>RÉn=$‹’¾tnS? 0¨?2n>?y¿XWÿ>IÒB?– ¯¾lN¾5ßô>ù¤?îÖ?¡¿¿¹ž)¿ÓÆ¿½7è¿U%5=/¥ë>4Ð =ZWÙ¾Œ±]¾ME±¾<¿glÕ? +e·½¦}@ÒÀоY*’=È`¿ß—¤¿/Zš¿j ?që>#~9?éÕ›¼@.¢¿|?E>~O¿Ï3\¿¹Ð»¾üËÀq<²>®Ç«>Ûî¾ö9š¿ b¿KFì¿MñŒ?+}À£ÿÏ?$¼>t5?.d¾N"@í„~¾¿$–¿œ¡=¿¹n?ƒb@5‹¿jõÉ¿;Á}¾—4¾\âí¿‡ðç¿Úò‰¾_–@QÌü¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1a55ea308c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ + +JP>@ó?Á)!?£²!> 0¨?IÒB?ù¤?U%5=/¥ë>glÕ?¦}@j ?#~9?|?E>q<²>MñŒ?£ÿÏ?N"@ƒb@—4¾_–@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/model.onnx new file mode 100644 index 0000000000..55d8627be5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/model.onnx @@ -0,0 +1,19 @@ +model:• +V +XY"MaxPool* + dilations@ + * + kernel_shape@È * +pads@d@d * +strides@ + graphZ +X + + + +à¶ b +Y + + + +½ªB \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..404980a16e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..55cbd61e8b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool1d_stride_padding_dilation/test_data_set_0/output_0.pb @@ -0,0 +1,154 @@ +½ªJô©•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?•o?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?*?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?./?u{?u{?u{?u{?u{?u{?u{?u{?u{?u{?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?ÉÙ}?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?–J?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?V„~?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?î¨?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?××?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{?"Å{? +{?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|?æŠ|? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü? ü?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?—t?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?hßy?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?±¤y?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?.æ?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?r(~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?Ý~?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?IŽz?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?ü?????„O?„O?„O?„O?„O?„O?„O?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?Nh?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?‡–?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?û©~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?Rž~?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?c¨?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?¨Ð~?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?x{?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z?> z? _}? _}? _}? _}? _}? _}? _}? _}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?Aº}?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?ôQ?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?Of?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?-}?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?Š„?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?\ ?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?Íx?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?~Û}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?.)}?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?{~?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?݆?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?Øx}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?6}?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?,¶~?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?Z?~?~?~?~?~?~?~?~?~?~?~?~?~?~?~?~?~?~?~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?±|~?~?~?~?~?~?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?Ëï{?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }?‰ }? }? }? }? }? }? }? }? }? }? }?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?U²?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?P'?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ää?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?ø~?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?èR|?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?²~?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?dPz?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?µ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?wÔ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?0õ?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?‹N~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?U~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?Ó~?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????‘d|?‘d|?‘d|?‘d|?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?/}?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?e-?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?|É?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?;Ò?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?1Æ?VC?VC?VC?VC?VC?VC?VC?VC?VC?VC?VC?VC?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?ü~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?:~?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?»}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?3‰}?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?>q?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?'?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?Ž}~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?éÏ~?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Uú}?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Ãr|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?Y|?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?;Å?“†}?“†}?“†}?“†}?“†}?“†}?“†}?“†}?“†}?“†}?“†}?“†}?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?&?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ­~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?ÿ~?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?Ò?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?ä~?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?œ:?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?–r?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?6J~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?Ã3~?v}?v}?v}? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ? Œ?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?1Z?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?¼~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?©Š~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?E +~?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ÖÅ{?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?ç?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?k ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?WZ?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?†?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?ÍU?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?¨ó|?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Äý~?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?Ü-?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?о?s~?s~?s~?s~?s~?s~?s~?s~?s~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?fù~?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?Ú†?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?cž~?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?±1?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?6i?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?¤G?Äï|?Äï|?Äï|?Äï|?Äï|?Äï|?Äï|?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?³÷?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¨¥|?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?¯þz?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1F|?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?1€}?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?»‡?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?¢ø~?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}?õ÷}? y{?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?c¼~?¾Y|?¾Y|?¾Y|?¾Y|?¾Y|?¾Y|?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?Tð?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?¨J~?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?°ü}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?x}?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?Ǹ{?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?L:?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|?©X|? }? }? }? }? }? }? }? }? }? }? }?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?I}?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?åR~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?Ö9~?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?o4?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?# ?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?¬È}?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y?§y? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy? +ðy?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?öç~?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‰’?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?‚·|?¾ÿ{?¾ÿ{?¾ÿ{?¾ÿ{?¾ÿ{?¾ÿ{?¾ÿ{?¾ÿ{?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Ð?Šc?Šc?Šc?Šc?Šc?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?²]?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?¿?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?q«?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?]É}?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?Ý9?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?6ª?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?žv?OŒ}?OŒ}?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?D?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?„;z?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?}ð|?Åþ~?Åþ~?Åþ~?Åþ~?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?÷T?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?M}?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?êˆ?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?‚Ÿ~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~?$ú~??????????????????????????????????????????????????????????????Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?Lp?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?®ø?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ÎK?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?ªð~?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?w¬{?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?ëÅz?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?̺z?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?›Ñ?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?Àž?æs~?æs~?æs~?æs~?æs~?æs~?æs~?æs~?æs~?æs~?æs~?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?Þ}?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?DÓ|?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?޵}?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?›¹?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?L~?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?nÞ{?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?›Ê~?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?–?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?ž?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?Fæ?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?žó~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?M®~?¢}?¢}?¢}?¢}?¢}?¢}?¢}?¢}?¢}?¢}?¢}?¢}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?cž}?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?£™?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?©ø}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?ž}?õÐ{?õÐ{?õÐ{?õÐ{?õÐ{?1¿z?1¿z?1¿z?1¿z?1¿z?1¿z?1¿z?1¿z?1¿z?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?ï~?€}?€}?€}?€}?€}?€}?€}?€}?€}?€}?€}?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?9©~?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?›Q?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?àë?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?œ~?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?f?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~?D~? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/model.onnx new file mode 100644 index 0000000000..2623bfa007 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/model.onnx @@ -0,0 +1,18 @@ +pytorch0.3:™ +K +01"MaxPool* + kernel_shape@@ * +pads@@@@ * +strides@@ torch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7bdc39a0b8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7e9c17213d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/model.onnx new file mode 100644 index 0000000000..9dd1d967df --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/model.onnx @@ -0,0 +1,25 @@ +model:¤ +_ +XY"MaxPool* + dilations@ +@ + * + kernel_shape@<@P * +pads@ +@@ +@ * +strides@ +@ + graphZ +X + + + +è +èb +Y + + + ++ +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..95b500ef35 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..245275b16b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool2d_stride_padding_dilation/test_data_set_0/output_0.pb @@ -0,0 +1 @@ ++JÌ!Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?Lç?Lç?Lç?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ?ñ? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/model.onnx new file mode 100644 index 0000000000..c4e7ff9a2e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..38cb6ecc96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b9a9377b9c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JÀäùÃ?˜@@Õ¶ö?Ã6É?ò¿r?,2ž?òov?Çùø?éŠ?<$œ?êsh?}o?M}¦?Ûj?¯Å…?âãq?m¹¥?˜—¼?B€†?r¬`@jG@ DÈ?Â/?¥÷?^Æa?gÑ¡?÷ÿ›?]É×?ÔÇt?-4@0­?ŠH@>ÚÚ?Rû@”Y@ ´@7‚b?ÑÜÐ?Ÿ;í?úÁ±?…Û²?Œk‡?}Fž?Ái@Ú›?áÑ?ˆÏú?õ @ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/model.onnx new file mode 100644 index 0000000000..c4e7ff9a2e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c02235ed0b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4d6265a415 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/model.onnx new file mode 100644 index 0000000000..800a943fe4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/model.onnx @@ -0,0 +1,20 @@ +pytorch0.3:© +S +01"MaxPool* + kernel_shape@@@ * +pads@@@@@@ * +strides@@@ torch-jit-exportZ +0 + + + + + +b +1 + + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0c067191da Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8788f48bc5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_MaxPool3d_stride_padding/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/model.onnx new file mode 100644 index 0000000000..845140f46e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e1ef88baf3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..51f744994d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/model.onnx new file mode 100644 index 0000000000..22ef010c97 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6fc59db1c8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/input_0.pb @@ -0,0 +1,2 @@ +J`0Ím¿|Éø¾0]½iÙ=¿û£¿¨”H¿ñÆ?q>iÁ<¿Ý¿Þ¿i>?¿ò`=X1¿u~!> èÖ¾å×ô¿ +îè¾Ìã >µÁ$¿¼p@¾f‰>¥/ ¿€5~?’¬(½ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f337dc968b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_1d_multiparam/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +J`0Ím¾|Éø½0]¼iÙ=¾û£¾¨”H¾ñÆ?q>iÁ<¾Ý¿Þ¾i>?¾ò`=X1¾u~!> èÖ½å×ô¾ +îè½Ìã >µÁ$¾¼p@½f‰>¥/ ¾€5~?’¬(¼ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/model.onnx new file mode 100644 index 0000000000..9c9569ffc7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7d2bcfafb0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ +JàošU¿,†?Û“¿np°¾²À¿Etk¿’«ï>$7¾M(ÿiŠ+?.SÜ?3ä'?ÿëS?d(ÀŒ?Z¤<‡@¾ˆú×¾ÁE›¿pKd¿B9?ËYå¿dÄÎ=íº¾lÎǾÜ6 +¿fE@Mbo¾`´Ö¾`Žß?²±Ù¿(l¿„œJ>Ïé¾_·>×X¿Œ,¿·öñ?]5À_Òå¾8‹N¾4@,wá=÷,‡?h­&¿b¢¿æØ +@Yñp¾1Ë…¾[07¿ërÒ¼^S2>à28?G1E¿e¢@±€¿(^p?´KÓ>ÓYȾÊ(^¾j @ÒEV?¹%(¾þÖ.À^ù¿k¬-?·69?8¦¿¿à­?3>–^¿ÓÓÓ=ïðþ?¶H‹¿íOKÀst¿¦™7¿b²;¿F¯Ž>Zs¿à;?_P À•¿Ðfb¿üfÄ?1R¦>“ÁÞ>š:ú½ß­›¿z¢?_mp=òQ•¾x•l½F`ª½•û,¿CÇ?AO¼?™Š¿À!¿Ì¨‰?]”ê?Éœ,¿hí¾GŠð>U1Ð?Yo…=h"@tïL?éõ9?£í÷¾OP?]®?bÖ=¸Ÿ(¾Á“L>)Ó>+]¿¬©¿[ÀÑ}²¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e64acb38a5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +JàošU¾,†?Û“¾np°½²À¾Etk¾’«ï>$7½M(þiŠ+?.SÜ?3ä'?ÿëS?d(¿Œ?Z¤<‡@½ˆú×½ÁE›¾pKd¾B9?ËYå¾dÄÎ=íº½lÎǽÜ6 +¾fE@Mbo½`´Ö½`Žß?²±Ù¾(l¾„œJ>Ïé½_·>×X¾Œ,¾·öñ?]5¿_Òå½8‹N½4@,wá=÷,‡?h­&¾b¢¾æØ +@Yñp½1Ë…½[07¾ërÒ»^S2>à28?G1E¾e¢@±€¾(^p?´KÓ>ÓYȽÊ(^½j @ÒEV?¹%(½þÖ.¿^ù¾k¬-?·69?8¦¾¿à­?3>–^¾ÓÓÓ=ïðþ?¶H‹¾íOK¿st¾¦™7¾b²;¾F¯Ž>Zs¾à;?_P ¿•¾Ðfb¾üfÄ?1R¦>“ÁÞ>š:ú¼ß­›¾z¢?_mp=òQ•½x•l¼F`ª¼•û,¾CÇ?AO¼?™Š¾À!¾Ì¨‰?]”ê?Éœ,¾hí½GŠð>U1Ð?Yo…=h"@tïL?éõ9?£í÷½OP?]®?bÖ=¸Ÿ(½Á“L>)Ó>+]¾¬©¾[¿Ñ}²¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/model.onnx new file mode 100644 index 0000000000..7514db5584 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..66574fa428 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/input_0.pb @@ -0,0 +1,3 @@ +Jàš?? „?’¿¾È?;Yº¾¿Ž;S3¥?‚¬Œ>?ð`¾Ç¡s¿KÿÀ{¿5Ï!½)øÀºõ½H¿ç-R?ü?°å־̯Å>Í´?7µà?x•e¾˜Í$>™êؾ‡éŒ¿gƒi?í8©>þI5?ã„Y<”5Q?[ù +¿*,¿ó›¾@‘¿M#Ñ?’ÿ̾ɔ›?w"‹¿WÅÀËk¿¿Feù>2UQ?Jv÷¿ 2?‰f%?Â׺iã—¾$iæ¾Åˆ¿½ñÝ>Áôžú•Î?_ ³¾‚ ò½ý¢!ÀŽ>‚<‘äp?Î'½” v?Qo>èI¿¶>J¿õ ¥¿¸à)¿_?¿¡¯‹¿5ɺo þ¾wT@I·>,Ü´>?Ð㾨ÐÒ¿‚Û8¾èSÈ¿ýI?-ˆ¿s]ʾ ü<>V&«¿e”?#[ݾÈñ,@@ X?¬ìˆ>Ÿ‚?¦l ¿a¬–>Q½Ù¿¦3‹?J¿ákë>àd¿péÿ¬ì^¿¶f ¾ç‹?W×o?`;ƾÔÑ¿K @»Ì'@·f—>ö˜|?n᫾Ó¿-—¿¯±1¿31¿ê¹@¬8]?ÅÞš¾Ú>?–2>¦À)¿^aѾ—¾B?4ʦ¾/Ï +@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4c894ac096 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_2d_multiparam/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +Jàš?? „?’¾¾È?;Yº½¿Ž;S3¥?‚¬Œ>?ð`½Ç¡s¾Kÿ¿{¾5Ï!¼)ø¿ºõ¼H¾ç-R?ü?°åֽ̯Å>Í´?7µà?x•e½˜Í$>™êؽ‡éŒ¾gƒi?í8©>þI5?ã„Y<”5Q?[ù +¾*,¾ó›½@‘¾M#Ñ?’ÿ̽ɔ›?w"‹¾WÅ¿Ëk¿¾Feù>2UQ?Jv÷¾ 2?‰f%?Â×¹iã—½$iæ½Åˆ¾½ñÝ>ÁôŽú•Î?_ ³½‚ ò¼ý¢!¿Ž>‚<‘äp?Î'¼” v?Qo>èI¾¶>J¾õ ¥¾¸à)¾_?¾¡¯‹¾5ɹo þ½wT@I·>,Ü´>?Ð㽨ÐÒ¾‚Û8½èSȾýI?-ˆ¾s]ʽ ü<>V&«¾e”?#[ݽÈñ,@@ X?¬ìˆ>Ÿ‚?¦l ¾a¬–>Q½Ù¾¦3‹?J¾ákë>àd¾péþ¬ì^¾¶f ½ç‹?W×o?`;ƽÔѾK @»Ì'@·f—>ö˜|?n᫽Ó¾-—¾¯±1¾31¾ê¹@¬8]?ÅÞš½Ú>?–2>¦À)¾^aѽ—¾B?4ʦ½/Ï +@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/model.onnx new file mode 100644 index 0000000000..86f03ea0ad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1f7722face Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fa73e76dd7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/model.onnx new file mode 100644 index 0000000000..28fb1cea7c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3425361e7d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..421245321e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PReLU_3d_multiparam/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/model.onnx new file mode 100644 index 0000000000..4b5dec5fad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..134b4a7e93 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d00751e57b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PixelShuffle/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/model.onnx new file mode 100644 index 0000000000..819c9d70e2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ddce6fde83 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..733e897db9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_PoissonNLLLLoss_no_reduce/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/model.onnx new file mode 100644 index 0000000000..85a386601b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/model.onnx @@ -0,0 +1,15 @@ +pytorch0.3:Z + +01"Relutorch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8501131d94 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..eeef2a8708 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReLU/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/model.onnx new file mode 100644 index 0000000000..f36d03d8b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..cbc7642fdf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..13d0c1e7b7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReflectionPad2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/model.onnx new file mode 100644 index 0000000000..a449c6b2ab Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d436d1edc9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..894beb4815 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ReplicationPad2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/model.onnx new file mode 100644 index 0000000000..2f782c7202 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/model.onnx @@ -0,0 +1,13 @@ +pytorch0.3:R + +01"Selutorch-jit-exportZ +0 + + + +b +1 + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..935024fce7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7dc9d090b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_SELU/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JxPO1?¢`>Þ{Y¿ˆ³{? :>Õ»¾yë>>kºR¾‡9E?³ëj¿ñ^?w¤Ü>ø­?µÙœ¿ßJ]¿§kŠ?Ð ¤?ä•¿hì?Q䛿)ˆú> ‡?âhB¿VÙ @6æ‹¿W-°¿KLa> À?Xò`>G1y¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/model.onnx new file mode 100644 index 0000000000..d8d517c45e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/model.onnx @@ -0,0 +1,15 @@ +pytorch0.3:] + +01"Sigmoidtorch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..12a9d7a16f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e886ad88cd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Sigmoid/test_data_set_0/output_0.pb @@ -0,0 +1,4 @@ +Jàûø'?þM?½ù‘>EìÙ>9þ?i=ó>Ò7Þ>Ãú?Æ,?g;?¸[?Ø-Ó>T`>ðõÉ>à¹F?ŽÈ?PÄi>SC?4ì…>"?Ã8?ÿ?GCç>â+?‚&;?² +/?² í>$(ï>‚¢È=ð«>CÉ?74?Ž•>Û3­>d ?wÎÑ>](Z?xM ?)6µ>vVD?1Òû>¶Ä¤>.q>©Zá>7õ‚>']?~.Æ>WäG?ç>AÜ7?QÉ>X,>h;?s#9?y³ ?$ˆ¦>3%H?V?h…b?}å?7×?•‰0?{ú:?ýø×>ð +?Ä\ü>׈Ü>#7J=ÀE9?×m´>M?”ë¨>}3?âØ¢>‡´7?»@>¼?î ?4zÅ>#"ƒ>zá>ÜR0?<]I?CëI>ZÅ÷>˲?À¡˜>“µ\?ÑBŠ>G">«b?²ad>KÀ«>ÀKý>º¬7?¨$>?¬ªÏ>–Ù%?¡º=ÅÜ,?’¬ +?„(?õ Œ>5”>?(ƒ?š*?Š#?+Ü?ðÝa?·²(>{?ÍFŸ>¡ÊÈ>q ‘=•½ÿ>ÏË;=¼¦¬>÷?/¯"?#1? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/model.onnx new file mode 100644 index 0000000000..f85bbd8643 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/model.onnx @@ -0,0 +1,14 @@ +pytorch0.3:Z + +01"Softmax* +axis torch-jit-exportZ +0 +  + + +b +1 +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..9ff4e66684 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..138808d7b2 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmax/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/model.onnx new file mode 100644 index 0000000000..4e5d2783b1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/model.onnx @@ -0,0 +1,16 @@ +pytorch0.3:g + +01"Neg + +12"Softmax* +axis torch-jit-exportZ +0 +  + + +b +2 +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..85bde817f4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f8b9ae1c44 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softmin/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/model.onnx new file mode 100644 index 0000000000..189f8c4e06 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/model.onnx @@ -0,0 +1,13 @@ +pytorch0.3:N + +01"Softplustorch-jit-exportZ +0 +  + + +b +1 +  + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..acee251ab0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..37dca8eda7 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softplus/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/model.onnx new file mode 100644 index 0000000000..65056c6a54 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..281cc6705a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c47d24be4c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Softsign/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +Jxe–=>þG?¬*¿I= 2u¾$Ÿ>ì‚î¾ce,>Ìïý¾H?u‚R»àN?J? ¿Ü…’¾u4á>ã%¿ðt¨?$†¾¯ÊV<” +?!›¼ Ì+?½†?<•±>:`Ò>ã%? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/model.onnx new file mode 100644 index 0000000000..fe0b3ad914 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/model.onnx @@ -0,0 +1,15 @@ +pytorch0.3:Z + +01"Tanhtorch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..c586ea2b5c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ac6ebcca2b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_Tanh/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/model.onnx new file mode 100644 index 0000000000..27b1189d79 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7eb4115fd6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0970c174c6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_ZeroPad2d/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/model.onnx new file mode 100644 index 0000000000..4033cba33d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/model.onnx @@ -0,0 +1,17 @@ +pytorch0.3:m + +01" +LogSoftmax* +axis torch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..d47c76328d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6fa8700378 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_dim3/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +JàÚ]¿‹<¨¿¬é¿‚i +À8ÜVÀFê•¿…>»¿„⸿ˆÌÀýŠÀZ1ß¿cW¾¾ ’[À®×_À—‡'ÀÛ€¿Jš¿¤ñ¿‹0!ÀvÀM;Ài_ÀÆ¿#¬ Àÿv¯¿S#¦¿¿­¢¿OÒ¿PÀÞ¡ÀxŸAÀüôè¿îí ¿TÞ/Àtäõ¿„œÀ…4Æ¿÷5 ¿sÀ\=@ÀFHeÀŽYÀT|ß¿@οÓk¿ó-Àžå‰¿yt¿]4EÀ aè¿c¢7¿ŒÀ +Æ¿­¦ƒÀ°Ùê¿Cjˆ¿‘‚«¿–ûÁ¿Êó¿ëmÀÁÀ^i™¿­0eÀLzÀ-ðG¿öàÀYå¾6ÃIÀ˜³ À¤Àþ-;ÀæMÀÜ|¤¾×¹PÀþÀbAû¿ë!i¿,šÀ¿{3À³Vß¿Y„é¿8ÑÀøÀ/ ¿ƒ ÀF(WÀÝg½¾á’Ï¿naÀaWCÀ8NÀv—È¿@ض¿‰Y’¿NŒÀL§ç¿ë+À°Ãe¿˜ù¢¿@!À^± Àb Àë]Ä¿5BÀL E¿¯äZÀÅ$µ¾10À³aÀ>‡5ÀeY"Àì$q¿ØøDÀ&« Àë3h¿› ÀR„œ¿÷ ÀkbX¿¥Œ&À \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/model.onnx new file mode 100644 index 0000000000..9f7d149147 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/model.onnx @@ -0,0 +1,13 @@ +pytorch0.3:h +( +01" +LogSoftmax* +axisÿÿÿÿÿÿÿÿÿ torch-jit-exportZ +0 +  + +€b +1 +  + +€B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2ef8dd569f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..acff15a72d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_log_softmax_lastdim/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/model.onnx new file mode 100644 index 0000000000..a34503c74b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/model.onnx @@ -0,0 +1,16 @@ +pytorch0.3:j + +01"Softmax* +axis torch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bb547fc406 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/input_0.pb @@ -0,0 +1,4 @@ +Jà/å˜?¸ ‹¾ñu>:*$@σ?›ôõ?`V¿~^€¿ÎÚ×?¹'¿¯0¿»ßÇ>d@}¿z¯ô½­Z\¾,©Y?N~Ø¿d Œ?áϾ¿˜½frÞ?ÚÒ/¿f{¿Ë Àm3¿hïÒ?œ¬T¿Å“g¿lp½Eó¿Ir;¾êM¸?f´l?Ýž«>:u$@$+¿"ªê¿¼T‡¿´Ó¿Þª)?”ÛH=o=x>´ŒJ¿}*€?‡}Á¿ÊĆ>ÌëV¿ +­¿ÅÎ^½ìœ‹¿jq='À‰п6š¿XQ>»_z¥¾2æ¹?º{¿’„Ë¿ô?É&½ta?F‹¿öï¾¥%”¿XH¢>²¡?^â¶¾¿¡;¾ +t9¾¢W?·Ô¨¾®N¾!/?øæE¾îK¿5ƒj> ¡À¿ÿä0ÀÁÕ¿®3ß¿™Ã?:Í ¿Dù?3‡¾5ŒK?»õ¿¨?ÁK`¿”Í ¿tså¼¢R/>ÚÀ‘¿uË>«éG?k8k>BO +¿V'ü>J½þ¿¤ßœ=H0¶¿húƒ?Õäf?gíC?°J¿„M’?q¬”¾/ûÚ¼JL—¿'½m¿§wW?éÓ?>n4¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9375777a99 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_functional_dim3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/model.onnx new file mode 100644 index 0000000000..7b38e74a05 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/model.onnx @@ -0,0 +1,12 @@ +pytorch0.3:\ + +01"Softmax* +axis torch-jit-exportZ +0 +  + +€b +1 +  + +€B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..7b12bdd44f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f956baa273 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-converted/test_softmax_lastdim/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/model.onnx new file mode 100644 index 0000000000..16c52f04d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/model.onnx @@ -0,0 +1,18 @@ +pytorch0.3:| +- +0 +12"Add* + broadcast * +axis torch-jit-exportZ +0 +   + +Z +1 + +  +b +2 +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a0d2d26864 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..948cb91aac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1715303b6f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_broadcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/model.onnx new file mode 100644 index 0000000000..fad8c21c3b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..33a258abe8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..53f235927e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b1a57c6aeb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_broadcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/model.onnx new file mode 100644 index 0000000000..16c52f04d6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/model.onnx @@ -0,0 +1,18 @@ +pytorch0.3:| +- +0 +12"Add* + broadcast * +axis torch-jit-exportZ +0 +   + +Z +1 + +  +b +2 +   + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..6c141d618a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..898ed453dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b47da3066c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_right_broadcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/model.onnx new file mode 100644 index 0000000000..1ee79c189f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..18ef0b4fe6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e87593e63b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b86dc4e1c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_add_size1_singleton_broadcast/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/model.onnx new file mode 100644 index 0000000000..fddcecc6d6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..81f27c31f0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..27369417aa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addconstant/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/model.onnx new file mode 100644 index 0000000000..30e98f8a19 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..46defa5ece Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4058421ada --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J0‚l>„m1?󡈾ük @\-Ñ=뜄¾6ž¾uo¯¿&¾Ü„b?Ü«…¾KD? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..a261289907 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/input_2.pb @@ -0,0 +1 @@ +J°A!¼sB¹¿ùÊP¾M®_? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..54189fa20a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_addmm/test_data_set_0/output_0.pb @@ -0,0 +1,2 @@ +J +š¸>qXÀA03>f±¡¿O±+¾`Þ{=~$ɾJƒ@ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/model.onnx new file mode 100644 index 0000000000..fab370f26f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/model.onnx @@ -0,0 +1,25 @@ +pytorch0.3:‘ + +0 +12"Add + +0 +23"Mul + +34"Tanh + +45"Sigmoid + +56"Negtorch-jit-exportZ +0 + + +Z +1 + + +b +6 + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..1f5217d0c4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +JÍÌÌ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1a2665cf3e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J333? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..9bd406820a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_basic/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J%¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/model.onnx new file mode 100644 index 0000000000..799c69993e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ecf85f83fa Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a91b406201 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..be699d30e6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_chunk/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/model.onnx new file mode 100644 index 0000000000..b0f5a3dee1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb8549c3e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..59a58ab66c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_clip/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/model.onnx new file mode 100644 index 0000000000..a482e153bd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/model.onnx @@ -0,0 +1,17 @@ +pytorch0.3:q + +0 +12"Concat* +axis torch-jit-exportZ +0 +  + +Z +1 +  + +b +2 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..46defa5ece Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..ebccd1a158 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J‚l>„m1?󡈾ük @\-Ñ=뜄¾ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..aa26c9cb47 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_concat2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/model.onnx new file mode 100644 index 0000000000..4f892503cf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2ea8bc7bb5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..6024f55d6f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_conv/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + 0&J€äs[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?[I?ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ŽR=¿ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>ÆÊ¡>{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?{Ý7?ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>ÁÊì>Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<Ü©ü<†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>†Î¸>€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?€‘?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?°åá?ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿ŒjG¿Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼Ø¿þ¼šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿šT¿%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8>%.8> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/model.onnx new file mode 100644 index 0000000000..a8c08dd8d9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..5c72b83ce6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3ec8ce6874 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_convtranspose/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/model.onnx new file mode 100644 index 0000000000..e00c935632 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/model.onnx @@ -0,0 +1,11 @@ +pytorch0.3:I + +01"Exptorch-jit-exportZ +0 +  + +b +1 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb8549c3e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..16f1417380 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_exp/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +J0 †?¶i¿?ø1º>zúž?1È +?¹ÌÓ?²A¡?lûÿ?& +D?ìR A¹Ã?´•E? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/model.onnx new file mode 100644 index 0000000000..2a12bb98dd --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/model.onnx @@ -0,0 +1,14 @@ +pytorch0.3:b + +01"Flatten* +axis torch-jit-exportZ +0 + + + + +b +1 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c96305a029 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_flatten/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/model.onnx new file mode 100644 index 0000000000..3105314fad Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..bf5caf95dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..17817b98bf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_index/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/model.onnx new file mode 100644 index 0000000000..f1016890de --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/model.onnx @@ -0,0 +1,16 @@ +pytorch0.3:a + +0 +12"Maxtorch-jit-exportZ +0 +  + +Z +1 +  + +b +2 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb8549c3e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1039245885 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J06ž¾uo¯¿&¾Ü„b?Ü«…¾KD?°A!¼sB¹¿ùÊP¾M®_?~.¿CE"? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..4b30d1aaa8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_max/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J0Ló<=¾Î>&¾Ü„b?Ü«…¾KD?‚l>„m1?ùÊP¾ük @\-Ñ=CE"? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/model.onnx new file mode 100644 index 0000000000..bbc7d87cf6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..323405159c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..80f6c34f6c Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_maxpool/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/model.onnx new file mode 100644 index 0000000000..c54d85eb89 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/model.onnx @@ -0,0 +1,16 @@ +pytorch0.3:a + +0 +12"Mintorch-jit-exportZ +0 +  + +Z +1 +  + +b +2 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb8549c3e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..1039245885 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J06ž¾uo¯¿&¾Ü„b?Ü«…¾KD?°A!¼sB¹¿ùÊP¾M®_?~.¿CE"? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..3cd39d4b01 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_min/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/model.onnx new file mode 100644 index 0000000000..24c8dab8b6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..46defa5ece Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..4058421ada --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J0‚l>„m1?󡈾ük @\-Ñ=뜄¾6ž¾uo¯¿&¾Ü„b?Ü«…¾KD? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..1d9fa36a95 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_mm/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J ¤=>¬ w¿ýA>FĈ¿4¡½f!A?~Á½3Ï? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/model.onnx new file mode 100644 index 0000000000..7b10bf4c56 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..4fd37a7c3b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..8de33f5140 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_non_float_params/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/model.onnx new file mode 100644 index 0000000000..7defd21fc0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..89c8be44e0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7d0b678674 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pad/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/model.onnx new file mode 100644 index 0000000000..db792b6fba Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..2ce0726173 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..11edd1cef7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_params/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JPS9¿§&;¿¨&;¿¨&;¿ \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/model.onnx new file mode 100644 index 0000000000..29a0ef813e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..fa58081f8d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fa58081f8d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_permute2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/model.onnx new file mode 100644 index 0000000000..da08c597b0 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/model.onnx @@ -0,0 +1,22 @@ +pytorch0.3:y + +0 +12"Powtorch-jit-exportZ +0 + + + + +Z +1 + + + + +b +2 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..466211cab3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/input_1.pb @@ -0,0 +1 @@ +J`oFD?"ð›<õ3´<œ“?ü¼­¾…Ÿ>#Še?õ—¾týl?â¸l? ê:>Úî–½‰¡>*¹„¿>W>K?›€=˨¾æ¿üp_?ËWD?!齚\q¿˜A? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c9345f3091 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_pow/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/model.onnx new file mode 100644 index 0000000000..31ef5d8f96 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..d52124c58f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J ªE>˜9¾4§¾Œw"¿-‰€¿Ø Ð>Ù‘>|†š= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/model.onnx new file mode 100644 index 0000000000..96c0f358ab --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/model.onnx @@ -0,0 +1,18 @@ +pytorch0.3:~ +0 +01" +ReduceMean* +axes@ * +keepdims torch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..18f97ce3f2 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_mean_keepdim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J ªE>˜9¾4§¾Œw"¿-‰€¿Ø Ð>Ù‘>|†š= \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/model.onnx new file mode 100644 index 0000000000..20954bed28 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..57122fd218 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +J †??òÓ +¿*Îz¿R³ó¿ÃÍ@Àb +œ?ÆTZ?ºÉg> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/model.onnx new file mode 100644 index 0000000000..88c5e99aa6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/model.onnx @@ -0,0 +1,17 @@ +pytorch0.3:} +/ +01" ReduceSum* +axes@ * +keepdims torch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..16181cf1a1 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_reduced_sum_keepdim/test_data_set_0/output_0.pb @@ -0,0 +1,3 @@ +J †??òÓ +¿*Îz¿R³ó¿ÃÍ@Àb +œ?ÆTZ?ºÉg> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/model.onnx new file mode 100644 index 0000000000..e3c65fbc86 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5e6abb49eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + J€´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ>ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/model.onnx new file mode 100644 index 0000000000..2cc1d9babb Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..08ae34ff99 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +JLó<=¾Î> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..2283882568 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_repeat_dim_overflow/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +JÀLó<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î>Ló<=¾Î> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/model.onnx new file mode 100644 index 0000000000..817529bd93 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/model.onnx @@ -0,0 +1,15 @@ +pytorch0.3:Z + +01"Selutorch-jit-exportZ +0 + + + + +b +1 + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..64d210dd7b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +J`´Ìä½Aþ¾Ëü&>J¶a¿sÆ\=Š+?‰[t½ä[ï¾µ #?ôÍ6¿Ò£Š¿h¿YÀx?¤×¿¨w¶?¦vL?Ü¿!À (½?ѱ-¾]ê}¿ú{º¿¬8ƒ>,\ξKÌÖ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..5150742242 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_selu/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +J`eL>¾\(0¿3t/>MÚƒ¿þ÷g=_Ç3?J…нb(¿Q+?̲e¿‰Ú”¿£ ?¿®‚?!(5¿ü·¿?yÔV? Ï¿/¿Æ?RpŒ¾Ð’¿ûœ¬¿Û߉>LL¿A°á> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/model.onnx new file mode 100644 index 0000000000..c44b76fbb7 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/model.onnx @@ -0,0 +1,11 @@ +pytorch0.3:J + +01"Sqrttorch-jit-exportZ +0 +  + +b +1 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..eb8549c3e3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..0f842e9d9f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_sqrt/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/model.onnx new file mode 100644 index 0000000000..ed37c04abe Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..82ad99fee6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..87c18abdf9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/model.onnx new file mode 100644 index 0000000000..82c60e066e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/model.onnx @@ -0,0 +1,33 @@ +pytorch0.3:¥ + +0 +1 +23"Sum + +04"Neg + +15"Negtorch-jit-exportZ +0 + + +Z +1 + + +Z +2 + + +b +3 + + +b +4 + + +b +5 + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a8370e6ed1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..be699d30e6 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..4c97715567 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..84e53e756e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..952ac13e6d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..c334c0a340 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_symbolic_override_nested/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/model.onnx b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/model.onnx new file mode 100644 index 0000000000..6f249cab21 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/model.onnx @@ -0,0 +1,12 @@ +pytorch0.3:V + +01"Flatten* +axis torch-jit-exportZ +0 + + +b +1 +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..17817b98bf Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bf5caf95dc Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/pytorch-operator/test_operator_view/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/real/test_bvlc_alexnet/data.json b/third_party/onnx/onnx/backend/test/data/real/test_bvlc_alexnet/data.json new file mode 100644 index 0000000000..50bc208d3d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_bvlc_alexnet/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "bvlc_alexnet", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/bvlc_alexnet.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_densenet121/data.json b/third_party/onnx/onnx/backend/test/data/real/test_densenet121/data.json new file mode 100644 index 0000000000..c81bd748a6 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_densenet121/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "densenet121", "rtol": 0.002, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/densenet121.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_inception_v1/data.json b/third_party/onnx/onnx/backend/test/data/real/test_inception_v1/data.json new file mode 100644 index 0000000000..a77ad9a588 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_inception_v1/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "inception_v1", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/inception_v1.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_inception_v2/data.json b/third_party/onnx/onnx/backend/test/data/real/test_inception_v2/data.json new file mode 100644 index 0000000000..3faf42734c --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_inception_v2/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "inception_v2", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/inception_v2.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_resnet50/data.json b/third_party/onnx/onnx/backend/test/data/real/test_resnet50/data.json new file mode 100644 index 0000000000..08417572ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_resnet50/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "resnet50", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/resnet50.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_shufflenet/data.json b/third_party/onnx/onnx/backend/test/data/real/test_shufflenet/data.json new file mode 100644 index 0000000000..6f898a01a9 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_shufflenet/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "shufflenet", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/shufflenet.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_squeezenet/data.json b/third_party/onnx/onnx/backend/test/data/real/test_squeezenet/data.json new file mode 100644 index 0000000000..109b8c1945 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_squeezenet/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "squeezenet", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/squeezenet.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_vgg19/data.json b/third_party/onnx/onnx/backend/test/data/real/test_vgg19/data.json new file mode 100644 index 0000000000..4758d6b95f --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_vgg19/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "vgg19", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/vgg19.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/real/test_zfnet512/data.json b/third_party/onnx/onnx/backend/test/data/real/test_zfnet512/data.json new file mode 100644 index 0000000000..781790a359 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/real/test_zfnet512/data.json @@ -0,0 +1 @@ +{"atol": 1e-07, "model_name": "zfnet512", "rtol": 0.001, "url": "https://s3.amazonaws.com/download.onnx/models/opset_9/zfnet512.tar.gz"} \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/model.onnx new file mode 100644 index 0000000000..a682b9a0b5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/model.onnx @@ -0,0 +1,18 @@ + backend-test:l + +X +shapeYtest"ExpandExpandZ +X + + + +Z +shape + + +b +Y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..254eb74432 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..acdfc52931 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..08fa83edc0 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/model.onnx new file mode 100644 index 0000000000..8d83f67707 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/model.onnx @@ -0,0 +1,18 @@ + backend-test:l + +X +shapeYtest"ExpandExpandZ +X + + + +Z +shape + + +b +Y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..254eb74432 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e9774d7bac Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..81ce284f69 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/model.onnx new file mode 100644 index 0000000000..d6e596c34a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/model.onnx @@ -0,0 +1,18 @@ + backend-test:l + +X +shapeYtest"ExpandExpandZ +X + + + +Z +shape + + +b +Y + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..254eb74432 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..5d78a132f4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..48cfc3fe58 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/model.onnx new file mode 100644 index 0000000000..ee55fc50cf --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/model.onnx @@ -0,0 +1,19 @@ + backend-test:p + +X +shapeYtest"ExpandExpandZ +X + + + +Z +shape + + +b +Y + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..254eb74432 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..eade368b80 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ed9aa9e574 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_expand_shape_model4/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/model.onnx new file mode 100644 index 0000000000..6cee309f3d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f44504237a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbb94868f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..ceda7e2f64 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..01af23643f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..d2945a7a05 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/model.onnx new file mode 100644 index 0000000000..6bf8cdd90d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f44504237a Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cbb94868f3 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..660fb53bb9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_1.pb new file mode 100644 index 0000000000..e8046aaa1d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_2.pb new file mode 100644 index 0000000000..c71c2418df Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_gradient_of_add_and_mul/test_data_set_0/output_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/model.onnx new file mode 100644 index 0000000000..51f1e22669 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..e827c24340 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..48d44446de Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..26aa7494f9 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model1/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/model.onnx new file mode 100644 index 0000000000..832755dea1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf992385c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..3497261e88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8838043db Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model2/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/model.onnx new file mode 100644 index 0000000000..84667039f1 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf992385c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..3497261e88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..b8838043db Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model3/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/model.onnx new file mode 100644 index 0000000000..13d1b69a1f Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf992385c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..3497261e88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f5cbdf2024 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model4/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/model.onnx new file mode 100644 index 0000000000..4c17acd2eb --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/model.onnx @@ -0,0 +1,30 @@ + backend-test:â +# +X +Y +Zseq_1"SequenceConstruct +G +seq_1out"ConcatFromSequence* +axisÿÿÿÿÿÿÿÿÿ * +new_axis SequenceZ +X + + + +Z +Y + + + +Z +Z + + + +b +out + + + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..cf992385c5 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_2.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_2.pb new file mode 100644 index 0000000000..3497261e88 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/input_2.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..07b7cdfd1d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model5/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/model.onnx new file mode 100644 index 0000000000..e3e48d77ba Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..8cec7a7790 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..84d6871d50 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model6/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/model.onnx new file mode 100644 index 0000000000..c1d37cd4ea Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..3c2634393d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/input_0.pb @@ -0,0 +1 @@ + BXJÀ¨_Váá?3‡`ÏÔâæ?K‰nkÖIã?õ•cÛ®oá?öý)Û?[›‰!*«ä?ÒYaÊmÜ?÷:ˆg‰ì?63ISÖî?BÒKNŠØ?(©?¿ÏUé?"ë µìà?-6’Ék-â?%X×|ží?óËJk/²?ðÒ½N¶?à‰"¯!´”?{ Ô_Ò¤ê?¸ü¨æè?'øz·#×ë?ùäi×Pï?ò!4û´’é?ð)¼àˆÝ?2,·Rúè? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..c8e878e819 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model7/test_data_set_0/output_0.pb @@ -0,0 +1 @@ + BoutJ`-6’Ék-â?%X×|ží?óËJk/²?ðÒ½N¶?à‰"¯!´”?{ Ô_Ò¤ê?¸ü¨æè?'øz·#×ë?ùäi×Pï?ò!4û´’é?ð)¼àˆÝ?2,·Rúè? \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/model.onnx new file mode 100644 index 0000000000..ae5be34739 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..65193ec95d Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_1.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_1.pb new file mode 100644 index 0000000000..bb1a32bac8 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/input_1.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..a9977c13ed Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sequence_model8/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_shrink/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/model.onnx new file mode 100644 index 0000000000..cb7583274b Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..79ecbb47a4 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..236d0ac30e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_shrink/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/model.onnx new file mode 100644 index 0000000000..2d81bc8811 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/model.onnx @@ -0,0 +1,12 @@ + backend-test:B + +xytest"Sign +SingleSignZ +x + + +b +y + + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..ff9c47ff95 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/input_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..e3843ba808 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_sign_model/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/model.onnx new file mode 100644 index 0000000000..45ea0e5465 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/model.onnx @@ -0,0 +1,12 @@ + backend-test:J + +xytest"Relu +SingleReluZ +x +  + +b +y +  + +B \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..e5097e0992 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +BxJxÌá?háÌ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7038f87052 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_single_relu_model/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +ByJxÌá?háÌ> \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/model.onnx new file mode 100644 index 0000000000..6cae372e51 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/model.onnx @@ -0,0 +1,14 @@ + backend-test:  +j +xy"StringNormalizer* +case_change_action"LOWER * +is_case_sensitive * + stopwordsJmonday StringNormalizerZ +x + + +b +y + + +B diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..179b510f58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2tuesday2 wednesday2thursdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cdc27a745e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_lower/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2tuesday2 wednesday2thursdayBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/model.onnx new file mode 100644 index 0000000000..ffe252972a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/model.onnx @@ -0,0 +1,13 @@ + backend-test:€ +J +xy"StringNormalizer* +is_case_sensitive * + stopwordsJmonday StringNormalizerZ +x + + +b +y + + +B diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..179b510f58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2tuesday2 wednesday2thursdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..cdc27a745e --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_nochangecase/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2tuesday2 wednesday2thursdayBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/model.onnx new file mode 100644 index 0000000000..2703493519 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/model.onnx @@ -0,0 +1,14 @@ + backend-test:  +j +xy"StringNormalizer* +case_change_action"UPPER * +is_case_sensitive * + stopwordsJmonday StringNormalizerZ +x + + +b +y + + +B diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..179b510f58 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2tuesday2 wednesday2thursdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..f99dcd833d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_casesensintive_upper/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2TUESDAY2 WEDNESDAY2THURSDAYBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/model.onnx new file mode 100644 index 0000000000..81e3def54e Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/model.onnx differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..f8443f6f02 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2mondayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..fc66148d36 Binary files /dev/null and b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_empty_output/test_data_set_0/output_0.pb differ diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/model.onnx new file mode 100644 index 0000000000..9ba1ce5112 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/model.onnx @@ -0,0 +1,13 @@ + backend-test:Ž +P +xy"StringNormalizer* +case_change_action"UPPER * + stopwordsJmonday StringNormalizerZ +x +  + +b +y +  + +B diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..0b3e995018 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2Monday2tuesday2 wednesday2Monday2tuesday2 wednesdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..7db720dd9a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_monday_insensintive_upper_twodim/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2TUESDAY2 WEDNESDAY2TUESDAY2 WEDNESDAYBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/model.onnx b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/model.onnx new file mode 100644 index 0000000000..9b412e3076 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/model.onnx @@ -0,0 +1,12 @@ + backend-test:h +2 +xy"StringNormalizer* +is_case_sensitive StringNormalizerZ +x + + +b +y + + +B diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/input_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/input_0.pb new file mode 100644 index 0000000000..a2b84057f5 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/input_0.pb @@ -0,0 +1 @@ +2monday2tuesdayBx \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/output_0.pb b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/output_0.pb new file mode 100644 index 0000000000..bc7045a6d8 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/data/simple/test_strnorm_model_nostopwords_nochangecase/test_data_set_0/output_0.pb @@ -0,0 +1 @@ +2monday2tuesdayBy \ No newline at end of file diff --git a/third_party/onnx/onnx/backend/test/loader/__init__.py b/third_party/onnx/onnx/backend/test/loader/__init__.py new file mode 100644 index 0000000000..8a6349511d --- /dev/null +++ b/third_party/onnx/onnx/backend/test/loader/__init__.py @@ -0,0 +1,60 @@ +# SPDX-License-Identifier: Apache-2.0 + +import json +import os + +from ..case.test_case import TestCase +from typing import List, Text, Optional + +DATA_DIR = os.path.join( + os.path.dirname(os.path.realpath(os.path.dirname(__file__))), + 'data') + + +def load_model_tests( + data_dir: Text = DATA_DIR, + kind: Optional[Text] = None, +) -> List[TestCase]: + '''Load model test cases from on-disk data files. + ''' + + supported_kinds = os.listdir(data_dir) + if kind not in supported_kinds: + raise ValueError("kind must be one of {}".format(supported_kinds)) + + testcases = [] + + kind_dir = os.path.join(data_dir, kind) + for test_name in os.listdir(kind_dir): + case_dir = os.path.join(kind_dir, test_name) + # skip the non-dir files, such as generated __init__.py. + rtol = 1e-3 + atol = 1e-7 + if not os.path.isdir(case_dir): + continue + if os.path.exists(os.path.join(case_dir, 'model.onnx')): + url = None + model_name = test_name[len('test_')] + model_dir: Optional[Text] = case_dir + else: + with open(os.path.join(case_dir, 'data.json')) as f: + data = json.load(f) + url = data['url'] + model_name = data['model_name'] + rtol = data.get('rtol', 1e-3) + atol = data.get('atol', 1e-7) + model_dir = None + testcases.append( + TestCase( + name=test_name, + url=url, + model_name=model_name, + model_dir=model_dir, + model=None, + data_sets=None, + kind=kind, + rtol=rtol, + atol=atol, + )) + + return testcases diff --git a/third_party/onnx/onnx/backend/test/report/__init__.py b/third_party/onnx/onnx/backend/test/report/__init__.py new file mode 100644 index 0000000000..6c3a975745 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/report/__init__.py @@ -0,0 +1,41 @@ +# SPDX-License-Identifier: Apache-2.0 + +import pytest # type: ignore +import _pytest # type: ignore + +from .coverage import Coverage +from typing import Dict, Text, Sequence, Any, List + +_coverage = Coverage() +_marks: Dict[Text, Sequence[Any]] = {} + + +def _add_mark(mark: Any, bucket: Text) -> None: + proto = mark.args[0] + if isinstance(proto, list): + assert len(proto) == 1 + proto = proto[0] + if proto is not None: + _coverage.add_proto(proto, bucket, mark.args[1] == 'RealModel') + + +def pytest_runtest_call(item: _pytest.nodes.Item) -> None: + mark = item.get_closest_marker('onnx_coverage') + if mark: + assert item.nodeid not in _marks + _marks[item.nodeid] = mark + + +def pytest_runtest_logreport(report: Any) -> None: + if (report.when == 'call' + and report.outcome == 'passed' + and report.nodeid in _marks): + mark = _marks[report.nodeid] + _add_mark(mark, 'passed') + + +@pytest.hookimpl(trylast=True) # type: ignore +def pytest_terminal_summary(terminalreporter: _pytest.terminal.TerminalReporter, exitstatus: int) -> None: + for mark in _marks.values(): + _add_mark(mark, 'loaded') + _coverage.report_text(terminalreporter) diff --git a/third_party/onnx/onnx/backend/test/report/base.py b/third_party/onnx/onnx/backend/test/report/base.py new file mode 100644 index 0000000000..c43ec5ef3b --- /dev/null +++ b/third_party/onnx/onnx/backend/test/report/base.py @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + + +class ReporterBase(object): + pass diff --git a/third_party/onnx/onnx/backend/test/report/coverage.py b/third_party/onnx/onnx/backend/test/report/coverage.py new file mode 100644 index 0000000000..6f5ff9e9d3 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/report/coverage.py @@ -0,0 +1,250 @@ +# SPDX-License-Identifier: Apache-2.0 + +from collections import defaultdict, OrderedDict +import os +import csv +import datetime + +from tabulate import tabulate # type: ignore + +import onnx +from onnx import defs, helper, GraphProto +from typing import Optional, Text, Set, Dict, IO, List, Any + +_all_schemas = defs.get_all_schemas() + + +class AttrCoverage(object): + def __init__(self) -> None: + self.name: Optional[Text] = None + self.values: Set[Text] = set() + + def add(self, attr: onnx.AttributeProto) -> None: + assert self.name in [None, attr.name] + self.name = attr.name + value = helper.get_attribute_value(attr) + # Turn list into tuple so we can put it into set + # As value can be string, don't blindly turn `collections.Iterable` + # into tuple. + if isinstance(value, list): + value = tuple(value) + self.values.add(str(value)) + + +class NodeCoverage(object): + def __init__(self) -> None: + self.op_type: Optional[Text] = None + self.attr_coverages: Dict[Text, AttrCoverage] = defaultdict(AttrCoverage) + + def add(self, node: onnx.NodeProto) -> None: + assert self.op_type in [None, node.op_type] + + if self.op_type is None: + self.op_type = node.op_type + assert self.op_type is not None + self.schema = defs.get_schema(self.op_type, node.domain) + + for attr in node.attribute: + self.attr_coverages[attr.name].add(attr) + + +class ModelCoverage(object): + def __init__(self) -> None: + self.name: Optional[Text] = None + self.graph: Optional[GraphProto] = None + self.node_coverages: Dict[Text, NodeCoverage] = defaultdict(NodeCoverage) + + def add(self, model: onnx.ModelProto) -> None: + assert self.name in [None, model.graph.name] + + if self.name is None: + self.name = model.graph.name + assert self.name is not None + self.graph = model.graph + + for node in model.graph.node: + self.node_coverages[node.op_type].add(node) + + +class Coverage(object): + def __init__(self) -> None: + self.buckets: Dict[Text, Dict[Text, NodeCoverage]] = { + 'loaded': defaultdict(NodeCoverage), + 'passed': defaultdict(NodeCoverage), + } + self.models: Dict[Text, Dict[Text, ModelCoverage]] = { + 'loaded': defaultdict(ModelCoverage), + 'passed': defaultdict(ModelCoverage), + } + + def add_node(self, node: onnx.NodeProto, bucket: Text) -> None: + self.buckets[bucket][node.op_type].add(node) + + def add_graph(self, graph: onnx.GraphProto, bucket: Text) -> None: + for node in graph.node: + self.add_node(node, bucket) + + def add_model(self, model: onnx.ModelProto, bucket: Text, is_model: bool) -> None: + self.add_graph(model.graph, bucket) + # Only add model if name does not start with test + if is_model: + self.models[bucket][model.graph.name].add(model) + + def add_proto(self, proto: onnx.ModelProto, bucket: Text, is_model: bool) -> None: + assert isinstance(proto, onnx.ModelProto) + self.add_model(proto, bucket, is_model) + + def report_text(self, writer: IO[Text]) -> None: + writer.write('---------- onnx coverage: ----------\n') + writer.write('Operators (passed/loaded/total): {}/{}/{}\n'.format( + len(self.buckets['passed']), + len(self.buckets['loaded']), + len(_all_schemas))) + writer.write('------------------------------------\n') + + rows = [] + passed = [] + all_ops: List[Text] = [] + experimental: List[Text] = [] + for op_cov in self.buckets['passed'].values(): + covered_attrs = [ + '{}: {}'.format(attr_cov.name, len(attr_cov.values)) + for attr_cov in op_cov.attr_coverages.values()] + uncovered_attrs = [ + '{}: 0'.format(attr) + for attr in op_cov.schema.attributes + if attr not in op_cov.attr_coverages + ] + attrs = sorted(covered_attrs) + sorted(uncovered_attrs) + if attrs: + attrs_column = os.linesep.join(attrs) + else: + attrs_column = 'No attributes' + rows.append([op_cov.op_type, attrs_column]) + passed.append(op_cov.op_type) + writer.write(tabulate( + rows, + headers=['Operator', 'Attributes\n(name: #values)'], + tablefmt='plain')) + if os.environ.get(str('CSVDIR')) is not None: + self.report_csv(all_ops, passed, experimental) + + # This function writes the coverage report to a set of CSV files for + # the Backend Scoreboard (onnx.ai/backend-scoreboard). To enable this + # feature, set a CSVDIR environment variable locally with the directory + # where you would like the files to be written, relative to the + # directory from which you're running pytest. The format of the CSV + # files is a column naming each op or model and columns for each + # backend with indications of whether the tests passed or failed for + # each row. + def report_csv(self, all_ops: List[Text], passed: List[Optional[Text]], experimental: List[Text]) -> None: + for schema in _all_schemas: + if schema.domain == '' or schema.domain == 'ai.onnx': + all_ops.append(schema.name) + if schema.support_level == defs.OpSchema.SupportType.EXPERIMENTAL: + experimental.append(schema.name) + all_ops.sort() + nodes_path = os.path.join(str(os.environ.get('CSVDIR')), # type: ignore + 'nodes.csv') # type: ignore + models_path = os.path.join(str(os.environ.get('CSVDIR')), # type: ignore + 'models.csv') # type: ignore + existing_nodes: OrderedDict[Text, Dict[str, str]] = OrderedDict() + existing_models: OrderedDict[Text, Dict[str, str]] = OrderedDict() + frameworks: List[str] = [] + if os.path.isfile(nodes_path): + with open(nodes_path, 'r') as nodes_file: + reader = csv.DictReader(nodes_file) + assert reader.fieldnames + frameworks = list(reader.fieldnames) + for row in reader: + op = row[str('Op')] + del row[str('Op')] + existing_nodes[str(op)] = row + if os.path.isfile(models_path): + with open(models_path, 'r') as models_file: + reader = csv.DictReader(models_file) + for row in reader: + model = row[str('Model')] + del row[str('Model')] + existing_models[str(model)] = row + backend = os.environ.get(str('BACKEND')) + other_frameworks = frameworks[1:] + with open(nodes_path, 'w') as nodes_file: + if str('Op') not in frameworks: + frameworks.append(str('Op')) + if backend not in frameworks: + frameworks.append(str(backend)) + else: + other_frameworks.remove(str(backend)) + node_writer = csv.DictWriter(nodes_file, fieldnames=frameworks) + node_writer.writeheader() + for node in all_ops: + node_name = node + if node in experimental: + node_name = node + ' (Experimental)' + if node_name not in existing_nodes: + # Also add Skipped for other nodes + existing_nodes[node_name] = OrderedDict() + for other_framework in other_frameworks: + existing_nodes[node_name][other_framework] = str("Skipped!") + if node in passed: + existing_nodes[node_name][str(backend)] = str("Passed!") + else: + existing_nodes[node_name][str(backend)] = str("Failed!") + summaries: Dict[Any, Any] = dict() + if "Summary" in existing_nodes: + summaries = existing_nodes["Summary"] + del existing_nodes["Summary"] + summaries[str(backend)] = \ + "{}/{} node tests passed".format(len(passed), len(all_ops)) + summaries['Op'] = 'Summary' + for node in existing_nodes: + existing_nodes[node][str('Op')] = str(node) + node_writer.writerow(existing_nodes[node]) + node_writer.writerow(summaries) + with open(models_path, 'w') as models_file: + frameworks[0] = str("Model") + model_writer = csv.DictWriter(models_file, fieldnames=frameworks) + model_writer.writeheader() + # Consider both buckets + num_models = 0 + for bucket in self.models: + for model in self.models[bucket]: # type: ignore + # Both analyze and run the model on the backend + num_covered = 0 + for node in self.models[bucket][model].node_coverages: + if node in passed: + num_covered += 1 + # TODO: Identify if there are models that are being + # skipped/not loaded, but that are in other frameworks + msg = "Passed!" + if bucket == 'loaded': + if model in self.models['passed']: + continue + msg = "Failed!" + num_models += 1 + if model not in existing_models: + # Also add Skipped for other models + existing_models[model] = OrderedDict() + for other_framework in other_frameworks: + existing_models[model][other_framework] = str("Skipped!") + existing_models[model][str(backend)] = str("{}/{} nodes covered: {}" + .format(num_covered, len(self.models[bucket][model] + .node_coverages), msg)) + summaries.clear() + if "Summary" in existing_models: + summaries = existing_models["Summary"] + del existing_models["Summary"] + if str(backend) in summaries: + del summaries[str(backend)] + summaries[str(backend)] = "{}/{} model tests passed" \ + .format(len(self.models['passed']), num_models) + summaries['Model'] = 'Summary' + for model in existing_models: # type: ignore + existing_models[model][str('Model')] = model + model_writer.writerow(existing_models[model]) + model_writer.writerow(summaries) + with open(os.path.join(str(os.environ.get('CSVDIR')), # type: ignore + 'metadata.csv'), 'w') as metadata_file: # type: ignore + metadata_writer = csv.writer(metadata_file) + metadata_writer.writerow(["Latest Update", datetime.datetime.now().isoformat().replace('T', ' ')]) diff --git a/third_party/onnx/onnx/backend/test/runner/__init__.py b/third_party/onnx/onnx/backend/test/runner/__init__.py new file mode 100644 index 0000000000..e9fbfb05ee --- /dev/null +++ b/third_party/onnx/onnx/backend/test/runner/__init__.py @@ -0,0 +1,338 @@ +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import annotations + +from collections import defaultdict +import functools +import glob +import os +import re +import shutil +import sys +import tarfile +import tempfile +import time +import unittest + +import numpy as np # type: ignore + +import onnx +from onnx import helper, numpy_helper, NodeProto, ModelProto, TypeProto +from onnx.backend.base import Backend +from urllib.request import urlretrieve +from ..loader import load_model_tests +from ..case.test_case import TestCase +from .item import TestItem +from typing import Optional, Pattern, Set, Dict, Text, Type, Sequence, Any, Callable, Union, Iterable, List + + +class BackendIsNotSupposedToImplementIt(unittest.SkipTest): + pass + + +def retry_excute(times: int) -> Callable[[Callable[..., Any]], Callable[..., Any]]: + assert times >= 1 + + def wrapper(func: Callable[..., Any]) -> Callable[..., Any]: + @functools.wraps(func) + def wrapped(*args: Any, **kwargs: Any) -> Any: + for i in range(1, times + 1): + try: + return func(*args, **kwargs) + except Exception: + print('{} times tried'.format(i)) + if i == times: + raise + time.sleep(5 * i) + return wrapped + return wrapper + + +class Runner(object): + + def __init__(self, backend: Type[Backend], parent_module: Optional[str] = None) -> None: + self.backend = backend + self._parent_module = parent_module + self._include_patterns: Set[Pattern[Text]] = set() + self._exclude_patterns: Set[Pattern[Text]] = set() + self._xfail_patterns: Set[Pattern[Text]] = set() + + # This is the source of the truth of all test functions. + # Properties `test_cases`, `test_suite` and `tests` will be + # derived from it. + # {category: {name: func}} + self._test_items: Dict[Text, Dict[Text, TestItem]] = defaultdict(dict) + + for rt in load_model_tests(kind='node'): + self._add_model_test(rt, 'Node') + + for rt in load_model_tests(kind='real'): + self._add_model_test(rt, 'Real') + + for rt in load_model_tests(kind='simple'): + self._add_model_test(rt, 'Simple') + + for ct in load_model_tests(kind='pytorch-converted'): + self._add_model_test(ct, 'PyTorchConverted') + + for ot in load_model_tests(kind='pytorch-operator'): + self._add_model_test(ot, 'PyTorchOperator') + + def _get_test_case(self, name: Text) -> Type[unittest.TestCase]: + test_case = type(str(name), (unittest.TestCase,), {}) + if self._parent_module: + test_case.__module__ = self._parent_module + return test_case + + def include(self, pattern: Text) -> Runner: + self._include_patterns.add(re.compile(pattern)) + return self + + def exclude(self, pattern: Text) -> Runner: + self._exclude_patterns.add(re.compile(pattern)) + return self + + def xfail(self, pattern: Text) -> Runner: + self._xfail_patterns.add(re.compile(pattern)) + return self + + def enable_report(self) -> Runner: + import pytest # type: ignore + + for category, items_map in self._test_items.items(): + for name, item in items_map.items(): + item.func = pytest.mark.onnx_coverage(item.proto, category)(item.func) + return self + + @property + def _filtered_test_items(self) -> Dict[Text, Dict[Text, TestItem]]: + filtered: Dict[Text, Dict[Text, TestItem]] = {} + for category, items_map in self._test_items.items(): + filtered[category] = {} + for name, item in items_map.items(): + if (self._include_patterns + and (not any(include.search(name) + for include in self._include_patterns))): + item.func = unittest.skip( + 'no matched include pattern' + )(item.func) + for exclude in self._exclude_patterns: + if exclude.search(name): + item.func = unittest.skip( + 'matched exclude pattern "{}"'.format( + exclude.pattern) + )(item.func) + for xfail in self._xfail_patterns: + if xfail.search(name): + item.func = unittest.expectedFailure(item.func) + filtered[category][name] = item + return filtered + + @property + def test_cases(self) -> Dict[str, Type[unittest.TestCase]]: + ''' + List of test cases to be applied on the parent scope + Example usage: + globals().update(BackendTest(backend).test_cases) + ''' + test_cases = {} + for category, items_map in self._filtered_test_items.items(): + test_case_name = str('OnnxBackend{}Test').format(category) + test_case = self._get_test_case(test_case_name) + for name, item in sorted(items_map.items()): + setattr(test_case, name, item.func) + test_cases[test_case_name] = test_case + return test_cases + + @property + def test_suite(self) -> unittest.TestSuite: + ''' + TestSuite that can be run by TestRunner + Example usage: + unittest.TextTestRunner().run(BackendTest(backend).test_suite) + ''' + suite = unittest.TestSuite() + for case in sorted(self.test_cases.values()): + suite.addTests(unittest.defaultTestLoader.loadTestsFromTestCase(case)) + return suite + + # For backward compatibility (we used to expose `.tests`) + @property + def tests(self) -> Type[unittest.TestCase]: + ''' + One single unittest.TestCase that hosts all the test functions + Example usage: + onnx_backend_tests = BackendTest(backend).tests + ''' + tests = self._get_test_case('OnnxBackendTest') + for items_map in sorted(self._filtered_test_items.values()): + for name, item in sorted(items_map.items()): + setattr(tests, name, item.func) + return tests + + @classmethod + def assert_similar_outputs(cls, ref_outputs: Sequence[Any], outputs: Sequence[Any], rtol: float, atol: float) -> None: + np.testing.assert_equal(len(outputs), len(ref_outputs)) + for i in range(len(outputs)): + if isinstance(outputs[i], (list, tuple)): + for j in range(len(outputs[i])): + cls.assert_similar_outputs(ref_outputs[i][j], outputs[i][j], rtol, atol) + else: + np.testing.assert_equal(outputs[i].dtype, ref_outputs[i].dtype) + if ref_outputs[i].dtype == np.object: + np.testing.assert_array_equal(outputs[i], ref_outputs[i]) + else: + np.testing.assert_allclose( + outputs[i], + ref_outputs[i], + rtol=rtol, + atol=atol) + + @classmethod + @retry_excute(3) + def download_model(cls, model_test: TestCase, model_dir: Text, models_dir: Text) -> None: + # On Windows, NamedTemporaryFile can not be opened for a + # second time + download_file = tempfile.NamedTemporaryFile(delete=False) + try: + download_file.close() + assert model_test.url + print('Start downloading model {} from {}'.format( + model_test.model_name, + model_test.url)) + urlretrieve(model_test.url, download_file.name) + print('Done') + with tarfile.open(download_file.name) as t: + t.extractall(models_dir) + except Exception as e: + print('Failed to prepare data for model {}: {}'.format( + model_test.model_name, e)) + raise + finally: + os.remove(download_file.name) + + @classmethod + def prepare_model_data(cls, model_test: TestCase) -> Text: + onnx_home = os.path.expanduser(os.getenv('ONNX_HOME', os.path.join('~', '.onnx'))) + models_dir = os.getenv('ONNX_MODELS', + os.path.join(onnx_home, 'models')) + model_dir: Text = os.path.join(models_dir, model_test.model_name) + if not os.path.exists(os.path.join(model_dir, 'model.onnx')): + if os.path.exists(model_dir): + bi = 0 + while True: + dest = '{}.old.{}'.format(model_dir, bi) + if os.path.exists(dest): + bi += 1 + continue + shutil.move(model_dir, dest) + break + os.makedirs(model_dir) + + cls.download_model(model_test=model_test, model_dir=model_dir, models_dir=models_dir) + return model_dir + + def _add_test(self, + category: Text, + test_name: Text, + test_func: Callable[..., Any], + report_item: List[Optional[Union[ModelProto, NodeProto]]], + devices: Iterable[Text] = ('CPU', 'CUDA'), + ) -> None: + # We don't prepend the 'test_' prefix to improve greppability + if not test_name.startswith('test_'): + raise ValueError( + 'Test name must start with test_: {}'.format(test_name)) + + def add_device_test(device: Text) -> None: + device_test_name = '{}_{}'.format(test_name, device.lower()) + if device_test_name in self._test_items[category]: + raise ValueError( + 'Duplicated test name "{}" in category "{}"'.format( + device_test_name, category)) + + @unittest.skipIf( # type: ignore + not self.backend.supports_device(device), + "Backend doesn't support device {}".format(device)) + @functools.wraps(test_func) + def device_test_func(*args: Any, **kwargs: Any) -> Any: + try: + return test_func(*args, device=device, **kwargs) + except BackendIsNotSupposedToImplementIt as e: + # hacky verbose reporting + if '-v' in sys.argv or '--verbose' in sys.argv: + print('Test {} is effectively skipped: {}'.format( + device_test_name, e)) + + self._test_items[category][device_test_name] = TestItem( + device_test_func, report_item) + + for device in devices: + add_device_test(device) + + def _add_model_test(self, model_test: TestCase, kind: Text) -> None: + # model is loaded at runtime, note sometimes it could even + # never loaded if the test skipped + model_marker: List[Optional[Union[ModelProto, NodeProto]]] = [None] + + def run(test_self: Any, device: Text) -> None: + if model_test.model_dir is None: + model_dir = self.prepare_model_data(model_test) + else: + model_dir = model_test.model_dir + model_pb_path = os.path.join(model_dir, 'model.onnx') + model = onnx.load(model_pb_path) + model_marker[0] = model + if hasattr(self.backend, 'is_compatible') \ + and callable(self.backend.is_compatible) \ + and not self.backend.is_compatible(model): + raise unittest.SkipTest('Not compatible with backend') + prepared_model = self.backend.prepare(model, device) + assert prepared_model is not None + + # TODO after converting all npz files to protobuf, we can delete this. + for test_data_npz in glob.glob( + os.path.join(model_dir, 'test_data_*.npz')): + test_data = np.load(test_data_npz, encoding='bytes') + inputs = list(test_data['inputs']) + outputs = list(prepared_model.run(inputs)) + ref_outputs = test_data['outputs'] + self.assert_similar_outputs(ref_outputs, outputs, + rtol=model_test.rtol, + atol=model_test.atol) + for test_data_dir in glob.glob( + os.path.join(model_dir, "test_data_set*")): + inputs = [] + inputs_num = len(glob.glob(os.path.join(test_data_dir, 'input_*.pb'))) + for i in range(inputs_num): + input_file = os.path.join(test_data_dir, 'input_{}.pb'.format(i)) + self._load_proto(input_file, inputs, model.graph.input[i].type) + ref_outputs = [] + ref_outputs_num = len(glob.glob(os.path.join(test_data_dir, 'output_*.pb'))) + for i in range(ref_outputs_num): + output_file = os.path.join(test_data_dir, 'output_{}.pb'.format(i)) + self._load_proto(output_file, ref_outputs, model.graph.output[i].type) + outputs = list(prepared_model.run(inputs)) + self.assert_similar_outputs(ref_outputs, outputs, + rtol=model_test.rtol, + atol=model_test.atol) + + self._add_test(kind + 'Model', model_test.name, run, model_marker) + + def _load_proto(self, proto_filename: Text, target_list: List[Union[np.ndarray, List[Any]]], model_type_proto: TypeProto) -> None: + with open(proto_filename, 'rb') as f: + protobuf_content = f.read() + if model_type_proto.HasField('sequence_type'): + sequence = onnx.SequenceProto() + sequence.ParseFromString(protobuf_content) + target_list.append(numpy_helper.to_list(sequence)) + elif model_type_proto.HasField('tensor_type'): + tensor = onnx.TensorProto() + tensor.ParseFromString(protobuf_content) + target_list.append(numpy_helper.to_array(tensor)) + elif model_type_proto.HasField('optional_type'): + optional = onnx.OptionalProto() + optional.ParseFromString(protobuf_content) + target_list.append(numpy_helper.to_optional(optional)) + else: + print('Loading proto of that specific type (Map/Sparse Tensor) is currently not supported') diff --git a/third_party/onnx/onnx/backend/test/runner/item.py b/third_party/onnx/onnx/backend/test/runner/item.py new file mode 100644 index 0000000000..1694805c1a --- /dev/null +++ b/third_party/onnx/onnx/backend/test/runner/item.py @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: Apache-2.0 + +from typing import Callable, Any, Union, List, Optional +from onnx import NodeProto, ModelProto + + +# A container that hosts the test function and the associated +# test item (ModelProto) + + +class TestItem(object): + def __init__(self, func: Callable[..., Any], proto: List[Optional[Union[ModelProto, NodeProto]]]) -> None: + self.func = func + self.proto = proto diff --git a/third_party/onnx/onnx/backend/test/stat_coverage.py b/third_party/onnx/onnx/backend/test/stat_coverage.py new file mode 100644 index 0000000000..981615d6d4 --- /dev/null +++ b/third_party/onnx/onnx/backend/test/stat_coverage.py @@ -0,0 +1,249 @@ +#!/usr/bin/env python + +# SPDX-License-Identifier: Apache-2.0 + +import os +import io + +from onnx import defs, load, AttributeProto +from onnx.backend.test.case import collect_snippets +from onnx.backend.test.runner import Runner +from onnx.backend.test.loader import load_model_tests +from typing import Any, IO, Sequence, Text, Dict, List + + +def is_ml(schemas: Sequence[defs.OpSchema]) -> bool: + for s in schemas: + if s.domain == 'ai.onnx.ml': + return True + return False + + +def gen_outlines(f: IO[Any], ml: bool) -> None: + f.write('# Test Coverage Report') + if ml: + f.write(' (ONNX-ML Operators)\n') + else: + f.write(' (ONNX Core Operators)\n') + f.write('## Outlines\n') + f.write('* [Node Test Coverage](#node-test-coverage)\n') + f.write('* [Model Test Coverage](#model-test-coverage)\n') + f.write('* [Overall Test Coverage](#overall-test-coverage)\n') + + +common_covered: Sequence[Text] = [] +experimental_covered: Sequence[Text] = [] + + +def gen_node_test_coverage(schemas: Sequence[defs.OpSchema], f: IO[Any], ml: bool) -> None: + global common_covered + global experimental_covered + generators = set({ + 'Multinomial', + 'RandomNormal', + 'RandomNormalLike', + 'RandomUniform', + 'RandomUniformLike', + }) + node_tests = collect_snippets() + common_covered = sorted([s.name for s in schemas + if s.name in node_tests + and s.support_level == defs.OpSchema.SupportType.COMMON + and (s.domain == 'ai.onnx.ml') == ml]) + common_no_cover = sorted([s.name for s in schemas + if s.name not in node_tests + and s.support_level == defs.OpSchema.SupportType.COMMON + and (s.domain == 'ai.onnx.ml') == ml]) + common_generator = sorted([name for name in common_no_cover + if name in generators]) + experimental_covered = sorted([s.name for s in schemas + if s.name in node_tests + and s.support_level == defs.OpSchema.SupportType.EXPERIMENTAL + and (s.domain == 'ai.onnx.ml') == ml]) + experimental_no_cover = sorted([s.name for s in schemas + if s.name not in node_tests + and s.support_level == defs.OpSchema.SupportType.EXPERIMENTAL + and (s.domain == 'ai.onnx.ml') == ml]) + experimental_generator = sorted([name for name in experimental_no_cover + if name in generators]) + num_common = len(common_covered) + len(common_no_cover) \ + - len(common_generator) + num_experimental = len(experimental_covered) + len(experimental_no_cover) \ + - len(experimental_generator) + f.write('# Node Test Coverage\n') + f.write('## Summary\n') + if num_common: + f.write('Node tests have covered {}/{} ({:.2f}%, {} generators excluded) ' + 'common operators.\n\n'.format( + len(common_covered), num_common, + (len(common_covered) / float(num_common) * 100), + len(common_generator))) + else: + f.write('Node tests have covered 0/0 (N/A) common operators. \n\n') + if num_experimental: + f.write('Node tests have covered {}/{} ({:.2f}%, {} generators excluded) ' + 'experimental operators.\n\n'.format( + len(experimental_covered), num_experimental, + (len(experimental_covered) / float(num_experimental) * 100), + len(experimental_generator))) + else: + f.write('Node tests have covered 0/0 (N/A) experimental operators.\n\n') + titles = ['💚Covered Common Operators', + '💔No Cover Common Operators', + '💚Covered Experimental Operators', + '💔No Cover Experimental Operators', + ] + all_lists = [common_covered, common_no_cover, + experimental_covered, experimental_no_cover] + for t in titles: + f.write('* [{}](#{})\n'.format(t[9:], t[9:].lower().replace(' ', '-'))) + f.write('\n') + for t, l in zip(titles, all_lists): + f.write('## {}\n'.format(t)) + for s in l: + f.write('### {}'.format(s)) + if s in node_tests: + f.write('\nThere are {} test cases, listed as following:\n'.format( + len(node_tests[s]))) + for summary, code in sorted(node_tests[s]): + f.write('
\n') + f.write('{}\n\n'.format(summary)) + f.write('```python\n{}\n```\n\n'.format(code)) + f.write('
\n') + else: + if s in generators: + f.write(' (random generator operator)\n') + else: + f.write(' (call for test cases)\n') + f.write('\n\n') + f.write('
\n\n') + + +def gen_model_test_coverage(schemas: Sequence[defs.OpSchema], f: IO[Any], ml: bool) -> None: + f.write('# Model Test Coverage\n') + # Process schemas + schema_dict = dict() + for schema in schemas: + schema_dict[schema.name] = schema + # Load models from each model test using Runner.prepare_model_data + # Need to grab associated nodes + attrs: Dict[Text, Dict[Text, List[Any]]] = dict() + model_paths: List[Any] = [] + for rt in load_model_tests(kind='real'): + model_dir = Runner.prepare_model_data(rt) + model_paths.append(os.path.join(model_dir, 'model.onnx')) + model_paths.sort() + model_written = False + for model_pb_path in model_paths: + model = load(model_pb_path) + if ml: + ml_present = False + for opset in model.opset_import: + if opset.domain == 'ai.onnx.ml': + ml_present = True + if not ml_present: + continue + else: + model_written = True + f.write('## {}\n'.format(model.graph.name)) + # Deconstruct model + num_covered = 0 + for node in model.graph.node: + if node.op_type in common_covered or node.op_type in experimental_covered: + num_covered += 1 + # Add details of which nodes are/aren't covered + # Iterate through and store each node's attributes + for attr in node.attribute: + if node.op_type not in attrs: + attrs[node.op_type] = dict() + if attr.name not in attrs[node.op_type]: + attrs[node.op_type][attr.name] = [] + if attr.type == AttributeProto.FLOAT: + if attr.f not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.f) + elif attr.type == AttributeProto.INT: + if attr.i not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.i) + elif attr.type == AttributeProto.STRING: + if attr.s not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.s) + elif attr.type == AttributeProto.TENSOR: + if attr.t not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.t) + elif attr.type == AttributeProto.GRAPH: + if attr.g not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.g) + elif attr.type == AttributeProto.FLOATS: + if attr.floats not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.floats) + elif attr.type == AttributeProto.INTS: + if attr.ints not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.ints) + elif attr.type == AttributeProto.STRINGS: + if attr.strings not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.strings) + elif attr.type == AttributeProto.TENSORS: + if attr.tensors not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.tensors) + elif attr.type == AttributeProto.GRAPHS: + if attr.graphs not in attrs[node.op_type][attr.name]: + attrs[node.op_type][attr.name].append(attr.graphs) + f.write('\n{} has {} nodes. Of these, {} are covered by node tests ({}%)\n\n\n'.format( + model.graph.name, num_covered, len(model.graph.node), 100.0 * float( + num_covered) / float(len(model.graph.node)))) + # Iterate through attrs, print + f.write('
\n') + f.write('nodes\n\n') + for op in sorted(attrs): + f.write('
\n') + # Get total number of attributes for node schema + f.write('{}: {} out of {} attributes covered\n\n' + .format(op, len(attrs[op].keys()), len(schema_dict[op] + .attributes))) + for attribute in sorted(schema_dict[op].attributes): + if attribute in attrs[op]: + f.write('{}: {}\n'.format(attribute, len(attrs[op][attribute]))) + else: + f.write('{}: 0\n'.format(attribute)) + f.write('
\n') + f.write('
\n\n\n') + if not model_written and ml: + f.write('No model tests present for selected domain\n') + + +def gen_overall_test_coverage(schemas: Sequence[defs.OpSchema], f: IO[Any], ml: bool) -> None: + f.write('# Overall Test Coverage\n') + f.write('## To be filled.\n') + + +def gen_spdx(f: IO[Any]) -> None: + f.write('\n') + + +def main() -> None: + base_dir = os.path.dirname(os.path.dirname(os.path.dirname( + os.path.dirname(os.path.realpath(__file__))))) + docs_dir = os.path.join(base_dir, 'docs') + schemas = defs.get_all_schemas() + + has_ml = is_ml(schemas) + fname = os.path.join(docs_dir, 'TestCoverage.md') + with io.open(fname, 'w+', newline='', encoding="utf-8") as f: # type: ignore + gen_spdx(f) + gen_outlines(f, False) + gen_node_test_coverage(schemas, f, False) + gen_model_test_coverage(schemas, f, False) + gen_overall_test_coverage(schemas, f, False) + + if has_ml: + fname = os.path.join(docs_dir, 'TestCoverage-ml.md') + with io.open(fname, 'w+', newline='', encoding="utf-8") as f: # type: ignore + gen_spdx(f) + gen_outlines(f, True) + gen_node_test_coverage(schemas, f, True) + gen_model_test_coverage(schemas, f, True) + gen_overall_test_coverage(schemas, f, True) + + +if __name__ == '__main__': + main() diff --git a/third_party/onnx/onnx/bin/__init__.py b/third_party/onnx/onnx/bin/__init__.py new file mode 100644 index 0000000000..9881313609 --- /dev/null +++ b/third_party/onnx/onnx/bin/__init__.py @@ -0,0 +1 @@ +# SPDX-License-Identifier: Apache-2.0 diff --git a/third_party/onnx/onnx/bin/checker.py b/third_party/onnx/onnx/bin/checker.py new file mode 100644 index 0000000000..aa7e975ae6 --- /dev/null +++ b/third_party/onnx/onnx/bin/checker.py @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: Apache-2.0 + +import argparse + +from onnx import load, checker, NodeProto + + +def check_model() -> None: + parser = argparse.ArgumentParser('check-model') + parser.add_argument('model_pb', type=argparse.FileType('rb')) + args = parser.parse_args() + + model = load(args.model_pb) + checker.check_model(model) + + +def check_node() -> None: + parser = argparse.ArgumentParser('check-node') + parser.add_argument('node_pb', type=argparse.FileType('rb')) + args = parser.parse_args() + + node = NodeProto() + node.ParseFromString(args.node_pb.read()) + checker.check_node(node) diff --git a/third_party/onnx/onnx/checker.cc b/third_party/onnx/onnx/checker.cc new file mode 100644 index 0000000000..2d949e8949 --- /dev/null +++ b/third_party/onnx/onnx/checker.cc @@ -0,0 +1,957 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#include "onnx/checker.h" +#include "onnx/common/file_utils.h" +#include "onnx/common/path.h" +#include "onnx/defs/schema.h" +#include "onnx/defs/tensor_proto_util.h" +#include "onnx/proto_utils.h" +#include "onnx/string_utils.h" + +#include +#include +#include + +#ifdef _WIN32 +#include +#else // POSIX +#include +#endif + +namespace ONNX_NAMESPACE { +namespace checker { + +#define enforce_has_field(proto, field) \ + do { \ + if (!proto.has_##field()) { \ + fail_check("Field '", #field, "' of '", #proto, "' is required but missing."); \ + } \ + } while (0) + +#define enforce_has_repeated_field(proto, field) \ + do { \ + if (!proto.field##_size()) { \ + fail_check("Repeated Field '", #field, "' of '", #proto, "' is required but missing."); \ + } \ + } while (0) + +#define enforce_non_empty_field(proto, field) \ + do { \ + if (proto.field().empty()) { \ + fail_check("Field '", #field, "' of '", #proto, "' is required to be non-empty."); \ + } \ + } while (0) + +void check_value_info(const ValueInfoProto& value_info, const CheckerContext& ctx) { + enforce_non_empty_field(value_info, name); + // Relax constraint for subgraph input/output. + if (!ctx.is_main_graph()) + return; + enforce_has_field(value_info, type); + const auto value_case = value_info.type().value_case(); + switch (value_case) { + case TypeProto::kTensorType: { + const auto& type = value_info.type().tensor_type(); + enforce_has_field(type, elem_type); + enforce_has_field(type, shape); + } break; + case TypeProto::kOptionalType: { + const auto& type = value_info.type().optional_type(); + enforce_has_field(type, elem_type); + } break; + case TypeProto::kSequenceType: { + const auto& type = value_info.type().sequence_type(); + enforce_has_field(type, elem_type); + } break; + case TypeProto::kMapType: { + const auto& type = value_info.type().map_type(); + enforce_has_field(type, key_type); + enforce_has_field(type, value_type); + } break; +#ifdef ONNX_ML + case TypeProto::kOpaqueType: + break; +#endif + case TypeProto::kSparseTensorType: { + const auto& type = value_info.type().sparse_tensor_type(); + enforce_has_field(type, elem_type); + enforce_has_field(type, shape); + } break; + + default: + fail_check("Unrecognized type value case (value_info name: ", value_info.name(), "): ", value_case); + } +} + +void check_tensor(const TensorProto& tensor, const CheckerContext& ctx) { + enforce_has_field(tensor, data_type); + if (tensor.data_type() == TensorProto::UNDEFINED) { + fail_check("setting data_type field (tensor name: ", tensor.name(), ") to UNDEFINED is not allowed"); + } + + int num_value_fields = 0; + + const char* value_field = nullptr; + +#define check_data_field(field) \ + bool has_##field = tensor.field().size(); \ + if (has_##field) { \ + ++num_value_fields; \ + value_field = #field; \ + } + + check_data_field(float_data); + check_data_field(int32_data); + check_data_field(string_data); + check_data_field(int64_data); + check_data_field(raw_data); + check_data_field(double_data); + check_data_field(uint64_data); + +#undef check_data_field + + bool stored_externally = tensor.has_data_location() && tensor.data_location() == TensorProto::EXTERNAL; + if (stored_externally) { + if (num_value_fields != 0) { + fail_check( + "Data of TensorProto ( tensor name: ", + tensor.name(), + ") is stored externally and should not have data field.", + value_field); + } + + bool has_location = false; + for (const StringStringEntryProto& entry : tensor.external_data()) { + if (entry.has_key() && entry.has_value() && entry.key() == "location") { + has_location = true; + std::string data_path = path_join(ctx.get_model_dir(), entry.value()); + // use stat to check whether the file exists + struct stat buffer; + if (stat((data_path).c_str(), &buffer) != 0) { + fail_check( + "Data of TensorProto ( tensor name: ", + tensor.name(), + ") should be stored in ", + data_path, + ", but it doesn't exist or is not accessible."); + } + } + } + if (!has_location) { + fail_check("TensorProto ( tensor name: ", tensor.name(), ") is stored externally but doesn't have a location."); + } + return; + } + int64_t nelem = 1; + for (auto x : tensor.dims()) { + nelem *= x; + } + if (nelem == 0 && num_value_fields != 0) { + fail_check("TensorProto (tensor name: ", tensor.name(), ") is 0-element but contains data!"); + } + if (nelem != 0 && num_value_fields != 1) { + fail_check("TensorProto (tensor name: ", tensor.name(), ") should contain one and only one value field."); + } + if (has_raw_data) { + if (tensor.data_type() == TensorProto::STRING) { + fail_check("STRING data (tensor name: ", tensor.name(), ") should not be stored in raw_data field"); + } + return; + } else { +#define check_field(field) \ + if (nelem != 0 && !has_##field) { \ + fail_check( \ + "values of data_type '", \ + tensor.data_type(), \ + "' should be stored in field '", \ + #field, \ + "' instead of '", \ + value_field, \ + "'"); \ + } + + switch (tensor.data_type()) { + case TensorProto::FLOAT: + case TensorProto::COMPLEX64: + check_field(float_data); + break; + + case TensorProto::DOUBLE: + case TensorProto::COMPLEX128: + check_field(double_data); + break; + + case TensorProto::INT32: + case TensorProto::UINT8: + case TensorProto::INT8: + case TensorProto::UINT16: + case TensorProto::INT16: + case TensorProto::BOOL: + case TensorProto::FLOAT16: + case TensorProto::BFLOAT16: + check_field(int32_data); + break; + + case TensorProto::INT64: + check_field(int64_data); + break; + + case TensorProto::UINT32: + case TensorProto::UINT64: + check_field(uint64_data); + break; + + case TensorProto::STRING: + check_field(string_data); + break; + + default: + fail_check("Unrecognized data_type (tensor name: ", tensor.name(), "): ", tensor.data_type()); + } + } + +#undef check_field +} + +void check_sequence(const SequenceProto& sequence, const CheckerContext& ctx) { + enforce_has_field(sequence, elem_type); + if (sequence.elem_type() == SequenceProto::TENSOR) { + for (const TensorProto& tensor : sequence.tensor_values()) { + check_tensor(tensor, ctx); + } + } else if (sequence.elem_type() == SequenceProto::SPARSE_TENSOR) { + for (const SparseTensorProto& sparse_tensor : sequence.sparse_tensor_values()) { + check_sparse_tensor(sparse_tensor, ctx); + } + } else if (sequence.elem_type() == SequenceProto::SEQUENCE) { + for (const SequenceProto& seq : sequence.sequence_values()) { + check_sequence(seq, ctx); + } + } else if (sequence.elem_type() == SequenceProto::MAP) { + for (const MapProto& map : sequence.map_values()) { + check_map(map, ctx); + } + } else { + fail_check( + "Sequence ( Structure name: ", + sequence.name(), + ", elem_type: ", + sequence.elem_type(), + ") is not have a valid element type."); + } +} + +void check_optional(const OptionalProto& optional, const CheckerContext& ctx) { + enforce_has_field(optional, elem_type); + if (optional.elem_type() == OptionalProto::UNDEFINED) { + return; + } else if (optional.elem_type() == OptionalProto::TENSOR) { + if (optional.has_tensor_value()) + check_tensor(optional.tensor_value(), ctx); + } else if (optional.elem_type() == OptionalProto::SPARSE_TENSOR) { + if (optional.has_sparse_tensor_value()) + check_sparse_tensor(optional.sparse_tensor_value(), ctx); + } else if (optional.elem_type() == OptionalProto::SEQUENCE) { + if (optional.has_sequence_value()) + check_sequence(optional.sequence_value(), ctx); + } else if (optional.elem_type() == OptionalProto::MAP) { + if (optional.has_map_value()) + check_map(optional.map_value(), ctx); + } else { + fail_check( + "Optional ( Structure name: ", + optional.name(), + ", elem_type: ", + optional.elem_type(), + ") is not have a valid element type."); + } +} + +void check_map(const MapProto& map, const CheckerContext& ctx) { + enforce_has_field(map, key_type); + if (map.key_type() == TensorProto::UNDEFINED) { + fail_check("setting key_type field (map name: ", map.name(), ") to UNDEFINED is not allowed"); + } + // Check if key is a valid type, specifically INT8, INT16, INT32, INT64, + // UINT8, UINT16, UINT32, UINT64, or STRING. + if ((map.key_type() == TensorProto::FLOAT) || (map.key_type() == TensorProto::BOOL) || + (map.key_type() == TensorProto::FLOAT16) || (map.key_type() == TensorProto::COMPLEX64) || + (map.key_type() == TensorProto::COMPLEX128)) { + fail_check( + "setting key_type field (map name: ", + map.name(), + ") to invalid TensorProto key_type ", + map.key_type(), + " is not allowed"); + } + + // MapProto will use either keys or string_keys, so only one should be > 0. + if ((map.keys_size() > 0) && (map.string_keys_size() > 0)) { + fail_check("Map (name: ", map.name(), ") should not contain more than one keys field."); + } + + int num_keys = map.keys_size() + map.string_keys_size(); + int num_values = 0; + + enforce_has_field(map, values); + check_sequence(map.values(), ctx); + + if (map.values().elem_type() == SequenceProto::TENSOR) { + num_values = map.values().tensor_values_size(); + } else if (map.values().elem_type() == SequenceProto::SPARSE_TENSOR) { + num_values = map.values().sparse_tensor_values_size(); + } else if (map.values().elem_type() == SequenceProto::SEQUENCE) { + num_values = map.values().sequence_values_size(); + } else if (map.values().elem_type() == SequenceProto::MAP) { + num_values = map.values().map_values_size(); + } + + if (num_keys != num_values) { + fail_check("Length of map keys and map values are not the same (map name: ", map.name(), ")"); + } +} + +// Check that the index data stored in a SparseTensorProto is valid. +// indices: a 1-dimensional tensor; indices[i] represents the +// linearized index value for the i-th nonzero value. +void check_sparse_tensor_indices_1( + const TensorProto& indices, + const SparseTensorProto& sparse_tensor_proto, + size_t nnz) { + int dense_rank = sparse_tensor_proto.dims_size(); + int64_t dense_size = 1; + for (int i = 0; i < dense_rank; ++i) + dense_size *= sparse_tensor_proto.dims(i); + if (static_cast(indices.dims(0)) != nnz) { + fail_check("Sparse tensor indices (", indices.name(), ") has ", indices.dims(0), " values, but NNZ is ", nnz); + } + + // Check if indices appear in ascending order, and if they have valid + // values. The i-th value in index_data is the linear index of the i-th + // non-zero value. + const std::vector index_data = ParseData(&indices); + + int64_t prev_index = -1; + for (size_t i = 0; i < nnz; ++i) { + int64_t curr_index = index_data[i]; // linearized index of i-th value + if (curr_index < 0 || curr_index >= dense_size) { + fail_check( + "Sparse tensor (", + indices.name(), + ") index value at position [", + i, + "] out of range [0, ", + dense_size - 1, + "]"); + } + if (curr_index <= prev_index) { + fail_check("Sparse tensor (", indices.name(), ") index value at position [", i, "] not in sorted order."); + } + prev_index = curr_index; + } +} + +// Check that the index data stored in a SparseTensorProto is valid. +// indices: a 2-dimensional tensor; indices[i,j] represents the j-th +// index value for the i-th nonzero value. +void check_sparse_tensor_indices_2( + const TensorProto& indices, + const SparseTensorProto& sparse_tensor_proto, + size_t nnz) { + int dense_rank = sparse_tensor_proto.dims_size(); + if (static_cast(indices.dims(0)) != nnz) { + fail_check("Sparse tensor indices (", indices.name(), ") first dimension size does not equal NNZ."); + } + if (indices.dims(1) != dense_rank) { + fail_check("Sparse tensor indices (", indices.name(), ") second dimension size does not match rank of tensor."); + } + + // Check if indices appear in ascending order, and if they have valid + // values. + const std::vector index_data = ParseData(&indices); + int64_t prev_index = -1; + for (size_t i = 0; i < nnz; ++i) { + int64_t curr_index = 0; // linearized index of i-th value + for (int j = 0; j < dense_rank; ++j) { + auto index_ij = index_data[i * dense_rank + j]; + if ((index_ij < 0) || (index_ij >= sparse_tensor_proto.dims(j))) { + fail_check("Sparse tensor (", indices.name(), ") index value at position [", i, ",", j, "] out of range."); + } + curr_index = curr_index * sparse_tensor_proto.dims(j) + index_ij; + } + if (curr_index <= prev_index) { + fail_check( + "Sparse tensor (", indices.name(), ") index value at position [", i, "] not in lexicographic sorted order."); + } + prev_index = curr_index; + } +} + +void check_sparse_tensor(const SparseTensorProto& sparse_tensor_proto, const CheckerContext& ctx) { + enforce_has_field(sparse_tensor_proto, values); + + const TensorProto& values = sparse_tensor_proto.values(); + check_tensor(values, ctx); + + // values must be a tensor of shape [NNZ] + // Currently we restrict the value associated with a particular index-tuple + // to be a single value. In the future, if there is a requirement, + // we may extend this to permit the value to be a "sub-tensor", in which + // case values will have dimension > 1. + if (values.dims_size() != 1) { + fail_check("Sparse tensor values (", values.name(), ") must have rank 1."); + } + size_t nnz = static_cast(values.dims(0)); + int dense_rank = sparse_tensor_proto.dims_size(); + if (dense_rank == 0) { + fail_check("Sparse tensor (", values.name(), ") must have a dense-rank > 0"); + } + for (int i = 0; i < dense_rank; ++i) { + if (sparse_tensor_proto.dims(i) <= 0) { + fail_check("Sparse tensor (", values.name(), ") dimensions are not positive."); + } + } + + if (sparse_tensor_proto.has_indices()) { + const TensorProto& indices = sparse_tensor_proto.indices(); + check_tensor(indices, ctx); + if (indices.data_type() != TensorProto::INT64) { + fail_check("Sparse tensor indices (", indices.name(), ") must have INT64 type."); + } + switch (indices.dims().size()) { + case 1: + // Indices in linearized format + check_sparse_tensor_indices_1(indices, sparse_tensor_proto, nnz); + return; + case 2: + // Check COO-style index. E.g., an index for a 3D tensor is a 3-tuple. + check_sparse_tensor_indices_2(indices, sparse_tensor_proto, nnz); + return; + default: + fail_check("Sparse tensor indices (", indices.name(), ") must have rank 1 or 2."); + } + } else if (nnz != 0) { + fail_check("Sparse tensor (", values.name(), ") has no index values."); + } +} + +// NB: This is a generic "attribute well-formedness" check, it doesn't +// actually test if an attribute is valid per a schema +void check_attribute(const AttributeProto& attr, const CheckerContext& ctx, const LexicalScopeContext& lex_ctx) { + enforce_non_empty_field(attr, name); + + if (ctx.get_ir_version() >= 0x00000002) { + enforce_has_field(attr, type); + } + + int used_fields = 0; + +#define check_type(expected_type) \ + if (attr.has_type() && attr.type() != expected_type) { \ + fail_check("type field and data field mismatch in attribute ", attr.name(), "."); \ + } + +#define check_singular_field(field, type) \ + if (attr.has_##field()) { \ + ++used_fields; \ + check_type(type); \ + } + +#define check_repeated_field(field, type) \ + if (attr.field##_size() > 0) { \ + ++used_fields; \ + check_type(type); \ + } + + check_singular_field(f, AttributeProto::FLOAT); + check_singular_field(i, AttributeProto::INT); + check_singular_field(s, AttributeProto::STRING); + check_singular_field(t, AttributeProto::TENSOR); + check_singular_field(g, AttributeProto::GRAPH); + check_singular_field(tp, AttributeProto::TYPE_PROTO); + check_singular_field(sparse_tensor, AttributeProto::SPARSE_TENSOR); + check_repeated_field(floats, AttributeProto::FLOATS); + check_repeated_field(ints, AttributeProto::INTS); + check_repeated_field(strings, AttributeProto::STRINGS); + check_repeated_field(tensors, AttributeProto::TENSORS); + check_repeated_field(graphs, AttributeProto::GRAPHS); + check_repeated_field(sparse_tensors, AttributeProto::SPARSE_TENSORS); + check_repeated_field(type_protos, AttributeProto::TYPE_PROTOS); + +#undef check_type +#undef check_singular_field +#undef check_repeated_field + + // Normally, used_fields is expected to be 1. + // In proto3, when the value to be set is type default value (say 0 for + // int), used_fields may be 0. + if (used_fields > 1) { + fail_check("Attribute (name: ", attr.name(), ") should not contain more than one value field."); + } + + if (!ctx.is_main_graph()) { + // It's an attribute of a node in function body. + if (attr.has_ref_attr_name() && used_fields != 0) { + // The attribute proto is supposed to refer to data outside and does not + // have its own value field set. + fail_check("Attribute (name: ", attr.name(), ") should refer to attribute in parent node."); + } + } + + if (attr.has_t()) { + check_tensor(attr.t(), ctx); + } + + if (attr.has_sparse_tensor()) { + check_sparse_tensor(attr.sparse_tensor(), ctx); + } + + if (attr.has_g()) { + CheckerContext subgraph_ctx(ctx); + subgraph_ctx.set_is_main_graph(false); + check_graph(attr.g(), subgraph_ctx, lex_ctx); + } + + for (const auto& tensor : attr.tensors()) { + check_tensor(tensor, ctx); + } + for (const auto& sparse_tensor : attr.sparse_tensors()) { + check_sparse_tensor(sparse_tensor, ctx); + } + if (attr.graphs().size() > 0) { + CheckerContext subgraph_ctx(ctx); + subgraph_ctx.set_is_main_graph(false); + for (const auto& graph : attr.graphs()) { + check_graph(graph, subgraph_ctx, lex_ctx); + } + } +} + +void check_node(const NodeProto& node, const CheckerContext& ctx, const LexicalScopeContext& lex_ctx) { + enforce_non_empty_field(node, op_type); + + if (node.input().empty() && node.output().empty()) { + fail_check("NodeProto (name: ", node.name(), ", type: ", node.op_type(), ") has zero input and zero output."); + } + + // If encounter experimental op, stop checking + if (check_is_experimental_op(node.op_type())) { + std::cerr << "Warning: Checker does not support models with experimental ops: " << node.op_type() << std::endl; + return; + } + + // Resolve domain for node + const auto& opset_imports = ctx.get_opset_imports(); + auto dit = opset_imports.find(node.domain()); + if (dit == opset_imports.end()) { + fail_check("No opset import for domain '" + node.domain() + "'"); + } + auto domain_version = dit->second; + + for (const auto& attr : node.attribute()) { + check_attribute(attr, ctx, lex_ctx); + } + + const auto* schema = ctx.get_schema_registry()->GetSchema(node.op_type(), domain_version, node.domain()); + if (!schema) { + if (node.domain() == ONNX_DOMAIN || node.domain() == AI_ONNX_ML_DOMAIN || node.domain() == "ai.onnx" || + node.domain() == AI_ONNX_TRAINING_DOMAIN) { + // fail the checker if op in built-in domains has no schema + fail_check( + "No Op registered for " + node.op_type() + " with domain_version of " + + ONNX_NAMESPACE::to_string(domain_version)); + } else { + // TODO: expose the registration of the op schemas appropriately in + // python, so we can load and register operators in other domains + // + // before we complete the above todo, let's skip the schema check for + // now + } + } else if (schema->Deprecated()) { + fail_check( + "Op registered for " + node.op_type() + " is deprecated in domain_version of " + + ONNX_NAMESPACE::to_string(domain_version)); + } else { + schema->Verify(node); + } +} + +void check_graph(const GraphProto& graph, const CheckerContext& ctx, const LexicalScopeContext& parent_lex) { + enforce_non_empty_field(graph, name); + + for (const auto& value_info : graph.input()) { + check_value_info(value_info, ctx); + } + for (const auto& value_info : graph.output()) { + check_value_info(value_info, ctx); + } + + // Inherit values available in outer scope + // Note that we do not allow shadowing, so the presence of an already-defined + // name is always an error. + LexicalScopeContext lex_ctx{parent_lex}; + + for (const auto& value_info : graph.input()) { + // TODO: If shadowing isn't allowed, this should maybe use + // this_or_ancestor_graph_has + if (lex_ctx.this_graph_has(value_info.name())) { + fail_check( + "Graph must be in single static assignment (SSA) form, however '", + value_info.name(), + "' has been used as graph input names multiple times."); + } + lex_ctx.add(value_info.name()); + } + + std::unordered_set, std::hash, std::equal_to> + initializer_name_checker; + + for (const auto& init : graph.initializer()) { + enforce_has_field(init, name); + const auto& name = init.name(); + if (name.empty()) { + fail_check("Tensor initializers must have a non-empty name"); + } + + if (!initializer_name_checker.insert(std::cref(name)).second) { + fail_check(name + " initializer name is not unique"); + } + + check_tensor(init, ctx); + + if (ctx.get_ir_version() <= 0x00000003) { + // Initializers are a subset of graph inputs for IR_VERSION <= 3 + if (!lex_ctx.this_graph_has(name)) { + fail_check(name + " in initializer but not in graph input"); + } + } else { + // An initializer is allowed to have the same name as an input, + // but is not required to (for IR_VERSION >= 4) + lex_ctx.add(name); + } + } + + for (const auto& sparse_init : graph.sparse_initializer()) { + const auto& values = sparse_init.values(); + enforce_has_field(values, name); + const auto& name = values.name(); + if (name.empty()) { + fail_check("Sparse tensor initializers must have a non-empty name"); + } + if (!initializer_name_checker.insert(std::cref(name)).second) { + fail_check(name + " sparse initializer name is not unique across initializers and sparse_initializers"); + } + check_sparse_tensor(sparse_init, ctx); + lex_ctx.add(name); + } + + for (const auto& node : graph.node()) { + // nodes must be in topologically sorted order + for (const auto& input : node.input()) { + // explicit optional input + if (input.empty()) { + continue; + } + if (!lex_ctx.this_or_ancestor_graph_has(input)) { + fail_check( + "Nodes in a graph must be topologically sorted, however input '", + input, + "' of node: \n", + "name: ", + node.name(), + " OpType: ", + node.op_type(), + "\n is not output of any previous nodes."); + } + } + + // This needs to happen before SSA check since we don't want to recurse and + // find that outputs from control flow ops are colliding with names in the + // inner block + + ONNX_TRY { + check_node(node, ctx, lex_ctx); + } + ONNX_CATCH(ValidationError & ex) { + ONNX_HANDLE_EXCEPTION([&]() { + ex.AppendContext("Bad node spec for node. Name: " + node.name() + " OpType: " + node.op_type()); + ONNX_THROW_EX(ex); + }); + } + // check for SSA form + for (const auto& output : node.output()) { + // optional output + if (output.empty()) { + continue; + } + + if (lex_ctx.this_or_ancestor_graph_has(output)) { + fail_check( + "Graph must be in single static assignment (SSA) form, however '", + output, + "' has been used as output names multiple times."); + } + lex_ctx.add(output); + } + } +} + +// Utilify function to get the imported version of domain from opset imports +// Returns -1 if requested domain is not found in the opset_imports +int get_version_for_domain(const std::string& domain, const std::unordered_map& opset_imports) { + auto it = opset_imports.find(domain); + if (it == opset_imports.end()) { + return -1; + } + + return it->second; +} + +void check_opset_compatibility( + const NodeProto& node, + const CheckerContext& ctx, + const std::unordered_map& func_opset_imports, + const std::unordered_map& model_opset_imports) { + auto func_opset_version = get_version_for_domain(node.domain(), func_opset_imports); + auto model_opset_version = get_version_for_domain(node.domain(), model_opset_imports); + + if (func_opset_version == -1) { + fail_check("No Opset registered for domain " + node.domain()); + } + + if (model_opset_version == -1) { + // model does not include opset import for a node present in function body. + // This is ok as along as the opset import is present in function level opset imports. + return; + } + + if (func_opset_version == model_opset_version) { + // both versions are same, no need to verify schema. + return; + } + + const auto* schema_for_model_import = + ctx.get_schema_registry()->GetSchema(node.op_type(), model_opset_version, node.domain()); + + const auto* schema_for_function_import = + ctx.get_schema_registry()->GetSchema(node.op_type(), func_opset_version, node.domain()); + + if (!schema_for_model_import && !schema_for_function_import) { + // the op belongs to a custom domain so we cannot verify schema + return; + } + + // if schema is present for 1 but not other or the schema since versions do not match then raise an error + if (!schema_for_model_import || !schema_for_function_import || + schema_for_function_import->since_version() != schema_for_model_import->since_version()) { + fail_check( + "Opset import for domain " + node.domain() + " in function op " + node.op_type() + + "is not compatible with the version imported by model. FunctionOp imports version " + + ONNX_NAMESPACE::to_string(func_opset_version) + "whereas model imports version " + + ONNX_NAMESPACE::to_string(model_opset_version)); + } +} + +void check_model_local_functions( + const ModelProto& model, + const CheckerContext& ctx, + const LexicalScopeContext& parent_lex) { + // make a copy of model opset imports to maintain a main copy of opset imports across the model and + // all model local functions to verify opset compatibility + std::unordered_map model_opset_imports(ctx.get_opset_imports()); + + // merge the opset imports from every function in model_opset_imports + // only add the opset import if an entry for it does not exist in model_opset_imports + // if there is an entry then the compatibility will be checked later on in check_opset_compatibility + // called by check_function. + for (const auto& function_proto : model.functions()) { + for (const auto& opset_import : function_proto.opset_import()) { + if (get_version_for_domain(opset_import.domain(), model_opset_imports) == -1) { + model_opset_imports[opset_import.domain()] = opset_import.version(); + } + } + } + + CheckerContext ctx_copy = ctx; + ctx_copy.set_opset_imports(model_opset_imports); + + for (const auto& function_proto : model.functions()) { + check_function(function_proto, ctx_copy, parent_lex); + } +} + +void check_function(const FunctionProto& function, const CheckerContext& ctx, const LexicalScopeContext& parent_lex) { + enforce_non_empty_field(function, name); + + if (ctx.get_ir_version() >= 0x00000008) { + enforce_has_field(function, domain); + } + + const auto& model_opset_imports = ctx.get_opset_imports(); + CheckerContext ctx_copy = ctx; + + std::unordered_map func_opset_imports; + for (auto& relied_opset : function.opset_import()) { + func_opset_imports[relied_opset.domain()] = static_cast(relied_opset.version()); + } + + ctx_copy.set_opset_imports(func_opset_imports); + + LexicalScopeContext lex_ctx{parent_lex}; + + for (const auto& input : function.input()) { + // TODO: If shadowing isn't allowed, this should maybe use + // this_or_ancestor_graph_has + if (lex_ctx.this_graph_has(input)) { + fail_check( + "Graph must be in single static assignment (SSA) form, however '", input, "' has been used multiple times."); + } + lex_ctx.add(input); + } + + std::unordered_set outputs; + for (const auto& output : function.output()) { + auto result = outputs.insert(output); + if (!result.second) { + fail_check("function (", function.name(), ") should not have duplicate outputs specified."); + } + } + + std::unordered_set attrs; + for (const auto& attr : function.attribute()) { + auto result = attrs.insert(attr); + if (!result.second) { + fail_check("function (", function.name(), ") should not have duplicate attributes specified."); + } + } + + for (const auto& node : function.node()) { + // nodes must be in topologically sorted order + for (const auto& input : node.input()) { + // explicit optional input + if (input.empty()) { + continue; + } + if (!lex_ctx.this_graph_has(input)) { + fail_check( + "Nodes in a function must be topologically sorted, however input '", + input, + "' of node: \n", + "Name: ", + node.name(), + " OpType: ", + node.op_type(), + "\n is neither output of any previous nodes nor input of the function."); + } + } + + // check whether the opset version imported for a domain by function and model are + // compatible + check_opset_compatibility(node, ctx_copy, func_opset_imports, model_opset_imports); + + check_node(node, ctx_copy, lex_ctx); + + // check for SSA form + for (const auto& output : node.output()) { + // optional output + if (output.empty()) { + continue; + } + if (lex_ctx.this_or_ancestor_graph_has(output)) { + fail_check( + "Function must be in single static assignment (SSA) form, however '", + output, + "' has been used as output names multiple times."); + } + lex_ctx.add(output); + } + } +} + +void check_model(const ModelProto& model, CheckerContext& ctx) { + if (!model.ir_version()) { + fail_check("The model does not have an ir_version set properly."); + } + if (model.ir_version() > IR_VERSION) { + fail_check("Your model ir_version is higher than the checker's."); + } + if (model.metadata_props_size() > 1) { + std::unordered_set keys; + for (const StringStringEntryProto& entry : model.metadata_props()) { + auto i = keys.insert(entry.key()); + if (!i.second) { + fail_check("Your model has duplicate keys in metadata_props."); + } + } + } + std::unordered_map versions; + ctx.set_ir_version(static_cast(model.ir_version())); + std::unordered_map opset_imports; + for (const auto& opset_import : model.opset_import()) { + opset_imports[opset_import.domain()] = static_cast(opset_import.version()); + } + if (model.ir_version() >= 3) { + if (opset_imports.empty()) { + fail_check("model with IR version >= 3 must specify opset_import for ONNX"); + } + } else { + if (opset_imports.empty()) + opset_imports[ONNX_DOMAIN] = 1; + else { + fail_check("model with IR version < 3 cannot have opset_import specified"); + } + } + ctx.set_opset_imports(opset_imports); + LexicalScopeContext lex_ctx; + check_graph(model.graph(), ctx, lex_ctx); + + if (ctx.get_ir_version() >= 0x00000008) { + check_model_local_functions(model, ctx, lex_ctx); + } +} + +void check_model(const std::string& model_path) { + ModelProto model; + LoadProtoFromPath(model_path, model); + + CheckerContext ctx; + std::string model_dir; + size_t pos = model_path.find_last_of("\\/"); + if (pos != std::string::npos) { + model_dir = model_path.substr(0, pos + 1); + } + ctx.set_model_dir(model_dir); + check_model(model, ctx); +} + +void check_model(const ModelProto& model) { + CheckerContext ctx; + check_model(model, ctx); +} + +std::set experimental_ops = { + "ATen", + "Affine", + "ConstantFill", + "Crop", + "DynamicSlice", + "GRUUnit", + "GivenTensorFill", + "ImageScaler", + "ParametricSoftplus", + "Scale", + "ScaledTanh"}; + +bool check_is_experimental_op(std::string node_op_type) { + return (experimental_ops.count(node_op_type)) ? true : false; +} + +#undef fail_check +#undef enforce_has_field +#undef enforce_has_repeated_field +#undef enforce_non_empty_field + +} // namespace checker +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/checker.h b/third_party/onnx/onnx/checker.h new file mode 100644 index 0000000000..8200bf5d21 --- /dev/null +++ b/third_party/onnx/onnx/checker.h @@ -0,0 +1,151 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include +#include +#include +#include "onnx/defs/function.h" +#include "onnx/defs/schema.h" +#include "onnx/onnx-data_pb.h" +#include "onnx/onnx-operators_pb.h" +#include "onnx/onnx_pb.h" +#include "onnx/string_utils.h" + +namespace ONNX_NAMESPACE { +namespace checker { +class ValidationError final : public std::runtime_error { + public: + using std::runtime_error::runtime_error; + const char* what() const noexcept override { + if (!expanded_message_.empty()) { + return expanded_message_.c_str(); + } + return std::runtime_error::what(); + } + void AppendContext(const std::string& context) { + expanded_message_ = ONNX_NAMESPACE::MakeString(std::runtime_error::what(), "\n\n==> Context: ", context); + } + + private: + std::string expanded_message_; +}; + +#define fail_check(...) \ + ONNX_THROW_EX(ONNX_NAMESPACE::checker::ValidationError(ONNX_NAMESPACE::MakeString(__VA_ARGS__))); + +class CheckerContext final { + public: + int get_ir_version() const { + return ir_version_; + } + void set_ir_version(int v) { + ir_version_ = v; + } + const std::unordered_map& get_opset_imports() const { + return opset_imports_; + } + void set_opset_imports(std::unordered_map imps) { + opset_imports_ = std::move(imps); + } + bool is_main_graph() const { + return is_main_graph_; + } + void set_is_main_graph(bool is_main_graph) { + is_main_graph_ = is_main_graph; + } + + void set_schema_registry(const ISchemaRegistry* schema_registry) { + schema_registry_ = schema_registry; + } + + const ISchemaRegistry* get_schema_registry() const { + return schema_registry_; + } + + void set_model_dir(const std::string& model_dir) { + model_dir_ = model_dir; + } + + std::string get_model_dir() const { + return model_dir_; + } + + explicit CheckerContext() : ir_version_(-1) {} + + private: + int ir_version_; + std::unordered_map opset_imports_; + bool is_main_graph_ = true; + const ISchemaRegistry* schema_registry_ = OpSchemaRegistry::Instance(); + std::string model_dir_; +}; + +class LexicalScopeContext final { + public: + LexicalScopeContext() = default; + + // Construct an instance with the lexical scope from the parent graph to allow + // lookup of names from that scope via this_or_ancestor_graph_has. + // The caller must ensure parent_context remains valid for the entire lifetime + // of the new instance. Alternatively, if that cannot be guaranteed, create an + // instance with the default constructor and populate output_names with the + // values from the parent scope so the values are copied instead. + LexicalScopeContext(const LexicalScopeContext& parent_context) : parent_context_{&parent_context} {} + + void add(const std::string& name) { + output_names.insert(name); + } + + bool this_graph_has(const std::string& name) const { + return output_names.find(name) != output_names.cend(); + } + + bool this_or_ancestor_graph_has(const std::string& name) const { + return this_graph_has(name) || (parent_context_ && parent_context_->this_or_ancestor_graph_has(name)); + } + + // public for backwards compatibility. please prefer the public interface of + // this class over directly changing output_names + std::unordered_set output_names; + + private: + const LexicalScopeContext* parent_context_{nullptr}; +}; + +using IR_VERSION_TYPE = decltype(Version::IR_VERSION); +void check_value_info(const ValueInfoProto& value_info, const CheckerContext&); +void check_tensor(const TensorProto& tensor, const CheckerContext&); +void check_sparse_tensor(const SparseTensorProto& sparse_tensor, const CheckerContext&); +void check_sequence(const SequenceProto& sequence, const CheckerContext&); +void check_map(const MapProto& map, const CheckerContext&); +void check_optional(const OptionalProto& opt, const CheckerContext&); +void check_attribute(const AttributeProto& attr, const CheckerContext&, const LexicalScopeContext&); +void check_node(const NodeProto& node, const CheckerContext&, const LexicalScopeContext&); +void check_graph(const GraphProto& graph, const CheckerContext&, const LexicalScopeContext&); +void check_function(const FunctionProto& function, const CheckerContext&, const LexicalScopeContext&); + +// Check schema compatibility for 2 opset versions for a given node. +// Checks whether the schema for 2 versions is same, this is true when the opschema +// does not change between versions. +void check_opset_compatibility( + const NodeProto& node, + const CheckerContext& ctx, + const std::unordered_map& func_opset_imports, + const std::unordered_map& model_opset_imports); + +// Checks all model local functions present in ModelProto +void check_model_local_functions( + const ModelProto& model, + const CheckerContext& ctx, + const LexicalScopeContext& parent_lex); + +void check_model(const ModelProto& model); +void check_model(const std::string& model_path); + +bool check_is_experimental_op(std::string node_op_type); + +} // namespace checker +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/checker.py b/third_party/onnx/onnx/checker.py new file mode 100644 index 0000000000..bf8e726513 --- /dev/null +++ b/third_party/onnx/onnx/checker.py @@ -0,0 +1,111 @@ +# SPDX-License-Identifier: Apache-2.0 +"""onnx checker + +This implements graphalities that allows us to check whether a serialized +proto is legal. +""" + +import functools + +from onnx import (ValueInfoProto, + AttributeProto, + TensorProto, + SparseTensorProto, + NodeProto, + ModelProto, + GraphProto, + IR_VERSION) +import onnx.onnx_cpp2py_export.checker as C +import onnx.defs +from google.protobuf.message import Message +from typing import TypeVar, Callable, Any, Type, cast, Union, Text +import onnx.shape_inference +import sys + + +# Limitation of single protobuf file is 2GB +MAXIMUM_PROTOBUF = 2000000000 + +# TODO: This thing where we reserialize the protobuf back into the +# string, only to deserialize it at the call site, is really goofy. +# Stop doing that. + + +# NB: Please don't edit this context! +DEFAULT_CONTEXT = C.CheckerContext() +DEFAULT_CONTEXT.ir_version = IR_VERSION +# TODO: Maybe ONNX-ML should also be defaulted? +DEFAULT_CONTEXT.opset_imports = {'': onnx.defs.onnx_opset_version()} + + +FuncType = TypeVar('FuncType', bound=Callable[..., Any]) + + +# TODO: This really doesn't seem worth the metaprogramming... +def _create_checker(proto_type: Type[Message]) -> Callable[[FuncType], FuncType]: + def decorator(py_func: FuncType) -> FuncType: + @functools.wraps(py_func) + def checker(proto: Message, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> Any: + if not isinstance(proto, proto_type): + raise RuntimeError( + 'You cannot pass an object that is not of type {}'.format( + proto_type.__name__)) + return getattr(C, py_func.__name__)( + proto.SerializeToString(), ctx) + return cast(FuncType, checker) + return decorator + + +@_create_checker(ValueInfoProto) +def check_value_info(value_info: ValueInfoProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + pass + + +@_create_checker(TensorProto) +def check_tensor(tensor: TensorProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + pass + + +@_create_checker(AttributeProto) +def check_attribute(attr: AttributeProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + pass + + +@_create_checker(NodeProto) +def check_node(node: NodeProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + pass + + +@_create_checker(GraphProto) +def check_graph(graph: GraphProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + pass + + +def check_sparse_tensor(sparse: SparseTensorProto, ctx: C.CheckerContext = DEFAULT_CONTEXT) -> None: + C.check_sparse_tensor(sparse.SerializeToString(), ctx) + + +def check_model(model: Union[ModelProto, Text, bytes], full_check: bool = False) -> None: + """Check the consistency of a model. An exception is raised if the test fails. + + Arguments: + model (ModelProto): model to check + full_check (bool): if True, the function checks shapes can be inferred + """ + # If model is a path instead of ModelProto + if isinstance(model, str): + C.check_model_path(model) + if full_check: + onnx.shape_inference.infer_shapes_path(model, check_type=True, strict_mode=True) + else: + protobuf_string = model if isinstance(model, bytes) else model.SerializeToString() + # If the protobuf is larger than 2GB, + # remind users should use the model path to check + if sys.getsizeof(protobuf_string) > MAXIMUM_PROTOBUF: + raise ValueError('This protobuf of onnx model is too large (>2GB). Call check_model with model path instead.') + C.check_model(protobuf_string) + if full_check: + onnx.shape_inference.infer_shapes(model, check_type=True, strict_mode=True) + + +ValidationError = C.ValidationError diff --git a/third_party/onnx/onnx/common/array_ref.h b/third_party/onnx/onnx/common/array_ref.h new file mode 100644 index 0000000000..4a74ece57f --- /dev/null +++ b/third_party/onnx/onnx/common/array_ref.h @@ -0,0 +1,188 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +//===--- ArrayRef.h - Array Reference Wrapper -------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// ONNX: modified from llvm::ArrayRef. +// removed llvm-specific functionality +// removed some implicit const -> non-const conversions that rely on +// complicated std::enable_if meta-programming +// removed a bunch of slice variants for simplicity... + +#pragma once +#include +#include +#include + +namespace ONNX_NAMESPACE { + /// ArrayRef - Represent a constant reference to an array (0 or more elements + /// consecutively in memory), i.e. a start pointer and a length. It allows + /// various APIs to take consecutive elements easily and conveniently. + /// + /// This class does not own the underlying data, it is expected to be used in + /// situations where the data resides in some other buffer, whose lifetime + /// extends past that of the ArrayRef. For this reason, it is not in general + /// safe to store an ArrayRef. + /// + /// This is intended to be trivially copyable, so it should be passed by + /// value. + template + class ArrayRef { + public: + typedef const T *iterator; + typedef const T *const_iterator; + typedef size_t size_type; + + typedef std::reverse_iterator reverse_iterator; + + private: + /// The start of the array, in an external buffer. + const T *Data; + + /// The number of elements. + size_type Length; + + public: + /// @name Constructors + /// @{ + + /// Construct an empty ArrayRef. + /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {} + + /// Construct an ArrayRef from a single element. + /*implicit*/ ArrayRef(const T &OneElt) + : Data(&OneElt), Length(1) {} + + /// Construct an ArrayRef from a pointer and length. + /*implicit*/ ArrayRef(const T *data, size_t length) + : Data(data), Length(length) {} + + /// Construct an ArrayRef from a range. + ArrayRef(const T *begin, const T *end) + : Data(begin), Length(end - begin) {} + + /// Construct an ArrayRef from a std::vector. + template + /*implicit*/ ArrayRef(const std::vector &Vec) + : Data(Vec.data()), Length(Vec.size()) {} + + /// Construct an ArrayRef from a std::array + template + /*implicit*/ constexpr ArrayRef(const std::array &Arr) + : Data(Arr.data()), Length(N) {} + + /// Construct an ArrayRef from a C array. + template + /*implicit*/ constexpr ArrayRef(const T (&Arr)[N]) : Data(Arr), Length(N) {} + + /// Construct an ArrayRef from a std::initializer_list. + /*implicit*/ ArrayRef(const std::initializer_list &Vec) + : Data(Vec.begin() == Vec.end() ? (T*)nullptr : Vec.begin()), + Length(Vec.size()) {} + + /// @} + /// @name Simple Operations + /// @{ + + iterator begin() const { return Data; } + iterator end() const { return Data + Length; } + + reverse_iterator rbegin() const { return reverse_iterator(end()); } + reverse_iterator rend() const { return reverse_iterator(begin()); } + + /// empty - Check if the array is empty. + bool empty() const { return Length == 0; } + + const T *data() const { return Data; } + + /// size - Get the array size. + size_t size() const { return Length; } + + /// front - Get the first element. + const T &front() const { + assert(!empty()); + return Data[0]; + } + + /// back - Get the last element. + const T &back() const { + assert(!empty()); + return Data[Length-1]; + } + + /// equals - Check for element-wise equality. + bool equals(ArrayRef RHS) const { + if (Length != RHS.Length) + return false; + return std::equal(begin(), end(), RHS.begin()); + } + + /// slice(n, m) - Chop off the first N elements of the array, and keep M + /// elements in the array. + ArrayRef slice(size_t N, size_t M) const { + assert(N+M <= size() && "Invalid specifier"); + return ArrayRef(data()+N, M); + } + + /// slice(n) - Chop off the first N elements of the array. + ArrayRef slice(size_t N) const { return slice(N, size() - N); } + + /// @} + /// @name Operator Overloads + /// @{ + const T &operator[](size_t Index) const { + assert(Index < Length && "Invalid index!"); + return Data[Index]; + } + + /// Vector compatibility + const T &at(size_t Index) const { + assert(Index < Length && "Invalid index!"); + return Data[Index]; + } + + /// Disallow accidental assignment from a temporary. + /// + /// The declaration here is extra complicated so that "arrayRef = {}" + /// continues to select the move assignment operator. + template + typename std::enable_if::value, ArrayRef>::type & + operator=(U &&Temporary) = delete; + + /// Disallow accidental assignment from a temporary. + /// + /// The declaration here is extra complicated so that "arrayRef = {}" + /// continues to select the move assignment operator. + template + typename std::enable_if::value, ArrayRef>::type & + operator=(std::initializer_list) = delete; + + /// @} + /// @name Expensive Operations + /// @{ + std::vector vec() const { + return std::vector(Data, Data+Length); + } + + /// @} + /// @name Conversion operators + /// @{ + operator std::vector() const { + return std::vector(Data, Data+Length); + } + + /// @} + }; + +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/common/assertions.cc b/third_party/onnx/onnx/common/assertions.cc new file mode 100644 index 0000000000..74cc5a33db --- /dev/null +++ b/third_party/onnx/onnx/common/assertions.cc @@ -0,0 +1,34 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#include +#include +#include "onnx/common/common.h" +#include "onnx/common/assertions.h" + +namespace ONNX_NAMESPACE { + +std::string barf(const char* fmt, ...) { + char msg[2048]; + va_list args; + + va_start(args, fmt); + vsnprintf(msg, 2048, fmt, args); + va_end(args); + + return std::string(msg); +} + +void throw_assert_error(std::string& msg) { + ONNX_THROW_EX(assert_error(msg)); +} + +void throw_tensor_error(std::string& msg) { + ONNX_THROW_EX(tensor_error(msg)); +} + +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/common/assertions.h b/third_party/onnx/onnx/common/assertions.h new file mode 100644 index 0000000000..757702bf58 --- /dev/null +++ b/third_party/onnx/onnx/common/assertions.h @@ -0,0 +1,84 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#pragma once + +#include +#include + +namespace ONNX_NAMESPACE { + +struct assert_error : public std::runtime_error { + public: + explicit assert_error(const std::string& msg) : runtime_error(msg) {} +}; + +struct tensor_error : public assert_error { + public: + explicit tensor_error(std::string msg) : assert_error(msg) {} +}; + +std::string barf(const char* fmt, ...); + +[[noreturn]] void throw_assert_error(std::string&); + +[[noreturn]] void throw_tensor_error(std::string&); + +} // namespace ONNX_NAMESPACE + +#if defined(__GNUC__) || defined(__ICL) || defined(__clang__) +#define _ONNX_EXPECT(x, y) (__builtin_expect((x), (y))) +#else +#define _ONNX_EXPECT(x, y) (x) +#endif + +#define ONNX_ASSERT(cond) \ + if (_ONNX_EXPECT(!(cond), 0)) { \ + std::string error_msg = ::ONNX_NAMESPACE::barf( \ + "%s:%u: %s: Assertion `%s` failed.", \ + __FILE__, \ + __LINE__, \ + __func__, \ + #cond); \ + throw_assert_error(error_msg); \ + } + +// The following is used to prevent MSVC from passing the whole __VA_ARGS__ list +// as the first parameter value to a macro call. +#define ONNX_EXPAND(x) x + +// Note: msg must be a string literal +#define _ONNX_ASSERTM(cond, msg, ...) \ + if (_ONNX_EXPECT(!(cond), 0)) { \ + std::string error_msg = ::ONNX_NAMESPACE::barf( \ + "%s:%u: %s: Assertion `%s` failed: " msg, \ + __FILE__, \ + __LINE__, \ + __func__, \ + #cond, \ + __VA_ARGS__); \ + throw_assert_error(error_msg); \ + } + +// The trailing ' ' argument is a hack to deal with the extra comma when ... is empty. +// Another way to solve this is ##__VA_ARGS__ in _ONNX_ASSERTM, but this is a non-portable +// extension we shouldn't use. +#define ONNX_ASSERTM(...) ONNX_EXPAND(_ONNX_ASSERTM(__VA_ARGS__, " ")) + +#define _TENSOR_ASSERTM(cond, msg, ...) \ + if (_ONNX_EXPECT(!(cond), 0)) { \ + std::string error_msg = ::ONNX_NAMESPACE::barf( \ + "%s:%u: %s: Assertion `%s` failed: " msg, \ + __FILE__, \ + __LINE__, \ + __func__, \ + #cond, \ + __VA_ARGS__); \ + throw_tensor_error(error_msg); \ + } + +#define TENSOR_ASSERTM(...) ONNX_EXPAND(_TENSOR_ASSERTM(__VA_ARGS__, " ")) diff --git a/third_party/onnx/onnx/common/common.h b/third_party/onnx/onnx/common/common.h new file mode 100644 index 0000000000..def414c8b9 --- /dev/null +++ b/third_party/onnx/onnx/common/common.h @@ -0,0 +1,34 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#define ONNX_UNUSED_PARAMETER(x) (void)(x) + +#ifdef ONNX_NO_EXCEPTIONS +#include +#define ONNX_THROW(...) \ + do { \ + std::cerr << ONNX_NAMESPACE::MakeString(__VA_ARGS__); \ + abort(); \ + } while(false) + +#define ONNX_THROW_EX(ex) \ + do { \ + std::cerr << ex.what() << std::endl; \ + abort(); \ + } while (false) + +#define ONNX_TRY if (true) +#define ONNX_CATCH(x) else if (false) +#define ONNX_HANDLE_EXCEPTION(func) + +#else +#define ONNX_THROW(...) throw std::runtime_error(ONNX_NAMESPACE::MakeString(__VA_ARGS__)) +#define ONNX_THROW_EX(ex) throw ex + +#define ONNX_TRY try +#define ONNX_CATCH(x) catch (x) +#define ONNX_HANDLE_EXCEPTION(func) func() +#endif diff --git a/third_party/onnx/onnx/common/constants.h b/third_party/onnx/onnx/common/constants.h new file mode 100644 index 0000000000..33ae6f253c --- /dev/null +++ b/third_party/onnx/onnx/common/constants.h @@ -0,0 +1,35 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + + +#pragma once + +#include + +namespace ONNX_NAMESPACE { +// For ONNX op/function registration. + +// ONNX domains. +constexpr const char* AI_ONNX_ML_DOMAIN = "ai.onnx.ml"; +constexpr const char* AI_ONNX_TRAINING_DOMAIN = "ai.onnx.training"; +constexpr const char* AI_ONNX_PREVIEW_TRAINING_DOMAIN = "ai.onnx.preview.training"; +constexpr const char* ONNX_DOMAIN = ""; +constexpr bool OPTIONAL_VALUE = false; + +// For dimension denotation. +constexpr const char* DATA_BATCH = "DATA_BATCH"; +constexpr const char* DATA_CHANNEL = "DATA_CHANNEL"; +constexpr const char* DATA_TIME = "DATA_TIME"; +constexpr const char* DATA_FEATURE = "DATA_FEATURE"; +constexpr const char* FILTER_IN_CHANNEL = "FILTER_IN_CHANNEL"; +constexpr const char* FILTER_OUT_CHANNEL = "FILTER_OUT_CHANNEL"; +constexpr const char* FILTER_SPATIAL = "FILTER_SPATIAL"; + +// For type denotation. +constexpr const char* TENSOR = "TENSOR"; +constexpr const char* IMAGE = "IMAGE"; +constexpr const char* AUDIO = "AUDIO"; +constexpr const char* TEXT = "TEXT"; + +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/common/file_utils.h b/third_party/onnx/onnx/common/file_utils.h new file mode 100644 index 0000000000..1593536ad0 --- /dev/null +++ b/third_party/onnx/onnx/common/file_utils.h @@ -0,0 +1,26 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +#pragma once + +#include "onnx/checker.h" +#include "onnx/common/path.h" + +#include + +namespace ONNX_NAMESPACE { + +template +void LoadProtoFromPath(const std::string proto_path, T& proto) { + std::fstream proto_stream(proto_path, std::ios::in | std::ios::binary); + if (!proto_stream.good()) { + fail_check("Unable to open proto file: ", proto_path, ". Please check if it is a valid proto. "); + } + std::string data{std::istreambuf_iterator{proto_stream}, std::istreambuf_iterator{}}; + if (!ParseProtoFromBytes(&proto, data.c_str(), data.size())) { + fail_check( + "Unable to parse proto from file: ", proto_path, ". Please check if it is a valid protobuf file of proto. "); + } +} +} // namespace ONNX_NAMESPACE \ No newline at end of file diff --git a/third_party/onnx/onnx/common/graph_node_list.h b/third_party/onnx/onnx/common/graph_node_list.h new file mode 100644 index 0000000000..ead527b9a4 --- /dev/null +++ b/third_party/onnx/onnx/common/graph_node_list.h @@ -0,0 +1,166 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#include "onnx/common/assertions.h" + +namespace ONNX_NAMESPACE { + +// Intrusive doubly linked lists with sane reverse iterators. +// The header file is named graph_node_list.h because it is ONLY +// used for Graph's Node lists, and if you want to use it for other +// things, you will have to do some refactoring. +// +// At the moment, the templated type T must support a few operations: +// +// - It must have a field: T* next_in_graph[2] = { nullptr, nullptr }; +// which are used for the intrusive linked list pointers. +// +// - It must have a method 'destroy()', which removes T from the +// list and frees a T. +// +// In practice, we are only using it with Node and const Node. 'destroy()' +// needs to be renegotiated if you want to use this somewhere else. +// +// Besides the benefits of being intrusive, unlike std::list, these lists handle +// forward and backward iteration uniformly because we require a +// "before-first-element" sentinel. This means that reverse iterators +// physically point to the element they logically point to, rather than +// the off-by-one behavior for all standard library reverse iterators. + +static constexpr size_t kNextDirection = 0; +static constexpr size_t kPrevDirection = 1; + +template +struct generic_graph_node_list; + +template +struct generic_graph_node_list_iterator; + +struct Node; +using graph_node_list = generic_graph_node_list; +using const_graph_node_list = generic_graph_node_list; +using graph_node_list_iterator = generic_graph_node_list_iterator; +using const_graph_node_list_iterator = generic_graph_node_list_iterator; + +template +struct generic_graph_node_list_iterator final { + generic_graph_node_list_iterator() + : cur(nullptr), d(kNextDirection) {} + generic_graph_node_list_iterator(T * cur, size_t d) + : cur(cur), d(d) {} + generic_graph_node_list_iterator(const generic_graph_node_list_iterator & rhs) + : cur(rhs.cur), d(rhs.d) {} + generic_graph_node_list_iterator & operator=( + const generic_graph_node_list_iterator&) = default; + T * operator*() const { return cur; } + T * operator->() const { return cur; } + generic_graph_node_list_iterator & operator++() { + ONNX_ASSERT(cur); + cur = cur->next_in_graph[d]; + return *this; + } + generic_graph_node_list_iterator operator++(int) { + generic_graph_node_list_iterator old = *this; + ++(*this); + return old; + } + generic_graph_node_list_iterator & operator--() { + ONNX_ASSERT(cur); + cur = cur->next_in_graph[reverseDir()]; + return *this; + } + generic_graph_node_list_iterator operator--(int) { + generic_graph_node_list_iterator old = *this; + --(*this); + return old; + } + + // erase cur without invalidating this iterator + // named differently from destroy so that ->/. bugs do not + // silently cause the wrong one to be called. + // iterator will point to the previous entry after call + void destroyCurrent() { + T * n = cur; + cur = cur->next_in_graph[reverseDir()]; + n->destroy(); + } + generic_graph_node_list_iterator reverse() { + return generic_graph_node_list_iterator(cur, reverseDir()); + } +private: + size_t reverseDir() { + return d == kNextDirection ? kPrevDirection : kNextDirection; + } + T * cur; + size_t d; //direction 0 is forward 1 is reverse, see next_in_graph +}; + +template +struct generic_graph_node_list final { + using iterator = generic_graph_node_list_iterator; + using const_iterator = generic_graph_node_list_iterator; + generic_graph_node_list_iterator begin() { + return generic_graph_node_list_iterator(head->next_in_graph[d], d); + } + generic_graph_node_list_iterator begin() const { + return generic_graph_node_list_iterator(head->next_in_graph[d], d); + } + generic_graph_node_list_iterator end() { + return generic_graph_node_list_iterator(head,d); + } + generic_graph_node_list_iterator end() const { + return generic_graph_node_list_iterator(head,d); + } + generic_graph_node_list_iterator rbegin() { + return reverse().begin(); + } + generic_graph_node_list_iterator rbegin() const { + return reverse().begin(); + } + generic_graph_node_list_iterator rend() { + return reverse().end(); + } + generic_graph_node_list_iterator rend() const { + return reverse().end(); + } + generic_graph_node_list reverse() { + return generic_graph_node_list(head, d == kNextDirection ? kPrevDirection : kNextDirection); + } + const generic_graph_node_list reverse() const { + return generic_graph_node_list(head, d == kNextDirection ? kPrevDirection : kNextDirection); + } + generic_graph_node_list(T * head, size_t d) + : head(head), d(d) {} +private: + T * head; + size_t d; +}; + +template +static inline bool operator==(generic_graph_node_list_iterator a, generic_graph_node_list_iterator b) { + return *a == *b; +} + +template +static inline bool operator!=(generic_graph_node_list_iterator a, generic_graph_node_list_iterator b) { + return *a != *b; +} + +} // namespace ONNX_NAMESPACE + +namespace std { + +template +struct iterator_traits> { + using difference_type = int64_t; + using value_type = T*; + using pointer = T**; + using reference = T*&; + using iterator_category = bidirectional_iterator_tag; +}; + +} // namespace std diff --git a/third_party/onnx/onnx/common/interned_strings.cc b/third_party/onnx/onnx/common/interned_strings.cc new file mode 100644 index 0000000000..39f3885f2c --- /dev/null +++ b/third_party/onnx/onnx/common/interned_strings.cc @@ -0,0 +1,78 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#include +#include +#include +#include +#include + +#include "onnx/common/assertions.h" +#include "onnx/common/interned_strings.h" + +namespace ONNX_NAMESPACE { + +struct InternedStrings { + InternedStrings() + : next_sym(kLastSymbol) { + #define REGISTER_SYMBOL(s) \ + string_to_sym_[#s] = k##s; \ + sym_to_string_[k##s] = #s; + FORALL_BUILTIN_SYMBOLS(REGISTER_SYMBOL) + #undef REGISTER_SYMBOL + } + uint32_t symbol(const std::string & s) { + std::lock_guard guard(mutex_); + auto it = string_to_sym_.find(s); + if(it != string_to_sym_.end()) + return it->second; + uint32_t k = next_sym++; + string_to_sym_[s] = k; + sym_to_string_[k] = s; + return k; + } + const char * string(Symbol sym) { + // Builtin Symbols are also in the maps, but + // we can bypass the need to acquire a lock + // to read the map for Builtins because we already + // know their string value + switch(sym) { + #define DEFINE_CASE(s) \ + case k##s: return #s; + FORALL_BUILTIN_SYMBOLS(DEFINE_CASE) + #undef DEFINE_CASE + default: + return customString(sym); + } + } +private: + const char * customString(Symbol sym) { + std::lock_guard guard(mutex_); + auto it = sym_to_string_.find(sym); + ONNX_ASSERT(it != sym_to_string_.end()); + return it->second.c_str(); + } + std::unordered_map string_to_sym_; + std::unordered_map sym_to_string_; + uint32_t next_sym; + std::mutex mutex_; +}; + +static InternedStrings & globalStrings() { + static InternedStrings s; + return s; +} + +const char * Symbol::toString() const { + return globalStrings().string(*this); +} + +Symbol::Symbol(const std::string & s) + : value(globalStrings().symbol(s)) { +} + +} // namespace ONNX_NAMESPACE diff --git a/third_party/onnx/onnx/common/interned_strings.h b/third_party/onnx/onnx/common/interned_strings.h new file mode 100644 index 0000000000..94a053be33 --- /dev/null +++ b/third_party/onnx/onnx/common/interned_strings.h @@ -0,0 +1,233 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#pragma once +#include +#include +#include +#include + +namespace ONNX_NAMESPACE { + +#define FORALL_BUILTIN_SYMBOLS(_) \ + _(spatial) \ + _(select_last_index) \ + _(coordinate_transformation_mode) \ + _(PythonOp) \ + _(CppOp) \ + _(Param) \ + _(Select) \ + _(Return) \ + _(Eval) \ + _(add) \ + _(Add) \ + _(Div) \ + _(Mul) \ + _(Neg) \ + _(Sub) \ + _(Pow) \ + _(Sigmoid) \ + _(ArgMax) \ + _(Concat) \ + _(Softmax) \ + _(LogSoftmax) \ + _(Dropout) \ + _(Tanh) \ + _(mul) \ + _(neg) \ + _(sigmoid) \ + _(tanh) \ + _(Constant) \ + _(cat) \ + _(Slice) \ + _(Squeeze) \ + _(Undefined) \ + _(FusionGroup) \ + _(MatMul) \ + _(Gemm) \ + _(Tile) \ + _(SubConstant) \ + _(Scale) \ + _(Transpose) \ + _(Pad) \ + _(Reshape) \ + _(split) \ + _(chunk) \ + _(Offset) \ + _(value) \ + _(Subgraph) \ + _(BatchNormalization) \ + _(Conv) \ + _(ConvTranspose) \ + _(is_test) \ + _(epsilon) \ + _(expand) \ + _(Expand) \ + _(order) \ + _(momentum) \ + _(consumed_inputs) \ + _(kernels) \ + _(kernel_shape) \ + _(kernel) \ + _(scale) \ + _(strides) \ + _(stride) \ + _(pads) \ + _(pad) \ + _(beta) \ + _(alpha) \ + _(dilations) \ + _(dilation) \ + _(broadcast) \ + _(axis) \ + _(ratio) \ + _(size) \ + _(dim) \ + _(keepdims) \ + _(perm) \ + _(shape) \ + _(axes) \ + _(group) \ + _(inplace) \ + _(transA) \ + _(transB) \ + _(other) \ + _(__and__) \ + _(__lshift__) \ + _(__or__) \ + _(__rshift__) \ + _(__xor__) \ + _(abs) \ + _(acos) \ + _(asin) \ + _(atan) \ + _(atan2) \ + _(ceil) \ + _(clamp) \ + _(cos) \ + _(cosh) \ + _(div) \ + _(eq) \ + _(equal) \ + _(Exp) \ + _(ends) \ + _(expm1) \ + _(floor) \ + _(fmod) \ + _(frac) \ + _(ge) \ + _(gt) \ + _(le) \ + _(lerp) \ + _(lgamma) \ + _(Log) \ + _(log1p) \ + _(lt) \ + _(max) \ + _(min) \ + _(ne) \ + _(ones) \ + _(pow) \ + _(reciprocal) \ + _(remainder) \ + _(round) \ + _(rsqrt) \ + _(sin) \ + _(sinh) \ + _(Sqrt) \ + _(sub) \ + _(starts) \ + _(tan) \ + _(trunc) \ + _(zeros) \ + _(exponent) \ + _(device) \ + _(mode) \ + _(Identity) \ + _(Loop) \ + _(If) \ + _(body) \ + _(then_branch) \ + _(else_branch) \ + _(Captured) \ + _(__control_inputs) \ + _(count_include_pad) \ + _(storage_order) \ + _(Unsqueeze) \ + _(ReduceL1) \ + _(ReduceL2) \ + _(ReduceLogSum) \ + _(ReduceLogSumExp) \ + _(ReduceMax) \ + _(ReduceMean) \ + _(ReduceMin) \ + _(ReduceProd) \ + _(ReduceSum) \ + _(ReduceSumSquare) \ + _(Cast) \ + _(to) \ + _(PRelu) \ + _(Greater) \ + _(Less) \ + _(scales) \ + _(Upsample) \ + _(RNN) \ + _(layout) \ + _(k) \ + _(Flatten) \ + _(ScatterElements) \ + _(Resize) + +enum BuiltinSymbol { +#define DEFINE_SYMBOL(s) k##s, + FORALL_BUILTIN_SYMBOLS(DEFINE_SYMBOL) +#undef DEFINE_SYMBOL + kLastSymbol, // where we start counting for new symbols +}; + +struct Symbol { + Symbol() {} + /*implicit*/ Symbol(BuiltinSymbol value) : value(value) {} + explicit Symbol(const std::string& s); + explicit Symbol(uint32_t value) : value(value) {} + + operator uint32_t() const { + return value; + } + const char* toString() const; + + private: + uint32_t value; +}; + +static inline bool operator==(Symbol lhs, Symbol rhs) { + return static_cast(lhs) == static_cast(rhs); +} +// necessary to prevent ambiguous overload resolutions +static inline bool operator==(BuiltinSymbol lhs, Symbol rhs) { + return static_cast(lhs) == static_cast(rhs); +} +static inline bool operator==(Symbol lhs, BuiltinSymbol rhs) { + return static_cast(lhs) == static_cast(rhs); +} + +inline Symbol operator"" _sym(const char* s, size_t) { + return Symbol(s); +} + +} // namespace ONNX_NAMESPACE + +// make symbol behave like an integer in hash tables +namespace std { +template <> +struct hash { + std::size_t operator()(ONNX_NAMESPACE::Symbol s) const { + return std::hash()(static_cast(s)); + } +}; + +} // namespace std diff --git a/third_party/onnx/onnx/common/ir.h b/third_party/onnx/onnx/common/ir.h new file mode 100644 index 0000000000..8d9e5ce61a --- /dev/null +++ b/third_party/onnx/onnx/common/ir.h @@ -0,0 +1,1417 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + */ + +// ATTENTION: The code in this file is highly EXPERIMENTAL. +// Adventurous users should note that the APIs will probably change. + +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "onnx/string_utils.h" +#include "onnx/common/array_ref.h" +#include "onnx/common/assertions.h" +#include "onnx/common/interned_strings.h" +#include "onnx/common/graph_node_list.h" +#include "onnx/common/tensor.h" +#include "onnx/common/common.h" + + +#define ONNX_DISALLOW_COPY_AND_ASSIGN(TypeName) \ + TypeName(const TypeName&) = delete; \ + TypeName& operator=(const TypeName&) = delete + + +namespace ONNX_NAMESPACE { + +// Graph represents one "function" of computation. +// It uses a simple ownership model where the graph owns all the nodes inside it. +// All references inside the graph are raw pointers. +// Destroying the Graph will invalidate any pointers to nodes in the graph. +struct Graph; + + +// Node is the base class of the IR graph. It represents one computation +// and dependencies on a list of Values. The "prim-ops", so to speak. +struct Node; + + +// A Value represents an input or output to node that is either a +// Tensor or an opaque Handle object, as determined by type(). +struct Value; + + +class ResourceGuard final { + std::function destructor_; + bool released_; + +public: + ResourceGuard(std::function destructor) + : destructor_(std::move(destructor)) + , released_(false) {} + + ~ResourceGuard() { + if (!released_) destructor_(); + } + + void release() { + released_ = true; + } +}; + + +struct Dimension final { + Dimension() : is_unknown(true) {} + Dimension(std::string param) + : is_unknown(false), is_int(false), dim(-1), param(std::move(param)) { + } + Dimension(int64_t dim) : is_unknown(false), is_int(true), dim(dim) {} + + bool is_unknown; + bool is_int; + int64_t dim; + std::string param; +}; + + +enum class AttributeKind : uint8_t { + // float, float list, int, int list, string, string list, + // tensor, tensor list, subgraph, subgraph list. type proto, type proto list + f, fs, i, is, s, ss, t, ts, g, gs, tp, tps +}; + + +static inline const char * toString(AttributeKind kind) { + static constexpr const char* names[] = {"f","fs", "i", "is", "s", "ss", "t", "ts", "g", "gs", "tp", "tps"}; + ONNX_ASSERT(size_t(kind) < sizeof(names) / sizeof(const char*)); + return names[int(kind)]; +} + + +struct AttributeValue { + AttributeValue(Symbol name) + : name(name) {} + using Ptr = std::unique_ptr; + Symbol name; + virtual AttributeKind kind() const = 0; + virtual Ptr clone() const = 0; + virtual ~AttributeValue() = default; +}; + + +template +struct ScalarAttributeValue final : public AttributeValue { + using ConstructorType = const T &; + using ValueType = T; + ScalarAttributeValue(Symbol name, ConstructorType value_) + : AttributeValue(name), value_(value_) {} + ValueType & value() { + return value_; + } + virtual Ptr clone() const override { + return Ptr(new ScalarAttributeValue(name, value_)); + } + virtual AttributeKind kind() const override { return Kind; } + +private: + ValueType value_; +}; + + +template +struct VectorAttributeValue final : public AttributeValue { + using ConstructorType = const std::vector &&; + using ValueType = std::vector; + VectorAttributeValue(Symbol name, ConstructorType value_) + : AttributeValue(name), value_(std::move(value_)) {} + ValueType & value() { + return value_; + } + virtual AttributeKind kind() const override { return Kind; } + virtual std::unique_ptr clone() const override { + auto copy = value_; + return Ptr(new VectorAttributeValue(name, std::move(copy))); + } +private: + ValueType value_; +}; + + +using FloatAttr = ScalarAttributeValue; +using FloatsAttr = VectorAttributeValue; +using IntAttr = ScalarAttributeValue; +using IntsAttr = VectorAttributeValue; +using StringAttr = ScalarAttributeValue; +using StringsAttr = VectorAttributeValue; +using TensorAttr = ScalarAttributeValue; +using TensorsAttr = VectorAttributeValue; +using GraphAttr = ScalarAttributeValue,AttributeKind::g>; +using GraphsAttr = VectorAttributeValue,AttributeKind::gs>; +using TypeProtoAttr = ScalarAttributeValue; +using TypeProtosAttr = VectorAttributeValue; + + +// CRTP so that Node which inherits Attributes can be return for +// method chaining e.g: +// Node * n = g->create(kSelect)->set_i(kOffset,3)->set_f(kValue,3.5); +// we return Derived* pointers because Nodes are normally held as pointers. +template +struct Attributes { + Attributes() {} + void copyAttributes(const Attributes & rhs) { + values_.clear(); + values_.reserve(rhs.values_.size()); + for(auto & i : rhs.values_) { + values_.push_back(i->clone()); + } + } + bool hasAttribute(Symbol name) const { + return find(name,false) != values_.end(); + } + AttributeKind kindOf(Symbol name) const { + return (*find(name,true))->kind(); + } + Derived* removeAttribute(Symbol name) { + values_.erase(find(name,true)); + return This(); + } + bool hasAttributes() const { + return !values_.empty(); + } + // The names are returned in order, since name actually is the index. + std::vector attributeNames() const { + std::vector names; + names.reserve(values_.size()); + for(auto & a : values_) + names.push_back(a->name); + return names; + } + + #define CREATE_ACCESSOR(Kind, method) \ + Derived* method##_(Symbol name, Kind##Attr::ConstructorType v) { \ + return set(name,std::forward(v)); \ + } \ + const Kind##Attr::ValueType& method(Symbol name) const { \ + return get(name); \ + } + CREATE_ACCESSOR(Float,f) + CREATE_ACCESSOR(Floats,fs) + CREATE_ACCESSOR(String,s) + CREATE_ACCESSOR(Strings,ss) + CREATE_ACCESSOR(Int,i) + CREATE_ACCESSOR(Ints,is) + CREATE_ACCESSOR(Tensor,t) + CREATE_ACCESSOR(Tensors,ts) + CREATE_ACCESSOR(Graph,g) + CREATE_ACCESSOR(Graphs,gs) + CREATE_ACCESSOR(TypeProto,tp) + CREATE_ACCESSOR(TypeProtos,tps) + + #undef CREATE_ACCESSOR + +private: + Derived* This() { + return static_cast(this); + } + template + Derived* set(Symbol name, typename T::ConstructorType v) { + auto it = find(name, false); + auto nv = AVPtr(new T(name, std::forward(v))); + if(it == values_.end()) { + values_.push_back(std::move(nv)); + } else { + *it = std::move(nv); + } + return This(); + } + template + typename T::ValueType & get(Symbol name) const { + auto it = find(name, true); + T* child = static_cast(it->get()); + return child->value(); + } + using AVPtr = AttributeValue::Ptr; + // NB: For determinism, we use a vector rather than a hash map. This does + // mean that lookups are O(n), so you shouldn't use Attributes to store + // a big pile of messages. + std::vector values_; + using iterator = std::vector::iterator; + iterator find(Symbol name, bool required) { + auto it = std::find_if(values_.begin(), values_.end(),[&](const AVPtr & v) { + return v->name == name; + }); + ONNX_ASSERT(!required || it != values_.end()); + return it; + } + using const_iterator = std::vector::const_iterator; + const_iterator find(Symbol name, bool required) const { + auto it = std::find_if(values_.begin(), values_.end(),[&](const AVPtr & v) { + return v->name == name; + }); + ONNX_ASSERTM(!required || it != values_.end(), + "%s:%u: %s: required undefined attribute '%s'", __FILE__, __LINE__, __func__, name.toString()); + return it; + } +}; + + + +// Each use is represented by this type, see Node::uses() +// 'user' is the consumer of the value, offset is the index into +// 'user's input this where the produces will be found. +struct Use final { + Use(Node * user, size_t offset) + : user(user), offset(offset) {} + Node * user; + size_t offset; +}; + +static inline bool operator==(const Use & a, const Use & b) { + return a.user == b.user && a.offset == b.offset; +} + + +// the list types are intentionally simple, but we type-def +// them here so if we need to change them, refactoring will be easier +using node_list = std::vector; +using value_list = std::vector; +using use_list = std::vector; +using NodeKind = Symbol; + + +struct Value final { + ONNX_DISALLOW_COPY_AND_ASSIGN(Value); + Value(Node * node_, size_t offset_); + +private: + friend struct Node; + friend struct Graph; + Node * node_; + size_t offset_; + size_t unique_ = 0; // unique id + size_t stage_ = 0; // 0-forward, 1-backward, 2-double-backward,... + use_list uses_in_current_graph_; + bool has_unique_name_; + std::string unique_name_; + int32_t elem_type_; + bool has_sizes_; + std::vector sizes_; + +public: + Value* setElemType(int32_t elem_type) { + elem_type_ = elem_type; + return this; + } + int32_t elemType() const { + return elem_type_; + } + bool has_sizes() const { return has_sizes_; } + Value* setSizes(std::vector sizes) { + has_sizes_ = true; + sizes_ = std::move(sizes); + return this; + } + Value* wipeSizes() { + has_sizes_ = false; + sizes_ = std::vector(); + return this; + } + const std::vector& sizes() const { + return sizes_; + } + size_t unique() const { + return unique_; + } + bool has_unique_name() const { + return has_unique_name_; + } + std::string uniqueName() const { + if(has_unique_name()) + return unique_name_; + return ONNX_NAMESPACE::to_string(unique()); + } + Value* setUniqueName(const std::string &name, bool rename_subgraph_captured_nodes=true); + Value* setStage(size_t s) { + stage_ = s; + return this; + } + size_t stage() const { + return stage_; + } + Node* node() { + return node_; + } + size_t offset() const { + return offset_; + } + const Node * node() const { + return node_; + } + Graph * owningGraph(); + const Graph * owningGraph() const; + // TODO: make this more const correct + const use_list uses() const; + + // Replaces all uses of this node with 'newValue'. + // + // Given: %3 = f(%1, %2) + // %4 = g(%3) + // %5 = h(%3, %3) + // Execute: %3.replaceAllUsesWith(%6) + // Result: %3 = f(%1, %2) + // %4 = g(%6) + // %5 = h(%6, %6) + void replaceAllUsesWith(Value * newValue); + + Value* copyMetadata(Value * from) { + setElemType(from->elemType()); + setSizes(from->sizes()); + if (from->has_unique_name()) { + setUniqueName(from->uniqueName()); + } + return this; + } + +}; + + +struct Node : public Attributes { + ONNX_DISALLOW_COPY_AND_ASSIGN(Node); + friend struct Graph; + friend struct Value; + friend graph_node_list; + friend const_graph_node_list; + friend graph_node_list_iterator; + friend const_graph_node_list_iterator; + +private: + // each node but Return/Param + // is associated with exactly one place in the node list... + // of the graph_ + // this circular is a doubly-linked list, the Return node is used as the sentinel for the beginning and end of the list + // such that the list never has null pointers + // next_in_graph[0] is next pointer + // next_in_graph[1] is prev pointer + // using an array to allow the same iterator class for forward and reverse node lists + // This list represents a topological sort + + Node* next_in_graph[2] = { nullptr, nullptr }; + Node* & next() { return next_in_graph[kNextDirection]; } + Node* & prev() { return next_in_graph[kPrevDirection]; } + Node* const & next() const { return next_in_graph[kNextDirection]; } + Node* const & prev() const { return next_in_graph[kPrevDirection]; } + + const NodeKind kind_; + std::vector inputs_; + std::vector outputs_; + Graph* graph_; + size_t stage_; + bool has_name_; + std::string name_; + bool has_domain_; + std::string domain_; + bool has_doc_string_; + std::string doc_string_; + +protected: + Node(Graph * graph_, NodeKind kind_); // defined after graph + +public: + bool has_name() const { + return has_name_; + } + const std::string& name() const { + return name_; + } + void setName(std::string name) { + has_name_ = true; + name_ = std::move(name); + } + bool has_domain() const { + return has_domain_; + } + const std::string& domain() const { + return domain_; + } + void setDomain(std::string domain) { + has_domain_ = true; + domain_ = std::move(domain); + } + bool has_doc_string() const { + return has_doc_string_; + } + const std::string& docString() const { + return doc_string_; + } + void setDocString(std::string doc_string) { + has_doc_string_ = true; + doc_string_ = std::move(doc_string); + } + NodeKind kind() const { + return kind_; + } + Graph * owningGraph() { + return graph_; + } + const Graph * owningGraph() const { + return graph_; + } + size_t stage() const { + return stage_; + } + Node* setStage(size_t s) { + stage_ = s; + return this; + } + // NB: This returns an ArrayRef; that means that it will + // get invalidated if you resize inputs (e.g., using addInput) + // We can't return a std::vector& because there's no + // way to soundly cast to std::vector (an insane + // implementation of std::vector could make this representationally + // different.) + ArrayRef inputs() { + return inputs_; + } + ArrayRef inputs() const { + // Vectors are not convertible in const-ness of elements, but + // raw pointers are. + return {inputs_.data(), inputs_.size()}; + } + // NB: This returns an ArrayRef; that means that it will + // get invalidated if you resize inputs (e.g., using addInput) + // We can't return a std::vector& because there's no + // way to soundly cast to std::vector (an insane + // implementation of std::vector could make this representationally + // different.) + ArrayRef outputs() { + return outputs_; + } + ArrayRef outputs() const { + // Vectors are not convertible in const-ness of elements, but + // raw pointers are. + return {outputs_.data(), outputs_.size()}; + } + bool hasUses() const { + for(auto o : outputs()) { + if(!o->uses().empty()) + return true; + } + return false; + } + void replaceAllUsesWith(Node * n) { + ONNX_ASSERT(outputs().size() == n->outputs().size()); + size_t nOutputs = outputs().size(); + for(size_t i = 0; i < nOutputs; i++) { + outputs()[i]->replaceAllUsesWith(n->outputs()[i]); + } + } + // lots of things like chunk have a single input or single output, so we have a + // helper to make accessing it easier + Value * input() { + ONNX_ASSERT(inputs_.size() == 1); + return inputs_.at(0); + } + Value * output() { + ONNX_ASSERT(outputs_.size() == 1); + return outputs_.at(0); + } + const Value * input() const { + ONNX_ASSERT(inputs_.size() == 1); + return inputs_.at(0); + } + Value * output() const { + ONNX_ASSERT(outputs_.size() == 1); + return outputs_.at(0); + } + // Access a particular input. This is a checked index. + Value * input(size_t i) { + return inputs_.at(i); + } + const Value * input(size_t i) const { + return inputs_.at(i); + } + + // Graphs + + // Note [Topological invariant] + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + // We always maintain an up-to-date topological ordering of all nodes via + // the next()/prev() links. All transformations to graphs must preserve + // this topological ordering: for example, it is only valid to 'addInput' + // with an input which is topologically before the current node. + // + // Usually, it is obvious whether or not topological order is maintained; + // for example, if you are adding nodes to the end of the topsort, it's + // impossible for them to refer to inputs that are not in the topsort. + // If it is not obvious, please comment accordingly. + + // Add 'node' as an input to 'this' at the end of existing + // arguments. Returns the added node for ease of chaining. + // + // Given: %3 = f(%1, %2) + // Execute: %3.addInput(%4) + // Result: %3 = f(%1, %2, %4) + Value* addInput(Value * node) { + ONNX_ASSERT(graph_ == node->owningGraph()); + node->uses_in_current_graph_.emplace_back(this, inputs_.size()); + inputs_.push_back(node); + return node; + } + + // Replace the input of 'this' at position 'i' with + // 'newValue', returning the old node. + // + // Given: %3 = f(%1, %2) + // Execute: %3.replaceInput(1, %4) + // Result: %3 = f(%1, %4) + Value * replaceInput(size_t i, Value * newValue) { + ONNX_ASSERT(newValue->owningGraph() == graph_); + Value * old = dropInput(i); + inputs_[i] = newValue; + newValue->uses_in_current_graph_.emplace_back(this, i); + return old; + } + + // Replace all occurrences of 'from' in the inputs of this + // node with 'to'. Corresponds to llvm's replaceUsesOfWith. + // + // Given: %3 = f(%1, %2, %1) + // Execute: %3.replaceInputWith(%1, %4) + // Result: %3 = f(%4, %2, %4) + void replaceInputWith(Value * from, Value * to) { + ONNX_ASSERT(from->owningGraph() == graph_); + ONNX_ASSERT(to->owningGraph() == graph_); + size_t i = 0; + for(auto input : inputs()) { + if(input == from) + replaceInput(i, to); + i++; + } + } + + Value* addOutput() { + outputs_.push_back(new Value(this, outputs_.size())); + return outputs_.back(); + } + + void eraseOutput(size_t i); + + // Insert unattached 'this' node after 'n' in the topological order. + // Returns this (for chaining). + // + // Given: %3 = f(%1, %2) + // %4 = g(%3) + // and unattached: %5 = h(%1) + // Execute: %5.insertBefore(%4) + // Result: %3 = f(%1, %2) + // %5 = h(%1) + // %4 = g(%3) + Node* insertBefore(Node * n) { + ONNX_ASSERT(n->inGraphList()); + insertAfter(n->prev()); + return this; + } + + // Insert unattached 'this' node after 'n' in the topological order. + // Returns this (for chaining). + // + // Given: %3 = f(%1, %2) + // %4 = g(%3) + // and unattached: %5 = h(%1) + // Execute: %5.insertAfter(%4) + // Result: %3 = f(%1, %2) + // %4 = g(%3) + // %5 = h(%1) + Node* insertAfter(Node * n) { + ONNX_ASSERT(!inGraphList() && n->inGraphList()); + Node * next = n->next(); + n->next() = this; + this->prev() = n; + this->next() = next; + next->prev() = this; + return this; + } + + // Move 'this' (already in the graph) after 'n' in the topological order. + // + // Given: %2 = f(%1) + // %3 = g(%1) + // Execute: %2.moveAfter(%3) + // Result: %3 = g(%1) + // %2 = f(%1) + // + void moveAfter(Node * n) { + removeFromList(); + insertAfter(n); + } + + // Move a node 'n' (already in the graph) before 'this' in the topological order. + // + // Given: %2 = f(%1) + // %3 = g(%1) + // Execute: %3.moveBefore(%2) + // Result: %3 = g(%1) + // %2 = f(%1) + void moveBefore(Node * n) { + removeFromList(); + insertBefore(n); + } + + // Remove the input at 'i' from this node. + // + // WARNING: This is O(n) in the number of inputs, so avoid repeatedly calling + // removeInput. + // + // Given: %3 = f(%1, %2) + // Execute: %3.removeInput(1) + // Result: %3 = f(%1) + void removeInput(size_t i) { + dropInput(i); + // everything after this input shifts left, + // so we need to update their use offsets to match + for(size_t j = i+1; j < inputs_.size(); j++) { + auto it = findUseForInput(j); + it->offset--; + } + inputs_.erase(inputs_.begin() + i); + } + + // Remove all inputs from a node. + // + // Given: %3 = f(%1, %2) + // Execute: %3.removeAllInputs() + // Result: %3 = f() + void removeAllInputs() { + for(size_t i = 0; i < inputs().size(); ++i) + dropInput(i); + inputs_.clear(); + } + + // Check whether this node is before node n in the graph. + bool isBefore(Node* n); + + // iterators of the node list starting at this node + // useful for resuming a search starting at this node + graph_node_list_iterator iterator(); + graph_node_list_iterator reverseIterator(); + const_graph_node_list_iterator iterator() const; + const_graph_node_list_iterator reverseIterator() const; + + // Remove 'this' from the instruction list and deallocate it. + // + // Invariant: no outputs of 'this' may have any uses. + // + // Given: %2 = f(%1) + // %3 = g(%1) + // Execute: %2.destroy() + // Result: %3 = g(%1) + void destroy(); + + // Dynamically cast this node to the subclass indicated by the + // template variable, returning nullptr if the cast is invalid.. + // + // Example usage: if(auto s = n.cast